/* Heritage AI — section layout styles */

.static-prerender {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #1A130A;
}
.static-v4-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.static-v4-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.js .static-prerender > header,
.js .static-prerender > section {
  visibility: hidden;
}

/* ── Header ──────────────────────────────────────────── */
.hd {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 220ms var(--ease), border-color 220ms var(--ease), backdrop-filter 220ms var(--ease);
  border-bottom: 1px solid transparent;
}
.hd-scrolled {
  background: var(--bg-header-blur);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--border-subtle);
}
.hd-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  height: 76px;
  gap: 24px;
  position: relative;
}
.hd-brand {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 4px;
  color: var(--accent);
}
.hd-wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.hd-ai {
  font-style: normal;
  color: var(--accent);
  font-family: var(--font-display);
  margin-left: 2px;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 40;
}
.hd-left {
  position: relative;
  justify-self: start;
}
.hd-menu-trigger,
.hd-language-trigger,
.hd-auth-card {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  background: color-mix(in srgb, var(--bg-secondary) 76%, transparent);
  color: var(--text-secondary);
  box-shadow: 0 14px 34px -30px rgba(11,15,20,0.35);
  transition: border-color 160ms var(--ease), color 160ms var(--ease), background 160ms var(--ease);
}
.hd-menu-trigger,
.hd-language-trigger {
  padding: 0 12px;
  cursor: pointer;
  font: 600 12px/1 var(--font-mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.hd-menu-trigger:hover,
.hd-language-trigger:hover,
.hd-auth-card:hover {
  color: var(--text-primary);
  border-color: var(--accent-line);
  background: var(--bg-secondary);
}
.hd-menu-lines {
  width: 14px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}
.hd-menu-lines i {
  width: 14px;
  height: 1px;
  display: block;
  background: currentColor;
}
.hd-menu-panel,
.hd-language-panel {
  position: absolute;
  top: calc(100% + 10px);
  min-width: 230px;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background: var(--surface-drawer);
  backdrop-filter: blur(22px) saturate(155%);
  -webkit-backdrop-filter: blur(22px) saturate(155%);
  box-shadow: 0 30px 80px -54px rgba(11,15,20,0.5);
}
.hd-menu-panel {
  left: 0;
}
.hd-menu-panel.is-open,
.hd-language-panel.is-open {
  display: flex;
}
.hd-menu-panel a {
  color: var(--text-secondary);
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 14px;
  transition: color 150ms var(--ease), background 150ms var(--ease);
}
.hd-menu-panel a:hover {
  color: var(--text-primary);
  background: var(--hover-overlay);
}
.hd-right {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}
.hd-language {
  position: relative;
}
.hd-language-panel {
  right: 0;
  min-width: 210px;
}
.hd-language-panel button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  font: 600 12px/1 var(--font-mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.hd-language-panel button:hover {
  background: var(--hover-overlay);
  color: var(--text-primary);
}
.hd-language-panel button.is-on { color: var(--accent); }
.hd-language-panel em {
  font: 500 12px/1 var(--font-sans);
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-secondary);
}
.hd-auth-card {
  min-width: 74px;
  padding: 0 13px;
  font-size: 13px;
  font-weight: 600;
}
.hd-cta {
  color: var(--bg-primary);
  border-color: var(--accent);
  background: var(--accent);
}
.hd-cta:hover {
  color: var(--bg-primary);
  background: var(--accent-hover);
}

@media (max-width: 760px) {
  .hd-inner {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }
  .hd-brand { justify-self: center; }
  .hd-wordmark { font-size: 19px; }
  .hd-menu-trigger span:not(.hd-menu-lines),
  .hd-language-panel em {
    display: none;
  }
  .hd-auth-card {
    min-width: 0;
    padding: 0 10px;
    font-size: 12px;
  }
  .hd-signin { display: none; }
  .hd-menu-panel {
    min-width: min(260px, calc(100vw - 28px));
  }
}

/* ── Section heads ───────────────────────────────────── */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 64px;
  max-width: min(1120px, 100%);
  text-align: start;
  align-items: flex-start;
}
.section-head::before,
.problem-head::before,
.sec-copy::before,
.app-exp-copy::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 2px;
  background: var(--accent-line);
}
.section-head-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  align-items: center;
}
.section-head-center .body-lg { max-width: 600px; }
.section-head:not(.section-head-center) .body-lg {
  max-width: min(920px, 100%);
}
.problem-head .h-section,
.how .section-head .h-section,
.security .h-section,
.platforms .section-head .h-section,
.audiences .section-head .h-section,
.faq .section-head .h-section {
  max-width: none;
}
.problem-head .body-lg,
.how .section-head .body-lg,
.security .body-lg,
.platforms .section-head .body-lg,
.audiences .section-head .body-lg {
  max-width: none;
  width: 100%;
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  padding-top: 180px;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
  min-height: min(960px, 100svh);
  --text-primary: #F4EFE5;
  --text-secondary: rgba(244,239,229,0.76);
  background: #1A130A;
  color: #F4EFE5;
}
.v4-hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}
.v4-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,19,10,0.5) 0%, rgba(26,19,10,0.78) 68%, rgba(26,19,10,0.9) 100%),
    radial-gradient(60% 50% at 70% 40%, rgba(201,169,97,0.16), transparent 70%),
    radial-gradient(50% 60% at 20% 70%, rgba(244,239,229,0.08), transparent 70%);
  z-index: -2;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px),
    linear-gradient(0deg, var(--grid-line) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center;
  mask-image: radial-gradient(60% 60% at 50% 30%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(60% 60% at 50% 30%, black, transparent 75%);
  opacity: 0.4;
  z-index: -1;
}
.hero .display {
  color: #F4EFE5;
}
.hero .body-lg,
.hero .hero-h3,
.hero .hero-micro {
  color: var(--text-secondary);
}
.hero .badge-gold {
  background: rgba(244,239,229,0.1);
  border-color: rgba(201,169,97,0.32);
  color: #F4EFE5;
}
.hero .hero-trust {
  background: rgba(244,239,229,0.1);
  border-color: rgba(201,169,97,0.3);
}
.hero .hero-trust-item,
.hero .hero-trust-item svg {
  color: rgba(244,239,229,0.82);
}
.hero .hero-trust-sep {
  background: rgba(244,239,229,0.2);
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 880px);
  gap: 0;
  align-items: center;
  justify-content: center;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}
.hero h1 { margin: 0; }
.hero .display { line-height: 1.08; }
.hero-h3 {
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.5;
  display: block;
  margin-top: 16px;
  letter-spacing: 0;
}
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
@media (max-width: 560px) {
  .hero-ctas .btn { flex: 1 1 100%; }
}
.hero-micro {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-tertiary);
}
.hero-micro svg { color: var(--accent); }
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  width: min(920px, 100%);
  margin: 10px auto 0;
  padding: 12px 16px;
  border: 1px solid var(--heritage-blue-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.52), rgba(255,255,255,0.28)),
    var(--heritage-blue-soft);
}
.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--heritage-blue);
  letter-spacing: 0.01em;
  font-weight: 600;
}
.hero-trust-item svg { color: var(--heritage-blue); opacity: 0.82; }
.hero-trust-sep {
  width: 1px;
  height: 12px;
  background: var(--heritage-blue-line);
}

.hero-video {
  width: min(920px, 100%);
  margin: 10px auto 0;
}
.problem-founder-video {
  grid-column: 2;
  align-self: center;
  width: 100%;
  max-width: 520px;
  margin: 0;
}
.problem-founder-video figcaption {
  color: var(--text-tertiary);
}
.hero .hero-video-frame video {
  aspect-ratio: 21 / 6;
}
.hero-video-frame {
  position: relative;
  display: block;
  width: 100%;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface-1);
  box-shadow: var(--shadow-soft);
}
.hero-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #050505;
}
.hero-video-unmute {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(9, 12, 18, 0.78);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}
.hero-video-controls {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-video-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(9, 12, 18, 0.78);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-video-unmute:hover,
.hero-video-control:hover {
  background: rgba(9, 12, 18, 0.9);
}
.hero-video figcaption {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-tertiary);
}

@media (max-width: 960px) {
  .hero { padding-top: 130px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .problem-founder-video,
  .problem-body-full {
    grid-column: 1;
  }
}

@media (max-width: 640px) {
  .hero-video { margin-top: 4px; }
  .hero-video-frame { border-radius: 6px; }
  .hero-video-unmute {
    right: 10px;
    bottom: 10px;
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }
  .hero-video-controls {
    left: 10px;
    bottom: 10px;
    gap: 6px;
  }
  .hero-video-control {
    width: 32px;
    height: 32px;
  }
}

/* ── Problem ─────────────────────────────────────────── */
.problem-head { max-width: min(1120px, 100%); margin-bottom: 80px; }
.problem-head {
  text-align: start;
}
.problem-head .h-section { max-width: none; }
.problem-body-full {
  grid-column: 1 / -1;
  max-width: none !important;
  width: 100%;
  text-align: justify;
}
.section-head--full {
  grid-template-columns: 1fr;
}
.section-head--full .h-section,
.section-head--full .body-lg {
  max-width: none;
  width: 100%;
}
.sec-copy--center {
  align-items: center;
}
.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.problem-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 280px;
  text-align: center;
}
.problem-stat-value {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  color: var(--accent);
  font-weight: 400;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 40;
  letter-spacing: -0.012em;
  margin-bottom: 22px;
}
.problem-stat-label {
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-primary);
  font-weight: 400;
  flex: 1;
  margin: 0;
}
.problem-stat .hairline { width: 100%; }
.problem-stat .caption {
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}
.problem-flow {
  background: linear-gradient(180deg, var(--bg-secondary), var(--bg-secondary));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 40px;
  margin-bottom: 64px;
}
.problem-flow-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.problem-flow-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.problem-flow-step {
  flex: 1;
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--surface-recess);
  border: 1px solid var(--border-subtle);
}
.problem-flow-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 12px;
}
.problem-flow-label {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.problem-flow-body {
  font-size: 13px;
  color: var(--text-secondary);
}
.problem-flow-arrow {
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: var(--text-tertiary);
}
.problem-closing {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  text-align: center;
}
.problem-closing p {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-primary);
  font-style: normal;
  margin: 0;
  letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 40;
}
.problem-video {
  margin: 34px auto 0;
  max-width: 1040px;
}
.yt-facade {
  margin: 34px auto 0;
  max-width: 1040px;
}
.yt-facade-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  background: #050505;
  box-shadow: var(--shadow-soft);
}
.yt-facade-frame iframe,
.yt-facade-poster,
.yt-facade-poster img {
  display: block;
  width: 100%;
  height: 100%;
}
.yt-facade-frame iframe {
  border: 0;
}
.yt-facade-poster {
  position: relative;
  cursor: pointer;
  border: 0;
  padding: 0;
  background: #050505;
  color: var(--text-primary);
}
.yt-facade-poster img {
  object-fit: cover;
  opacity: 0.94;
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}
.yt-facade-poster:hover img {
  transform: scale(1.015);
  opacity: 1;
}
.yt-facade-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: rgba(11, 15, 20, 0.72);
  color: var(--accent-hover);
  border: 1px solid var(--accent-line);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}
.yt-facade figcaption {
  margin-top: 10px;
  color: var(--text-secondary);
  font-size: 13px;
  text-align: center;
}
.section-video {
  margin-top: 34px;
}
.problem-process-figure {
  margin: 40px auto 0;
  max-width: 1040px;
}
.problem-process-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 900px) {
  .problem-stats { grid-template-columns: 1fr; }
  .problem-flow { padding: 24px; }
  .problem-flow-steps { flex-direction: column; gap: 8px; }
  .problem-flow-arrow { transform: rotate(90deg); justify-content: center; padding: 4px 0; }
  .problem-closing p { font-size: 22px; }
  .problem-video { margin-top: 24px; }
  .yt-facade { margin-top: 24px; }
  .yt-facade-frame { border-radius: 14px; }
  .yt-facade-play { width: 60px; height: 60px; }
  .problem-process-figure { margin-top: 28px; }
  .problem-process-figure img { border-radius: 14px; }
}

/* ── How it works ────────────────────────────────────── */
.how { padding-bottom: 48px; }
.how-grid {
  display: grid;
  grid-template-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
  gap: 20px;
  align-items: stretch;
}
.how-card {
  background: linear-gradient(180deg, var(--bg-secondary), var(--bg-secondary));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 220ms var(--ease), transform 220ms var(--ease);
}
.how-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.how-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--bg-primary);
  position: absolute;
  top: 24px;
  inset-inline-end: 28px;
  padding: 6px 10px;
  background: var(--text-primary);
  border-radius: 4px;
}
.how-illus {
  width: 56px; height: 56px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}
.how-connector {
  align-self: center;
  width: 16px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-line), transparent);
}
.how-video-wrap {
  margin: 32px auto 0;
  max-width: 1040px;
}
.how-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  background: var(--surface-recess);
}

@media (max-width: 1000px) {
  .how { padding-bottom: 32px; }
  .how-grid { grid-template-columns: 1fr; }
  .how-connector { width: 1px; height: 16px; background: linear-gradient(180deg, var(--accent-line), transparent); justify-self: start; margin-left: 36px; }
  .how-video-wrap { margin-top: 28px; }
  .how-video { border-radius: 14px; }
}

/* ── Features ────────────────────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  overflow: hidden;
  position: relative;
}
.feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(201,169,97,0.08);
  border: 1px solid var(--accent-line);
  color: var(--accent);
  display: grid;
  place-items: center;
}
.feat-corner {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,97,0.04), transparent 70%);
  pointer-events: none;
}
.v4-proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  border: 1px solid var(--border-subtle);
  background: var(--border-subtle);
}
.v4-proof-item {
  min-height: 210px;
  padding: 28px 24px;
  background: var(--bg-secondary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.v4-proof-value {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.012em;
  color: var(--accent);
  font-weight: 400;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 40;
  overflow-wrap: anywhere;
}
.v4-proof-item .body {
  margin: 24px 0 0;
  max-width: 26ch;
  color: var(--text-primary);
}
@media (max-width: 900px) { .feat-grid { grid-template-columns: 1fr; } }
@media (max-width: 1100px) and (min-width: 901px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) {
  .v4-proof-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .v4-proof-band { grid-template-columns: 1fr; }
  .v4-proof-item { min-height: 170px; }
}

/* ── Security ────────────────────────────────────────── */
.security {
  position: relative;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-security-deep) 50%, var(--bg-primary) 100%);
}
.security-bg {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(201,169,97,0.03) 0px, rgba(201,169,97,0.03) 1px,
      transparent 1px, transparent 60px);
  opacity: 0.5;
  pointer-events: none;
}
.sec-top {
  max-width: min(1120px, 100%);
  margin-bottom: 80px;
}
.sec-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--accent-line);
  width: fit-content;
  transition: gap 200ms var(--ease);
}
.sec-proof:hover { gap: 14px; }

.sec-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 64px;
  border-top: 1px solid var(--border-subtle);
}
.sec-pillar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sec-pillar-num { color: var(--accent); }
.sec-pillar h3 { color: var(--text-primary); }

@media (max-width: 960px) {
  .sec-pillars { grid-template-columns: 1fr; gap: 32px; }
}

/* ── App Experience ──────────────────────────────────── */
.app-exp {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 42%, var(--bg-primary) 100%);
}
.app-exp::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px),
    linear-gradient(0deg, var(--grid-line) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 78%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, black 18%, black 78%, transparent);
  opacity: 0.35;
  pointer-events: none;
}
.app-exp-layout {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.app-exp-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  max-width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}
.app-exp-copy .body-lg {
  margin: 0;
  max-width: min(920px, 100%);
}
.app-exp-screen-group {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.app-exp-integrated {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 370px);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  min-height: 610px;
  padding: clamp(28px, 5vw, 56px);
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.app-exp-integrated::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(48% 70% at 78% 45%, rgba(217,188,120,0.14), transparent 74%),
    linear-gradient(90deg, color-mix(in srgb, var(--bg-secondary) 82%, transparent), transparent 76%);
  opacity: 0.9;
}
.app-exp-integrated-copy {
  max-width: 560px;
}
.app-exp-integrated-copy .app-exp-platform-label {
  margin-bottom: 18px;
}
.app-exp-integrated-device {
  position: relative;
  width: min(100%, 360px);
  height: 548px;
  justify-self: center;
  z-index: 1;
}
.app-exp-integrated-device > div {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(0.62);
  transform-origin: top center;
  filter: drop-shadow(0 30px 46px rgba(11,15,20,0.16));
}
.app-exp-integrated-android > div {
  transform: translateX(-50%) scale(0.56);
}
.app-exp-group-copy {
  max-width: 760px;
}
.app-exp-group-copy h3 {
  margin: 0 0 6px;
  color: var(--text-primary);
  font: 500 26px/1.12 var(--font-display);
  letter-spacing: 0;
}
.app-exp-group-copy p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}
.app-exp-platform-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  color: var(--accent);
  background: var(--accent-soft);
  font: 12px/1 var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.app-exp-mobile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.app-exp-android-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.app-exp-screen-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  background:
    radial-gradient(70% 50% at 50% 0%, rgba(217,188,120,0.12), transparent 72%),
    linear-gradient(180deg, #F4EFE5, #FBF7ED);
  box-shadow: 0 30px 80px -56px rgba(11,15,20,0.42);
}
.app-exp-screen-card figcaption {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid rgba(205,190,156,0.5);
  background: rgba(255,255,255,0.72);
  color: #6E6149;
  font: 11px/1 var(--font-mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.app-exp-phone-card {
  min-width: 0;
}
.app-exp-single-phone-card {
  width: 100%;
  max-width: 380px;
}
.app-exp-phone-stage {
  height: 548px;
  position: relative;
  overflow: hidden;
}
.app-exp-phone-stage > div {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) scale(0.58);
  transform-origin: top center;
  filter: drop-shadow(0 24px 40px rgba(11,15,20,0.16));
}
.app-exp-android-grid .app-exp-phone-stage > div {
  transform: translateX(-50%) scale(0.52);
}
.app-exp-desktop-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.plat-desktop-single {
  gap: 0;
}
.plat-desktop-single .app-exp-desktop-card {
  width: 100%;
}
.app-exp-nav-hint {
  justify-self: center;
  margin-top: -8px;
  color: var(--accent);
  font: 11px/1.2 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.app-exp-desktop-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.app-exp-desktop-card figcaption {
  min-height: 0;
  padding: 0;
  margin-bottom: 10px;
  border: 0;
  background: transparent;
  color: var(--text-tertiary);
}
.app-exp-desktop-stage {
  position: relative;
  height: 610px;
  overflow: hidden;
}
.app-exp-desktop-scale {
  position: absolute;
  left: 50%;
  top: 34px;
  width: 1440px;
  height: 900px;
  transform: translateX(-50%) scale(0.58);
  transform-origin: top center;
}

@media (max-width: 1180px) {
  .app-exp-mobile-grid,
  .app-exp-android-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .app-exp-desktop-stage { height: 520px; }
  .app-exp-desktop-scale { transform: translateX(-50%) scale(0.49); }
}

@media (max-width: 700px) {
  .app-exp-layout { gap: 34px; }
  .app-exp-integrated {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 28px 0 0;
    border-bottom: 0;
    border-top-color: var(--border-subtle);
  }
  .app-exp-integrated::before {
    inset: 0 -20px;
  }
  .app-exp-integrated-copy {
    padding: 0 18px;
  }
  .app-exp-integrated-device {
    height: 620px;
  }
  .app-exp-integrated-device > div,
  .app-exp-integrated-android > div {
    transform: translateX(-50%) scale(0.66);
  }
  .app-exp-mobile-grid,
  .app-exp-android-grid {
    grid-template-columns: 1fr;
  }
  .app-exp-phone-stage { height: 620px; }
  .app-exp-phone-stage > div,
  .app-exp-android-grid .app-exp-phone-stage > div {
    transform: translateX(-50%) scale(0.66);
  }
  .app-exp-desktop-stage { height: 390px; }
  .app-exp-desktop-scale {
    top: 24px;
    transform: translateX(-50%) scale(0.25);
  }
}

/* Legacy app section classes kept for older platform cards below. */
.app-exp-item h3 {
  margin: 0 0 6px;
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.25;
}
.app-exp-item p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
}
.app-exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.app-exp-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  color: var(--accent);
  background: var(--accent-soft);
  font: 11px/1.2 var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.app-exp-image {
  display: block;
  width: 100%;
  height: auto;
}
.app-exp-windowbar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  background: rgba(255,255,255,0.72);
  border-bottom: 1px solid rgba(205,190,156,0.5);
  color: #6E6149;
  font: 11px/1 var(--font-mono);
}

/* ── Platforms ───────────────────────────────────────── */
.plat-surfaces {
  display: flex;
  flex-direction: column;
  gap: 54px;
}
.plat-surface {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.plat-surface-copy {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.plat-surface-copy h3 {
  margin: 2px 0 0;
  color: var(--text-primary);
  font: 500 28px/1.12 var(--font-display);
  letter-spacing: 0;
}
.plat-surface-copy p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}
.plat-disabled-cta {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 16px;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  color: var(--text-tertiary);
  font-size: 14px;
  background: color-mix(in srgb, var(--bg-secondary) 82%, transparent);
}
.plat-desktop-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.plat-desktop-grid .app-exp-desktop-card:last-child {
  grid-column: 1;
}
.plat-desktop-grid .app-exp-desktop-stage {
  height: 420px;
}
.plat-desktop-grid .app-exp-desktop-scale {
  transform: translateX(-50%) scale(0.38);
}

.plat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.plat-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.plat-mockup {
  height: 390px;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(201,169,97,0.05), transparent 70%),
    linear-gradient(180deg, var(--bg-tertiary), var(--bg-secondary));
  border-bottom: 1px solid var(--border-subtle);
  display: grid;
  place-items: center;
  padding: 28px;
  overflow: hidden;
}
.plat-mockup-phone {
  padding: 0;
  overflow: hidden;
}
.app-mobile-preview,
.app-browser-preview,
.app-desktop-preview {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.app-mobile-preview {
  background:
    linear-gradient(180deg, rgba(244,239,229,0.84), rgba(251,247,237,0.96)),
    radial-gradient(70% 60% at 50% 0%, rgba(217,188,120,0.16), transparent 72%);
}
.app-device {
  position: absolute;
  width: max-content;
  height: max-content;
  transform-origin: top left;
  filter: drop-shadow(0 24px 36px rgba(11,15,20,0.18));
}
.app-device-ios {
  left: clamp(22px, 8vw, 46px);
  top: 16px;
  transform: scale(0.39);
  z-index: 2;
}
.app-device-android {
  right: clamp(18px, 5vw, 34px);
  top: 46px;
  transform: scale(0.34);
  z-index: 1;
}
.app-browser-preview,
.app-desktop-preview {
  background:
    radial-gradient(70% 50% at 40% 0%, rgba(217,188,120,0.12), transparent 70%),
    linear-gradient(180deg, #F4EFE5, #FBF7ED);
  border: 1px solid rgba(205,190,156,0.42);
  border-radius: 14px;
  box-shadow: 0 22px 60px -38px rgba(11,15,20,0.4);
}
.app-preview-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.app-browser-chrome,
.app-desktop-chrome {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  background: rgba(255,255,255,0.72);
  border-bottom: 1px solid rgba(205,190,156,0.5);
  color: var(--text-secondary);
  font: 11px/1 var(--font-mono);
}
.app-browser-dots {
  display: inline-flex;
  gap: 5px;
  flex: 0 0 auto;
}
.app-browser-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.65;
}
.app-browser-url {
  flex: 1;
  min-width: 0;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(244,239,229,0.78);
  border: 1px solid rgba(205,190,156,0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app-browser-kbd {
  width: 34px;
  text-align: right;
  color: var(--text-tertiary);
}
.app-browser-canvas,
.app-desktop-canvas {
  position: relative;
  height: calc(100% - 38px);
  overflow: hidden;
}
.app-browser-scale,
.app-desktop-scale {
  position: absolute;
  left: 50%;
  top: 18px;
  width: 1440px;
  height: 900px;
  transform-origin: top center;
}
.app-browser-scale { transform: translateX(-50%) scale(0.25); }
.app-desktop-scale { transform: translateX(-50%) scale(0.255); }
.plat-meta {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.plat-meta .h-card { margin-top: 4px; }
.plat-cta { width: fit-content; margin-top: auto; height: 44px; padding: 0 16px; font-size: 14px; }

@media (max-width: 1100px) {
  .plat-desktop-grid .app-exp-desktop-stage { height: 360px; }
  .plat-desktop-grid .app-exp-desktop-scale { transform: translateX(-50%) scale(0.31); }
  .plat-grid { grid-template-columns: 1fr; }
  .plat-mockup { height: 430px; }
  .app-device-ios { left: calc(50% - 170px); transform: scale(0.43); }
  .app-device-android { right: calc(50% - 184px); transform: scale(0.37); }
  .app-browser-scale { transform: translateX(-50%) scale(0.31); }
  .app-desktop-scale { transform: translateX(-50%) scale(0.31); }
}

@media (max-width: 560px) {
  .plat-surfaces { gap: 42px; }
  .plat-desktop-grid { grid-template-columns: 1fr; }
  .plat-desktop-grid .app-exp-desktop-stage { height: 390px; }
  .plat-desktop-grid .app-exp-desktop-scale { transform: translateX(-50%) scale(0.25); }
  .plat-mockup { height: 370px; padding: 16px; }
  .plat-mockup-phone { padding: 0; }
  .app-device-ios { left: 18px; top: 24px; transform: scale(0.35); }
  .app-device-android { right: 10px; top: 62px; transform: scale(0.31); }
  .app-browser-scale { transform: translateX(-50%) scale(0.22); }
  .app-desktop-scale { transform: translateX(-50%) scale(0.22); }
}

/* ── Pricing ─────────────────────────────────────────── */
.pricing {
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(201,169,97,0.06), transparent 60%);
}
.pricing-card {
  max-width: 680px;
  margin: 60px auto 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg-tertiary), var(--bg-secondary));
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 56px 48px 40px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.5);
}
.pricing-card-top {
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.pricing-seal {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-secondary);
  border-radius: 50%;
  padding: 8px;
  border: 1px solid var(--border-subtle);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 32px;
  align-items: center;
}
.pricing-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.pricing-divider { background: var(--border-subtle); height: 80px; }
.pricing-value {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--text-primary);
}
.pricing-number {
  font-family: var(--font-display);
  font-size: 68px;
  line-height: 1;
  letter-spacing: -0.012em;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 40;
}
.pricing-currency {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
}
.pricing-unit {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-secondary);
  letter-spacing: -0.01em;
}
.pricing-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.pricing-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.pricing-bullets svg { color: var(--accent); flex: 0 0 auto; }
.pricing-cta {
  width: 100%;
  margin-top: 32px;
  height: 56px;
  font-size: 16px;
}
.pricing-micro {
  text-align: center;
  margin-top: 18px;
}
.pricing-tier-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 18px;
  margin-top: 54px;
  align-items: stretch;
}
.pricing-tier {
  position: relative;
  background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
}
.pricing-tier-featured {
  border-color: var(--border-strong);
  box-shadow: 0 30px 80px -42px rgba(0,0,0,0.45);
}
.pricing-tier .h-card {
  font-size: 28px;
}
.pricing-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  background: var(--bg-primary);
}
.pricing-toggle button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-secondary);
  font: 700 13px/1 var(--font-sans);
  padding: 12px;
  cursor: pointer;
}
.pricing-toggle button.is-on {
  background: var(--accent);
  color: #1a130a;
}
.pricing-plan {
  padding: 18px;
  border-radius: 14px;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
}
.pricing-plan-price {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  color: var(--text-primary);
}
.pricing-plan p {
  margin: 10px 0 0;
  color: var(--text-secondary);
}
.pricing-bullets-single {
  grid-template-columns: 1fr;
}
.pricing-disclaimer {
  margin-top: 0;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

@media (max-width: 700px) {
  .pricing-card { padding: 48px 24px 32px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-divider { height: 1px; }
  .pricing-bullets { grid-template-columns: 1fr; }
  .pricing-number { font-size: 56px; }
}

/* ── Audiences ───────────────────────────────────────── */
.seg-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 64px;
}
.seg-card {
  background: linear-gradient(180deg, var(--bg-secondary), var(--bg-secondary));
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 220px;
  transition: border-color 220ms var(--ease);
}
.seg-card:hover { border-color: var(--accent-line); }
.seg-num { color: var(--accent); }
.seg-tag {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.audience-note {
  margin-top: 28px;
  max-width: 720px;
}
.quote-card {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      rgba(201,169,97,0.025) 0px, rgba(201,169,97,0.025) 1px,
      transparent 1px, transparent 12px),
    var(--surface-quote);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-card);
  padding: 32px 28px 64px;
  opacity: 0.7;
}
.quote-stamp {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 16px;
}
.quote-body {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.4;
  color: var(--text-primary);
  font-style: normal;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 40;
}
.quote-meta { padding-top: 16px; border-top: 1px solid var(--border-subtle); }
.quote-role {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
}
.quote-seg {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 2px;
}
.quote-flag {
  position: absolute;
  bottom: 20px;
  left: 28px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--warning);
  background: rgba(212,160,69,0.08);
  border: 1px solid rgba(212,160,69,0.25);
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  .seg-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .seg-grid { grid-template-columns: 1fr; }
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-top: 1px solid var(--border-subtle);
  transition: background 200ms var(--ease);
}
.faq-item:last-child { border-bottom: 1px solid var(--border-subtle); }
.faq-item[open] { background: rgba(201,169,97,0.03); }
.faq-q {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 28px 16px;
  background: none;
  border: none;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  font: inherit;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q-num {
  color: var(--accent);
  flex: 0 0 auto;
}
.faq-q-text {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  flex: 1;
  line-height: 1.3;
}
.faq-chev {
  flex: 0 0 auto;
  color: var(--text-secondary);
  transition: transform 220ms var(--ease);
}
.faq-item[open] .faq-chev { transform: rotate(180deg); color: var(--accent); }
.faq-a {
  display: block;
}
.faq-a > p {
  padding: 0 16px 0 64px;
  max-width: 700px;
  margin: 0;
}
.faq-item[open] .faq-a > p { padding-bottom: 28px; }
@media (max-width: 700px) {
  .faq-q-text { font-size: 18px; }
  .faq-a > p { padding-left: 16px; }
}

/* ── Final CTA ───────────────────────────────────────── */
.cta-final {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(70% 70% at 50% 0%, rgba(201,169,97,0.18), transparent 72%),
    linear-gradient(180deg, #1A130A, #1A130A);
  color: #F4EFE5;
}
.cta-final .display,
.cta-final .body-lg,
.cta-final .cta-final-micro {
  color: #F4EFE5;
}
.cta-final .body-lg {
  color: rgba(244,239,229,0.72);
}
.cta-final .pre-register {
  border-color: rgba(201,169,97,0.32);
  background: rgba(244,239,229,0.04);
}
.cta-final .pre-register-title,
.cta-final .pre-register-step p {
  color: #F4EFE5;
}
.cta-final .pre-register-step span {
  background: #F4EFE5;
  color: #1A130A;
}
.cta-seal-bg {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  animation: cta-seal-rotate 120s linear infinite;
}
@keyframes cta-seal-rotate {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .cta-seal-bg { animation: none; }
}
.cta-final-inner { position: relative; z-index: 1; }
.cta-final-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}
@media (max-width: 600px) {
  .cta-final-buttons { width: 100%; }
  .cta-final-buttons .btn { width: 100%; }
}
.cta-final-micro {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  text-transform: uppercase;
}

/* ── Footer ──────────────────────────────────────────── */
.ft {
  padding: 80px 0 40px;
  background: var(--bg-footer);
  border-top: 1px solid var(--border-subtle);
}
.ft-top {
  display: grid;
  grid-template-columns: 1.4fr 3fr;
  gap: 60px;
}
.ft-brand { display: flex; flex-direction: column; gap: 18px; }
.ft-brand-row { display: flex; align-items: center; gap: 10px; color: var(--accent); }
.ft-disc {
  max-width: 320px;
  line-height: 1.55;
}
.ft-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ft-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 150ms var(--ease), border-color 150ms var(--ease), background 150ms var(--ease);
}
.ft-social-link:hover {
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent), transparent 45%);
  background: color-mix(in srgb, var(--accent), transparent 92%);
}
.ft-lang {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  margin-top: 10px;
}
.ft-lang button {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 4px 0;
}
.ft-lang button.is-on { color: var(--accent); }

.ft-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.ft-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ft-col-title {
  margin-bottom: 4px;
  color: var(--accent);
}
.ft-link {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 150ms var(--ease);
}
.ft-link:hover { color: var(--text-primary); }
.ft-link-muted {
  color: var(--text-tertiary);
  cursor: default;
}

.ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-tertiary);
}

@media (max-width: 900px) {
  .ft-top { grid-template-columns: 1fr; gap: 40px; }
  .ft-cols { grid-template-columns: repeat(2, 1fr); }
  .ft-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

@media (max-width: 560px) {
  .ft-lang {
    flex-wrap: wrap;
    max-width: 100%;
  }
  .ft-cols {
    grid-template-columns: 1fr;
  }
}

/* ── Modal ───────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: var(--bg-modal-backdrop);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  overflow-y: auto;
  animation: modal-fade 200ms var(--ease);
}
@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }

.modal {
  position: relative;
  background: linear-gradient(180deg, var(--bg-tertiary), var(--bg-secondary));
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
  animation: modal-up 280ms var(--ease);
}
@keyframes modal-up {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-x {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--hover-overlay);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.modal-x:hover { background: rgba(255,255,255,0.08); color: var(--text-primary); }
.modal-head { margin-bottom: 28px; }
.modal-form { display: flex; flex-direction: column; gap: 20px; }
.modal-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal-field > span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.modal-field input,
.modal-field select {
  height: 48px;
  background: var(--surface-input);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--text-primary);
  font: inherit;
  padding: 0 14px;
  outline: none;
  transition: border-color 180ms var(--ease);
}
.modal-field input:focus,
.modal-field select:focus { border-color: var(--accent); }
.modal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.modal-chip {
  height: 38px;
  padding: 0 14px;
  background: var(--surface-input);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--text-secondary);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  transition: all 150ms var(--ease);
}
.modal-chip.is-on {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}
.modal-consent {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  align-items: flex-start;
}
.modal-consent input { margin-top: 3px; accent-color: var(--accent); }
.modal-submit { height: 52px; width: 100%; margin-top: 8px; }

.modal-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px;
}
.modal-success-seal { margin-bottom: 18px; }

@media (max-width: 600px) {
  .modal { padding: 32px 24px; }
}

/* ── Website fixes: education, trust and static pages ── */
.pre-register {
  width: 100%;
  max-width: 980px;
  margin: 28px auto 0;
  padding: 18px;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background: color-mix(in srgb, var(--bg-secondary) 76%, transparent);
}
.pre-register-compact {
  max-width: 860px;
  padding: 14px;
}
.pre-register-title {
  font: 700 12px/1 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  text-align: center;
}
.pre-register-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.pre-register-step {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  align-items: start;
  min-width: 0;
}
.pre-register-step span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font: 700 11px/1 var(--font-mono);
}
.pre-register-step p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.45;
}
.pre-register-ai {
  width: 100%;
  max-width: 980px;
  margin: 12px auto 0;
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background: color-mix(in srgb, var(--bg-secondary) 82%, transparent);
}
.pre-register-ai .mono-label {
  color: var(--accent);
  margin-bottom: 10px;
}
.pre-register-ai .h-card {
  margin: 0 auto 12px;
  max-width: 34ch;
}
.pre-register-ai .body {
  max-width: 78ch;
  margin: 0 auto;
}
.how-donot {
  margin: 36px auto 0;
  max-width: 960px;
  padding: 18px;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background: var(--bg-secondary);
}
.how-donot .mono-label {
  color: var(--accent);
  text-align: center;
  margin-bottom: 12px;
}
.how-donot-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.how-donot-items span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--bg-primary);
  color: var(--text-secondary);
  font-size: 13px;
}
.section-inline-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}
.release,
.ai-privacy {
  padding: var(--section-py) 0;
}
.v4-dark-act {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(70% 28% at 50% 0%, rgba(201,169,97,0.2), transparent 72%),
    linear-gradient(180deg, #1A130A, #1A130A);
  color: #F4EFE5;
}
.v4-ambient-loop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.48;
}
.v4-ambient-loop video,
.v4-ambient-loop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 800ms var(--ease);
}
.v4-ambient-loop.is-fading video {
  opacity: 0;
}
.v4-engine-loop {
  height: 360px;
  bottom: auto;
  mask-image: linear-gradient(180deg, black, transparent 92%);
  -webkit-mask-image: linear-gradient(180deg, black, transparent 92%);
}
.v4-cta-loop {
  opacity: 0.38;
}
.v4-dark-act::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 260px;
  pointer-events: none;
  background:
    radial-gradient(60% 100% at 20% 0%, rgba(217,188,120,0.16), transparent 68%),
    radial-gradient(50% 95% at 86% 0%, rgba(244,239,229,0.09), transparent 70%);
  opacity: 0.76;
}
.v4-dark-act > section {
  background: transparent;
}
.v4-dark-act .container {
  position: relative;
  z-index: 1;
}
.v4-dark-act .h-section,
.v4-dark-act .h-card,
.v4-dark-act .body-lg,
.v4-dark-act .body,
.v4-dark-act .section-inline-link {
  color: #F4EFE5;
}
.v4-dark-act .body-lg,
.v4-dark-act .body,
.v4-dark-act .yt-facade figcaption {
  color: rgba(244,239,229,0.72);
}
.v4-dark-act .section-head::before {
  background: rgba(201,169,97,0.32);
}
.v4-dark-act .release-card {
  border-color: rgba(201,169,97,0.32);
  background: rgba(244,239,229,0.04);
  box-shadow: none;
}
.v4-dark-act .yt-facade-frame {
  border-color: rgba(201,169,97,0.32);
}
.release-grid,
.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.release-card,
.ai-card,
.page-card {
  padding: 24px;
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  background: var(--bg-secondary);
  box-shadow: 0 20px 70px -58px rgba(11,15,20,0.42);
}
.release-num {
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 4px;
  background: var(--text-primary);
  color: var(--bg-primary);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.v4-dark-act .release-num {
  background: #F4EFE5;
  color: #1A130A;
  margin-bottom: 18px;
}
.release-card .h-card,
.ai-card .h-card {
  margin-bottom: 12px;
}
.recovery .section-head {
  max-width: 820px;
  margin-top: clamp(40px,5vw,72px);
}
.recovery-license {
  margin: 34px 0 0;
  max-width: none;
  padding: 22px 24px;
  border: 1px solid var(--accent-line);
  border-radius: 18px;
  color: var(--text-primary);
  background: var(--accent-soft);
}
.v4-dark-act .recovery-license {
  color: #F4EFE5;
  background: rgba(244,239,229,0.04);
  border-color: rgba(201,169,97,0.32);
}
.recovery-video {
  margin-top: 34px;
}
.v4-recovery-matter {
  display: block;
  margin-top: clamp(36px, 5vw, 64px);
}
.v4-recovery-matter .recovery-grid {
  min-width: 0;
}
.v4-recovery-material {
  display: block;
  margin: clamp(40px, 5vw, 56px) 0 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}
.rec-band {
  height: auto;
}
.v4-recovery-material img {
  display: block;
  width: 100%;
  height: clamp(220px,30vw,380px);
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(201,169,97,0.32);
  background: #0f0c08;
}
.v4-recovery-material figcaption {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,239,229,0.45);
}
@media (prefers-reduced-motion: reduce) {
  .v4-ambient-loop video {
    display: none;
  }
}
.assistant-widget {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 80;
  color: var(--text-primary);
}
.assistant-launcher {
  min-height: 54px;
  padding: 8px 12px 8px 8px;
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg-primary), transparent 5%);
  color: var(--text-primary);
  box-shadow: 0 20px 60px -35px rgba(11,15,20,0.55);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
}
.assistant-launcher:hover,
.assistant-launcher:focus-visible {
  border-color: color-mix(in srgb, var(--accent), transparent 35%);
}
.assistant-launcher-mark,
.assistant-widget-mark {
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.assistant-launcher-mark {
  width: 40px;
  height: 40px;
}
.assistant-launcher-copy {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.assistant-launcher-copy strong {
  font-size: 14px;
  line-height: 1.1;
  font-weight: 700;
}
.assistant-launcher-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.assistant-panel {
  width: min(420px, calc(100vw - 36px));
  max-height: min(680px, calc(100vh - 36px));
  padding: 18px;
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  background: color-mix(in srgb, var(--bg-secondary), transparent 2%);
  box-shadow: 0 28px 90px -45px rgba(11,15,20,0.72);
  display: flex;
  flex-direction: column;
  gap: 14px;
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
}
.assistant-widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.assistant-widget-head-copy {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
}
.assistant-widget-mark {
  width: 42px;
  height: 42px;
}
.assistant-widget-head-text {
  min-width: 0;
}
.assistant-widget-head-text .h-card {
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
}
.assistant-widget-close {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  background: var(--bg-primary);
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  flex: 0 0 auto;
}
.assistant-widget-close:hover,
.assistant-widget-close:focus-visible {
  color: var(--text-primary);
  border-color: var(--accent-line);
}
.assistant-widget-log {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 160px;
  max-height: min(360px, calc(100vh - 280px));
  overflow: auto;
  padding: 12px;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background: var(--bg-primary);
  scrollbar-gutter: stable;
}
.assistant-message {
  align-self: flex-start;
  width: fit-content;
  max-width: min(92%, 320px);
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
  color: var(--text-primary);
  overflow-wrap: anywhere;
}
.assistant-message p {
  margin: 0;
  white-space: pre-wrap;
}
.assistant-message.is-user {
  align-self: flex-end;
  margin-inline-start: auto;
  background: var(--accent-soft);
  border-color: var(--accent-line);
}
.assistant-message.is-notice {
  max-width: min(92%, 330px);
  align-self: flex-start;
  background: var(--accent-soft);
  border-color: var(--accent-line);
}
.assistant-message.is-loading {
  background: var(--bg-primary);
  border-style: dashed;
  color: var(--text-secondary);
  font-style: normal;
}
.assistant-typing {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.assistant-typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.assistant-typing-dots span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.35;
  animation: assistantTypingPulse 1.05s ease-in-out infinite;
}
.assistant-typing-dots span:nth-child(2) {
  animation-delay: 0.15s;
}
.assistant-typing-dots span:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes assistantTypingPulse {
  0%,
  80%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-2px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .assistant-typing-dots span {
    animation: none;
    opacity: 0.7;
  }
}
.assistant-message.is-refusal {
  background: rgba(212, 160, 69, 0.1);
  border-color: rgba(212, 160, 69, 0.28);
}
.assistant-message.is-error {
  background: rgba(194, 84, 80, 0.1);
  border-color: rgba(194, 84, 80, 0.3);
}
.assistant-widget-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}
.assistant-widget-input {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}
.assistant-widget-input span {
  color: var(--text-tertiary);
  font: 700 11px/1 var(--font-mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.assistant-widget-input textarea {
  width: 100%;
  min-height: 62px;
  max-height: 130px;
  resize: vertical;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  background: var(--surface-input);
  color: var(--text-primary);
  padding: 12px 14px;
  font: inherit;
  line-height: 1.5;
  overflow: auto;
}
.assistant-widget-input textarea::placeholder {
  color: var(--text-tertiary);
}
.assistant-widget-input textarea:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}
.assistant-widget-send {
  min-width: 104px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .assistant-widget {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    left: max(12px, env(safe-area-inset-left));
  }
  .assistant-launcher {
    margin-left: auto;
    min-height: 52px;
  }
  .assistant-panel {
    width: 100%;
    max-height: min(74vh, 620px);
    padding: 16px;
    border-radius: 16px;
  }
  .assistant-widget-log {
    min-height: 150px;
    max-height: calc(74vh - 190px);
  }
  .assistant-widget-form {
    grid-template-columns: 1fr;
  }
  .assistant-widget-send {
    width: 100%;
  }
}
.sec-pillars {
  grid-template-columns: repeat(4, 1fr);
}
.ios-notify-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  margin-top: 16px;
}
.ios-notify-success {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--protected);
  background: rgba(63,167,118,0.1);
  border: 1px solid rgba(63,167,118,0.24);
  font-weight: 700;
  line-height: 1.35;
}
.ios-notify-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}
.ios-notify-form label span {
  color: var(--text-tertiary);
  font: 700 11px/1 var(--font-mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.ios-notify-form input {
  height: 42px;
  width: 100%;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  background: var(--surface-input);
  color: var(--text-primary);
  padding: 0 12px;
  font: inherit;
}
.platform-requirements {
  margin-top: 28px;
  padding: 16px;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  background: var(--bg-secondary);
}
.platform-requirements .mono-label {
  color: var(--accent);
  margin-bottom: 12px;
}
.platform-requirements div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.platform-requirements span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--bg-primary);
  color: var(--text-secondary);
  font-size: 13px;
}
.pricing-comparison {
  max-width: 980px;
  margin: 28px auto 0;
  padding: 24px;
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  background: var(--bg-secondary);
}
.pricing-comparison h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
}
.pricing-table {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}
.pricing-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: var(--bg-primary);
  color: var(--text-secondary);
}
.pricing-row span:first-child {
  color: var(--text-primary);
  font-weight: 700;
}
.business-page .page-hero {
  padding-bottom: 70px;
}
.business-hero .btn {
  margin-top: 28px;
}
.business-segments,
.business-process,
.business-trust,
.business-contact,
.business-faq {
  padding: 54px 0;
}
.business-segment-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}
.business-segment-tabs button {
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 14px;
  font: 700 13px/1.2 var(--font-sans);
  cursor: pointer;
}
.business-segment-tabs button.is-on {
  border-color: var(--accent);
  color: var(--text-primary);
  background: var(--accent-soft);
}
.business-segment-card,
.business-trust-card,
.business-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  background: var(--bg-secondary);
  padding: 32px;
}
.business-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.business-bullets li {
  display: flex;
  gap: 10px;
  color: var(--text-secondary);
}
.business-bullets svg {
  color: var(--accent);
  flex: 0 0 auto;
  margin-top: 2px;
}
.business-use-case {
  margin-top: 22px;
  padding: 18px;
  border-radius: 14px;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
}
.business-use-case p {
  margin: 8px 0 0;
  color: var(--text-secondary);
}
.business-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.business-trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.business-trust-tags span {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  background: var(--bg-primary);
  font-size: 13px;
}
.business-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.business-form label {
  display: grid;
  gap: 7px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 700;
}
.business-form input,
.business-form select,
.business-form textarea {
  width: 100%;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  background: var(--bg-primary);
  color: var(--text-primary);
  padding: 12px;
  font: 500 14px/1.4 var(--font-sans);
}
.business-form-wide,
.business-form .caption,
.business-form .btn,
.business-form-error {
  grid-column: 1 / -1;
}
.business-success {
  margin-top: 18px;
  padding: 14px;
  border-radius: 12px;
  color: var(--protected);
  background: rgba(63,167,118,0.1);
  border: 1px solid rgba(63,167,118,0.2);
}
.business-success-panel {
  padding: 18px;
  border-radius: 14px;
  color: var(--text-primary);
  background: rgba(63,167,118,0.1);
  border: 1px solid rgba(63,167,118,0.28);
}
.business-success-panel h3 {
  margin: 0 0 8px;
  color: var(--protected);
}
.business-success-panel p {
  margin: 0 0 16px;
  color: var(--text-secondary);
}
.business-form-error {
  margin-top: 4px;
  color: var(--risk);
  font-size: 12px;
  font-weight: 700;
}
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.page-shell {
  padding-top: 76px;
}
.page-hero {
  padding: 110px 0 50px;
  background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}
.page-hero-compact {
  padding-bottom: 20px;
}
.page-hero .display {
  max-width: 980px;
  margin: 20px 0 22px;
}
.page-hero .body-lg {
  max-width: 980px;
}
.page-back {
  margin-top: 0;
  margin-bottom: 24px;
}
.page-content {
  padding: 50px 0 var(--section-py);
}
.page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.page-card .mono-label {
  color: var(--accent);
  margin-bottom: 14px;
}
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.legal-nav a {
  padding: 10px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 700;
}
.legal-nav a:hover,
.legal-nav a:focus-visible {
  border-color: color-mix(in srgb, var(--accent), transparent 35%);
  color: var(--accent);
}
.legal-stack {
  display: grid;
  gap: 54px;
}
.legal-section {
  scroll-margin-top: 110px;
}
.legal-section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}
.legal-section-head .mono-label {
  color: var(--accent);
}
.legal-section-head .h-section {
  max-width: 22ch;
}
.legal-section-head .body-lg {
  max-width: 74ch;
}
.legal-blocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.legal-card {
  display: grid;
  align-content: start;
  gap: 12px;
}
.legal-card .body {
  margin: 0;
}
.legal-list {
  margin: 0;
  padding-left: 20px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
}
.legal-list li + li {
  margin-top: 8px;
}
.security-diagram {
  margin: 44px 0 0;
  padding: 18px;
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  background: var(--bg-primary);
}
.security-diagram-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr) 42px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 250px;
}
.security-diagram-node {
  min-height: 146px;
  padding: 26px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  text-align: center;
}
.security-diagram-node strong {
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}
.security-diagram-node span {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.35;
  max-width: 22ch;
}
.security-diagram-node i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0.85;
}
.security-diagram-arrow {
  width: 0;
  height: 0;
  justify-self: center;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 24px solid var(--accent);
  opacity: 0.75;
}

@media (max-width: 860px) {
  .security-diagram-flow {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
  }
  .security-diagram-node {
    min-height: 0;
    padding: 22px 18px;
  }
  .security-diagram-arrow {
    transform: rotate(90deg);
    margin: 2px 0;
  }
}

.security-summary {
  padding: 0 0 var(--section-py);
}

.security-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.security-summary-card {
  padding: 22px;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background: var(--bg-primary);
}

.security-summary-card .mono-label {
  color: var(--accent);
  margin-bottom: 12px;
}

.security-summary-card .h-card {
  margin: 0 0 14px;
}

.security-summary-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.security-summary-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
}

.security-summary-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

@media (max-width: 1100px) {
  .sec-pillars,
  .release-grid,
  .ai-grid,
  .pricing-tier-grid,
  .business-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .security-summary-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .pre-register-steps,
  .release-grid,
  .ai-grid,
  .pricing-tier-grid,
  .business-segment-tabs,
  .business-segment-card,
  .business-trust-card,
  .business-contact-grid,
  .business-process-grid,
  .business-form,
  .page-grid,
  .legal-blocks,
  .sec-pillars {
    grid-template-columns: 1fr;
  }
  .ios-notify-form,
  .pricing-row {
    grid-template-columns: 1fr;
  }
  .ios-notify-form .btn {
    width: 100%;
  }
  .page-hero {
    padding-top: 80px;
  }
  .legal-stack {
    gap: 40px;
  }
  .legal-nav a {
    flex: 1 1 auto;
    text-align: center;
  }
}

[dir="rtl"] body {
  text-align: right;
}

[dir="rtl"] .hd-brand,
[dir="rtl"] .app-visual,
[dir="rtl"] .desktop-frame,
[dir="rtl"] .phone-frame {
  direction: ltr;
}

[dir="rtl"] .hd-actions,
[dir="rtl"] .hero-actions,
[dir="rtl"] .platform-actions,
[dir="rtl"] .business-form-row,
[dir="rtl"] .form-row {
  flex-direction: row-reverse;
}

[dir="rtl"] .hd-menu-panel,
[dir="rtl"] .hd-language-panel,
[dir="rtl"] .hero-copy,
[dir="rtl"] .section-head,
[dir="rtl"] .business-hero,
[dir="rtl"] .business-contact,
[dir="rtl"] .security-page,
[dir="rtl"] .legal-page,
[dir="rtl"] .footer-grid {
  text-align: right;
}

[dir="rtl"] .faq-q,
[dir="rtl"] .business-segment-card,
[dir="rtl"] .pricing-tier,
[dir="rtl"] .legal-card,
[dir="rtl"] .security-summary-card,
[dir="rtl"] .modal-card {
  text-align: right;
}

[dir="rtl"] .legal-list {
  padding-left: 0;
  padding-right: 20px;
}

[dir="rtl"] input,
[dir="rtl"] textarea,
[dir="rtl"] select {
  direction: rtl;
  text-align: right;
}
