:root {
  color-scheme: dark;
  --bg: #0b1212;
  --bg-2: #101c1a;
  --surface: #142522;
  --surface-2: #1b302b;
  --ink: #edf6f0;
  --ink-soft: #a8bbb3;
  --ink-faint: #789189;
  --line: rgba(195, 224, 211, .15);
  --line-strong: rgba(195, 224, 211, .26);
  --green: #76d8ad;
  --green-deep: #2f8d72;
  --green-wash: rgba(118, 216, 173, .11);
  --orange: #f47637;
  --orange-2: #ff9a56;
  --orange-dark: #d84f19;
  --shadow: 0 22px 70px rgba(0, 0, 0, .22);
  --shadow-soft: 0 12px 36px rgba(0, 0, 0, .16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 72px);
  --header-h: 78px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --font-body: 'Segoe UI Variable', 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Segoe UI Variable Display', 'Segoe UI', system-ui, sans-serif;
  --hero-image: url('/assets/hero-anywhere-dark-v2.webp');
  --hero-overlay: linear-gradient(90deg, rgba(5, 12, 12, .97) 0%, rgba(5, 12, 12, .88) 35%, rgba(5, 12, 12, .5) 59%, rgba(5, 12, 12, .08) 100%);
  --hero-bottom-overlay: linear-gradient(0deg, rgba(5, 12, 12, .56), transparent 30%);
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f5f9f6;
  --bg-2: #ebf3ee;
  --surface: #ffffff;
  --surface-2: #eef6f1;
  --ink: #14312a;
  --ink-soft: #5a726a;
  --ink-faint: #60766f;
  --line: rgba(20, 49, 42, .13);
  --line-strong: rgba(20, 49, 42, .24);
  --green: #247a62;
  --green-deep: #1d6552;
  --green-wash: rgba(36, 122, 98, .09);
  --orange: #c2410c;
  --orange-2: #e35d22;
  --orange-dark: #9f3109;
  --shadow: 0 22px 70px rgba(26, 76, 59, .12);
  --shadow-soft: 0 12px 36px rgba(26, 76, 59, .08);
  --hero-image: url('/assets/hero-anywhere-light-v2.webp');
  --hero-overlay: linear-gradient(90deg, rgba(245, 249, 246, .98) 0%, rgba(245, 249, 246, .93) 35%, rgba(245, 249, 246, .58) 59%, rgba(245, 249, 246, .08) 100%);
  --hero-bottom-overlay: linear-gradient(0deg, rgba(245, 249, 246, .5), transparent 30%);
}

* { box-sizing: border-box; }
 [hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; color: var(--ink); background: var(--bg); font: 16px/1.6 var(--font-body); text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
body, button, a { -webkit-tap-highlight-color: transparent; }
button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 3px solid color-mix(in srgb, var(--orange) 70%, white); outline-offset: 3px; }

.page-width { width: min(var(--container), calc(100% - 2 * var(--gutter))); margin-inline: auto; }
.section-light, .section-dark { position: relative; overflow: clip; }
.section-light { color: var(--ink); background: var(--bg); }
.section-dark { color: var(--ink); background: var(--bg); }
.section-dark::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 55% 70% at 12% 0%, rgba(104, 199, 159, .08), transparent 70%); }
.section-dark > * { position: relative; z-index: 1; }
.hero .hero-backdrop { position: absolute; z-index: -2; }
.section-light--tight { padding-top: 80px; }

.site-header { position: fixed; z-index: 20; top: 0; left: 0; right: 0; min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 0 max(var(--gutter), env(safe-area-inset-left)) 0 max(var(--gutter), env(safe-area-inset-left)); padding-right: max(var(--gutter), env(safe-area-inset-right)); border-bottom: 1px solid transparent; transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease); }
.site-header.is-scrolled { background: color-mix(in srgb, var(--bg) 82%, transparent); border-color: var(--line); box-shadow: 0 10px 32px rgba(0, 0, 0, .12); backdrop-filter: blur(18px); }
.site-header:not(.is-scrolled) .brand,
.site-header:not(.is-scrolled) .desktop-nav a,
.site-header:not(.is-scrolled) .header-login { color: #edf6f0; }
.site-header:not(.is-scrolled) .desktop-nav a:hover,
.site-header:not(.is-scrolled) .header-login:hover { color: #ffffff; }
.brand { min-height: 44px; display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font: 800 21px/1 var(--font-display); letter-spacing: -.05em; white-space: nowrap; }
.brand img { width: 27px; height: 27px; filter: brightness(0) saturate(100%) invert(77%) sepia(20%) saturate(960%) hue-rotate(102deg) brightness(91%); }
.brand .brand-mark { position: relative; width: 29px; height: 29px; flex: none; display: inline-grid; place-items: center; overflow: hidden; border: 1px solid color-mix(in srgb, var(--line-strong) 86%, transparent); border-radius: 10px; color: var(--green); background: color-mix(in srgb, var(--surface) 48%, transparent); box-shadow: inset 0 1px 0 color-mix(in srgb, var(--ink) 15%, transparent), 0 7px 18px rgba(3, 15, 11, .1); backdrop-filter: blur(12px) saturate(120%); -webkit-backdrop-filter: blur(12px) saturate(120%); }
.brand .brand-mark::after { content: ''; position: absolute; inset: 4px; background: currentColor; -webkit-mask: url('/icons/chart-no-axes-combined.svg') center / contain no-repeat; mask: url('/icons/chart-no-axes-combined.svg') center / contain no-repeat; }
.desktop-nav { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 34px); margin-left: auto; }
.desktop-nav a, .header-login { color: var(--ink-soft); font-size: 13px; font-weight: 600; transition: color .2s ease; }
.desktop-nav a:hover, .header-login:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.theme-toggle, .menu-toggle { display: grid; place-items: center; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); border-radius: 13px; background: color-mix(in srgb, var(--surface) 42%, transparent); cursor: pointer; transition: background .2s ease, transform .2s ease; }
.theme-toggle:hover, .menu-toggle:hover { background: var(--surface-2); }
.theme-toggle:active, .menu-toggle:active { transform: scale(.96); }
.theme-toggle img, .menu-toggle img { width: 18px; height: 18px; filter: brightness(0) saturate(100%) invert(82%) sepia(10%) saturate(575%) hue-rotate(105deg) brightness(93%); }
.menu-toggle { display: none; }
.mobile-nav { display: none; }

.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 0 20px; border: 1px solid transparent; border-radius: 13px; font-size: 14px; font-weight: 700; cursor: pointer; transition: transform .2s var(--ease), border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease; }
.button img { width: 17px; height: 17px; filter: brightness(0) invert(1); }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(.98); }
.button--small { min-height: 42px; padding-inline: 16px; font-size: 13px; }
.button--orange { color: #fffaf5; background-color: var(--orange-dark); background-image: linear-gradient(110deg, var(--orange-dark), var(--orange) 52%, var(--orange-2)); box-shadow: 0 11px 24px rgba(244, 118, 55, .2); }
html:not([data-theme="light"]) .button--orange { color: var(--bg); }
.button--orange:hover { box-shadow: 0 14px 32px rgba(244, 118, 55, .34); }
.button--ghost { color: var(--ink); border-color: var(--line-strong); background: color-mix(in srgb, var(--surface) 35%, transparent); }
.button--ghost:hover { border-color: var(--green); background: var(--green-wash); }
.hero .button--ghost { color: #edf6f0; border-color: rgba(237, 246, 240, .28); background: rgba(6, 15, 14, .2); }
.hero .button--ghost:hover { color: #ffffff; border-color: var(--green); background: rgba(118, 216, 173, .1); }
.button--outline { color: var(--green); border-color: color-mix(in srgb, var(--green) 52%, var(--line)); background: transparent; }
.button--outline:hover { border-color: var(--green); background: var(--green-wash); }
.button--hero { min-height: 54px; padding-inline: 21px; }
.cta-attention { background-image: linear-gradient(110deg, var(--orange-dark) 0%, var(--orange) 28%, var(--orange-2) 50%, var(--orange) 72%, var(--orange-dark) 100%); background-size: 240% 100%; background-position: 0 50%; }
@keyframes btnFlow { 0%, 100% { background-position: 0 50%; } 50% { background-position: 100% 50%; } }
@keyframes ctaSoftGlow { 0%, 100% { box-shadow: 0 11px 24px rgba(244, 118, 55, .2); } 50% { box-shadow: 0 16px 36px rgba(244, 118, 55, .38); } }
.cta-attention.is-flowing { animation: btnFlow 4s ease-in-out infinite, ctaSoftGlow 2.6s ease-in-out 3; }

.hero { min-height: max(720px, 100svh); display: flex; align-items: center; padding: calc(var(--header-h) + 56px) 0 100px; isolation: isolate; }
.hero-backdrop { position: absolute; z-index: -2; inset: 0; background-image: var(--hero-overlay), var(--hero-image); background-position: center; background-size: cover; }
.hero-backdrop::after { content: ''; position: absolute; inset: 0; background: var(--hero-bottom-overlay); }
.hero-content { width: min(var(--container), calc(100% - 2 * var(--gutter))); margin-inline: max(var(--gutter), calc((100vw - var(--container)) / 2)); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0; color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow--green { color: var(--green-deep); }
html:not([data-theme="light"]) .eyebrow--green { color: var(--green); }
.eyebrow-dot { width: 8px; height: 8px; border: 2px solid var(--green); border-radius: 50%; box-shadow: 0 0 0 4px rgba(118, 216, 173, .13); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); }
h1 { max-width: 760px; margin: 22px 0 22px; color: #f3fbf6; font-size: clamp(50px, 6.3vw, 98px); line-height: .98; letter-spacing: -.075em; font-weight: 700; }
h1 em, h2 em { color: var(--green); font-style: normal; }
.hero-lead { max-width: 570px; margin-bottom: 32px; color: rgba(232, 244, 237, .76); font-size: clamp(17px, 1.6vw, 20px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 28px; color: rgba(232, 244, 237, .68); font-size: 12px; }
.hero-notes span { display: inline-flex; align-items: center; gap: 8px; }
.hero-notes img { width: 15px; height: 15px; filter: brightness(0) saturate(100%) invert(78%) sepia(16%) saturate(725%) hue-rotate(101deg) brightness(95%); }
.hero-caption { position: absolute; right: max(var(--gutter), calc((100vw - var(--container)) / 2)); bottom: 88px; max-width: 160px; color: rgba(232, 244, 237, .65); font-size: 11px; line-height: 1.4; text-align: right; }
.scroll-cue { position: absolute; z-index: 2; left: max(var(--gutter), calc((100vw - var(--container)) / 2)); bottom: 20px; min-height: 44px; display: inline-flex; align-items: center; gap: 12px; padding: 0; color: rgba(232, 244, 237, .7); border: 0; background: none; font-size: 12px; cursor: pointer; }
.scroll-cue img { width: 17px; height: 17px; filter: brightness(0) saturate(100%) invert(78%) sepia(16%) saturate(725%) hue-rotate(101deg) brightness(95%); animation: cueBreathe 2.2s ease-in-out infinite; }
html[data-theme="light"] .site-header:not(.is-scrolled) .brand,
html[data-theme="light"] .site-header:not(.is-scrolled) .desktop-nav a,
html[data-theme="light"] .site-header:not(.is-scrolled) .header-login,
html[data-theme="light"] .hero h1,
html[data-theme="light"] .hero .button--ghost { color: #14312a; }
html[data-theme="light"] .hero-lead,
html[data-theme="light"] .hero-notes,
html[data-theme="light"] .hero-caption,
html[data-theme="light"] .scroll-cue { color: rgba(20, 49, 42, .78); }
html[data-theme="light"] .hero .button--ghost { border-color: rgba(20, 49, 42, .24); background: rgba(245, 249, 246, .42); }
html[data-theme="light"] .hero .button--ghost:hover { color: #14312a; border-color: var(--green); background: rgba(36, 122, 98, .1); }
@keyframes cueBreathe { 0%, 100% { transform: translateY(0); opacity: .7; } 50% { transform: translateY(4px); opacity: 1; } }

.problem, .solution, .screens, .features, .security, .roadmap, .pricing, .faq { padding: clamp(94px, 11vw, 165px) 0; }
.problem { background: var(--bg); }
.section-grid, .solution-layout, .security-layout, .roadmap-layout { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); gap: clamp(48px, 8vw, 130px); align-items: start; }
h2 { margin: 17px 0 22px; font-size: clamp(38px, 4.8vw, 72px); line-height: 1.03; letter-spacing: -.07em; font-weight: 700; }
.large-copy { max-width: 630px; margin-bottom: 40px; color: var(--ink-soft); font-size: clamp(19px, 2vw, 25px); line-height: 1.45; letter-spacing: -.025em; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pain-grid article { padding-top: 19px; border-top: 1px solid var(--line-strong); }
.pain-grid span, .step-number { color: var(--green-deep); font: 700 11px/1 var(--font-display); letter-spacing: .13em; }
.pain-grid h3 { margin: 22px 0 9px; font-size: 18px; line-height: 1.2; letter-spacing: -.035em; }
.pain-grid p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.5; }

.solution { background: var(--bg-2); }
.solution-intro > p:not(.eyebrow) { max-width: 470px; color: var(--ink-soft); }
.text-link { min-height: 44px; display: inline-flex; align-items: center; gap: 10px; margin-top: 14px; color: var(--green); font-size: 14px; font-weight: 700; }
.text-link img { width: 17px; height: 17px; filter: brightness(0) saturate(100%) invert(77%) sepia(20%) saturate(960%) hue-rotate(102deg) brightness(91%); transition: transform .2s ease; }
.text-link:hover img { transform: translateX(4px); }
.solution-steps { display: grid; gap: 10px; }
.step-card { display: grid; grid-template-columns: 50px 1fr; gap: 17px; padding: 26px 26px 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: color-mix(in srgb, var(--surface) 76%, transparent); transition: border-color .25s ease, transform .25s var(--ease), background .25s ease; }
.step-card:hover { transform: translateX(5px); border-color: color-mix(in srgb, var(--green) 50%, var(--line)); background: color-mix(in srgb, var(--surface-2) 82%, transparent); }
.step-card h3 { margin: 0 0 7px; font-size: 21px; line-height: 1.2; letter-spacing: -.04em; }
.step-card p { margin: 0; color: var(--ink-soft); font-size: 14px; }

.section-heading { margin-bottom: 54px; }
.section-heading--split { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.section-heading--split > p { max-width: 350px; margin: 0 0 5px; color: var(--ink-soft); font-size: 15px; }
.section-heading h2 { margin-bottom: 0; }
.device-stage { min-height: 520px; position: relative; display: grid; grid-template-columns: 1fr 210px 150px; align-items: end; gap: clamp(16px, 3vw, 42px); padding: 0 clamp(12px, 4vw, 62px); }
.device { position: relative; margin: 0; filter: drop-shadow(0 28px 28px rgba(14, 42, 32, .18)); }
.device img { width: 100%; height: auto; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-soft); }
.device--desktop { z-index: 1; align-self: end; }
.device--desktop img { border-radius: 14px; }
.device--tablet { z-index: 2; transform: translateY(-13px); }
.device--phone { z-index: 3; transform: translateY(-4px); }
.device figcaption { margin-top: 12px; color: var(--ink-faint); font-size: 11px; text-align: center; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.feature-card { min-height: 250px; position: relative; padding: 25px 22px 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.feature-card--accent { border-color: color-mix(in srgb, var(--green) 35%, var(--line)); background: linear-gradient(150deg, color-mix(in srgb, var(--green-wash) 88%, var(--surface)), var(--surface)); }
.feature-card > img { width: 22px; height: 22px; margin-bottom: 48px; filter: brightness(0) saturate(100%) invert(77%) sepia(20%) saturate(960%) hue-rotate(102deg) brightness(91%); }
.feature-card h3 { max-width: 180px; margin: 0 0 11px; font-size: 18px; line-height: 1.2; letter-spacing: -.04em; }
.feature-card p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.52; }
.pro-tag { position: absolute; top: 22px; right: 18px; color: var(--orange); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.security { background: var(--bg); }
.security-copy .large-copy { color: var(--ink); }
.honesty-note { display: flex; gap: 14px; max-width: 600px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.honesty-note > img { width: 23px; height: 23px; flex: none; margin-top: 2px; filter: brightness(0) saturate(100%) invert(77%) sepia(20%) saturate(960%) hue-rotate(102deg) brightness(91%); }
.honesty-note strong { display: block; margin-bottom: 4px; font-family: var(--font-display); font-size: 16px; }
.honesty-note p { margin: 0; color: var(--ink-soft); font-size: 13px; }

.roadmap { background: var(--bg-2); }
.roadmap-layout { align-items: center; }
.roadmap-layout .large-copy { margin-bottom: 0; }
.roadmap-list { display: grid; gap: 0; }
.roadmap-item { display: flex; align-items: center; gap: 16px; min-height: 76px; padding: 13px 20px; border-bottom: 1px solid var(--line); }
.roadmap-item:first-child { border-top: 1px solid var(--line); }
.roadmap-dot { width: 12px; height: 12px; border: 2px solid var(--ink-faint); border-radius: 50%; }
.roadmap-item.is-ready .roadmap-dot { border-color: var(--green); background: var(--green); box-shadow: 0 0 0 5px var(--green-wash); }
.roadmap-item strong { display: block; font: 700 17px/1.2 var(--font-display); letter-spacing: -.03em; }
.roadmap-item small { color: var(--ink-faint); font-size: 12px; }
.roadmap-item.is-ready small { color: var(--green-deep); }

.pricing { background: var(--bg); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; min-height: 460px; padding: 28px 26px 27px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); }
.price-card--featured { border-color: color-mix(in srgb, var(--orange) 55%, var(--line)); background: linear-gradient(160deg, color-mix(in srgb, var(--orange) 8%, var(--surface)), var(--surface) 70%); box-shadow: var(--shadow-soft); }
.price-card--muted { background: var(--surface-2); }
.price-label { color: var(--green-deep); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
html:not([data-theme="light"]) .price-label { color: var(--green); }
.price-card--featured .price-label { color: var(--orange); }
.price-card h3 { margin: 19px 0 8px; font-size: 24px; line-height: 1.1; letter-spacing: -.055em; }
.price-card > p { min-height: 50px; margin-bottom: 28px; color: var(--ink-soft); font-size: 14px; }
.price { display: flex; align-items: baseline; gap: 8px; min-height: 70px; margin-bottom: 20px; }
.price strong { font: 700 clamp(27px, 3vw, 38px)/1 var(--font-display); letter-spacing: -.06em; }
.price span { color: var(--ink-soft); font-size: 12px; }
.annual-offer, .annual-regular { display: grid; gap: 3px; min-height: 84px; margin: -8px 0 20px; padding: 13px 14px; border: 1px solid color-mix(in srgb, var(--orange) 35%, var(--line)); border-radius: 12px; background: color-mix(in srgb, var(--orange) 7%, var(--surface)); }
.annual-offer strong, .annual-regular strong { color: var(--orange); font: 700 18px/1.15 var(--font-display); letter-spacing: -.04em; }
.annual-offer del { color: var(--ink-faint); font-size: 11px; }
.annual-offer small, .annual-regular small { color: var(--ink-soft); font-size: 11px; }
.annual-offer p { margin: 3px 0 0; color: var(--orange); font-size: 10px; font-weight: 700; letter-spacing: .04em; }
.annual-regular { border-color: var(--line); background: var(--surface-2); }
.annual-regular strong { color: var(--ink); }
.price-card .button { width: 100%; }
.price-card ul { display: grid; gap: 10px; margin: 26px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; }
.price-card li { display: flex; align-items: center; gap: 9px; color: var(--ink-soft); font-size: 13px; }
.price-card li img { width: 15px; height: 15px; filter: brightness(0) saturate(100%) invert(77%) sepia(20%) saturate(960%) hue-rotate(102deg) brightness(91%); }

.faq { background: var(--bg-2); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.faq-column { display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: 15px; background: var(--surface); overflow: hidden; }
.faq-item > button { width: 100%; min-height: 67px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 17px 20px; border: 0; background: transparent; font: 700 15px/1.3 var(--font-display); text-align: left; cursor: pointer; }
.faq-item > button img { width: 17px; height: 17px; flex: none; filter: brightness(0) saturate(100%) invert(55%) sepia(15%) saturate(616%) hue-rotate(101deg) brightness(90%); transition: transform .25s var(--ease); }
.faq-item.is-open > button img { transform: rotate(180deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.faq-answer p { min-height: 0; overflow: hidden; margin: 0; padding: 0 20px; color: var(--ink-soft); font-size: 14px; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer p { padding-bottom: 20px; }

.final-cta { padding: clamp(100px, 13vw, 190px) 0; background: var(--bg); text-align: center; }
.final-cta-inner { display: grid; justify-items: center; }
.final-cta h2 { margin-bottom: 18px; }
.final-cta-inner > p:not(.eyebrow) { max-width: 450px; margin-bottom: 30px; color: var(--ink-soft); }
.final-cta .hero-actions { justify-content: center; }
.site-footer { padding: 46px 0 38px; border-top: 1px solid var(--line); background: var(--bg); }
.footer-grid { display: grid; grid-template-columns: 1fr 1.3fr 1fr; align-items: center; gap: 20px; }
.footer-grid > p { margin: 0; color: var(--ink-faint); font-size: 13px; }
.footer-grid nav { display: flex; justify-content: flex-end; gap: 19px; }
.footer-grid nav a { min-height: 44px; display: inline-flex; align-items: center; color: var(--ink-soft); font-size: 12px; }
.footer-grid nav a:hover { color: var(--green); }
.footer-grid small { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid var(--line); color: var(--ink-faint); font-size: 11px; }

.scroll-rail { position: fixed; z-index: 12; top: 50%; right: max(18px, env(safe-area-inset-right)); display: grid; gap: 8px; transform: translateY(-50%); }
.rail-tick { position: relative; width: 28px; height: 19px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.rail-tick::before { content: ''; position: absolute; top: 8px; right: 0; width: 13px; height: 1px; background: var(--line-strong); transition: width .2s ease, background .2s ease; }
.rail-tick span { position: absolute; right: 18px; color: var(--ink-faint); font: 700 9px/1 var(--font-display); opacity: 0; transition: opacity .2s ease, color .2s ease; }
.rail-tick:hover::before, .rail-tick.is-active::before { width: 24px; background: var(--green); }
.rail-tick:hover span, .rail-tick.is-active span { color: var(--green); opacity: 1; }
.scroll-cue, .scroll-rail { transition: opacity .3s ease; }
.scroll-rail.is-hidden { opacity: 0; pointer-events: none; }

.privacy-note { position: fixed; z-index: 30; right: max(20px, env(safe-area-inset-right)); bottom: max(20px, env(safe-area-inset-bottom)); width: min(430px, calc(100% - 40px)); display: flex; align-items: end; gap: 18px; padding: 17px; border: 1px solid var(--line-strong); border-radius: 16px; color: var(--ink); background: color-mix(in srgb, var(--surface) 91%, transparent); box-shadow: var(--shadow); backdrop-filter: blur(18px); transform: translateY(0); transition: opacity .3s ease, transform .3s ease; }
.privacy-note.is-hidden { opacity: 0; pointer-events: none; transform: translateY(20px); }
.privacy-note strong { display: block; margin-bottom: 3px; font: 700 13px/1.2 var(--font-display); }
.privacy-note p { margin: 0; color: var(--ink-soft); font-size: 11px; line-height: 1.4; }
.privacy-note > div:last-child { display: flex; gap: 7px; flex: none; }
.privacy-button { min-height: 44px; padding: 0 12px; border: 1px solid var(--line); border-radius: 9px; background: transparent; color: var(--ink-soft); font-size: 11px; font-weight: 700; cursor: pointer; }
.privacy-button--accent { color: var(--orange); border-color: color-mix(in srgb, var(--orange) 50%, var(--line)); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .desktop-nav { gap: 15px; }
  .desktop-nav a { font-size: 12px; }
  .header-login { display: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .device-stage { grid-template-columns: 1fr 170px 120px; min-height: 440px; }
  .scroll-rail { display: none; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  :root { --header-h: 66px; --gutter: 20px; }
  .site-header { min-height: var(--header-h); }
  .desktop-nav, .header-actions .button--small { display: none; }
  .header-actions { margin-left: auto; }
  .menu-toggle { display: grid; }
  .mobile-nav { position: absolute; top: calc(100% + 1px); left: var(--gutter); right: var(--gutter); display: grid; gap: 0; padding: 8px; border: 1px solid var(--line); border-radius: 15px; background: color-mix(in srgb, var(--surface) 94%, transparent); box-shadow: var(--shadow); backdrop-filter: blur(18px); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity .22s ease, transform .22s ease; }
  .mobile-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .mobile-nav a { padding: 12px 13px; border-radius: 9px; color: var(--ink-soft); font-size: 14px; font-weight: 600; }
  .mobile-nav a:hover { color: var(--ink); background: var(--green-wash); }
  .hero { min-height: max(700px, 100svh); align-items: end; padding: calc(var(--header-h) + 60px) 0 100px; }
  .hero-backdrop { background-position: 62% center; }
  .hero-content { margin-inline: var(--gutter); }
  .hero-caption { display: none; }
  h1 { font-size: clamp(47px, 13vw, 68px); }
  .hero-lead { font-size: 16px; }
  .hero-notes { gap: 9px 16px; }
  .hero-notes span { font-size: 11px; }
  .section-grid, .solution-layout, .security-layout, .roadmap-layout { grid-template-columns: 1fr; gap: 38px; }
  .problem, .solution, .screens, .features, .security, .roadmap, .pricing, .faq { padding: 86px 0; }
  h2 { font-size: clamp(39px, 11vw, 58px); }
  .pain-grid { grid-template-columns: 1fr; gap: 22px; }
  .pain-grid article { display: grid; grid-template-columns: 34px 1fr; column-gap: 10px; }
  .pain-grid article span { grid-row: 1 / span 2; padding-top: 2px; }
  .pain-grid h3 { margin: 0 0 5px; }
  .pain-grid p { grid-column: 2; }
  .section-heading--split { display: block; }
  .section-heading--split > p { margin-top: 22px; }
  .device-stage { min-height: 350px; grid-template-columns: 1fr 118px 84px; gap: 10px; padding: 0; }
  .device--tablet { transform: translateY(-5px); }
  .device figcaption { font-size: 10px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card { min-height: 230px; padding: 20px 17px; }
  .feature-card > img { margin-bottom: 31px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: 0; }
  .faq-grid { grid-template-columns: 1fr; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; align-items: start; }
  .footer-grid nav { justify-content: flex-start; flex-wrap: wrap; }
  .privacy-note { display: block; }
  .privacy-note > div:last-child { margin-top: 12px; justify-content: flex-end; }
}

@media (max-width: 480px) {
  .brand { font-size: 19px; }
  .theme-toggle, .menu-toggle { width: 44px; height: 44px; }
  .hero { min-height: 720px; }
  .hero-backdrop { background-position: 65% center; }
  .hero-actions { display: grid; grid-template-columns: 1fr; width: 100%; }
  .button--hero { width: 100%; }
  .hero-notes { display: grid; }
  .device-stage { grid-template-columns: 1fr 90px 63px; min-height: 250px; }
  .device--desktop img { border-radius: 9px; }
  .device--tablet img, .device--phone img { border-radius: 9px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .feature-card > img { margin-bottom: 24px; }
  .final-cta .hero-actions { width: 100%; }
  .faq-item > button { min-height: 64px; padding-inline: 16px; font-size: 14px; }
}

.platforms { padding: clamp(72px, 9vw, 128px) 0; }
.platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 42px; }
.platform-grid article { padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: color-mix(in srgb, var(--bg-2) 72%, transparent); }
.platform-grid strong { display: block; margin-bottom: 10px; font: 700 20px/1.2 var(--font-display); }
.platform-grid p { margin: 0; color: var(--ink-soft); line-height: 1.6; }
.pwa-help-modal { border: 0; padding: 0; background: transparent; color: var(--ink); }
.pwa-help-modal::backdrop { background: rgb(0 0 0 / .62); }
.pwa-help-modal__card { max-width: 520px; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--bg-2); box-shadow: 0 24px 80px rgb(0 0 0 / .28); }
.pwa-help-modal__card h2 { margin: 0 0 12px; }
.pwa-help-modal__card p { color: var(--ink-soft); line-height: 1.6; }
@media (max-width: 760px) { .platform-grid { grid-template-columns: 1fr; } }

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