:root {
  --cream: #f4efe5;
  --paper: #fffdf8;
  --paper-muted: #f9f5ec;
  --navy: #11182d;
  --navy-soft: #1a2441;
  --gold: #d39b32;
  --gold-dark: #9b6c18;
  --violet: #7665e8;
  --text: #11182d;
  --muted: #626b7d;
  --line: rgba(17, 24, 45, .14);
  --line-strong: rgba(17, 24, 45, .25);
  --shadow: 0 24px 70px rgba(17, 24, 45, .10);
  --shell: min(1180px, calc(100% - 34px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 10px 12px;
  color: white;
  background: var(--navy);
}

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 253, 248, .88);
  backdrop-filter: blur(18px);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(255, 253, 248, .96);
  box-shadow: 0 10px 30px rgba(17, 24, 45, .05);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand-link {
  width: 190px;
  flex: 0 0 190px;
}

.brand-link img {
  width: 100%;
  height: 44px;
  object-fit: contain;
  object-position: left center;
}

.primary-navigation {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.primary-navigation a {
  color: var(--muted);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 850;
  transition: color .2s ease;
}

.primary-navigation a:hover {
  color: var(--navy);
}

.primary-navigation .nav-cta {
  min-height: 42px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  background: var(--navy);
}

.primary-navigation .nav-cta:hover {
  color: white;
  background: var(--navy-soft);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 18%, rgba(118,101,232,.13), transparent 25%),
    linear-gradient(100deg, rgba(211,155,50,.10), transparent 46%),
    var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  left: -170px;
  bottom: -260px;
  width: 520px;
  height: 520px;
  border: 70px solid rgba(211,155,50,.08);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 690px;
  padding-block: 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, .9fr);
  gap: 74px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .70rem;
  font-weight: 950;
}

.hero h1,
.section-intro h2,
.experience-copy h2,
.privacy-banner h2,
.final-cta h2 {
  margin: 0;
  letter-spacing: -.055em;
  line-height: .97;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.7rem, 7vw, 6.8rem);
}

.hero-text {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.72;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: .84rem;
  font-weight: 950;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  border-color: var(--navy);
  background: var(--navy);
}

.button-primary:hover {
  background: var(--navy-soft);
}

.button-secondary {
  color: var(--navy);
  border-color: var(--line-strong);
  background: transparent;
}

.button-secondary:hover {
  background: white;
}

.button-accent {
  color: var(--navy);
  border-color: var(--gold);
  background: var(--gold);
}

.button-accent:hover {
  background: #e1ab43;
}

.hero-trust {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  color: var(--muted);
  font-size: .77rem;
  font-weight: 800;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

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

.hero-visual {
  position: relative;
  min-width: 0;
}

.visual-window {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.visual-window::after {
  content: "";
  position: absolute;
  inset: auto -30% -45% 30%;
  height: 240px;
  background: radial-gradient(circle, rgba(118,101,232,.16), transparent 70%);
  pointer-events: none;
}

.visual-topbar {
  min-height: 42px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-muted);
}

.window-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(17,24,45,.24);
}

.window-label {
  margin-left: auto;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
}

.visual-body {
  padding: 22px;
}

.mini-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .10em;
  font-size: .64rem;
  font-weight: 900;
}

.seed-song {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 52px minmax(0,1fr);
  gap: 11px;
  align-items: center;
}

.seed-art {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--gold), var(--violet));
}

.seed-song strong,
.seed-song span {
  display: block;
}

.seed-song span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .78rem;
}

.signal-grid {
  margin: 20px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.signal-grid span {
  min-height: 38px;
  padding: 0 11px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--paper-muted);
  font-size: .73rem;
  font-weight: 850;
}

.match-card {
  min-height: 86px;
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(0,1fr) 62px;
  gap: 14px;
  align-items: center;
  color: white;
  background: var(--navy);
}

.match-card .mini-label {
  color: rgba(255,255,255,.55);
}

.match-card strong {
  margin-top: 6px;
  display: block;
  font-size: .92rem;
}

.match-score {
  width: 62px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  font-size: 1rem;
  font-weight: 950;
}

.visual-player {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 38px minmax(0,1fr);
  gap: 10px;
  align-items: center;
}

.visual-player button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  color: white;
  background: var(--violet);
}

.fake-progress {
  height: 5px;
  overflow: hidden;
  background: rgba(17,24,45,.12);
}

.fake-progress span {
  display: block;
  width: 62%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--violet));
  animation: progressPulse 3.2s ease-in-out infinite alternate;
}

.visual-player small {
  grid-column: 2;
  color: var(--muted);
  font-size: .68rem;
}

.floating-note {
  position: absolute;
  z-index: 3;
  min-height: 42px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-strong);
  color: var(--navy);
  background: rgba(255,253,248,.96);
  box-shadow: 0 12px 28px rgba(17,24,45,.10);
  font-size: .72rem;
  font-weight: 900;
  animation: floatNote 4.4s ease-in-out infinite;
}

.floating-note i {
  color: var(--gold-dark);
}

.floating-note-top {
  right: -24px;
  top: 36px;
}

.floating-note-bottom {
  left: -34px;
  bottom: 42px;
  animation-delay: -1.7s;
}

.value-strip {
  color: white;
  background: var(--navy);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.value-grid > div {
  min-height: 128px;
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 6px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.value-grid > div:last-child {
  border-right: 0;
}

.value-grid strong {
  font-size: .92rem;
}

.value-grid span {
  color: rgba(255,255,255,.60);
  font-size: .78rem;
  line-height: 1.55;
}

.section {
  padding-block: 96px;
}

.section-light {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.section-dark {
  color: white;
  background:
    radial-gradient(circle at 18% 18%, rgba(118,101,232,.18), transparent 28%),
    var(--navy);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr);
  gap: 82px;
  align-items: start;
}

.section-intro h2,
.experience-copy h2,
.privacy-banner h2,
.final-cta h2 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.section-intro > p:last-of-type,
.experience-copy > p,
.privacy-banner p,
.final-cta p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.text-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 950;
}

.text-cta i {
  transition: transform .2s ease;
}

.text-cta:hover i {
  transform: translateX(4px);
}

.process-list {
  border-top: 1px solid var(--line-strong);
}

.process-step {
  min-height: 142px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 58px minmax(0,1fr);
  gap: 18px;
  border-bottom: 1px solid var(--line-strong);
}

.process-number {
  color: var(--gold-dark);
  font-size: .82rem;
  font-weight: 950;
}

.process-step h3 {
  margin: 0;
  font-size: 1.05rem;
}

.process-step p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: .88rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(280px,.72fr) minmax(0,1.28fr);
  gap: 88px;
  align-items: center;
}

.phone-shell {
  width: min(350px,100%);
  margin-inline: auto;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: #080c18;
  box-shadow: 0 24px 70px rgba(0,0,0,.32);
}

.phone-screen {
  min-height: 530px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, transparent 46%, rgba(8,12,24,.96)),
    linear-gradient(135deg, rgba(211,155,50,.92), rgba(118,101,232,.95));
}

.phone-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: white;
  font-size: .72rem;
  font-weight: 900;
}

.phone-meta span {
  padding: 7px 9px;
  background: rgba(17,24,45,.58);
  backdrop-filter: blur(10px);
}

.phone-play {
  flex: 1;
  display: grid;
  place-items: center;
}

.phone-play i {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 50%;
  background: rgba(17,24,45,.46);
  animation: softPulse 2.4s ease-in-out infinite;
}

.phone-details strong,
.phone-details span {
  display: block;
}

.phone-details span {
  margin-top: 4px;
  color: rgba(255,255,255,.64);
  font-size: .78rem;
}

.phone-details button {
  width: 100%;
  min-height: 44px;
  margin-top: 14px;
  border: 1px solid rgba(255,255,255,.24);
  color: white;
  background: rgba(255,255,255,.08);
  font-weight: 900;
}

.experience-copy .eyebrow {
  color: var(--gold);
}

.experience-copy > p {
  color: rgba(255,255,255,.67);
}

.experience-points {
  margin: 26px 0 28px;
  display: grid;
  gap: 13px;
}

.experience-points > div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.82);
  font-size: .88rem;
}

.experience-points i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
}

.privacy-banner {
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 34px;
  align-items: center;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(110deg, rgba(211,155,50,.10), transparent 55%),
    var(--paper-muted);
}

.privacy-banner > div {
  max-width: 780px;
}

.faq-section {
  border-bottom: 1px solid var(--line);
  background: var(--paper-muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px,.72fr) minmax(0,1.28fr);
  gap: 82px;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  padding: 21px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 950;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--gold-dark);
  font-size: 1.25rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -4px 0 21px;
  padding-right: 34px;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta {
  padding-block: 74px;
  color: white;
  background: linear-gradient(100deg, var(--navy), #28345a);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.final-cta .eyebrow {
  color: var(--gold);
}

.final-cta p {
  color: rgba(255,255,255,.62);
}

.site-footer {
  padding: 46px 0 20px;
  color: white;
  background: #090d19;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto minmax(280px,.8fr);
  gap: 48px;
  align-items: start;
}

.footer-brand img {
  width: 190px;
  height: 46px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.footer-brand p,
.developer-credit span,
.developer-credit small {
  color: rgba(255,255,255,.52);
  font-size: .74rem;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: .80rem;
  font-weight: 850;
}

.footer-links a:hover {
  color: white;
}

.developer-credit {
  padding-left: 22px;
  border-left: 2px solid var(--gold);
  display: grid;
  gap: 5px;
}

.developer-credit a {
  width: fit-content;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 950;
}

.developer-credit a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.40);
  font-size: .70rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .72s cubic-bezier(.22,.61,.36,1),
    transform .72s cubic-bezier(.22,.61,.36,1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .10s;
}

.reveal-delay-2 {
  transition-delay: .20s;
}

@keyframes floatNote {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes softPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,.10); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}

@keyframes progressPulse {
  from { width: 34%; }
  to { width: 76%; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

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

  .hero-visual {
    max-width: 620px;
  }

  .section-grid,
  .experience-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .experience-copy {
    order: -1;
  }

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

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

  .developer-credit {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 22px, 1180px);
  }

  .header-inner {
    min-height: 66px;
  }

  .brand-link {
    width: 170px;
    flex-basis: 170px;
  }

  .menu-button {
    margin-left: auto;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    color: var(--navy);
    background: white;
  }

  .menu-button i {
    margin: 0;
  }

  .primary-navigation {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    padding: 14px 11px 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 36px rgba(17,24,45,.10);
  }

  .primary-navigation.open {
    display: flex;
  }

  .primary-navigation a {
    padding: 13px 10px;
    border-bottom: 1px solid var(--line);
  }

  .primary-navigation .nav-cta {
    margin-top: 10px;
    border-bottom: 0;
  }

  .hero-grid {
    min-height: 0;
    padding-block: 58px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 16vw, 5rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    gap: 10px;
  }

  .visual-body {
    padding: 16px;
  }

  .floating-note {
    display: none;
  }

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

  .value-grid > div {
    min-height: 104px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .section {
    padding-block: 68px;
  }

  .section-intro h2,
  .experience-copy h2,
  .privacy-banner h2,
  .final-cta h2 {
    font-size: clamp(2.5rem, 12vw, 4.2rem);
  }

  .privacy-banner {
    padding: 24px;
    grid-template-columns: 1fr;
  }

  .privacy-banner .button {
    width: 100%;
  }

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

  .final-cta .button {
    width: 100%;
  }

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

  .developer-credit {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}


/* V11.4 mobile-first landing refinements */

.menu-backdrop {
  position: fixed;
  z-index: 55;
  inset: 66px 0 0;
  border: 0;
  background: rgba(9, 13, 25, .48);
  backdrop-filter: blur(3px);
}

.menu-backdrop[hidden] {
  display: none;
}

.mobile-launch-cta {
  display: none;
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 24px);
  }

  html {
    scroll-padding-top: 72px;
  }

  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
    background: var(--paper);
  }

  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }

  .site-header {
    height: 66px;
    border-bottom-color: var(--line);
    background: rgba(255, 253, 248, .96);
    box-shadow: 0 8px 24px rgba(17, 24, 45, .04);
  }

  .header-inner {
    min-height: 66px;
    padding-inline: 1px;
  }

  .brand-link {
    width: 156px;
    flex-basis: 156px;
  }

  .brand-link img {
    height: 38px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    border-radius: 2px;
    border-color: var(--line-strong);
    background: var(--paper);
  }

  .primary-navigation {
    z-index: 58;
    top: 66px;
    padding: 10px 12px 16px;
    max-height: calc(100dvh - 66px);
    overflow-y: auto;
    border-bottom: 1px solid var(--line-strong);
    background: var(--paper);
    box-shadow: 0 22px 50px rgba(17, 24, 45, .15);
  }

  .primary-navigation a {
    min-height: 50px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-size: .88rem;
  }

  .primary-navigation .nav-cta {
    min-height: 50px;
    margin-top: 10px;
    justify-content: space-between;
    color: white;
    border: 0;
  }

  .hero {
    background:
      radial-gradient(circle at 86% 8%, rgba(118,101,232,.10), transparent 26%),
      linear-gradient(180deg, rgba(211,155,50,.08), transparent 44%),
      var(--paper);
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    min-height: 0;
    padding: 42px 0 54px;
    gap: 36px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero .eyebrow {
    max-width: 270px;
    margin-bottom: 11px;
    line-height: 1.45;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3rem, 15vw, 4.65rem);
    line-height: .94;
    letter-spacing: -.065em;
  }

  .hero-text {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: 24px;
    gap: 9px;
  }

  .hero-actions .button {
    min-height: 52px;
    padding-inline: 16px;
    font-size: .87rem;
  }

  .hero-trust {
    margin-top: 19px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: .75rem;
  }

  .hero-trust span {
    min-height: 32px;
    padding: 0 10px;
    border-left: 2px solid var(--gold);
    background: rgba(211,155,50,.06);
  }

  .hero-visual {
    width: 100%;
    max-width: none;
  }

  .visual-window {
    box-shadow: 0 18px 46px rgba(17, 24, 45, .09);
  }

  .visual-topbar {
    min-height: 38px;
    padding-inline: 12px;
  }

  .window-label {
    max-width: 185px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .visual-body {
    padding: 15px;
  }

  .seed-song {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .seed-art {
    width: 46px;
    height: 46px;
  }

  .signal-grid {
    margin: 15px 0;
    gap: 6px;
  }

  .signal-grid span {
    min-height: 36px;
    padding-inline: 9px;
    font-size: .69rem;
  }

  .match-card {
    min-height: 76px;
    padding: 13px;
    grid-template-columns: minmax(0, 1fr) 56px;
  }

  .match-card strong {
    font-size: .84rem;
    line-height: 1.35;
  }

  .match-score {
    width: 56px;
    height: 46px;
  }

  .visual-player {
    margin-top: 14px;
  }

  .value-strip {
    padding: 8px 0;
  }

  .value-grid {
    gap: 0;
  }

  .value-grid > div {
    min-height: auto;
    padding: 18px 4px;
  }

  .value-grid strong {
    font-size: .86rem;
  }

  .value-grid span {
    max-width: 330px;
    font-size: .73rem;
  }

  .section {
    padding-block: 60px;
  }

  .section-grid,
  .experience-grid,
  .faq-grid {
    gap: 34px;
  }

  .section-intro h2,
  .experience-copy h2,
  .privacy-banner h2,
  .final-cta h2 {
    font-size: clamp(2.35rem, 11.5vw, 4rem);
    line-height: .98;
  }

  .section-intro > p:last-of-type,
  .experience-copy > p,
  .privacy-banner p,
  .final-cta p {
    margin-top: 14px;
    font-size: .92rem;
    line-height: 1.68;
  }

  .text-cta {
    min-height: 46px;
    margin-top: 18px;
    padding: 0 13px;
    border: 1px solid var(--line-strong);
    background: var(--paper-muted);
    font-size: .82rem;
  }

  .process-list {
    border-top: 0;
  }

  .process-step {
    min-height: 0;
    padding: 18px;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 13px;
    border: 1px solid var(--line);
    border-bottom: 0;
    background: var(--paper-muted);
  }

  .process-step:last-child {
    border-bottom: 1px solid var(--line);
  }

  .process-number {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: var(--gold);
  }

  .process-step h3 {
    font-size: .97rem;
  }

  .process-step p {
    margin-top: 7px;
    font-size: .80rem;
    line-height: 1.58;
  }

  .section-dark {
    background:
      radial-gradient(circle at 12% 10%, rgba(118,101,232,.16), transparent 30%),
      var(--navy);
  }

  .experience-copy {
    order: -1;
  }

  .experience-points {
    margin: 21px 0 23px;
    gap: 10px;
  }

  .experience-points > div {
    font-size: .80rem;
    align-items: flex-start;
  }

  .experience-points i {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }

  .experience-copy .button {
    width: 100%;
    min-height: 50px;
  }

  .phone-shell {
    width: min(315px, 88vw);
    padding: 9px;
  }

  .phone-screen {
    min-height: 470px;
    padding: 13px;
  }

  .phone-details button {
    min-height: 46px;
  }

  .privacy-banner {
    padding: 21px;
    gap: 22px;
    background:
      linear-gradient(135deg, rgba(211,155,50,.08), rgba(118,101,232,.05)),
      var(--paper-muted);
  }

  .privacy-banner .button {
    min-height: 50px;
  }

  .faq-list summary {
    min-height: 58px;
    padding: 17px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: .91rem;
  }

  .faq-list summary::after {
    float: none;
    flex: 0 0 auto;
  }

  .faq-list details p {
    margin-top: -2px;
    padding-right: 0;
    font-size: .82rem;
  }

  .final-cta {
    padding-block: 54px;
  }

  .final-cta-inner {
    gap: 24px;
  }

  .site-footer {
    padding-top: 36px;
    padding-bottom: calc(94px + env(safe-area-inset-bottom));
  }

  .footer-main {
    gap: 27px;
  }

  .footer-brand img {
    width: 174px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.10);
  }

  .footer-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.10);
  }

  .developer-credit {
    padding-left: 14px;
  }

  .footer-bottom {
    margin-top: 28px;
  }

  .mobile-launch-cta {
    position: fixed;
    z-index: 72;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    min-height: 58px;
    padding: 9px 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid rgba(255,255,255,.16);
    color: white;
    background: rgba(17,24,45,.96);
    box-shadow: 0 16px 38px rgba(17,24,45,.28);
    backdrop-filter: blur(14px);
    text-decoration: none;
    transform: translateY(120%);
    opacity: 0;
    transition: transform .28s ease, opacity .28s ease;
  }

  .mobile-launch-cta.visible {
    transform: translateY(0);
    opacity: 1;
  }

  .mobile-launch-cta.hidden-near-footer {
    transform: translateY(120%);
    opacity: 0;
  }

  .mobile-launch-cta span {
    min-width: 0;
    display: grid;
    gap: 2px;
  }

  .mobile-launch-cta small {
    color: rgba(255,255,255,.58);
    font-size: .66rem;
  }

  .mobile-launch-cta strong {
    font-size: .88rem;
  }

  .mobile-launch-cta > i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: var(--gold);
  }

  .reveal {
    transform: translateY(18px);
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: clamp(2.8rem, 14.8vw, 4.2rem);
  }

  .signal-grid {
    grid-template-columns: 1fr;
  }

  .signal-grid span:nth-child(n+4) {
    display: none;
  }

  .mobile-launch-cta {
    left: 8px;
    right: 8px;
  }
}


/* V11.5 styled legal pages */

.legal-page {
  background: var(--paper);
}

.legal-page-main {
  min-height: 70vh;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 68px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 15%, rgba(118,101,232,.12), transparent 26%),
    linear-gradient(115deg, rgba(211,155,50,.10), transparent 48%),
    var(--paper);
}

.legal-hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -260px;
  width: 520px;
  height: 520px;
  border: 70px solid rgba(211,155,50,.06);
  border-radius: 50%;
  pointer-events: none;
}

.legal-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,1.25fr) minmax(280px,.75fr);
  gap: 72px;
  align-items: center;
}

.legal-breadcrumb {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 850;
}

.legal-breadcrumb a {
  text-decoration: none;
}

.legal-breadcrumb a:hover {
  color: var(--navy);
}

.legal-breadcrumb i {
  font-size: .55rem;
  color: var(--gold-dark);
}

.legal-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3.2rem,7vw,6.4rem);
  letter-spacing: -.06em;
  line-height: .96;
}

.legal-hero-grid > div > p:last-child {
  max-width: 740px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.legal-summary {
  padding: 26px;
  display: grid;
  gap: 10px;
  border: 1px solid var(--line-strong);
  background: rgba(255,253,248,.92);
  box-shadow: var(--shadow);
}

.legal-summary > i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
}

.legal-summary strong {
  margin-top: 7px;
  font-size: 1rem;
}

.legal-summary span {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.58;
}

.legal-summary small {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--gold-dark);
  font-size: .7rem;
  font-weight: 900;
}

.legal-content-section {
  padding: 82px 0 96px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-muted);
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0,1fr);
  gap: 34px;
  align-items: start;
}

.legal-sidecard {
  position: sticky;
  top: 98px;
  padding: 19px;
  display: grid;
  border: 1px solid var(--line);
  background: var(--paper);
}

.legal-sidecard .mini-label {
  margin-bottom: 10px;
}

.legal-sidecard a {
  min-height: 43px;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 850;
}

.legal-sidecard a:hover {
  color: var(--navy);
}

.legal-document-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(17,24,45,.06);
}

.legal-section {
  padding: 30px;
  display: grid;
  grid-template-columns: 46px minmax(0,1fr);
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.legal-section-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--navy);
}

.legal-section h2 {
  margin: 2px 0 9px;
  font-size: 1.08rem;
}

.legal-section p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.72;
}

.legal-contact {
  padding: 32px;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(110deg, rgba(211,155,50,.10), rgba(118,101,232,.05)),
    var(--paper-muted);
}

.legal-contact h2 {
  margin: 0;
  font-size: clamp(1.8rem,4vw,2.8rem);
  letter-spacing: -.045em;
}

.legal-contact p:last-child {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.legal-footer {
  padding-bottom: 20px;
}

@media (max-width: 900px) {
  .legal-hero-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    max-width: 620px;
  }

  .legal-sidecard {
    position: static;
    grid-template-columns: repeat(4,1fr);
    padding: 0;
  }

  .legal-sidecard .mini-label {
    grid-column: 1 / -1;
    margin: 0;
    padding: 14px;
  }

  .legal-sidecard a {
    min-height: 48px;
    padding: 0 12px;
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .legal-sidecard a:last-child {
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .legal-page {
    padding-bottom: 0;
  }

  .legal-hero {
    padding: 46px 0 48px;
  }

  .legal-hero::after {
    display: none;
  }

  .legal-hero-grid {
    gap: 28px;
  }

  .legal-breadcrumb {
    margin-bottom: 19px;
  }

  .legal-hero h1 {
    font-size: clamp(3rem,15vw,4.5rem);
  }

  .legal-hero-grid > div > p:last-child {
    margin-top: 16px;
    font-size: .94rem;
    line-height: 1.65;
  }

  .legal-summary {
    padding: 20px;
  }

  .legal-content-section {
    padding: 42px 0 58px;
  }

  .legal-layout {
    gap: 16px;
  }

  .legal-sidecard {
    display: none;
  }

  .legal-document-card {
    box-shadow: none;
  }

  .legal-section {
    padding: 21px 18px;
    grid-template-columns: 38px minmax(0,1fr);
    gap: 13px;
  }

  .legal-section-icon {
    width: 38px;
    height: 38px;
  }

  .legal-section h2 {
    margin-top: 0;
    font-size: .98rem;
    line-height: 1.35;
  }

  .legal-section p {
    font-size: .81rem;
    line-height: 1.65;
  }

  .legal-contact {
    padding: 23px 18px;
    grid-template-columns: 1fr;
  }

  .legal-contact .button {
    width: 100%;
    min-height: 50px;
  }

  .legal-footer {
    padding-bottom: calc(26px + env(safe-area-inset-bottom));
  }
}
