:root {
  --ink: #17131f;
  --muted: #696475;
  --purple: #3c136f;
  --purple-2: #6c36a9;
  --gold: #bd9650;
  --milk: #fbf9f5;
  --glass: rgba(255, 255, 255, .58);
  --glass-strong: rgba(255, 255, 255, .76);
  --stroke: rgba(255, 255, 255, .72);
  --shadow: 0 22px 70px rgba(37, 22, 59, .12);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --transition: 560ms cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  background: #eef0f1;
  overflow-x: hidden;
}
button, input { font: inherit; }
button { color: inherit; }

.site-background {
  position: fixed;
  inset: 0;
  z-index: -4;
  background-image: linear-gradient(rgba(250, 250, 248, .34), rgba(248, 246, 242, .34)), url("assets/misty-mountains-hd.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(.9) brightness(1.02);
  pointer-events: none;
  image-rendering: auto;
}
.site-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.44), rgba(247,245,240,.08) 35%, rgba(245,243,239,.24));
}
.ambient { position: fixed; z-index: -3; border-radius: 50%; filter: blur(90px); opacity: .28; pointer-events: none; }
.ambient-one { width: 460px; height: 460px; background: #d8c4ef; top: 4%; right: 4%; }
.ambient-two { width: 380px; height: 380px; background: #f0ddba; bottom: 1%; left: 7%; }

.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.glass {
  background: linear-gradient(145deg, rgba(255,255,255,.74), rgba(255,255,255,.42));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.72);
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
}

.topbar-wrap { position: fixed; top: 18px; left: 0; right: 0; z-index: 50; pointer-events: none; }
.topbar {
  width: min(1180px, calc(100% - 36px)); margin: auto; min-height: 68px; padding: 8px 10px 8px 20px;
  border-radius: 24px; display: flex; align-items: center; justify-content: flex-end; gap: 20px; pointer-events: auto;
}
.desktop-nav { margin-right: auto; display: flex; align-items: center; gap: 4px; }
.nav-link, .mobile-link { border: 0; background: transparent; cursor: pointer; }
.nav-link { padding: 11px 13px; border-radius: 14px; font-size: 13px; font-weight: 600; color: var(--muted); transition: .25s; }
.nav-link:hover, .nav-link.is-active { color: var(--purple); background: rgba(255,255,255,.56); }
.topbar-actions { display: flex; align-items: center; gap: 10px; }

.button { border: 0; border-radius: 16px; min-height: 50px; padding: 0 24px; font-weight: 700; cursor: pointer; transition: transform .25s, box-shadow .25s, background .25s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: linear-gradient(135deg, #2f0d5f, #5f2d96); box-shadow: 0 12px 28px rgba(60,19,111,.25), inset 0 1px 0 rgba(255,255,255,.2); }
.button-primary:hover { box-shadow: 0 16px 36px rgba(60,19,111,.35), 0 0 30px rgba(108,54,169,.15); }
.button-secondary { color: var(--purple); background: rgba(255,255,255,.68); border: 1px solid rgba(255,255,255,.84); box-shadow: 0 10px 26px rgba(39,28,54,.08); }
.button-wide { width: 100%; }
.burger { width: 50px; height: 50px; border: 0; border-radius: 16px; background: rgba(255,255,255,.62); display: none; place-items: center; cursor: pointer; }
.burger span { width: 19px; height: 1.5px; background: var(--ink); display: block; margin: 4px auto; }

.app-shell {
  min-height: 100vh;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
.view {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  min-height: calc(100vh - 100px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity;
  transition: opacity 520ms cubic-bezier(.22, .61, .36, 1), visibility 0s linear 520ms;
}
.view.is-active,
.view.is-entering,
.view.is-leaving {
  visibility: visible;
  transition-delay: 0s;
}
.view.is-active,
.view.is-entering {
  opacity: 1;
  pointer-events: auto;
}
.view.is-leaving {
  opacity: 0;
  pointer-events: none;
}

/* Route content never runs a second animation. The only route animation is the
   cross-fade of the complete view, so text and cards cannot blink or reflow. */
.view:not([data-view="home"]) .reveal,
.view:not([data-view="home"]) .reveal-delay,
.view:not([data-view="home"]) .section-reveal {
  animation: none !important;
}
.hero { min-height: 700px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 48px; padding: 54px 0 42px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 800; color: var(--purple); }
.eyebrow span { width: 28px; height: 1px; background: linear-gradient(90deg, var(--gold), var(--purple)); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(48px, 5.6vw, 80px); line-height: 1.02; letter-spacing: -.055em; margin: 22px 0 24px; max-width: 780px; }
h1 em { font-style: normal; color: var(--purple); position: relative; }
h1 em::after { content: ""; position: absolute; left: 1%; right: 1%; bottom: 2px; height: 10px; border-radius: 50%; background: linear-gradient(90deg, transparent, rgba(189,150,80,.28), transparent); z-index: -1; }
.hero-lead, .section-heading p, .split-copy > p { color: var(--muted); font-size: 18px; line-height: 1.75; max-width: 650px; }
.hero-actions { display: flex; gap: 12px; margin-top: 32px; }
.trust-line { margin-top: 24px; display: flex; align-items: center; gap: 10px; color: #5c5668; font-size: 13px; font-weight: 600; }
.trust-dot { width: 9px; height: 9px; background: #62a46f; border-radius: 50%; box-shadow: 0 0 0 5px rgba(98,164,111,.13); }

.hero-visual { position: relative; min-height: 600px; display: grid; place-items: center; }
.phone-glow { position: absolute; width: 440px; height: 440px; border-radius: 50%; background: radial-gradient(circle, rgba(111,65,158,.26), rgba(255,255,255,0) 68%); filter: blur(10px); }
.phone-float { animation: float 7s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-1.2deg); } 50% { transform: translateY(-14px) rotate(1.1deg); } }
.phone { width: 304px; padding: 9px; border-radius: 53px; background: linear-gradient(145deg,#d7d7da,#3e3e44 34%,#0d0d10 72%,#b7b7bc); box-shadow: 0 48px 80px rgba(25,18,35,.25), inset 0 0 0 1px rgba(255,255,255,.6); position: relative; }
.phone::before { content: ""; position: absolute; left: -3px; top: 118px; width: 4px; height: 84px; border-radius: 4px 0 0 4px; background: #77777c; }
.phone-frame { padding: 5px; border-radius: 45px; background: #050506; }
.phone-screen { height: 614px; overflow: hidden; position: relative; border-radius: 40px; background: linear-gradient(180deg,#f7f3fb,#eee7f6 55%,#f7f3fb); padding: 19px 18px 16px; }
.dynamic-island { position: absolute; z-index: 2; top: 18px; left: 50%; transform: translateX(-50%); width: 95px; height: 27px; border-radius: 20px; background: #050505; }
.status-bar { margin: 0 7px 30px; display: flex; justify-content: space-between; font-size: 10px; font-weight: 800; }
.app-heading { display: flex; align-items: center; justify-content: space-between; font-size: 24px; font-weight: 800; }
.app-heading button { border: 0; width: 32px; height: 32px; border-radius: 10px; background: white; color: var(--purple); }
.search-pill { margin: 18px 0 13px; background: rgba(255,255,255,.84); border: 1px solid rgba(255,255,255,.9); border-radius: 14px; padding: 12px; color: #8d8699; font-size: 11px; }
.number-window { height: 430px; overflow: hidden; mask-image: linear-gradient(transparent, #000 7%, #000 93%, transparent); }
.number-track { display: grid; gap: 10px; animation: numberScroll 21s linear infinite; }
.number-card { min-height: 66px; padding: 12px 14px; border-radius: 17px; background: rgba(255,255,255,.78); border: 1px solid rgba(255,255,255,.84); box-shadow: 0 8px 20px rgba(50,30,73,.06); display: flex; justify-content: space-between; align-items: center; }
.number-card b { font-size: 16px; letter-spacing: .02em; }
.number-card span { color: var(--purple); font-size: 10px; font-weight: 800; background: #efe7f7; padding: 6px 8px; border-radius: 9px; }
@keyframes numberScroll { from { transform: translateY(0); } to { transform: translateY(-50%); } }
.phone-footer { position: absolute; bottom: 0; left: 0; right: 0; height: 56px; padding: 12px 20px; display: flex; justify-content: space-between; background: rgba(255,255,255,.85); backdrop-filter: blur(10px); font-size: 9px; color: #8b8592; }
.phone-footer .is-current { color: var(--purple); font-weight: 800; }

.content-stack { padding-bottom: 84px; }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.stat-card { border-radius: var(--radius-lg); padding: 28px; }
.stat-card strong { display: block; font-size: 32px; letter-spacing: -.04em; color: var(--purple); }
.stat-card span { color: var(--muted); font-size: 13px; }
.section-block { padding: 110px 0 0; }
.section-heading { max-width: 760px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2, .modal h2 { font-size: clamp(36px,4vw,56px); line-height: 1.08; letter-spacing: -.045em; margin: 18px 0 18px; }
.feature-grid { display: grid; gap: 18px; margin-top: 40px; }
.five-up { grid-template-columns: repeat(5,1fr); }
.feature-card, .step-card { border-radius: var(--radius-lg); padding: 26px; transition: transform .26s, box-shadow .26s; }
.feature-card:hover, .step-card:hover, .stat-card:hover { transform: scale(1.02); box-shadow: 0 26px 72px rgba(37,22,59,.16); }
.icon { width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 24px; background: linear-gradient(145deg,#f2eaf9,#fff); color: var(--purple); font-weight: 800; box-shadow: inset 0 0 0 1px rgba(255,255,255,.8); }
.feature-card h3, .step-card h3 { font-size: 18px; margin-bottom: 10px; }
.feature-card p, .step-card p { color: var(--muted); font-size: 13px; line-height: 1.6; margin-bottom: 0; }
.featured { background: linear-gradient(145deg,rgba(73,31,117,.9),rgba(49,17,89,.82)); color: white; border-color: rgba(255,255,255,.28); }
.featured p { color: rgba(255,255,255,.72); }
.featured .icon { background: rgba(255,255,255,.14); color: #f0d6a6; }

.page-stage { min-height: calc(100vh - 100px); padding: 95px 0 100px; display: flex; flex-direction: column; justify-content: center; }
.steps-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 13px; margin-top: 55px; }
.step-card { min-height: 305px; }
.step-card > span { color: var(--gold); font-size: 13px; font-weight: 800; letter-spacing: .1em; }
.step-card .icon { margin-top: 32px; }
.step-arrow { color: var(--gold); font-size: 28px; opacity: .8; }
.center-cta { text-align: center; margin-top: 40px; }

.split-stage { min-height: calc(100vh - 100px); padding: 70px 0 100px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.app-showcase { display: grid; place-items: center; min-height: 610px; }
.mini-phone { width: 318px; padding: 11px; background: linear-gradient(145deg,#c8c8cb,#19191c 46%,#a3a3a8); border-radius: 54px; box-shadow: 0 45px 85px rgba(29,19,40,.24); }
.mini-screen { min-height: 615px; padding: 34px 20px; border: 5px solid #09090a; border-radius: 44px; background: linear-gradient(#f7f4fa,#ece5f3); }
.mini-top { display: flex; justify-content: space-between; font-size: 22px; font-weight: 800; }
.mini-search { margin: 24px 0 14px; padding: 13px; border-radius: 14px; color: #928a99; font-size: 12px; background: white; }
.mini-tags { display: flex; gap: 6px; overflow: hidden; }
.mini-tags span { white-space: nowrap; padding: 7px 9px; border-radius: 10px; font-size: 9px; background: #e9ddf4; color: var(--purple); font-weight: 700; }
.mini-list { display: grid; gap: 11px; margin-top: 18px; }
.mini-list b { display: block; padding: 19px 14px; border-radius: 17px; background: rgba(255,255,255,.85); font-size: 16px; box-shadow: 0 8px 20px rgba(50,30,73,.05); }
.split-copy h1 { font-size: clamp(46px,5vw,70px); }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 34px; }
.check-list div { padding: 17px; border-radius: 20px; background: rgba(255,255,255,.53); border: 1px solid rgba(255,255,255,.7); backdrop-filter: blur(15px); }
.check-list span { float: left; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; background: var(--purple); color: white; margin-right: 10px; }
.check-list b, .check-list small { display: block; }
.check-list b { font-size: 14px; }
.check-list small { color: var(--muted); margin-top: 4px; font-size: 11px; }
.payments-grid { grid-template-columns: repeat(5,1fr); }
.benefits-grid { grid-template-columns: repeat(3,1fr); }

.faq-stage { min-height: calc(100vh - 100px); padding: 85px 0 100px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.faq-stage .section-heading { position: sticky; top: 150px; }
.accordion { display: grid; gap: 12px; }
.faq-item { border-radius: 22px; overflow: hidden; }
.faq-item button { width: 100%; min-height: 78px; border: 0; padding: 0 24px; background: transparent; display: flex; justify-content: space-between; align-items: center; text-align: left; font-weight: 700; cursor: pointer; }
.faq-item i { font-style: normal; width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; color: var(--purple); background: rgba(255,255,255,.7); transition: transform .25s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .38s ease; }
.faq-answer p { color: var(--muted); padding: 0 24px 24px; margin: 0; line-height: 1.7; }
.faq-item.is-open .faq-answer { max-height: 180px; }
.faq-item.is-open i { transform: rotate(45deg); }

.mobile-menu { position: fixed; z-index: 70; top: 12px; right: 12px; bottom: 12px; width: min(360px, calc(100% - 24px)); border-radius: 28px; padding: 70px 18px 20px; transform: translateX(calc(100% + 30px)); transition: transform .42s cubic-bezier(.22,.61,.36,1); }
.mobile-menu.is-open { transform: translateX(0); }
.mobile-close, .modal-close { position: absolute; top: 17px; right: 17px; border: 0; width: 42px; height: 42px; border-radius: 14px; background: rgba(255,255,255,.7); font-size: 25px; cursor: pointer; }
.mobile-menu nav { display: grid; gap: 6px; margin-bottom: 22px; }
.mobile-link { text-align: left; padding: 15px 14px; border-radius: 14px; font-size: 16px; font-weight: 700; color: var(--muted); }
.mobile-link.is-active { background: rgba(255,255,255,.66); color: var(--purple); }
.menu-scrim { position: fixed; inset: 0; z-index: 60; background: rgba(28,21,36,.18); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: .3s; }
.menu-scrim.is-open { opacity: 1; pointer-events: auto; }

.modal-backdrop { position: fixed; inset: 0; z-index: 90; padding: 20px; display: grid; place-items: center; background: rgba(28,21,36,.24); backdrop-filter: blur(9px); opacity: 0; pointer-events: none; transition: opacity .3s; }
.modal-backdrop.is-open { opacity: 1; pointer-events: auto; }
.modal { width: min(520px,100%); position: relative; border-radius: 30px; padding: 40px; transform: translateY(20px) scale(.98); transition: transform .36s; }
.modal-backdrop.is-open .modal { transform: translateY(0) scale(1); }
.modal h2 { margin-top: 16px; margin-bottom: 10px; }
.modal > p { color: var(--muted); line-height: 1.65; }
.modal form { display: grid; gap: 16px; margin-top: 26px; }
.modal label { font-size: 12px; font-weight: 800; color: #5d5666; }
.modal input { width: 100%; height: 54px; border: 1px solid rgba(255,255,255,.9); outline: 0; border-radius: 15px; background: rgba(255,255,255,.68); padding: 0 16px; margin-top: 7px; color: var(--ink); transition: box-shadow .2s, border-color .2s; }
.modal input:focus { border-color: rgba(92,40,147,.4); box-shadow: 0 0 0 4px rgba(92,40,147,.08); }
.modal form small { text-align: center; color: #8a8490; font-size: 10px; line-height: 1.5; }
.form-success { display: none; padding: 32px 0 10px; text-align: center; }
.form-success strong, .form-success span { display: block; }
.form-success strong { color: var(--purple); font-size: 24px; }
.form-success span { color: var(--muted); margin-top: 8px; }

.reveal { animation: softReveal 900ms 80ms cubic-bezier(.22, 1, .36, 1) both; }
.reveal-delay { animation: softReveal 1050ms 210ms cubic-bezier(.22, 1, .36, 1) both; }
.section-reveal { animation: none; }
@keyframes softReveal {
  from { opacity: 0; filter: blur(5px); }
  to { opacity: 1; filter: blur(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .burger { display: block; }
  .hero { grid-template-columns: 1fr 1fr; gap: 20px; }
  .five-up, .payments-grid { grid-template-columns: repeat(3,1fr); }
  .steps-flow { grid-template-columns: 1fr 1fr; }
  .step-arrow { display: none; }
  .split-stage { gap: 45px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 620px); }
  .topbar { width: calc(100% - 24px); min-height: 62px; padding: 6px; border-radius: 21px; }
  .topbar .button-primary { display: none; }
  .app-shell { padding-top: 84px; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 52px 0 70px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  h1 { font-size: clamp(42px,13vw,62px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { width: 100%; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 560px; }
  .phone { width: 274px; }
  .phone-screen { height: 553px; }
  .number-window { height: 372px; }
  .stats-grid { grid-template-columns: 1fr; }
  .section-block { padding-top: 80px; }
  .five-up, .payments-grid, .benefits-grid { grid-template-columns: 1fr 1fr; }
  .feature-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .page-stage { padding: 68px 0 80px; justify-content: flex-start; }
  .steps-flow { grid-template-columns: 1fr; }
  .step-card { min-height: 0; }
  .split-stage { grid-template-columns: 1fr; gap: 30px; padding: 55px 0 80px; }
  .app-showcase { order: 2; min-height: 570px; }
  .split-copy { text-align: center; }
  .split-copy .eyebrow { justify-content: center; }
  .split-copy h1 { font-size: 46px; }
  .check-list { grid-template-columns: 1fr; text-align: left; }
  .mini-phone { width: 280px; }
  .mini-screen { min-height: 535px; }
  .faq-stage { grid-template-columns: 1fr; gap: 32px; padding: 60px 0 80px; }
  .faq-stage .section-heading { position: static; text-align: center; }
  .faq-stage .eyebrow { justify-content: center; }
  .modal { padding: 34px 22px 24px; }
}

@media (max-width: 430px) {
  .five-up, .payments-grid, .benefits-grid { grid-template-columns: 1fr; }
  .feature-card:last-child:nth-child(odd) { grid-column: auto; }
  .hero-visual { min-height: 520px; }
  .phone { width: 250px; border-radius: 46px; }
  .phone-screen { height: 505px; border-radius: 35px; }
  .number-window { height: 328px; }
  .number-card { min-height: 59px; }
  .number-card b { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* Mobile background is locked to the physical screen dimensions once.
   Mobile browser toolbars may change the visual viewport while scrolling,
   but they can no longer recalculate the forest image scale. */
@media (max-width: 768px) {
  html, body { min-height: 100%; }

  .site-background {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    bottom: auto !important;
    width: var(--bg-static-width, 100vw) !important;
    height: var(--bg-static-height, 100vh) !important;
    min-width: var(--bg-static-width, 100vw) !important;
    min-height: var(--bg-static-height, 100vh) !important;
    max-width: var(--bg-static-width, 100vw) !important;
    max-height: var(--bg-static-height, 100vh) !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    will-change: auto !important;
    contain: none !important;
  }

  .site-background::after {
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .ambient { display: none; }
}
