:root {
  --idp-ink: #07100f;
  --idp-panel: #0c1514;
  --idp-panel-2: #111b1a;
  --idp-line: rgba(255, 255, 255, 0.1);
  --idp-muted: #9aa9a5;
  --idp-soft: #e9f1ee;
  --idp-gold: #ffc300;
  --idp-gold-2: #ffe08a;
  --idp-teal: #20d6a4;
  --idp-blue: #6aa6ff;
  --idp-danger: #ff6b6b;
  --idp-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --idp-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.frontend-page {
  margin: 0;
  min-width: 320px;
  background: var(--idp-ink);
  color: var(--idp-soft);
  font-family: var(--idp-font);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.frontend-page::selection {
  background: rgba(255, 195, 0, 0.32);
}

a {
  color: inherit;
}

.site-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(7, 16, 15, 0.96), #07100f 44%, #07100f 100%);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 16, 15, 0.84);
  backdrop-filter: blur(18px);
}

.nav-container {
  width: min(1180px, calc(100% - 2rem));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-brand {
  position: relative;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-brand img {
  width: 174px;
  height: auto;
}

.nav-panel {
  display: flex;
  align-items: center;
}

.nav-panel-inner {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.nav-link {
  position: relative;
  min-height: auto;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0;
  color: rgba(233, 241, 238, 0.72);
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.28rem;
  height: 2px;
  border-radius: 999px;
  background: var(--idp-gold);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--idp-gold);
}

.nav-link:hover::after,
.nav-link:focus::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  position: relative;
  z-index: 60;
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--idp-soft);
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.nav-toggle:hover {
  border-color: rgba(255, 195, 0, 0.48);
  background: rgba(255, 195, 0, 0.08);
  transform: translateY(-1px);
}

.nav-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, opacity 160ms ease, top 220ms ease;
}

.nav-toggle span:nth-child(1) {
  top: 15px;
}

.nav-toggle span:nth-child(2) {
  top: 22px;
}

.nav-toggle span:nth-child(3) {
  top: 29px;
}

.nav-open .nav-toggle span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: translateX(8px);
}

.nav-open .nav-toggle span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.nav-download,
.nav-cta,
.btn-idp,
.btn-idp-outline {
  min-height: 44px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.72rem 1rem;
  font-family: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  appearance: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.nav-download,
.nav-cta,
.btn-idp {
  border: 1px solid rgba(255, 195, 0, 0.72);
  background: var(--idp-gold);
  color: #141000;
}

.nav-download {
  margin-left: 0.25rem;
  padding-inline: 1.1rem;
  box-shadow: 0 12px 30px rgba(255, 195, 0, 0.12);
}

.btn-idp-outline {
  border: 1px solid rgba(233, 241, 238, 0.24);
  color: var(--idp-soft);
  background: rgba(255, 255, 255, 0.04);
}

.nav-download:hover,
.nav-cta:hover,
.btn-idp:hover,
.btn-idp-outline:hover {
  transform: translateY(-2px);
}

.nav-download:hover,
.btn-idp:hover {
  background: var(--idp-gold-2);
  color: #141000;
}

.btn-idp-outline:hover {
  border-color: rgba(255, 195, 0, 0.58);
  color: var(--idp-gold);
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 74px);
  padding: clamp(4.8rem, 8vw, 7.5rem) 0 clamp(3rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, var(--idp-ink));
  z-index: -1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(233, 241, 238, 0.12) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(32, 214, 164, 0.16) 1px, transparent 1.5px);
  background-position: 0 0, 28px 34px;
  background-size: 72px 72px, 96px 96px;
  mask-image: linear-gradient(90deg, black, black 72%, transparent);
  opacity: 0.72;
}

.hero-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(233, 241, 238, 0.72);
  box-shadow: 0 0 18px rgba(233, 241, 238, 0.22);
  opacity: 0.34;
  animation: particleFloat 12s linear infinite;
}

.hero-particles span:nth-child(1) { left: 8%; top: 22%; animation-delay: -1s; }
.hero-particles span:nth-child(2) { left: 16%; top: 70%; width: 4px; height: 4px; animation-delay: -5s; }
.hero-particles span:nth-child(3) { left: 31%; top: 18%; background: var(--idp-teal); animation-delay: -8s; }
.hero-particles span:nth-child(4) { left: 43%; top: 78%; width: 5px; height: 5px; animation-delay: -4s; }
.hero-particles span:nth-child(5) { left: 54%; top: 28%; background: var(--idp-teal); animation-delay: -7s; }
.hero-particles span:nth-child(6) { left: 62%; top: 66%; width: 4px; height: 4px; animation-delay: -11s; }
.hero-particles span:nth-child(7) { left: 73%; top: 20%; animation-delay: -2s; }
.hero-particles span:nth-child(8) { left: 80%; top: 58%; background: var(--idp-teal); animation-delay: -9s; }
.hero-particles span:nth-child(9) { left: 88%; top: 35%; width: 4px; height: 4px; animation-delay: -6s; }
.hero-particles span:nth-child(10) { left: 94%; top: 76%; animation-delay: -3s; }
.hero-particles span:nth-child(11) { left: 23%; top: 42%; width: 3px; height: 3px; animation-delay: -10s; }
.hero-particles span:nth-child(12) { left: 69%; top: 44%; width: 3px; height: 3px; animation-delay: -12s; }

@keyframes particleFloat {
  0% {
    transform: translate3d(0, 18px, 0);
  }
  50% {
    transform: translate3d(22px, -28px, 0);
  }
  100% {
    transform: translate3d(0, 18px, 0);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 34px;
  border: 1px solid rgba(32, 214, 164, 0.26);
  border-radius: 8px;
  padding: 0.36rem 0.68rem;
  background: rgba(32, 214, 164, 0.08);
  color: #9cffdf;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-title {
  max-width: 760px;
  margin: 1.35rem 0 1.15rem;
  font-family: var(--idp-display);
  font-size: clamp(2.7rem, 6vw, 3.95rem);
  line-height: 1;
  font-weight: 800;
}

.text-gold {
  color: var(--idp-gold);
}

.hero-copy {
  max-width: 660px;
  color: rgba(233, 241, 238, 0.76);
  font-size: clamp(1.02rem, 1.8vw, 1.24rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.45rem;
}

.hero-trust-row span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 0.44rem 0.62rem;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(233, 241, 238, 0.74);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-trust-row i {
  color: var(--idp-gold);
}

.hero-visual {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.phone-glow {
  position: absolute;
  width: min(420px, 86vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(233, 241, 238, 0.08), transparent 58%),
    radial-gradient(circle at 70% 30%, rgba(32, 214, 164, 0.16), transparent 45%);
  filter: blur(10px);
  animation: glowPulse 5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    transform: scale(0.96);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.app-phone {
  position: relative;
  width: min(330px, 78vw);
  aspect-ratio: 9 / 18.7;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 46px;
  overflow: hidden;
  padding: 0.82rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02)),
    #070b0b;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.55),
    inset 0 0 0 6px rgba(255, 255, 255, 0.035);
  transform: rotate(-3deg);
  animation: phoneFloat 4.6s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-16px) rotate(-1.5deg);
  }
}

.phone-speaker {
  position: absolute;
  top: 1.02rem;
  left: 50%;
  z-index: 3;
  width: 86px;
  height: 24px;
  border-radius: 0 0 18px 18px;
  background: #050909;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 35px;
  background: #0c1514;
  clip-path: inset(0 round 35px);
  isolation: isolate;
  transform: translateZ(0);
}

.phone-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0 36px rgba(0, 0, 0, 0.22);
}

.app-slide {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  border-radius: inherit;
  padding: 0;
  opacity: 0;
  transform: translateX(26px) scale(0.98);
  transition: opacity 420ms ease, transform 460ms ease;
}

.app-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.app-screenshot {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
  transform: scale(1.01);
}

.screenshot-caption {
  position: absolute;
  left: 0.78rem;
  right: 0.78rem;
  bottom: 2.55rem;
  z-index: 2;
  display: grid;
  gap: 0.24rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 0.7rem 0.78rem;
  background: rgba(7, 16, 15, 0.68);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.screenshot-caption span {
  color: var(--idp-gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.screenshot-caption strong {
  color: var(--idp-soft);
  font-size: 0.88rem;
  line-height: 1.35;
}

.phone-dots {
  position: absolute;
  left: 50%;
  bottom: 1.3rem;
  z-index: 4;
  display: flex;
  gap: 0.34rem;
  transform: translateX(-50%);
}

.phone-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  transition: width 220ms ease, background-color 220ms ease;
}

.phone-dots span.is-active {
  width: 19px;
  background: var(--idp-gold);
}

.floating-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0.62rem 0.76rem;
  background: rgba(12, 21, 20, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  color: rgba(233, 241, 238, 0.84);
  font-size: 0.82rem;
  font-weight: 800;
}

.floating-badge i {
  color: var(--idp-gold);
}

.badge-top {
  top: 18%;
  right: 1%;
}

.badge-bottom {
  left: 3%;
  bottom: 22%;
}

.product-stage {
  position: relative;
  margin-top: clamp(2.4rem, 5vw, 4rem);
  min-height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(255, 195, 0, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(17, 27, 26, 0.92), rgba(9, 18, 17, 0.95));
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
}

.dashboard-preview,
.phone-preview {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(9, 18, 17, 0.88);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.dashboard-preview {
  left: clamp(1rem, 4vw, 3rem);
  right: clamp(8rem, 20vw, 20rem);
  top: 48px;
  min-height: 242px;
  padding: 1.1rem;
}

.phone-preview {
  right: clamp(1rem, 5vw, 4rem);
  bottom: -18px;
  width: min(260px, 42vw);
  min-height: 320px;
  padding: 0.8rem;
}

.preview-top,
.preview-row,
.metric-line,
.phone-top,
.phone-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.preview-top {
  margin-bottom: 1rem;
}

.preview-title {
  font-weight: 800;
}

.preview-pill {
  border-radius: 8px;
  padding: 0.42rem 0.6rem;
  background: rgba(32, 214, 164, 0.12);
  color: #9cffdf;
  font-size: 0.78rem;
  font-weight: 800;
}

.stat-grid,
.feature-grid,
.value-grid,
.testimonial-grid {
  display: grid;
  gap: 1rem;
}

.stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-tile,
.feature-card,
.value-card,
.testimonial-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.stat-tile {
  padding: 1rem;
}

.stat-label,
.section-kicker,
.phone-label {
  color: var(--idp-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.stat-value {
  margin-top: 0.45rem;
  color: var(--idp-soft);
  font-family: var(--idp-display);
  font-size: 1.55rem;
  font-weight: 800;
}

.metric-line {
  height: 10px;
  margin-top: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.metric-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--idp-gold), var(--idp-teal), var(--idp-blue));
}

.phone-top {
  margin-bottom: 1rem;
}

.brand-chip {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
}

.balance-box {
  border-radius: 8px;
  padding: 1rem;
  background: linear-gradient(135deg, #ffd76d, #20d6a4);
  color: #07100f;
}

.balance-box strong {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--idp-display);
  font-size: 1.85rem;
  line-height: 1;
}

.phone-row {
  margin-top: 0.72rem;
  padding: 0.76rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.phone-row i {
  color: var(--idp-gold);
}

.section-band {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-band.alt {
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0.4rem 0 0;
  font-family: var(--idp-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.02;
}

.section-heading p {
  margin: 1rem 0 0;
  color: rgba(233, 241, 238, 0.68);
  line-height: 1.75;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-showcase.is-interactive {
  overflow: hidden;
}

.feature-showcase.is-interactive .section-heading {
  margin-bottom: 0;
}

.feature-showcase.is-interactive .feature-grid {
  position: relative;
  display: block;
  min-height: 520px;
  margin-top: 2.6rem;
}

.feature-showcase.is-interactive .feature-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1120px, calc(100vw - 3rem));
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  align-items: stretch;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  padding: clamp(1rem, 1.5vw, 1.4rem);
  transform: translate(-50%, -50%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  will-change: transform, opacity;
}

.feature-showcase.is-interactive .feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 195, 0, 0.08), transparent 48%, rgba(32, 214, 164, 0.06));
}

.feature-copy {
  position: relative;
  z-index: 1;
}

.feature-showcase.is-interactive .feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1rem, 2vw, 1.8rem);
}

.feature-showcase.is-interactive .feature-icon {
  width: 54px;
  height: 54px;
  font-size: 1.35rem;
}

.feature-showcase.is-interactive .feature-card h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  line-height: 1.05;
}

.feature-media {
  position: relative;
  z-index: 1;
  min-height: 180px;
  margin: 1.1rem 0 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
}

.feature-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
  transition: transform 300ms ease;
}

.feature-card:hover .feature-media img {
  transform: scale(1.035);
}

.feature-showcase.is-interactive .feature-media {
  min-height: 100%;
  margin: 0;
}

.feature-card,
.value-card,
.testimonial-card {
  padding: 1.2rem;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.feature-card:hover,
.value-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 195, 0, 0.34);
  background: rgba(255, 255, 255, 0.065);
}

.feature-icon,
.value-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 195, 0, 0.12);
  color: var(--idp-gold);
  font-size: 1.2rem;
}

.feature-card h3,
.value-card h3 {
  margin: 1.05rem 0 0.55rem;
  font-size: 1.08rem;
  font-weight: 800;
}

.feature-card p,
.value-card p,
.testimonial-card p {
  color: rgba(233, 241, 238, 0.67);
  line-height: 1.68;
}

.value-grid,
.testimonial-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.infrastructure-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.infrastructure-card.primary {
  grid-row: span 2;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: clamp(1.2rem, 2vw, 2rem);
  background:
    linear-gradient(135deg, rgba(32, 214, 164, 0.1), transparent 45%),
    rgba(255, 255, 255, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.infrastructure-card.primary:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 195, 0, 0.34);
  background:
    linear-gradient(135deg, rgba(32, 214, 164, 0.14), transparent 45%),
    rgba(255, 255, 255, 0.065);
}

.infra-phone-stack {
  display: grid;
  gap: 0.7rem;
}

.infra-phone-stack span {
  min-height: 50px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  background: rgba(7, 16, 15, 0.46);
  color: rgba(233, 241, 238, 0.78);
  font-weight: 800;
}

.infra-phone-stack span::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 0.65rem;
  border-radius: 50%;
  background: var(--idp-teal);
  box-shadow: 0 0 18px rgba(32, 214, 164, 0.45);
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.metric-card {
  padding: 1.4rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.metric-card strong {
  display: block;
  color: var(--idp-gold);
  font-family: var(--idp-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.metric-card span {
  display: block;
  margin-top: 0.6rem;
  color: rgba(233, 241, 238, 0.68);
}

.trust-console {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: clamp(1.2rem, 3vw, 2.4rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), transparent 42%),
    rgba(255, 255, 255, 0.035);
}

.trust-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trust-copy h2 {
  max-width: 620px;
  margin: 0.55rem 0 0;
  font-family: var(--idp-display);
  font-size: clamp(2.15rem, 4.4vw, 4.4rem);
  line-height: 1;
  font-weight: 800;
}

.trust-copy p {
  max-width: 590px;
  margin: 1rem 0 0;
  color: rgba(233, 241, 238, 0.68);
  line-height: 1.75;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
}

.trust-metrics div {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-top: 1rem;
}

.trust-metrics strong {
  display: block;
  color: var(--idp-gold);
  font-family: var(--idp-display);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1;
}

.trust-metrics span {
  display: block;
  margin-top: 0.55rem;
  color: rgba(233, 241, 238, 0.66);
  font-size: 0.9rem;
}

.trust-flow {
  position: relative;
  display: grid;
  gap: 0.75rem;
}

.trust-flow::before {
  content: "";
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 28px;
  width: 1px;
  background: linear-gradient(180deg, var(--idp-teal), rgba(255, 255, 255, 0.08));
}

.trust-flow-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 0.95rem;
  background: rgba(7, 16, 15, 0.46);
}

.trust-flow-item > span {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(32, 214, 164, 0.13);
  color: #9cffdf;
  font-weight: 900;
}

.trust-flow-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
  font-weight: 800;
}

.trust-flow-item p {
  margin: 0;
  color: rgba(233, 241, 238, 0.65);
  line-height: 1.55;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.trust-badges article {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.035);
}

.trust-badges i {
  color: var(--idp-gold);
  font-size: 1.28rem;
}

.trust-badges span {
  color: rgba(233, 241, 238, 0.78);
  font-weight: 800;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(32, 214, 164, 0.14);
  color: #9cffdf;
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(3rem, 7vw, 5rem) 0 2rem;
  background:
    linear-gradient(180deg, rgba(7, 16, 15, 0.92), #050b0a),
    #050b0a;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: clamp(1.2rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgba(255, 195, 0, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.04);
}

.footer-cta h2 {
  max-width: 620px;
  margin: 0.45rem 0 0;
  font-family: var(--idp-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  font-weight: 800;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.45fr) repeat(3, minmax(0, 0.72fr));
  gap: clamp(1.6rem, 4vw, 3rem);
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.footer-brand p {
  max-width: 430px;
  margin: 1.1rem 0 0;
  color: rgba(233, 241, 238, 0.66);
  line-height: 1.75;
}

.footer-logo {
  width: 184px;
  height: auto;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.footer-group {
  display: grid;
  align-content: start;
  gap: 0.78rem;
}

.footer-group h3 {
  margin: 0 0 0.2rem;
  color: var(--idp-soft);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-link {
  color: rgba(233, 241, 238, 0.62);
  text-decoration: none;
  font-weight: 700;
}

.footer-link:hover {
  color: var(--idp-gold);
}

.footer-note {
  color: rgba(233, 241, 238, 0.52);
  line-height: 1.65;
}

.social-link {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  color: rgba(233, 241, 238, 0.72);
  text-decoration: none;
}

.social-link:hover {
  color: var(--idp-gold);
  border-color: rgba(255, 195, 0, 0.42);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(233, 241, 238, 0.52);
  font-size: 0.92rem;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a {
  color: rgba(233, 241, 238, 0.58);
  text-decoration: none;
  font-weight: 700;
}

.footer-bottom a:hover {
  color: var(--idp-gold);
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(32, 214, 164, 0.16), transparent 28%),
    radial-gradient(circle at 18% 80%, rgba(255, 195, 0, 0.08), transparent 28%);
  pointer-events: none;
}

.about-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.about-hero-copy h1 {
  max-width: 820px;
  margin: 1.25rem 0 1rem;
  font-family: var(--idp-display);
  font-size: clamp(2.7rem, 6vw, 3.7rem);
  line-height: 1;
  font-weight: 800;
}

.about-hero-copy p {
  max-width: 680px;
  color: rgba(233, 241, 238, 0.72);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.8;
}

.about-visual {
  position: relative;
  min-height: 560px;
}

.about-shot {
  position: absolute;
  width: min(250px, 48vw);
  aspect-ratio: 516 / 1080;
  border: 10px solid #070b0b;
  border-radius: 34px;
  object-fit: cover;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.shot-one {
  top: 0;
  left: 8%;
  transform: rotate(-6deg);
}

.shot-two {
  right: 6%;
  bottom: 0;
  transform: rotate(5deg);
}

.about-proof-card {
  position: absolute;
  left: 0;
  bottom: 16%;
  max-width: 260px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(7, 16, 15, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.3);
}

.about-proof-card span {
  display: block;
  color: var(--idp-gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-proof-card strong {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--idp-display);
  font-size: 1.25rem;
  line-height: 1.2;
}

.about-statement {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.about-statement h2,
.about-cta h2 {
  margin: 0.55rem 0 0;
  font-family: var(--idp-display);
  font-size: clamp(2.1rem, 4.4vw, 4.4rem);
  line-height: 1.04;
  font-weight: 800;
}

.about-statement p {
  max-width: 820px;
  margin: 1.1rem auto 0;
  color: rgba(233, 241, 238, 0.68);
  line-height: 1.8;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.about-principles,
.about-value-grid {
  display: grid;
  gap: 1rem;
}

.about-principles article,
.about-value-grid article,
.about-timeline article {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.04);
}

.about-principles h3,
.about-value-grid h3,
.about-timeline h3 {
  margin: 1rem 0 0.45rem;
  font-size: 1.08rem;
  font-weight: 800;
}

.about-principles p,
.about-value-grid p,
.about-timeline p {
  margin: 0;
  color: rgba(233, 241, 238, 0.66);
  line-height: 1.68;
}

.about-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-timeline article {
  position: relative;
}

.about-timeline span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(32, 214, 164, 0.13);
  color: #9cffdf;
  font-weight: 900;
}

.about-values {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(480px, 1.25fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.about-value-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: clamp(1.2rem, 3vw, 2.2rem);
  background:
    linear-gradient(135deg, rgba(255, 195, 0, 0.1), transparent 44%),
    rgba(255, 255, 255, 0.04);
}

.about-cta h2 {
  max-width: 780px;
}

.product-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(3.4rem, 7vw, 6rem);
}

.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 195, 0, 0.13), transparent 28%),
    radial-gradient(circle at 18% 76%, rgba(32, 214, 164, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 58%);
  pointer-events: none;
}

.product-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.78fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.product-hero-copy h1 {
  max-width: 760px;
  margin: 1.2rem 0 1rem;
  font-family: var(--idp-display);
  font-size: clamp(2.8rem, 6.8vw, 4.9rem);
  font-weight: 800;
  line-height: 0.96;
}

.product-hero-copy p {
  max-width: 690px;
  color: rgba(233, 241, 238, 0.72);
  font-size: clamp(1.03rem, 1.6vw, 1.2rem);
  line-height: 1.8;
}

.product-hero-visual {
  position: relative;
  min-height: 620px;
}

.product-hero-visual::before {
  content: "";
  position: absolute;
  inset: 10% 4%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle, black 34%, transparent 72%);
}

.product-phone {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(280px, 58vw);
  aspect-ratio: 516 / 1080;
  overflow: hidden;
  border: 10px solid #070b0b;
  border-radius: 38px;
  background: #07100f;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.44);
  transform: translate(-50%, -50%) rotate(3deg);
}

.product-phone img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-orbit-card {
  position: absolute;
  z-index: 2;
  width: min(250px, 48vw);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(7, 16, 15, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  animation: floatY 6s ease-in-out infinite;
}

.product-orbit-card i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 195, 0, 0.12);
  color: var(--idp-gold);
  font-size: 1.15rem;
}

.product-orbit-card span {
  display: block;
  margin-top: 0.9rem;
  color: var(--idp-muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-orbit-card strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--idp-soft);
  font-size: 0.98rem;
  line-height: 1.3;
}

.orbit-wallet {
  top: 8%;
  left: 0;
}

.orbit-card {
  top: 28%;
  right: 0;
  animation-delay: -1.4s;
}

.orbit-token {
  left: 5%;
  bottom: 8%;
  animation-delay: -2.8s;
}

.product-suite-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.product-suite-card {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.product-suite-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 195, 0, 0.34);
  background: rgba(255, 255, 255, 0.065);
}

.product-suite-card.featured {
  grid-column: span 2;
  grid-row: span 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.7fr);
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.2rem, 2.5vw, 2rem);
  background:
    linear-gradient(135deg, rgba(255, 195, 0, 0.11), transparent 44%),
    rgba(255, 255, 255, 0.045);
}

.product-suite-card.featured figure {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 8px solid #070b0b;
  border-radius: 32px;
  background: #07100f;
}

.product-suite-card.featured img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 195, 0, 0.2);
  border-radius: 8px;
  padding: 0.48rem 0.7rem;
  background: rgba(255, 195, 0, 0.1);
  color: var(--idp-gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-suite-card h3 {
  margin: 1.1rem 0 0.6rem;
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.25;
}

.product-suite-card.featured h3 {
  max-width: 520px;
  font-family: var(--idp-display);
  font-size: clamp(1.8rem, 3.2vw, 1.2rem);
  line-height: 1.04;
}

.product-suite-card p {
  margin: 0;
  color: rgba(233, 241, 238, 0.66);
  line-height: 1.68;
}

.product-suite-card ul {
  display: grid;
  gap: 0.6rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

.product-suite-card li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(233, 241, 238, 0.78);
  font-weight: 800;
}

.product-suite-card li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--idp-teal);
  box-shadow: 0 0 18px rgba(32, 214, 164, 0.45);
}

.product-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.product-flow-steps {
  position: relative;
  display: grid;
  gap: 0.85rem;
}

.product-flow-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 27px;
  width: 1px;
  background: linear-gradient(180deg, var(--idp-gold), rgba(255, 255, 255, 0.08));
}

.product-flow-steps article {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 1rem;
  row-gap: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
}

.product-flow-steps span {
  grid-row: span 2;
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 195, 0, 0.12);
  color: var(--idp-gold);
  font-weight: 900;
}

.product-flow-steps h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
}

.product-flow-steps p {
  margin: 0;
  color: rgba(233, 241, 238, 0.66);
  line-height: 1.62;
}

.product-control-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: clamp(1.2rem, 3vw, 2.2rem);
  background:
    linear-gradient(135deg, rgba(32, 214, 164, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.04);
}

.product-control-panel h2 {
  max-width: 760px;
  margin: 0.55rem 0 0;
  font-family: var(--idp-display);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  font-weight: 800;
}

.product-control-panel p {
  max-width: 720px;
  margin: 1rem 0 0;
  color: rgba(233, 241, 238, 0.68);
  line-height: 1.78;
}

.control-list {
  display: grid;
  gap: 0.75rem;
}

.control-list span {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 0.8rem 0.9rem;
  background: rgba(7, 16, 15, 0.48);
  color: rgba(233, 241, 238, 0.78);
  font-weight: 800;
}

.control-list i {
  color: var(--idp-teal);
}

.help-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(3.4rem, 7vw, 5.4rem);
}

.help-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(32, 214, 164, 0.16), transparent 28%),
    radial-gradient(circle at 8% 76%, rgba(255, 195, 0, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 62%);
  pointer-events: none;
}

.help-hero-inner {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.help-hero h1 {
  margin: 1.15rem 0 1rem;
  font-family: var(--idp-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.96;
  font-weight: 800;
}

.help-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(233, 241, 238, 0.72);
  font-size: clamp(1.03rem, 1.6vw, 1.2rem);
  line-height: 1.8;
}

.help-search {
  max-width: 860px;
  min-height: 72px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  margin: 2rem auto 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  padding: 0.6rem;
  background: rgba(7, 16, 15, 0.72);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.help-search i {
  color: var(--idp-gold);
  font-size: 1.25rem;
}

.help-search input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--idp-soft);
  font: inherit;
  font-size: 1rem;
  outline: none;
}

.help-search input::placeholder {
  color: rgba(233, 241, 238, 0.44);
}

.help-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.help-topic-grid article,
.help-sidebar,
.help-articles article,
.help-contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.help-topic-grid article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.2rem;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.help-topic-grid article:hover,
.help-articles article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 195, 0, 0.34);
  background: rgba(255, 255, 255, 0.065);
}

.help-topic-grid h3 {
  margin: 1.15rem 0 0.6rem;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.25;
}

.help-topic-grid p {
  margin: 0;
  color: rgba(233, 241, 238, 0.66);
  line-height: 1.65;
}

.help-topic-grid strong {
  margin-top: auto;
  padding-top: 1.1rem;
  color: var(--idp-gold);
  font-size: 0.88rem;
}

.help-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}

.help-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 0.6rem;
  padding: 1rem;
}

.help-sidebar .section-kicker {
  margin-bottom: 0.4rem;
}

.help-sidebar a {
  min-height: 44px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 0.7rem 0.8rem;
  color: rgba(233, 241, 238, 0.72);
  text-decoration: none;
  font-weight: 800;
  transition: color 180ms ease, background-color 180ms ease;
}

.help-sidebar a:hover {
  background: rgba(255, 195, 0, 0.1);
  color: var(--idp-gold);
}

.help-articles {
  display: grid;
  gap: 1rem;
}

.help-articles article {
  padding: clamp(1rem, 2vw, 1.4rem);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.help-articles span {
  color: var(--idp-muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.help-articles h3 {
  margin: 0.6rem 0 0.6rem;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 900;
}

.help-articles p {
  max-width: 860px;
  margin: 0;
  color: rgba(233, 241, 238, 0.66);
  line-height: 1.72;
}

.help-articles a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--idp-gold);
  font-weight: 900;
  text-decoration: none;
}

.help-articles a:hover {
  color: var(--idp-gold-2);
}

.help-contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgba(255, 195, 0, 0.1), transparent 44%),
    rgba(255, 255, 255, 0.04);
}

.help-contact-panel h2 {
  max-width: 740px;
  margin: 0.5rem 0 0;
  font-family: var(--idp-display);
  font-size: clamp(1.8rem, 3.4vw, 3.35rem);
  line-height: 1.06;
  font-weight: 800;
}

.help-contact-panel p {
  max-width: 680px;
  margin: 0.9rem 0 0;
  color: rgba(233, 241, 238, 0.66);
  line-height: 1.72;
}

.policy-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
}

.policy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 195, 0, 0.12), transparent 28%),
    radial-gradient(circle at 12% 78%, rgba(32, 214, 164, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 62%);
  pointer-events: none;
}

.policy-hero-inner {
  position: relative;
  max-width: 930px;
}

.policy-hero h1 {
  margin: 1.15rem 0 1rem;
  font-family: var(--idp-display);
  font-size: clamp(2.75rem, 6vw, 5.3rem);
  line-height: 0.98;
  font-weight: 800;
}

.policy-hero p {
  max-width: 780px;
  color: rgba(233, 241, 238, 0.72);
  font-size: clamp(1.03rem, 1.6vw, 1.18rem);
  line-height: 1.8;
}

.policy-updated {
  display: inline-flex;
  margin-top: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(233, 241, 238, 0.68);
  font-size: 0.86rem;
  font-weight: 800;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}

.policy-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
}

.policy-sidebar .section-kicker {
  margin-bottom: 0.4rem;
}

.policy-sidebar a {
  min-height: 44px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 0.7rem 0.8rem;
  color: rgba(233, 241, 238, 0.72);
  text-decoration: none;
  font-weight: 800;
  transition: color 180ms ease, background-color 180ms ease;
}

.policy-sidebar a:hover {
  background: rgba(255, 195, 0, 0.1);
  color: var(--idp-gold);
}

.policy-content {
  display: grid;
  gap: 1rem;
}

.policy-content article,
.security-grid article {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: clamp(1.1rem, 2vw, 1.6rem);
  background: rgba(255, 255, 255, 0.04);
}

.policy-content h2,
.security-grid h2 {
  margin: 0 0 0.8rem;
  font-family: var(--idp-display);
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  line-height: 1.08;
  font-weight: 800;
}

.policy-content p,
.policy-content li,
.security-grid p {
  color: rgba(233, 241, 238, 0.68);
  line-height: 1.78;
}

.policy-content p {
  margin: 0 0 0.85rem;
}

.policy-content p:last-child {
  margin-bottom: 0;
}

.policy-content ul {
  display: grid;
  gap: 0.65rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.policy-content li {
  position: relative;
  padding-left: 1.1rem;
}

.policy-content li::before {
  content: "";
  position: absolute;
  top: 0.73rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--idp-teal);
}

.policy-content a {
  color: var(--idp-gold);
  font-weight: 900;
  text-decoration: none;
}

.policy-content a:hover {
  color: var(--idp-gold-2);
}

.policy-note {
  border-left: 3px solid var(--idp-gold);
  padding-left: 1rem;
  color: rgba(255, 224, 138, 0.86) !important;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.security-grid article {
  min-height: 280px;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.security-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 195, 0, 0.34);
  background: rgba(255, 255, 255, 0.065);
}

.security-grid h2 {
  margin-top: 1.1rem;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.security-grid p {
  margin: 0;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 195, 0, 0.08), transparent 34%),
    radial-gradient(circle at 78% 24%, rgba(32, 214, 164, 0.18), transparent 30%),
    radial-gradient(circle at 14% 82%, rgba(106, 166, 255, 0.12), transparent 26%);
  pointer-events: none;
}

.contact-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.54fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 5rem);
}

.contact-hero-copy h1 {
  max-width: 840px;
  margin: 1.25rem 0 1rem;
  font-family: var(--idp-display);
  font-size: clamp(2.85rem, 6.4vw, 4.75rem);
  line-height: 0.96;
  font-weight: 800;
}

.contact-hero-copy p {
  max-width: 680px;
  color: rgba(233, 241, 238, 0.72);
  font-size: clamp(1.03rem, 1.6vw, 1.2rem);
  line-height: 1.8;
}

.contact-hero-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.075), transparent 52%),
    rgba(7, 16, 15, 0.66);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.contact-hero-card::before {
  content: "";
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 1.4rem;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 195, 0, 0.94), rgba(32, 214, 164, 0.92)),
    var(--idp-gold);
  box-shadow: 0 18px 46px rgba(32, 214, 164, 0.18);
}

.contact-hero-card span {
  color: var(--idp-muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-hero-card strong {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--idp-display);
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  line-height: 1.05;
}

.contact-hero-card p {
  margin: 1rem 0 1.25rem;
  color: rgba(233, 241, 238, 0.66);
  line-height: 1.7;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-actions article,
.support-grid article,
.contact-panel,
.contact-cta {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-actions article {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(1.2rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgba(255, 195, 0, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.contact-actions article:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(32, 214, 164, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.04);
}

.contact-actions article:hover,
.support-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 195, 0, 0.34);
  background-color: rgba(255, 255, 255, 0.065);
}

.contact-actions h2 {
  margin: 1.35rem 0 0.7rem;
  font-family: var(--idp-display);
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.05;
  font-weight: 800;
}

.contact-actions p {
  max-width: 560px;
  margin: 0 0 1.35rem;
  color: rgba(233, 241, 238, 0.66);
  line-height: 1.75;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.support-grid article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.support-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.support-card-top i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(32, 214, 164, 0.13);
  color: #9cffdf;
  font-size: 1.18rem;
}

.support-card-top span {
  color: var(--idp-muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.support-grid h3 {
  margin: 1.45rem 0 0.6rem;
  font-size: 1.18rem;
  font-weight: 900;
}

.support-grid p {
  margin: 0;
  color: rgba(233, 241, 238, 0.66);
  line-height: 1.68;
}

.support-grid a {
  margin-top: auto;
  padding-top: 1.25rem;
  color: var(--idp-gold);
  font-weight: 900;
  text-decoration: none;
}

.support-grid a:hover {
  color: var(--idp-gold-2);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  padding: clamp(1.2rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 46%),
    rgba(255, 255, 255, 0.035);
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  min-height: 100%;
}

.contact-details h2 {
  margin: 0.55rem 0 0;
  font-family: var(--idp-display);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  font-weight: 800;
}

.contact-detail-list {
  display: grid;
  gap: 0.85rem;
}

.contact-detail-list div {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 0.85rem;
  row-gap: 0.25rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 0.9rem;
  background: rgba(7, 16, 15, 0.48);
}

.contact-detail-list i {
  grid-row: span 2;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 195, 0, 0.12);
  color: var(--idp-gold);
}

.contact-detail-list span {
  color: var(--idp-muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-detail-list strong {
  color: var(--idp-soft);
  font-size: 0.98rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  border-radius: 8px;
  padding: clamp(1rem, 2vw, 1.4rem);
  background: rgba(7, 16, 15, 0.52);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.52rem;
  color: rgba(233, 241, 238, 0.74);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--idp-soft);
  font: inherit;
  line-height: 1.45;
  outline: none;
  padding: 0.92rem 1rem;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form select {
  color-scheme: dark;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(233, 241, 238, 0.42);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 195, 0, 0.58);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 0 4px rgba(255, 195, 0, 0.08);
}

.contact-form .btn-idp {
  justify-self: start;
}

.contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgba(32, 214, 164, 0.12), transparent 44%),
    rgba(255, 255, 255, 0.04);
}

.contact-cta h2 {
  max-width: 720px;
  margin: 0.5rem 0 0;
  font-family: var(--idp-display);
  font-size: clamp(1.8rem, 3.4vw, 3.35rem);
  line-height: 1.06;
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .site-shell {
    background-size: min(560px, 110vw);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .badge-top {
    right: 8%;
  }

  .badge-bottom {
    left: 9%;
  }

  .nav-container {
    min-height: 70px;
  }

  .nav-brand img {
    width: 154px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: fixed;
    inset: 0;
    z-index: 40;
    min-height: 100vh;
    padding: 6.4rem 1rem 1.2rem;
    align-items: stretch;
    justify-content: center;
    background:
      linear-gradient(180deg, rgba(7, 16, 15, 0.82), rgba(7, 16, 15, 0.94)),
      rgba(7, 16, 15, 0.82);
    backdrop-filter: blur(24px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transition: opacity 220ms ease, transform 240ms ease;
  }

  .nav-panel::before {
    content: "";
    position: absolute;
    inset: 70px 1rem auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 195, 0, 0.45), transparent);
  }

  .nav-open .nav-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-panel-inner {
    width: min(440px, 100%);
    height: fit-content;
    margin: auto;
    display: grid;
    gap: 0.7rem;
    padding: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  }

  .nav-link {
    min-height: 54px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    font-size: 1.05rem;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link:focus,
  .nav-link.active {
    background: rgba(255, 195, 0, 0.1);
  }

  .nav-download {
    width: 100%;
    min-height: 54px;
    margin-left: 0;
  }

  .nav-open {
    overflow: hidden;
  }

  .dashboard-preview {
    right: 4rem;
  }

  .phone-preview {
    width: 220px;
  }

  .feature-grid,
  .value-grid,
  .infrastructure-grid,
  .metric-band,
  .trust-console,
  .trust-badges,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .infrastructure-card.primary {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .feature-media {
    min-height: 220px;
  }

  .footer-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .about-hero-grid,
  .about-split,
  .about-values,
  .product-hero-grid,
  .product-flow,
  .product-control-panel,
  .help-layout,
  .policy-layout,
  .contact-hero-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .product-hero-visual {
    min-height: 560px;
  }

  .about-visual {
    min-height: 520px;
  }

  .about-timeline,
  .product-suite-grid,
  .help-topic-grid,
  .security-grid,
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .help-sidebar,
  .policy-sidebar {
    position: static;
  }

  .product-suite-card.featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: auto;
    padding-top: 4rem;
  }

  .hero-particles::before {
    mask-image: linear-gradient(180deg, black, black 62%, transparent);
  }

  .hero-title {
    font-size: clamp(2.35rem, 13vw, 3.85rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn-idp,
  .hero-actions .btn-idp-outline {
    width: 100%;
  }

  .hero-trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 530px;
  }

  .app-phone {
    width: min(310px, 86vw);
  }

  .floating-badge {
    display: none;
  }

  .product-stage {
    min-height: 610px;
  }

  .dashboard-preview {
    left: 1rem;
    right: 1rem;
    top: 1rem;
  }

  .phone-preview {
    left: 50%;
    right: auto;
    bottom: 1rem;
    width: min(280px, calc(100% - 2rem));
    transform: translateX(-50%);
  }

  .stat-grid,
  .feature-grid,
  .value-grid,
  .infrastructure-grid,
  .metric-band,
  .trust-console,
  .trust-badges,
  .testimonial-grid,
  .product-suite-grid,
  .help-topic-grid,
  .security-grid,
  .contact-actions,
  .support-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-metrics {
    grid-template-columns: 1fr;
  }

  .trust-flow::before {
    left: 22px;
  }

  .trust-flow-item {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .trust-flow-item > span {
    width: 44px;
    height: 44px;
  }

  .feature-media {
    min-height: 240px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-hero {
    padding-top: 4rem;
  }

  .product-hero {
    padding-top: 4rem;
  }

  .help-hero {
    padding-top: 4rem;
  }

  .policy-hero {
    padding-top: 4rem;
  }

  .help-search {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .help-search .btn-idp {
    grid-column: 1 / -1;
    width: 100%;
  }

  .product-hero-visual {
    min-height: 520px;
  }

  .product-phone {
    width: min(245px, 70vw);
  }

  .product-orbit-card {
    width: min(220px, 72vw);
  }

  .orbit-wallet {
    top: 0;
    left: 0;
  }

  .orbit-card {
    top: 35%;
    right: 0;
  }

  .orbit-token {
    left: 0;
    bottom: 0;
  }

  .about-visual {
    min-height: 470px;
  }

  .about-shot {
    width: min(210px, 56vw);
  }

  .shot-one {
    left: 0;
  }

  .shot-two {
    right: 0;
  }

  .about-proof-card {
    left: 50%;
    bottom: 7%;
    transform: translateX(-50%);
    width: min(260px, 86vw);
  }

  .about-timeline,
  .about-value-grid {
    grid-template-columns: 1fr;
  }

  .product-suite-card.featured {
    grid-template-columns: 1fr;
  }

  .product-suite-card.featured figure {
    min-height: 420px;
  }

  .product-flow-steps::before {
    left: 22px;
  }

  .product-flow-steps article {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .product-flow-steps span {
    width: 44px;
    height: 44px;
  }

  .about-cta,
  .contact-cta,
  .help-contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .help-topic-grid article {
    min-height: auto;
  }

  .security-grid article {
    min-height: auto;
  }

  .help-contact-panel .btn-idp {
    width: 100%;
  }

  .contact-hero {
    padding-top: 4rem;
  }

  .contact-actions article,
  .support-grid article {
    min-height: auto;
  }

  .contact-panel {
    padding: 1rem;
  }

  .contact-detail-list div {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .contact-detail-list i {
    width: 42px;
    height: 42px;
  }

  .contact-form .btn-idp,
  .contact-cta .btn-idp {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
