:root {
  --bg: #f2f5f1;
  --surface: #fffefb;
  --surface-soft: #e9efea;
  --ink: #152521;
  --ink-soft: #40534e;
  --muted: #667971;
  --line: #d5dfd9;
  --green-950: #071d19;
  --green-900: #0b2d28;
  --green-800: #123a34;
  --green-700: #085142;
  --green-600: #0d6b57;
  --green-500: #278b76;
  --green-100: #dcefe7;
  --gold: #b18845;
  --gold-soft: #f3ead9;
  --white: #fffefb;
  --danger: #b33f47;
  --shadow-sm: 0 8px 30px rgba(12, 45, 38, .07);
  --shadow-md: 0 24px 65px rgba(12, 45, 38, .12);
  --shadow-lg: 0 35px 100px rgba(4, 24, 19, .25);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }

html { min-width: 320px; scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

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

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(39, 139, 118, .45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 16px;
  padding: 10px 15px;
  border-radius: 10px;
  color: white;
  background: var(--green-700);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.site-header.is-scrolled {
  border-color: rgba(213, 223, 217, .85);
  background: rgba(242, 245, 241, .88);
  box-shadow: 0 10px 30px rgba(12, 45, 38, .05);
  backdrop-filter: blur(18px);
}

.header-inner { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }

.brand { display: inline-flex; align-items: center; color: var(--green-900); text-decoration: none; }
.brand-logo { width: 148px; height: auto; display: block; }

.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav a, .text-link { color: var(--ink-soft); font-size: 14px; font-weight: 650; text-decoration: none; transition: color .2s ease; }
.desktop-nav a:hover, .text-link:hover { color: var(--green-600); }
.header-actions { display: flex; align-items: center; gap: 18px; }

.button {
  min-height: 48px;
  padding: 0 21px;
  border: 1px solid var(--green-600);
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  background: var(--green-600);
  box-shadow: 0 12px 30px rgba(13, 107, 87, .18);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
  transition: transform .14s ease, background .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
}

.button:hover { border-color: var(--green-700); background: var(--green-700); box-shadow: 0 15px 34px rgba(13, 107, 87, .25); transform: translateY(-2px); }
.button:active { transform: scale(.98); }
.button-small { min-height: 43px; padding-inline: 17px; }
.button-large { min-height: 56px; padding-inline: 27px; border-radius: 15px; font-size: 15px; }
.button-ghost { border-color: var(--line); color: var(--green-900); background: rgba(255,255,255,.6); box-shadow: none; }
.button-ghost:hover { border-color: var(--green-500); color: var(--green-700); background: white; box-shadow: var(--shadow-sm); }
.button-light { border-color: white; color: var(--green-900); background: white; }
.button-light:hover { border-color: var(--gold-soft); background: var(--gold-soft); }
.button-outline-light { border-color: rgba(255,255,255,.32); color: white; background: transparent; box-shadow: none; }
.button-outline-light:hover { border-color: white; color: var(--green-900); background: white; }

.menu-button { width: 48px; height: 48px; padding: 0; border: 1px solid var(--line); border-radius: 13px; display: none; place-items: center; background: rgba(255,255,255,.72); cursor: pointer; }
.menu-button span { width: 19px; height: 2px; display: block; border-radius: 5px; background: var(--green-900); transition: transform .2s ease, opacity .2s ease; }
.menu-button span + span { margin-top: 4px; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 82px 0 0; padding: 28px 20px max(28px, env(safe-area-inset-bottom)); background: rgba(242,245,241,.98); backdrop-filter: blur(18px); }
.mobile-menu a:not(.button) { min-height: 52px; display: flex; align-items: center; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 17px; font-weight: 650; text-decoration: none; }
.mobile-menu .button { width: 100%; margin-top: 22px; }

.hero { position: relative; min-height: 860px; padding: 145px 0 100px; overflow: hidden; isolation: isolate; }
.hero::after { content: ""; position: absolute; z-index: -2; inset: auto 0 0; height: 280px; background: linear-gradient(180deg, transparent, rgba(220,239,231,.4)); }
.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.hero-glow-one { width: 560px; height: 560px; right: -170px; top: -130px; background: radial-gradient(circle, rgba(39,139,118,.18), transparent 68%); }
.hero-glow-two { width: 500px; height: 500px; left: -280px; bottom: -200px; background: radial-gradient(circle, rgba(177,136,69,.12), transparent 70%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr); align-items: center; gap: 72px; }
.hero-copy { padding-top: 12px; }
.eyebrow, .section-label { margin: 0 0 18px; color: var(--green-600); font-size: 12px; font-weight: 800; letter-spacing: .13em; line-height: 1.3; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px var(--gold-soft); }
.hero h1, .statement h2, .section-heading h2, .journey h2, .security h2, .faq-heading h2, .final-cta h2 { margin: 0; color: var(--green-900); font-size: clamp(46px, 5.3vw, 75px); font-weight: 660; letter-spacing: -.065em; line-height: .99; }
.hero h1 em, .final-cta h2 em { color: var(--green-600); font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.hero-lead { max-width: 640px; margin: 28px 0 0; color: var(--ink-soft); font-size: clamp(18px, 2vw, 21px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-trust { padding: 0; display: flex; flex-wrap: wrap; gap: 20px; margin-top: 27px; color: var(--muted); font-size: 12px; font-weight: 650; list-style: none; }
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green-500); }

.product-stage { position: relative; min-height: 650px; display: grid; place-items: center; }
.product-stage::before { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: linear-gradient(145deg, var(--green-900), #16493e); box-shadow: var(--shadow-lg); }
.product-stage::after { content: ""; position: absolute; width: 390px; height: 390px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.phone-shell { position: relative; z-index: 2; width: 330px; padding: 8px; border: 1px solid rgba(255,255,255,.2); border-radius: 41px; color: var(--ink); background: #071b17; box-shadow: 0 38px 85px rgba(1,18,14,.42); transform: rotate(-2deg); }
.phone-top { height: 34px; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.78); font-size: 10px; }
.phone-top span { width: 70px; height: 21px; border-radius: 20px; background: #020907; }
.phone-top i { width: 17px; height: 7px; border-radius: 10px; border: 1px solid rgba(255,255,255,.4); }
.phone-content { padding: 17px 14px 14px; border-radius: 31px; background: #f4f7f3; }
.mini-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mini-header div { display: grid; }
.mini-header small { color: var(--muted); font-size: 9px; }
.mini-header strong { color: var(--ink); font-size: 12px; }
.avatar { width: 30px; height: 30px; border-radius: 10px; display: grid; place-items: center; color: white; background: var(--green-900); font-size: 9px; font-weight: 750; }
.balance-card { position: relative; margin-top: 16px; padding: 18px; border-radius: 20px; overflow: hidden; color: white; background: linear-gradient(140deg, var(--green-900), #126351); }
.balance-card::after { content: ""; position: absolute; width: 130px; height: 130px; right: -45px; bottom: -70px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.balance-card small { display: block; color: rgba(255,255,255,.65); font-size: 9px; }
.balance-card strong { display: block; margin-top: 5px; font-size: 27px; letter-spacing: -.04em; }
.balance-card span { color: #88dcc1; font-size: 9px; font-weight: 700; }
.sparkline { height: 55px; margin: 14px -4px -4px; display: flex; align-items: end; gap: 5px; }
.sparkline i { flex: 1; min-height: 12px; border-radius: 5px 5px 2px 2px; background: rgba(255,255,255,.22); }
.sparkline i:nth-child(1) { height: 24%; }.sparkline i:nth-child(2) { height: 35%; }.sparkline i:nth-child(3) { height: 32%; }.sparkline i:nth-child(4) { height: 48%; }.sparkline i:nth-child(5) { height: 54%; }.sparkline i:nth-child(6) { height: 62%; }.sparkline i:nth-child(7) { height: 78%; }.sparkline i:nth-child(8) { height: 94%; background: #7bd0b4; }
.score-row { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 9px; }
.score-card { padding: 13px; border: 1px solid var(--line); border-radius: 15px; background: white; }
.score-card small, .score-card span { display: block; color: var(--muted); font-size: 8px; }
.score-card strong { display: block; margin: 4px 0; color: var(--green-900); font-size: 22px; line-height: 1.1; }
.score-card strong em { color: var(--muted); font-size: 9px; font-style: normal; }
.score-card span { color: var(--green-600); font-weight: 700; }
.mentor-card { margin-top: 9px; padding: 13px; display: flex; gap: 11px; border: 1px solid #d7e7df; border-radius: 15px; background: var(--green-100); }
.mentor-symbol { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 9px; display: grid; place-items: center; color: white; background: var(--green-600); font-family: Georgia, serif; font-weight: 700; }
.mentor-card div:last-child { display: grid; }
.mentor-card small { color: var(--green-600); font-size: 8px; font-weight: 700; }
.mentor-card strong { color: var(--green-900); font-size: 10px; }
.mentor-card p { margin: 3px 0 0; color: var(--ink-soft); font-size: 8px; line-height: 1.45; }
.float-card { position: absolute; z-index: 3; min-width: 158px; padding: 15px 17px; border: 1px solid rgba(255,255,255,.52); border-radius: 18px; background: rgba(255,254,251,.92); box-shadow: var(--shadow-md); backdrop-filter: blur(12px); }
.float-card span, .float-card small { display: block; color: var(--muted); font-size: 9px; }
.float-card strong { display: block; margin: 3px 0; color: var(--green-900); font-size: 15px; }
.float-card-top { top: 110px; right: -5px; }
.float-card-bottom { bottom: 90px; left: -15px; min-width: 200px; }
.float-card-bottom div { height: 5px; margin-top: 8px; border-radius: 10px; background: var(--surface-soft); overflow: hidden; }
.float-card-bottom i { width: 72%; height: 100%; display: block; border-radius: inherit; background: var(--green-500); }

.statement { padding: 110px 0; color: white; background: var(--green-900); }
.statement-grid { display: grid; grid-template-columns: 280px 1fr; gap: 60px; }
.statement .section-label { color: #89c8b5; }
.statement h2 { max-width: 790px; color: white; font-size: clamp(38px, 5vw, 66px); }
.statement p:not(.section-label) { max-width: 680px; margin: 28px 0 0; color: rgba(255,255,255,.68); font-size: 19px; }

.feature-section { padding: 125px 0; }
.section-heading { display: grid; grid-template-columns: 1.15fr .65fr; align-items: end; gap: 80px; }
.section-heading h2, .journey h2, .security h2, .faq-heading h2 { font-size: clamp(40px, 4.5vw, 62px); }
.section-heading > p { margin: 0 0 5px; color: var(--ink-soft); font-size: 18px; }
.feature-grid { margin-top: 65px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.feature-card { position: relative; min-height: 510px; padding: 38px; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: rgba(255,254,251,.88); box-shadow: var(--shadow-sm); }
.feature-card-large, .feature-card-wide { grid-column: 1 / -1; min-height: 430px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; }
.feature-number { position: absolute; top: 29px; right: 32px; color: #afbbb6; font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.tag { margin: 0 0 14px; color: var(--green-600); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.feature-card h3 { max-width: 470px; margin: 0; color: var(--green-900); font-size: clamp(27px, 3vw, 39px); letter-spacing: -.045em; line-height: 1.1; }
.feature-card p:not(.tag) { max-width: 500px; margin: 18px 0 0; color: var(--ink-soft); }
.calendar-demo { padding: 28px; border: 1px solid var(--line); border-radius: 25px; background: #f7f9f6; box-shadow: var(--shadow-md); transform: rotate(1deg); }
.calendar-demo > div { padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.calendar-demo span, .calendar-demo small { color: var(--muted); font-size: 11px; }
.calendar-demo strong { display: block; color: var(--green-900); font-size: 34px; letter-spacing: -.04em; }
.calendar-demo ul { margin: 15px 0 0; padding: 0; list-style: none; }
.calendar-demo li { min-height: 47px; display: grid; grid-template-columns: 9px 1fr auto; align-items: center; gap: 10px; }
.calendar-demo li i { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); }
.calendar-demo li:nth-child(2) i { background: var(--gold); }.calendar-demo li:nth-child(3) i { background: #9aacaa; }
.calendar-demo li strong { font-size: 13px; }
.equation { position: absolute; inset: auto 30px 30px; display: grid; grid-template-columns: 1fr auto 1fr auto 1.2fr; align-items: center; gap: 10px; }
.equation span { min-height: 105px; padding: 17px; border: 1px solid var(--line); border-radius: 17px; display: flex; flex-direction: column; justify-content: center; background: #f8faf8; }
.equation small { color: var(--muted); font-size: 9px; }
.equation strong { margin-top: 5px; color: var(--green-900); font-size: 17px; }
.equation b { color: var(--muted); font-size: 18px; }
.equation .highlight { border-color: var(--green-500); background: var(--green-100); }
.feature-card-dark { color: white; border-color: var(--green-900); background: var(--green-900); box-shadow: var(--shadow-md); }
.feature-card-dark .feature-number { color: rgba(255,255,255,.35); }
.feature-card-dark .tag { color: #81cbb4; }
.feature-card-dark h3 { color: white; }
.feature-card-dark p:not(.tag) { color: rgba(255,255,255,.65); }
.goal-demo { position: absolute; inset: auto 38px 38px; padding: 22px; border: 1px solid rgba(255,255,255,.16); border-radius: 19px; background: rgba(255,255,255,.07); }
.goal-demo > div:first-child { display: flex; justify-content: space-between; align-items: center; }
.goal-demo span, .goal-demo small { color: rgba(255,255,255,.65); font-size: 11px; }
.goal-demo strong { color: white; }
.progress { height: 9px; margin: 14px 0 10px; border-radius: 10px; background: rgba(255,255,255,.12); overflow: hidden; }
.progress i { width: 40%; height: 100%; display: block; border-radius: inherit; background: linear-gradient(90deg, #52b795, #d5b375); }
.feature-card-wide { background: linear-gradient(145deg, #fffefb, #eef4f0); }
.mentor-dialog { padding: 27px; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: var(--shadow-md); }
.mentor-dialog > p { margin: 0 0 16px !important; color: var(--green-900) !important; font-size: 15px; font-weight: 700; }
.mentor-dialog div { padding: 18px; border-radius: 16px; background: var(--green-100); }
.mentor-dialog span, .mentor-dialog small { display: block; color: var(--green-600); font-size: 10px; font-weight: 750; }
.mentor-dialog strong { display: block; margin: 6px 0 12px; color: var(--green-900); font-size: 18px; line-height: 1.35; }

.journey { padding: 125px 0; color: white; background: linear-gradient(135deg, var(--green-950), var(--green-900)); }
.journey-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.journey .section-label { color: #80c5b0; }
.journey h2 { color: white; }
.journey-copy > p:not(.section-label) { max-width: 480px; margin: 24px 0 30px; color: rgba(255,255,255,.65); font-size: 18px; }
.journey-list { margin: 0; padding: 0; list-style: none; }
.journey-list li { min-height: 175px; padding: 8px 0 36px; border-bottom: 1px solid rgba(255,255,255,.13); display: grid; grid-template-columns: 58px 1fr; gap: 22px; }
.journey-list li + li { padding-top: 35px; }
.journey-list > li > span { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.22); border-radius: 15px; display: grid; place-items: center; color: #88cdb8; font-size: 13px; font-weight: 800; }
.journey-list small { color: #84cbb5; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.journey-list h3 { margin: 6px 0 8px; color: white; font-size: 25px; letter-spacing: -.035em; }
.journey-list p { margin: 0; color: rgba(255,255,255,.6); }

.security { padding: 130px 0; background: var(--surface); }
.security-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 100px; }
.security-seal { position: relative; width: min(100%, 430px); aspect-ratio: 1; margin: auto; display: grid; place-items: center; }
.security-seal::before, .security-seal::after, .security-seal i { content: ""; position: absolute; border: 1px solid var(--line); border-radius: 50%; }
.security-seal::before { inset: 0; }.security-seal::after { inset: 14%; }.security-seal i:nth-of-type(1) { inset: 28%; background: var(--green-100); border-color: #c9e4d9; }
.security-seal i:nth-of-type(2) { width: 12px; height: 12px; top: 12%; right: 20%; border: 0; background: var(--gold); box-shadow: 0 0 0 8px var(--gold-soft); }
.security-seal i:nth-of-type(3) { width: 8px; height: 8px; bottom: 22%; left: 9%; border: 0; background: var(--green-500); }
.security-seal img { position: relative; z-index: 2; width: 150px; height: 150px; object-fit: contain; filter: drop-shadow(0 18px 28px rgba(10,45,38,.18)); }
.security-copy > p:not(.section-label):not(.disclaimer) { max-width: 610px; margin: 24px 0 32px; color: var(--ink-soft); font-size: 18px; }
.security-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.security-points > div { min-height: 155px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: #f8faf8; }
.security-points span { color: var(--green-600); font-size: 10px; font-weight: 800; }
.security-points p { margin: 16px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.security-points strong { display: block; margin-bottom: 5px; color: var(--green-900); font-size: 14px; }
.disclaimer { margin: 22px 0 0; color: var(--muted); font-size: 11px; }

.faq-section { padding: 120px 0; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; }
.faq-heading { position: sticky; top: 120px; align-self: start; }
.faq-heading > p:last-child { margin: 20px 0 0; color: var(--muted); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--green-900); font-size: 18px; font-weight: 720; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 34px; height: 34px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 11px; display: grid; place-items: center; color: var(--green-600); font-size: 22px; font-weight: 400; transition: transform .2s ease, background .2s ease; }
.faq-list details[open] summary span { color: white; background: var(--green-600); transform: rotate(45deg); }
.faq-list details p { max-width: 690px; margin: -6px 55px 28px 0; color: var(--ink-soft); }

.final-cta { padding: 35px 0 100px; }
.final-cta-card { position: relative; padding: 100px 60px; border-radius: 42px; overflow: hidden; text-align: center; color: white; background: linear-gradient(140deg, var(--green-900), #0b3e35); box-shadow: var(--shadow-lg); }
.final-cta .section-label { position: relative; z-index: 2; color: #88cdb8; }
.final-cta h2 { position: relative; z-index: 2; color: white; font-size: clamp(41px, 5vw, 67px); }
.final-cta h2 em { color: #93d7c1; }
.final-cta-card > p:not(.section-label) { position: relative; z-index: 2; max-width: 650px; margin: 25px auto 0; color: rgba(255,255,255,.67); font-size: 18px; }
.final-actions { position: relative; z-index: 2; display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 35px; }
.final-orbit, .final-orbit i { position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.final-orbit { width: 660px; height: 660px; right: -320px; top: -330px; }
.final-orbit i:nth-child(1) { inset: 14%; }.final-orbit i:nth-child(2) { inset: 28%; }.final-orbit i:nth-child(3) { width: 13px; height: 13px; left: 20%; bottom: 18%; border: 0; background: var(--gold); }

.footer { padding: 70px 0 26px; color: rgba(255,255,255,.65); background: var(--green-950); }
.footer-top { display: grid; grid-template-columns: 1.25fr .8fr .8fr 1fr; gap: 55px; }
.brand-footer { width: fit-content; padding: 8px 12px; border-radius: 15px; background: white; box-shadow: 0 10px 30px rgba(0,0,0,.15); }
.brand-footer .brand-logo { width: 140px; }
.footer-top > div:first-child p { margin: 20px 0 0; font-size: 15px; }
.footer nav { display: grid; align-content: start; gap: 12px; }
.footer strong { margin-bottom: 5px; color: white; font-size: 13px; }
.footer nav a { width: fit-content; font-size: 13px; text-decoration: none; transition: color .2s ease; }
.footer nav a:hover { color: white; }
.footer-action p { margin: 5px 0 18px; font-size: 13px; }
.footer-action .button { min-height: 42px; padding-inline: 16px; }
.footer-bottom { margin-top: 60px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; font-size: 11px; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .menu-button { display: grid; }
  .header-actions { margin-left: auto; }
  .hero { padding-top: 125px; }
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-copy { max-width: 760px; text-align: center; margin: auto; }
  .eyebrow { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .product-stage { min-height: 680px; }
  .product-stage::before { width: 540px; height: 540px; }
  .float-card-top { right: 14%; }.float-card-bottom { left: 13%; }
  .statement-grid { grid-template-columns: 1fr; gap: 15px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .section-heading > p { max-width: 630px; }
  .journey-grid, .security-grid, .faq-grid { gap: 55px; }
  .security-points { grid-template-columns: 1fr; }
  .security-points > div { min-height: auto; }
  .footer-top { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-action { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .header-inner { height: 72px; }
  .header-actions { display: none; }
  .mobile-menu { inset: 72px 0 0; }
  .hero { min-height: 0; padding: 116px 0 75px; }
  .hero h1 { font-size: clamp(42px, 13vw, 62px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-trust { gap: 10px 18px; }
  .product-stage { min-height: 560px; margin-top: 10px; }
  .product-stage::before { width: 400px; height: 400px; }
  .product-stage::after { width: 310px; height: 310px; }
  .phone-shell { width: 285px; }
  .float-card-top { top: 60px; right: -5px; }.float-card-bottom { bottom: 38px; left: -3px; min-width: 175px; }
  .statement, .feature-section, .journey, .security, .faq-section { padding: 85px 0; }
  .statement h2, .section-heading h2, .journey h2, .security h2, .faq-heading h2 { font-size: 42px; }
  .statement p:not(.section-label), .section-heading > p { font-size: 16px; }
  .feature-grid { margin-top: 42px; grid-template-columns: 1fr; }
  .feature-card, .feature-card-large, .feature-card-wide { grid-column: auto; min-height: 490px; padding: 28px; display: block; }
  .feature-card-large { min-height: 690px; }
  .feature-card-wide { min-height: 640px; }
  .calendar-demo { position: absolute; inset: auto 24px 24px; transform: none; }
  .equation { grid-template-columns: 1fr; inset: auto 24px 24px; }
  .equation span { min-height: auto; }.equation b { display: none; }
  .goal-demo { inset: auto 28px 28px; }
  .mentor-dialog { position: absolute; inset: auto 24px 24px; }
  .journey-grid, .security-grid, .faq-grid { grid-template-columns: 1fr; }
  .journey-list { margin-top: 18px; }
  .security-seal { width: 320px; order: 2; }
  .security-copy { order: 1; }
  .faq-heading { position: static; }
  .final-cta { padding: 15px 0 75px; }
  .final-cta-card { width: calc(100% - 24px); padding: 72px 22px; border-radius: 31px; }
  .final-actions { display: grid; }
  .final-actions .button { width: 100%; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > div:first-child, .footer-action { grid-column: 1 / -1; }
}

@media (max-width: 470px) {
  .hero-trust { display: grid; justify-content: start; text-align: left; }
  .product-stage { min-height: 520px; margin-inline: -6px; }
  .product-stage::before { width: 350px; height: 350px; }
  .phone-shell { width: 260px; }
  .float-card { padding: 11px 13px; }
  .float-card-top { right: -6px; }.float-card-bottom { left: -6px; min-width: 155px; }
  .balance-card strong { font-size: 24px; }
  .statement h2, .section-heading h2, .journey h2, .security h2, .faq-heading h2 { font-size: 37px; }
  .feature-card h3 { font-size: 29px; }
  .security-seal { width: 270px; }
  .journey-list li { grid-template-columns: 48px 1fr; gap: 13px; }
  .journey-list h3 { font-size: 21px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top > div:first-child, .footer-action { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media (prefers-contrast: more) {
  :root { --line: #9bacA4; --muted: #4b5f57; }
  .button-ghost { background: white; }
}
