
:root {
  --bg:#102017; --surface:#193221; --surface-2:#244832;
  --accent:#c8a84b; --accent-soft:#e8c97a;
  --text:#f3efe1; --text-muted:#b8c6aa;
  --border:rgba(243,239,225,0.1);
  --footer-bg:#0b150f;
  --bg-rgb:16,32,23;
  --surface-rgb:25,50,33;
  --accent-rgb:200,168,75;
  --gold:#d8b85a;
  --gold-soft:#f1d98a;
  --gold-rgb:216,184,90;
  --text-rgb:243,239,225;
  --cta-text:#142116;
  --scroll-track:#0b1710;
  --font-display:"DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-sans:"DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-italic:'"Playfair Display", Georgia, serif';
}

html[data-theme="light"] {
  --bg:#dbcabd; --surface:#b99378; --surface-2:#ddc8b7;
  --accent:#6f4935; --accent-soft:#3e281e;
  --text:#2a1a14; --text-muted:#6f5041;
  --border:rgba(62,40,30,0.16);
  --footer-bg:#b99378;
  --bg-rgb:219,202,189;
  --surface-rgb:185,147,120;
  --accent-rgb:111,73,53;
  --gold:#b88f2f;
  --gold-soft:#d6b75a;
  --gold-rgb:184,143,47;
  --text-rgb:42,26,20;
  --cta-text:#f4e8dc;
  --scroll-track:#b99378;
}

html[data-theme="dark"] {
  --bg:#17120f; --surface:#241a16; --surface-2:#2d211b;
  --accent:#d18a5a; --accent-soft:#efc5a4;
  --text:#f4e8dc; --text-muted:#bea99b;
  --border:rgba(244,232,220,0.12);
  --footer-bg:#17120f;
  --bg-rgb:23,18,15;
  --surface-rgb:36,26,22;
  --accent-rgb:209,138,90;
  --gold:#d8b85a;
  --gold-soft:#f1d98a;
  --gold-rgb:216,184,90;
  --text-rgb:244,232,220;
  --cta-text:#20150f;
  --scroll-track:#17120f;
}

* { box-sizing:border-box; margin:0; padding:0; }
html {
  scroll-behavior:smooth;
  scrollbar-width:thin;
  scrollbar-color:rgba(var(--accent-rgb),.72) var(--scroll-track);
}
html.is-anchor-scrolling {
  scroll-behavior:auto;
}

section[id],
header[id] {
  scroll-margin-top:78px;
}
body {
  background:var(--bg); color:var(--text);
  font-family:var(--font-sans); -webkit-font-smoothing:antialiased;
  text-rendering:geometricPrecision; line-height:1.5;
  overflow-x:hidden;
}
::-webkit-scrollbar { width:10px; }
::-webkit-scrollbar-track { background:var(--scroll-track); }
::-webkit-scrollbar-thumb {
  background:linear-gradient(180deg, var(--accent-soft), var(--accent));
  border:2px solid var(--scroll-track);
  border-radius:999px;
}
::-webkit-scrollbar-thumb:hover { background:var(--accent-soft); }
a { color:inherit; text-decoration:none; transition:color .2s; }
a:hover { color:var(--accent); }
h1,
h2,
h3,
h4 { font-family:var(--font-display); letter-spacing:-0.01em; line-height:1.1; font-weight:600; }
img,
svg { display:block; }
button { background:none; border:0; color:inherit; cursor:pointer; font:inherit; }
.icon { width:18px; height:18px; }
.brand-mascot {
  display:block;
  width:40px !important;
  height:28px !important;
  max-width:40px;
  max-height:28px;
  object-fit:contain;
  border-radius:7px;
  flex:0 0 40px;
}
.font-display { font-family:var(--font-display); }
.font-italic { font-family:var(--font-italic); font-style:italic; }
.accent { color:var(--accent); }
.mobile-only { display:none; }

.container { max-width:1200px; margin:0 auto; padding:0 24px; }
@media (min-width:1024px) { .container { padding:0 40px; } }


.nav { position:fixed; top:0; left:0; right:0; z-index:50; transition:background .3s, backdrop-filter .3s, border-color .3s; }
.nav-inner { height:64px; display:flex; align-items:center; justify-content:space-between; }
.brand { display:flex; align-items:center; gap:10px; color:var(--text); }
.brand-name { font-size:24px; letter-spacing:-0.02em; }
.nav-links { display:none; align-items:center; gap:28px; font-size:14px; }
@media (min-width:768px) { .nav-links { display:flex; } .menu-btn { display:none; } }
.menu-btn { padding:8px; }
.menu-btn svg { width:24px; height:24px; }
.mobile-menu { display:none; flex-direction:column; gap:14px; padding:18px 24px; background:rgba(var(--bg-rgb),.95); backdrop-filter:blur(12px); border-top:1px solid var(--border); font-size:14px; }
.mobile-menu.open { display:flex; }
@media (min-width:768px) { .mobile-menu { display:none !important; } }

.palette-switcher {
  display:inline-flex;
  align-items:center;
  gap:3px;
  width:auto;
  max-width:150px;
  min-height:34px;
  padding:3px;
  border:1px solid var(--border);
  border-radius:999px;
  background:rgba(var(--surface-rgb),.62);
  box-shadow:inset 0 1px 0 rgba(var(--text-rgb),.05);
  overflow:hidden;
  transition:max-width .28s cubic-bezier(.22,1,.36,1), background .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.palette-option {
  position:relative;
  z-index:0;
  min-height:28px;
  width:auto;
  padding:0 9px;
  max-width:132px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:5px;
  flex:0 0 auto;
  color:var(--text-muted);
  font-size:11.5px;
  font-weight:700;
  line-height:1;
  opacity:1;
  pointer-events:auto;
  white-space:nowrap;
  overflow:hidden;
  transition:max-width .48s cubic-bezier(.16,1,.3,1), padding .48s cubic-bezier(.16,1,.3,1), opacity .3s ease, color .36s ease, transform .36s cubic-bezier(.16,1,.3,1), box-shadow .36s ease;
}
.palette-option::before {
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  border-radius:inherit;
  background:var(--accent);
  opacity:0;
  transform:scale(.82);
  transition:opacity .28s ease, transform .42s cubic-bezier(.16,1,.3,1), background .45s ease;
}
.palette-option:hover,
.palette-option:focus-visible {
  color:var(--text);
  transform:translateY(-1px);
}
.palette-option.active {
  width:auto;
  flex-basis:auto;
  padding:0 9px;
  max-width:132px;
  opacity:1;
  pointer-events:auto;
  color:var(--cta-text);
  background:transparent;
  box-shadow:0 8px 22px rgba(var(--accent-rgb),.24);
}
.palette-option.active::before {
  opacity:1;
  transform:scale(1);
}
.palette-switcher.is-switching .palette-option[data-theme="light"].active::before {
  animation:paletteSwooshFromRight .56s cubic-bezier(.16,1,.3,1) both;
}
.palette-switcher.is-switching .palette-option[data-theme="dark"].active::before {
  animation:paletteSwooshFromLeft .56s cubic-bezier(.16,1,.3,1) both;
}
.palette-switcher.is-switching {
  animation:palettePillKick .62s cubic-bezier(.16,1,.3,1) both;
}
.palette-switcher.is-switching .palette-option.active .palette-icon {
  animation:paletteIconPop .62s cubic-bezier(.16,1,.3,1) both;
}
@keyframes paletteSwooshFromLeft {
  0% { opacity:.12; transform:translateX(-78%) skewX(-12deg) scaleX(.38); }
  48% { opacity:1; transform:translateX(9%) skewX(3deg) scaleX(1.14); }
  72% { transform:translateX(-3%) skewX(-1deg) scaleX(.98); }
  100% { opacity:1; transform:translateX(0) scaleX(1); }
}
@keyframes paletteSwooshFromRight {
  0% { opacity:.12; transform:translateX(78%) skewX(12deg) scaleX(.38); }
  48% { opacity:1; transform:translateX(-9%) skewX(-3deg) scaleX(1.14); }
  72% { transform:translateX(3%) skewX(1deg) scaleX(.98); }
  100% { opacity:1; transform:translateX(0) scaleX(1); }
}
@keyframes palettePillKick {
  0% { transform:scale(1); }
  38% { transform:scaleX(1.055) scaleY(.96); }
  68% { transform:scaleX(.99) scaleY(1.015); }
  100% { transform:scale(1); }
}
@keyframes paletteIconPop {
  0% { opacity:.35; transform:translateX(-5px) rotate(-24deg) scale(.65); }
  58% { opacity:1; transform:translateX(1px) rotate(8deg) scale(1.18); }
  100% { opacity:1; transform:translateX(0) rotate(0) scale(1); }
}
.palette-option.active:hover,
.palette-option.active:focus-visible {
  color:var(--cta-text);
  background:transparent;
  box-shadow:0 10px 26px rgba(var(--accent-rgb),.34);
}
.palette-option.active:hover::before,
.palette-option.active:focus-visible::before {
  background:var(--accent-soft);
}
.palette-option span:last-child {
  position:static;
  width:auto;
  height:auto;
  margin:0;
  clip:auto;
  opacity:1;
  overflow:visible;
}
.palette-switcher:not(.mobile-palette):hover,
.palette-switcher:not(.mobile-palette):focus-within {
  max-width:286px;
  background:rgba(var(--surface-rgb),.84);
  border-color:rgba(var(--accent-rgb),.34);
  box-shadow:0 10px 24px rgba(0,0,0,.14), inset 0 1px 0 rgba(var(--text-rgb),.08);
}
.palette-switcher:not(.mobile-palette) .palette-option:not(.active) {
  max-width:0;
  padding-inline:0;
  opacity:0;
  pointer-events:none;
}
.palette-switcher:not(.mobile-palette):hover .palette-option,
.palette-switcher:not(.mobile-palette):focus-within .palette-option {
  max-width:132px;
  padding-inline:9px;
  opacity:1;
  pointer-events:auto;
}

@media (prefers-reduced-motion:reduce) {
  .palette-switcher.is-switching,
.palette-switcher.is-switching .palette-option.active::before,
.palette-switcher.is-switching .palette-option.active .palette-icon {
    animation:none;
  }
}
.palette-icon {
  width:14px;
  height:14px;
  flex:0 0 14px;
  display:block;
  opacity:1;
  transition:transform .22s ease;
}
.palette-option:hover .palette-icon,
.palette-option:focus-visible .palette-icon {
  transform:scale(1.08);
}
.palette-icon-light {
  fill:none;
  stroke:currentColor;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.palette-icon-light circle {
  fill:currentColor;
  stroke:none;
}
.palette-icon-dark {
  width:15px;
  height:15px;
  flex-basis:15px;
  fill:currentColor;
}
.palette-icon-dark .moon {
  transform-origin:center;
}
.palette-icon-dark .star {
  opacity:.9;
  transform-origin:center;
}
.mobile-palette {
  width:100%;
  max-width:none;
  justify-content:flex-start;
}

.language-switcher {
  position:relative;
  flex:0 0 auto;
}

.language-toggle {
  min-height:34px;
  padding:0 10px;
  border:1px solid var(--border);
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  gap:7px;
  background:rgba(var(--surface-rgb),.62);
  color:var(--text);
  font-size:12px;
  font-weight:800;
  line-height:1;
  box-shadow:inset 0 1px 0 rgba(var(--text-rgb),.05);
  transition:background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.language-toggle:hover,
.language-switcher.open .language-toggle,
.language-toggle:focus-visible {
  transform:translateY(-1px);
  background:rgba(var(--surface-rgb),.84);
  border-color:rgba(var(--accent-rgb),.38);
  box-shadow:0 10px 24px rgba(0,0,0,.14), inset 0 1px 0 rgba(var(--text-rgb),.08);
}

.language-flag {
  width:20px;
  height:20px;
  border-radius:999px;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:rgba(var(--accent-rgb),.12);
  font-size:15px;
  line-height:1;
  transform-origin:center;
  transition:transform .24s cubic-bezier(.22,1,.36,1);
}

.language-switcher.open .language-flag,
.language-toggle:hover .language-flag {
  transform:rotate(-6deg) scale(1.08);
}

.language-toggle svg {
  width:13px;
  height:13px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.3;
  stroke-linecap:round;
  stroke-linejoin:round;
  transition:transform .22s ease;
}

.language-switcher.open .language-toggle svg {
  transform:rotate(180deg);
}

.language-menu {
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  z-index:70;
  min-width:178px;
  padding:7px;
  border:1px solid rgba(var(--accent-rgb),.24);
  border-radius:16px;
  background:rgba(var(--bg-rgb),.96);
  box-shadow:0 18px 42px rgba(0,0,0,.22);
  opacity:0;
  visibility:hidden;
  transform:translateY(-6px) scale(.98);
  transform-origin:top right;
  transition:opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.language-switcher.open .language-menu {
  opacity:1;
  visibility:visible;
  transform:translateY(0) scale(1);
}

.language-menu button {
  width:100%;
  min-height:38px;
  padding:0 9px;
  border-radius:11px;
  display:flex;
  align-items:center;
  gap:9px;
  color:var(--text-muted);
  text-align:left;
  font-size:13px;
  font-weight:750;
  transition:background .18s ease, color .18s ease, transform .18s ease;
}

.language-menu button:hover,
.language-menu button:focus-visible,
.language-menu button.active {
  background:rgba(var(--accent-rgb),.14);
  color:var(--text);
  transform:translateX(2px);
}

.language-menu button span {
  width:22px;
  text-align:center;
  font-size:16px;
}


.cta-primary {
  background:var(--accent); color:var(--cta-text) !important;
  font-weight:600; border-radius:999px; padding:14px 26px;
  display:inline-flex; align-items:center; gap:8px;
  transition:transform .25s, box-shadow .25s, background .25s;
}
.cta-primary:hover { transform:scale(1.04); background:var(--accent-soft); box-shadow:0 12px 36px rgba(var(--accent-rgb),.35); animation:none; }
.cta-sm { padding:9px 18px; font-size:14px; animation:none; white-space:nowrap; }


.download-cta {
  position:relative;
  overflow:hidden;
  isolation:isolate;
  border:1px solid rgba(var(--gold-rgb),.72);
  will-change:transform, filter, box-shadow;
}

.download-cta::after {
  content:"";
  position:absolute;
  inset:-2px;
  z-index:0;
  pointer-events:none;
  background:linear-gradient(105deg, transparent 20%, rgba(255,255,255,.4) 45%, transparent 68%);
  transform:translateX(-110%);
  transition:transform .65s cubic-bezier(.22,1,.36,1);
  animation:downloadSheen 3.4s ease-in-out infinite;
}

.download-cta:hover::after {
  animation:none;
  opacity:.7;
  transform:translateX(110%);
}

.download-cta .icon {
  color:#172116;
}

@keyframes downloadPulse {
  0%, 100% {
    box-shadow:0 13px 30px rgba(var(--gold-rgb),.34), 0 0 0 4px rgba(var(--gold-rgb),.1), inset 0 1px 0 rgba(255,255,255,.5);
    filter:saturate(1.06) brightness(1.05);
    transform:scale(1.012);
  }
  50% {
    box-shadow:0 18px 38px rgba(var(--gold-rgb),.46), 0 0 0 8px rgba(var(--gold-rgb),.14), inset 0 1px 0 rgba(255,255,255,.6);
    filter:saturate(1.11) brightness(1.11);
    transform:scale(1.035);
  }
}

@keyframes downloadSheen {
  0%, 58% { transform:translateX(-115%); opacity:0; }
  68% { opacity:.7; }
  82%, 100% { transform:translateX(115%); opacity:0; }
}

.cta-outline {
  border:1px solid var(--accent); color:var(--accent);
  border-radius:999px; padding:13px 26px; font-weight:500;
  display:inline-flex; align-items:center; gap:8px; transition:all .25s;
}
.cta-outline:hover { background:rgba(var(--accent-rgb),.08); transform:scale(1.03); color:var(--accent); }

.grain { position:relative; }
.grain::before {
  content:""; position:absolute; inset:0; pointer-events:none;
  opacity:.07; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}


.hero { position:relative; overflow:hidden; padding:128px 0 80px; }
.hero .phone-wrap { padding-inline:18px; }
@media (min-width:1024px) { .hero { padding:160px 0 112px; } }
.hero-grid { display:grid; gap:48px; align-items:center; position:relative; }
@media (min-width:1024px) { .hero-grid { grid-template-columns:1fr 1fr; } }
.hero-title { font-size:clamp(40px, 7vw, 80px); letter-spacing:-0.02em; line-height:1.02; }
.hero-sub { margin-top:24px; max-width:560px; color:var(--text-muted); font-size:18px; }
@media (min-width:1024px) { .hero-sub { font-size:20px; } }
.hero-ctas { display:flex; flex-wrap:wrap; gap:12px; margin-top:32px; }
.center-row { justify-content:center; }
.phone-wrap { position:relative; display:flex; justify-content:center; perspective:1200px; }
@media (min-width:1024px) { .phone-wrap { justify-content:flex-end; } }

@keyframes fadeUp { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:translateY(0)} }
.hero-in { opacity:1; animation:fadeUp .9s cubic-bezier(.22,1,.36,1) forwards; }


.iphone {
  position:relative;
  width:min(280px, 76vw);
  aspect-ratio:9/19.2;
  border-radius:46px;
  padding:7px;
  background:
    linear-gradient(90deg, #3a3d3e 0%, #1f2224 9%, #090a0b 19%, #030404 50%, #08090a 81%, #25292b 92%, #4a4d4d 100%),
    linear-gradient(180deg, #343738 0%, #111315 46%, #030404 100%);
  box-shadow:
    0 42px 64px rgba(0,0,0,.58),
    -16px 24px 36px rgba(0,0,0,.34),
    0 2px 1px rgba(255,255,255,.06),
    inset 0 0 0 1px rgba(255,255,255,.12),
    inset 6px 0 11px rgba(255,255,255,.08),
    inset -7px 0 13px rgba(0,0,0,.58),
    inset 0 -5px 8px rgba(0,0,0,.36);
  flex-shrink:0;
  overflow:visible;
}
.iphone::before {
  content:"";
  position:absolute;
  inset:2px;
  border-radius:44px;
  pointer-events:none;
  background:
    linear-gradient(100deg, rgba(255,255,255,.12), transparent 10%, transparent 88%, rgba(255,255,255,.08)),
    linear-gradient(180deg, rgba(255,255,255,.06), transparent 16%, transparent 86%, rgba(0,0,0,.42));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.08),
    inset 0 0 0 4px rgba(0,0,0,.14);
  z-index:2;
}
.iphone::after {
  content:"";
  position:absolute;
  inset:6px;
  border-radius:39px;
  border:2px solid #050505;
  pointer-events:none;
  z-index:12;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.08),
    inset 0 0 0 3px rgba(0,0,0,.18),
    0 0 0 1px rgba(0,0,0,.24);
}
.phone-button {
  position:absolute;
  display:block;
  border:1px solid rgba(255,255,255,.1);
  background:linear-gradient(90deg, #090a0b 0%, #2a2d2f 30%, #55595a 48%, #202325 70%, #070808 100%);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.18),
    inset 0 -1px 2px rgba(0,0,0,.68),
    -1px 3px 5px rgba(0,0,0,.38);
  z-index:9;
}
.action-button {
  left:-5px;
  top:108px;
  width:6px;
  height:33px;
  border-radius:7px 0 0 7px;
}
.volume-up,
.volume-down {
  left:-6px;
  width:6px;
  height:50px;
  border-radius:8px 0 0 8px;
}
.volume-up { top:156px; }
.volume-down { top:216px; }
.power-button {
  right:-6px;
  top:152px;
  width:7px;
  height:78px;
  border-radius:0 8px 8px 0;
  background:linear-gradient(90deg, #070808 0%, #25282a 30%, #5c6061 48%, #1d2022 70%, #070808 100%);
}
.camera-control {
  display:none;
}
.dynamic-island {
  position:absolute;
  top:20px;
  left:50%;
  transform:translateX(-50%);
  width:70px;
  height:20px;
  border-radius:999px;
  z-index:40;
  background:
    radial-gradient(circle at 78% 48%, #202940 0 1.6px, #050609 2.4px 4.4px, transparent 5px),
    radial-gradient(circle at 28% 35%, rgba(255,255,255,.12), transparent 10px),
    linear-gradient(180deg, #101112 0%, #000 80%);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.08),
    inset 0 -2px 4px rgba(0,0,0,.9),
    0 1px 2px rgba(0,0,0,.42),
    0 0 0 1px rgba(0,0,0,.18);
  overflow:hidden;
}
.dynamic-island::before {
  content:"";
  position:absolute;
  inset:1px;
  border-radius:inherit;
  border:1px solid rgba(255,255,255,.045);
  background:linear-gradient(110deg, rgba(255,255,255,.06), transparent 38%, transparent 70%);
}
.dynamic-island i {
  position:absolute;
  display:block;
  right:13px;
  top:50%;
  width:6px;
  height:6px;
  transform:translateY(-50%);
  border-radius:50%;
  background:
    radial-gradient(circle at 62% 34%, #667298 0 .8px, transparent 1.2px),
    radial-gradient(circle at 50% 50%, #141827 0 2px, #020204 3px);
  box-shadow:0 0 0 1px rgba(255,255,255,.08), inset 0 0 4px rgba(65,78,126,.58);
}
.dynamic-island b {
  display:none;
}

.phone-status {
  position:absolute;
  top:21px;
  left:24px;
  right:22px;
  z-index:39;
  display:flex;
  align-items:center;
  justify-content:space-between;
  pointer-events:none;
  color:rgba(242,237,224,.82);
}
.phone-time {
  font-family:var(--font-sans);
  font-size:11px;
  font-weight:700;
  line-height:1;
  letter-spacing:0;
}
.phone-status-icons {
  display:flex;
  align-items:center;
  gap:4px;
  color:rgba(242,237,224,.86);
}
.phone-status-icons svg {
  display:block;
  fill:currentColor;
  color:currentColor;
}
.status-signal {
  width:14px;
  height:10px;
}
.status-wifi {
  width:14px;
  height:10px;
}
.status-battery {
  width:20px;
  height:10px;
}
.iphone-screen {
  width:100%; height:100%; border-radius:38px; overflow:hidden;
  background:#000;
  position:relative;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.08),
    inset 0 0 0 5px rgba(0,0,0,.2),
    inset 0 18px 28px rgba(255,255,255,.025),
    inset 0 -18px 28px rgba(0,0,0,.18);
}
.iphone-screen::after {
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:7;
  background:
    linear-gradient(112deg, rgba(255,255,255,.07), transparent 16%, transparent 74%, rgba(255,255,255,.035)),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.04), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,.04), transparent 28%, rgba(0,0,0,.08));
  mix-blend-mode:screen;
  opacity:.32;
}
.phone-wip {
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  background:#000;
  color:rgba(255,255,255,.82);
  font-size:15px;
  font-weight:700;
  letter-spacing:0;
  text-align:center;
  text-transform:uppercase;
  z-index:3;
}
@media (max-width:640px) {
  .mobile-only { display:block; }
}


.problem-bar {
  padding:32px 24px;
  text-align:center;
  background:var(--accent);
  color:var(--cta-text);
}
.problem-bar p { font-weight:600; font-size:18px; max-width:900px; margin:0 auto; }
@media (min-width:1024px) { .problem-bar p { font-size:20px; } }
.counter { font-size:32px; vertical-align:middle; margin:0 6px; }
@media (min-width:640px) { .counter { font-size:36px; } }


.section { padding:96px 0; position:relative; overflow:hidden; }
.section-surface { background:var(--surface); }
.section-surface2 { background:var(--surface-2); }
.center-section { text-align:center; padding:80px 0; }
.section-header { max-width:640px; margin-bottom:64px; }
.section-header.center { margin-left:auto; margin-right:auto; text-align:center; }
.section-header h2,
.section-title { font-size:clamp(32px, 5vw, 56px); }
.eyebrow { font-size:12px; text-transform:uppercase; letter-spacing:.2em; color:var(--accent); margin-bottom:12px; }
.lede { margin-top:20px; color:var(--text-muted); font-size:16px; line-height:1.65; }
@media (min-width:1024px) { .lede { font-size:18px; } }
.hint { margin-top:16px; font-size:12px; color:var(--text-muted); }
.center { text-align:center; }

.grid-3 { display:grid; gap:20px; }
@media (min-width:768px) { .grid-3 { grid-template-columns:repeat(3,1fr); } }

.feat-card {
  padding:32px; border-radius:18px;
  background:var(--surface-2);
  border:1px solid var(--border);
  transition:transform .5s cubic-bezier(.22,1,.36,1), border-color .5s, box-shadow .5s;
}
.feat-card:hover { transform:translateY(-12px) scale(1.06); border-color:rgba(var(--accent-rgb),.45); box-shadow:0 24px 48px rgba(var(--accent-rgb),.15); }
.feat-card .num { font-size:48px; color:var(--accent); margin-bottom:16px; }
.feat-card .feat-icon { color:var(--accent); margin-bottom:20px; }
.feat-card .feat-icon svg { width:28px; height:28px; }
.feat-card h3 { font-size:22px; margin-bottom:12px; }
.feat-card p { font-size:14px; color:var(--text-muted); line-height:1.65; }

.two-col { display:grid; gap:64px; align-items:center; }
@media (min-width:1024px) { .two-col { grid-template-columns:1fr 1fr; } }
.phone-center { display:flex; justify-content:center; }
@media (min-width:1024px) { }
@media (min-width:1024px) { }

.pricing-grid { display:grid; gap:18px; align-items:stretch; }
@media (min-width:900px) { .pricing-grid { grid-template-columns:repeat(3,1fr); } }
.pricing-card {
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:100%;
  padding:28px;
  border-radius:8px;
  background:rgba(255,255,255,.035);
  border:1px solid var(--border);
  transition:transform .35s cubic-bezier(.22,1,.36,1), border-color .35s, box-shadow .35s, background .35s;
}
.pricing-card:hover {
  transform:translateY(-8px);
  border-color:rgba(var(--accent-rgb),.35);
  background:rgba(255,255,255,.055);
  box-shadow:0 18px 42px rgba(0,0,0,.18);
}
.pricing-head h3 { font-size:28px; margin-bottom:16px; }
.pricing-head p { color:var(--text-muted); font-size:14px; line-height:1.6; min-height:68px; }
.price {
  display:flex;
  align-items:flex-start;
  gap:4px;
  margin-bottom:14px;
  color:var(--accent);
  font-weight:700;
}
.price span {
  font-family:var(--font-display);
  font-size:54px;
  line-height:.95;
  letter-spacing:0;
}
.pricing-list {
  list-style:none;
  display:grid;
  gap:12px;
  margin-top:26px;
  color:var(--text-muted);
  font-size:14px;
}
.pricing-list li {
  position:relative;
  padding-left:24px;
  line-height:1.45;
}
.pricing-list li::before {
  content:"";
  position:absolute;
  left:0;
  top:.42em;
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--accent);
  box-shadow:0 0 0 4px rgba(var(--accent-rgb),.12);
}
.plan-badge {
  position:absolute;
  top:18px;
  right:18px;
  padding:6px 10px;
  border-radius:999px;
  background:var(--accent);
  color:var(--cta-text);
  font-size:11px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.payment-note {
  margin-top:24px;
  padding:18px 20px;
  border-radius:8px;
  border:1px solid rgba(var(--accent-rgb),.24);
  background:rgba(var(--accent-rgb),.08);
  color:var(--text-muted);
  font-size:14px;
  line-height:1.65;
}
.payment-note strong { color:var(--text); }
.payment-note {
  transition:border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.payment-note.is-emphasized {
  border-color:rgba(var(--accent-rgb),.72);
  background:rgba(var(--accent-rgb),.14);
  box-shadow:0 0 0 5px rgba(var(--accent-rgb),.1), 0 16px 34px rgba(0,0,0,.16);
}
.payment-note:focus-visible {
  outline:2px solid var(--accent);
  outline-offset:4px;
}
@media (max-width:720px) {
}

.gallery { display:grid; gap:32px; grid-template-columns:1fr; }
@media (min-width:640px) { .gallery { grid-template-columns:repeat(2,1fr); } }
@media (min-width:1024px) { .gallery { grid-template-columns:repeat(4,1fr); } }
.gallery-item { display:flex; flex-direction:column; align-items:center; gap:16px; }
.gallery-item .caption { font-size:14px; color:var(--text-muted); }
.iphone-screen.has-app-screenshot {
  background:#16110d;
}
.app-screenshot-viewport {
  position:absolute;
  top:25px;
  right:0;
  bottom:0;
  left:0;
  overflow:hidden;
}
.app-screenshot {
  position:absolute;
  top:-5.8%;
  left:50%;
  width:106%;
  height:106%;
  max-width:none;
  object-fit:cover;
  object-position:center top;
  transform:translateX(-50%);
}

.big-icon { width:56px; height:56px; margin:0 auto 24px; color:var(--text); }
.steps { list-style:none; display:grid; gap:16px; margin-top:40px; text-align:left; font-size:12px; color:var(--text-muted); }
@media (min-width:640px) { .steps { grid-template-columns:repeat(3,1fr); } }
.steps li { padding:16px; border-radius:14px; background:rgba(0,0,0,.2); border:1px solid var(--border); }
.step-n { display:block; font-size:24px; color:var(--accent); margin-bottom:4px; }
.apk-note {
  max-width:820px;
  margin:20px auto 0;
  padding:16px 18px;
  border:1px solid rgba(var(--accent-rgb),.24);
  border-radius:16px;
  background:rgba(var(--accent-rgb),.08);
  color:var(--text-muted);
  font-size:13px;
  line-height:1.65;
  text-align:left;
}
html[data-theme="light"] .apk-note {
  background:rgba(185,147,120,.22);
  border-color:rgba(111,73,53,.2);
  color:#6f4935;
}

.team-card {
  padding:28px; border-radius:18px; background:var(--surface-2);
  border:1px solid var(--border);
  transition:transform .4s cubic-bezier(.22,1,.36,1), border-color .4s, box-shadow .4s;
}
.team-card:hover { transform:translateY(-10px) scale(1.05); border-color:rgba(var(--accent-rgb),.5); box-shadow:0 20px 40px rgba(var(--accent-rgb),.12); }
.avatar {
  width:56px; height:56px; border-radius:999px;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-size:20px; color:var(--text); margin-bottom:20px;
  border:1px solid rgba(var(--accent-rgb),.24);
  background:rgba(var(--accent-rgb),.16);
  box-shadow:inset 0 1px 0 rgba(var(--text-rgb),.08);
}
.team-card .name { font-size:20px; }
.team-card .role { font-size:12px; color:var(--accent); margin:4px 0 16px; }
.team-card p { font-size:14px; color:var(--text-muted); line-height:1.65; }


.footer { background:var(--footer-bg); padding:48px 0; font-size:14px; }
.footer-top { display:flex; flex-direction:column; gap:24px; }
@media (min-width:768px) { .footer-top { flex-direction:row; align-items:center; justify-content:space-between; } }
.footer-nav { display:flex; flex-wrap:wrap; gap:8px 24px; color:var(--text-muted); }
.footer-bottom {
  margin-top:32px;
  padding-top:24px;
  border-top:1px solid rgba(242,237,224,.08);
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:10px 24px;
  font-size:12px;
  color:var(--text-muted);
}
.footer-bottom > a {
  color:var(--accent);
  font-weight:600;
}
.footer-bottom > a:hover { color:var(--accent-soft); }


.reveal { opacity:0; transform:translateY(32px); transition:opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1); will-change:transform,opacity; }
.reveal.is-visible { opacity:1; transform:translateY(0); }
.reveal-left { opacity:0; transform:translateX(-40px); transition:opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1); }
.reveal-left.is-visible { opacity:1; transform:translateX(0); }


.glossary-term {
  position:relative;
  display:inline;
  color:var(--text);
  font-weight:600;
  text-decoration:underline;
  text-decoration-color:rgba(var(--accent-rgb),.65);
  text-decoration-thickness:2px;
  text-underline-offset:4px;
  cursor:help;
  outline:none;
  transition:color .2s ease, text-decoration-color .2s ease;
}
.glossary-term:hover,
.glossary-term:focus-visible {
  color:var(--accent);
  text-decoration-color:var(--accent);
}
.glossary-term::before,
.glossary-term::after {
  position:absolute;
  left:50%;
  bottom:calc(100% + 12px);
  z-index:60;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translate(-50%, 8px) scale(.98);
  transition:opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.glossary-term::before {
  content:attr(data-tooltip);
  width:max-content;
  max-width:min(320px, 82vw);
  padding:12px 14px;
  border:1px solid rgba(var(--accent-rgb),.35);
  border-radius:8px;
  background:rgba(20,42,28,.96);
  color:var(--text);
  box-shadow:0 18px 40px rgba(0,0,0,.32), 0 0 0 1px rgba(255,255,255,.04) inset;
  font-family:'DM Sans', sans-serif;
  font-size:13px;
  font-weight:500;
  line-height:1.45;
  text-align:left;
  white-space:normal;
  backdrop-filter:blur(12px);
}
.glossary-term::after {
  content:"";
  bottom:calc(100% + 5px);
  width:12px;
  height:12px;
  background:rgba(20,42,28,.96);
  border-right:1px solid rgba(var(--accent-rgb),.35);
  border-bottom:1px solid rgba(var(--accent-rgb),.35);
  transform:translate(-50%, 8px) rotate(45deg) scale(.98);
}
.glossary-term:hover::before,
.glossary-term:hover::after,
.glossary-term:focus-visible::before,
.glossary-term:focus-visible::after {
  opacity:1;
  visibility:visible;
  transform:translate(-50%, 0) scale(1);
}
.glossary-term:hover::after,
.glossary-term:focus-visible::after {
  transform:translate(-50%, 0) rotate(45deg) scale(1);
}
@media (max-width:640px) {
  .glossary-term::before {
    max-width:240px;
    font-size:12px;
  }
}

@media (max-width:640px) {
  .container {
    padding-inline:18px;
  }

  .nav-inner {
    height:60px;
  }

  .brand-name {
    font-size:22px;
  }

  .mobile-menu {
    left:12px;
    right:12px;
    top:68px;
    border-radius:18px;
    box-shadow:0 18px 36px rgba(0,0,0,.28);
  }

  .hero {
    padding:88px 0 42px;
    text-align:center;
  }

  .hero-grid {
    gap:26px;
    justify-items:center;
  }

  .hero-title {
    max-width:360px;
    margin-inline:auto;
    font-size:clamp(36px, 10.8vw, 44px);
    line-height:1.04;
  }

  .hero-sub {
    max-width:340px;
    margin:18px auto 0;
    font-size:15.5px;
    line-height:1.58;
  }

  .hero-ctas {
    justify-content:center;
    margin-top:24px;
  }

  .hero-ctas .cta-primary,
.hero-ctas .cta-outline {
    width:100%;
    max-width:310px;
    justify-content:center;
  }

  .hero .phone-wrap {
    width:100%;
    padding-inline:0;
    justify-content:center;
  }

  .hero .iphone {
    width:min(238px, 66vw);
  }

  .problem-bar {
    padding:24px 18px;
  }

  .problem-bar p {
    font-size:16px;
    line-height:1.55;
  }

  .counter {
    display:inline-block;
    font-size:30px;
    line-height:1;
  }

  .section {
    padding:68px 0;
  }

  .center-section {
    padding:58px 0;
  }

  .section-header {
    margin-bottom:34px;
    text-align:left;
  }

  .section-header.center {
    text-align:center;
  }

  .section-header h2,
.section-title {
    font-size:clamp(32px, 10vw, 42px);
  }

  .grid-3,
.two-col,
.pricing-grid {
    gap:18px;
  }

  .feat-card,
.pricing-card,
.team-card {
    padding:22px;
  }

  .pricing-head p {
    min-height:auto;
  }

  .cta-primary,
.cta-outline {
    min-height:46px;
    text-align:center;
  }

  .gallery {
    gap:34px;
    justify-items:center;
  }

  .gallery-item {
    width:100%;
  }

  .gallery-item .iphone {
    width:min(270px, 78vw);
  }

  .gallery-item .caption {
    text-align:center;
  }

  .footer-top,
.footer-bottom {
    align-items:flex-start;
  }

  .footer-nav {
    flex-direction:column;
    gap:12px;
  }
}




:root {
  color-scheme:dark;
  --hairline:rgba(var(--text-rgb),.08);
}

html[data-theme="light"] {
  color-scheme:light;
  --hairline:rgba(var(--text-rgb),.08);
}

html[data-theme="dark"] {
  color-scheme:dark;
  --hairline:rgba(var(--text-rgb),.11);
}

body {
  background:
    linear-gradient(180deg, rgba(var(--surface-rgb),.9) 0%, var(--bg) 32%, var(--bg) 100%);
  letter-spacing:0;
}

h1,
h2,
h3,
h4,
.font-display,
.font-italic {
  letter-spacing:0;
}

.nav {
  background:rgba(var(--bg-rgb),.62);
  border-bottom:1px solid transparent;
  backdrop-filter:saturate(180%) blur(24px);
  -webkit-backdrop-filter:saturate(180%) blur(24px);
}

.nav-inner {
  height:72px;
}

.brand-name {
  font-family:var(--font-sans);
  font-weight:650;
  letter-spacing:0;
}

.nav-links {
  gap:18px;
  color:rgba(var(--text-rgb),.78);
  font-weight:600;
}

@media (min-width:1120px) {
  .nav-links {
    gap:24px;
  }
}

.nav-links > a {
  transition:color .2s ease, transform .2s ease;
}

.nav-links > a:hover {
  color:var(--text);
  transform:translateY(-1px);
}

.cta-primary,
.cta-outline {
  min-height:48px;
  border-radius:999px;
  font-weight:750;
  letter-spacing:0;
  box-shadow:0 12px 30px rgba(var(--accent-rgb),.22);
  transition:transform .22s cubic-bezier(.22,1,.36,1), box-shadow .22s cubic-bezier(.22,1,.36,1), background .22s ease, border-color .22s ease;
}

.cta-primary {
  animation:none;
}

.cta-primary:hover,
.cta-outline:hover {
  transform:translateY(-2px);
  box-shadow:0 18px 42px rgba(var(--accent-rgb),.28);
}

.cta-outline {
  background:rgba(var(--surface-rgb),.5);
  border-color:rgba(var(--accent-rgb),.38);
}

.hero {
  min-height:min(880px, 100vh);
  padding:150px 0 92px;
  display:flex;
  align-items:center;
}

.hero-grid {
  width:100%;
  gap:72px;
}

.hero-title {
  max-width:620px;
  font-size:76px;
  line-height:.97;
  font-weight:800;
  letter-spacing:0;
}

.hero-title .accent {
  color:var(--accent);
}

.hero-sub {
  max-width:590px;
  margin-top:28px;
  color:rgba(var(--text-rgb),.68);
  font-size:20px;
  line-height:1.55;
}

.hero-ctas {
  gap:14px;
  margin-top:34px;
}

.hero .iphone {
  width:min(280px, 76vw);
}

.iphone {
  border-radius:50px;
  padding:8px;
  box-shadow:
    0 48px 90px rgba(0,0,0,.34),
    0 18px 36px rgba(33,48,37,.18),
    inset 0 0 0 1px rgba(255,255,255,.16),
    inset 8px 0 14px rgba(255,255,255,.09),
    inset -8px 0 18px rgba(0,0,0,.58);
}

.iphone-screen {
  border-radius:41px;
  background:#000;
}

.dynamic-island {
  top:21px;
  width:74px;
  height:22px;
}

.section {
  padding:116px 0;
}

.section-surface,
.section-surface2 {
  background:linear-gradient(180deg, rgba(var(--surface-rgb),.82), rgba(var(--surface-rgb),.58));
  border-block:1px solid var(--hairline);
}

.section-header {
  margin-bottom:54px;
}

.section-header h2,
.section-title {
  font-size:54px;
  line-height:1.02;
  font-weight:800;
}

.eyebrow {
  margin-bottom:14px;
  color:var(--accent);
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
}

.lede {
  color:rgba(var(--text-rgb),.66);
}

.feat-card,
.team-card {
  border-radius:28px;
  padding:34px;
  transition:transform .28s cubic-bezier(.22,1,.36,1), border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.feat-card:hover,
.team-card:hover {
  border-color:rgba(var(--accent-rgb),.22);
}

.feat-card .num {
  color:rgba(var(--accent-rgb),.72);
  font-size:42px;
  font-weight:800;
}

.feat-card h3,
.team-card .name {
  font-weight:800;
}

.problem-bar {
  background:linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow:0 -1px 0 rgba(255,255,255,.2) inset, 0 1px 0 rgba(255,255,255,.22) inset;
}

.pricing-showcase {
  align-items:stretch;
  gap:20px;
  margin-top:10px;
}

.pricing-proof {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin:0 0 24px;
}

.pricing-proof span {
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 13px;
  border:1px solid rgba(var(--accent-rgb),.24);
  border-radius:999px;
  background:rgba(var(--accent-rgb),.08);
  color:rgba(var(--text-rgb),.76);
  font-size:13px;
  font-weight:750;
}

@media (min-width:900px) {
  .pricing-showcase {
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

.pricing-showcase .pricing-card {
  min-height:0;
  padding:28px;
  border-radius:22px;
  background:
    linear-gradient(180deg, rgba(var(--surface-rgb),.34), rgba(var(--surface-rgb),.14));
  border:1px solid rgba(var(--text-rgb),.16);
  box-shadow:
    inset 0 0 0 1px rgba(var(--accent-rgb),.12),
    inset 0 1px 0 rgba(var(--text-rgb),.08),
    0 18px 46px rgba(0,0,0,.12);
  color:var(--text);
  overflow:hidden;
  transform-origin:center bottom;
  transition:
    opacity .9s cubic-bezier(.22,1,.36,1),
    transform .38s cubic-bezier(.22,1,.36,1),
    border-color .28s ease,
    background .28s ease,
    box-shadow .28s ease;
}

.pricing-showcase .pricing-card:hover {
  transform:translateY(-8px);
  border-color:rgba(var(--accent-rgb),.44);
  background:
    linear-gradient(180deg, rgba(var(--surface-rgb),.46), rgba(var(--surface-rgb),.2));
  box-shadow:
    inset 0 0 0 1px rgba(var(--accent-rgb),.24),
    inset 0 1px 0 rgba(var(--text-rgb),.12),
    0 26px 70px rgba(0,0,0,.2),
    0 0 0 4px rgba(var(--accent-rgb),.08);
}

.pricing-showcase .pricing-featured {
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01)),
    #161311;
  border-color:rgba(var(--accent-rgb),.58);
  box-shadow:
    inset 0 0 0 1px rgba(var(--accent-rgb),.28),
    inset 0 1px 0 rgba(255,255,255,.08),
    0 28px 70px rgba(0,0,0,.34),
    0 0 0 1px rgba(var(--accent-rgb),.1);
}

.pricing-showcase .pricing-featured:hover {
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb),.08), rgba(255,255,255,.012)),
    #161311;
  border-color:rgba(var(--accent-rgb),.86);
  box-shadow:
    inset 0 0 0 1px rgba(var(--accent-rgb),.42),
    inset 0 1px 0 rgba(255,255,255,.12),
    0 34px 90px rgba(0,0,0,.42),
    0 0 0 5px rgba(var(--accent-rgb),.1);
}

.pricing-showcase .pricing-head h3 {
  margin-bottom:10px;
  font-family:var(--font-sans);
  font-size:28px;
  line-height:1.1;
  font-weight:700;
}

.plan-kicker {
  display:block;
  min-height:18px;
  margin-bottom:8px;
  color:var(--accent);
  font-size:11px;
  font-weight:850;
  letter-spacing:.08em;
  line-height:1.2;
  text-transform:uppercase;
}

.pricing-showcase .price {
  min-height:72px;
  margin-bottom:26px;
  color:var(--text);
  align-items:flex-end;
}

.pricing-showcase .price span {
  font-family:var(--font-sans);
  font-size:clamp(40px, 5vw, 58px);
  font-weight:750;
  letter-spacing:0;
}

.pricing-showcase .price small {
  margin:0 0 10px 2px;
  color:rgba(var(--text-rgb),.66);
  font-size:18px;
  font-weight:650;
}

.pricing-showcase .pricing-head p {
  min-height:auto;
  margin-bottom:22px;
  color:rgba(var(--text-rgb),.62);
  font-size:15px;
  line-height:1.55;
}

.pricing-showcase .pricing-featured .pricing-head p,
.pricing-showcase .pricing-featured .price small,
.pricing-showcase .pricing-featured .pricing-list {
  color:rgba(255,255,255,.72);
}

.plan-cta {
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  margin-bottom:28px;
  width:100%;
  border:1px solid rgba(var(--text-rgb),.2);
  border-radius:999px;
  background:transparent;
  color:var(--text);
  font-size:14px;
  font-weight:800;
  box-shadow:inset 0 1px 0 rgba(var(--text-rgb),.06);
  transition:transform .22s cubic-bezier(.22,1,.36,1), background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.plan-cta:hover {
  transform:translateY(-2px);
  background:rgba(var(--accent-rgb),.18);
  border-color:rgba(var(--accent-rgb),.48);
  color:var(--text);
  box-shadow:0 16px 34px rgba(var(--accent-rgb),.16);
}

.pricing-featured .plan-cta {
  background:var(--accent);
  border-color:var(--accent);
  color:var(--cta-text);
  box-shadow:0 16px 34px rgba(var(--accent-rgb),.22);
}

.pricing-featured .plan-cta:hover {
  background:var(--accent-soft);
  color:var(--cta-text);
  box-shadow:0 18px 38px rgba(var(--accent-rgb),.28);
}

.pricing-showcase .pricing-list {
  gap:11px;
  margin-top:0;
  color:rgba(var(--text-rgb),.7);
  font-size:14px;
}

.pricing-showcase .pricing-list li {
  padding-left:28px;
}

.pricing-showcase .pricing-list li::before {
  content:"✓";
  top:.02em;
  width:auto;
  height:auto;
  border-radius:0;
  background:none;
  color:var(--accent);
  box-shadow:none;
  font-size:16px;
  font-weight:900;
}

.pricing-showcase .plan-badge {
  top:22px;
  right:22px;
  background:linear-gradient(135deg, var(--gold-soft), var(--gold));
  color:#172116;
  border:1px solid rgba(var(--gold-rgb),.62);
  box-shadow:0 10px 22px rgba(var(--gold-rgb),.24);
}

.pricing-reasons {
  display:grid;
  gap:12px;
  margin-top:24px;
}

@media (min-width:760px) {
  .pricing-reasons {
    grid-template-columns:repeat(3, 1fr);
  }
}

.pricing-reasons div {
  padding:16px 18px;
  border:1px solid rgba(var(--text-rgb),.12);
  border-radius:18px;
  background:rgba(var(--surface-rgb),.36);
}

.pricing-reasons strong,
.pricing-reasons span {
  display:block;
}

.pricing-reasons strong {
  margin-bottom:5px;
  color:var(--text);
  font-size:15px;
}

.pricing-reasons span {
  color:rgba(var(--text-rgb),.66);
  font-size:13px;
  line-height:1.45;
}

html[data-theme="light"] .pricing-showcase .pricing-card {
  background:linear-gradient(180deg, rgba(255,255,255,.78), rgba(var(--surface-rgb),.52));
  border-color:rgba(var(--text-rgb),.18);
  box-shadow:
    inset 0 0 0 1px rgba(var(--accent-rgb),.16),
    inset 0 1px 0 rgba(255,255,255,.72),
    0 18px 46px rgba(28,38,30,.08);
}

html[data-theme="light"] .pricing-showcase .pricing-card:hover {
  border-color:rgba(var(--accent-rgb),.52);
  box-shadow:
    inset 0 0 0 1px rgba(var(--accent-rgb),.26),
    inset 0 1px 0 rgba(255,255,255,.82),
    0 26px 70px rgba(28,38,30,.12),
    0 0 0 4px rgba(var(--accent-rgb),.1);
}

html[data-theme="light"] .pricing-showcase .pricing-featured {
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.01)),
    #1d241d;
  border-color:rgba(var(--accent-rgb),.72);
  box-shadow:
    inset 0 0 0 1px rgba(var(--accent-rgb),.34),
    inset 0 1px 0 rgba(255,255,255,.12),
    0 28px 70px rgba(28,38,30,.2),
    0 0 0 1px rgba(var(--accent-rgb),.16);
}

html[data-theme="dark"] .pricing-showcase .pricing-card {
  border-color:rgba(var(--text-rgb),.14);
  box-shadow:
    inset 0 0 0 1px rgba(var(--accent-rgb),.14),
    inset 0 1px 0 rgba(var(--text-rgb),.06),
    0 18px 46px rgba(0,0,0,.18);
}

.payment-note,
.steps li {
  border-radius:22px;
}

.gallery {
  gap:42px 28px;
}

.gallery-item .caption {
  color:#e2eadf;
  font-size:15px;
  font-weight:800;
  line-height:1.4;
  letter-spacing:.01em;
  text-shadow:0 1px 2px rgba(0,0,0,.42);
}

html[data-theme="light"] .gallery-item .caption {
  color:#3e281e;
  text-shadow:0 1px 0 rgba(255,255,255,.36);
}

.big-icon {
  color:var(--accent);
}

.steps li {
  padding:22px;
}

.step-n {
  font-family:var(--font-sans);
  font-weight:800;
}

.avatar {
  font-family:var(--font-sans);
  font-weight:800;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.28);
}

.footer {
  border-top:1px solid var(--hairline);
}

.footer-bottom {
  border-top-color:var(--hairline);
}

.glossary-term::before {
  border-radius:16px;
}

@media (min-width:1024px) {
  .hero-grid {
    grid-template-columns:1.05fr .95fr;
  }
}

@media (max-width:900px) {
  .hero {
    min-height:auto;
    padding:118px 0 72px;
  }

  .hero-title {
    font-size:56px;
  }

  .section-header h2,
.section-title {
    font-size:44px;
  }
}

html[data-theme="light"] body {
  background:
    linear-gradient(180deg, #DAF1DE 0%, var(--bg) 34%, #8EB69B 100%);
  color:var(--text);
}

html[data-theme="light"] .nav {
  background:rgba(var(--bg-rgb),.82);
  border-bottom-color:rgba(var(--text-rgb),.08);
  box-shadow:0 1px 0 rgba(255,255,255,.72) inset;
}

html[data-theme="light"] .nav-links,
html[data-theme="light"] .mobile-menu,
html[data-theme="light"] .footer-nav,
html[data-theme="light"] .footer-bottom {
  color:rgba(var(--text-rgb),.72);
}

html[data-theme="light"] .section-surface,
html[data-theme="light"] .section-surface2 {
  background:linear-gradient(180deg, rgba(var(--bg-rgb),.76), rgba(var(--surface-rgb),.58));
  border-block-color:rgba(var(--text-rgb),.08);
}

html[data-theme="light"] .palette-switcher,
html[data-theme="light"] .mobile-menu,
html[data-theme="light"] .payment-note,
html[data-theme="light"] .feat-card,
html[data-theme="light"] .team-card,
html[data-theme="light"] .steps li {
  background:rgba(var(--bg-rgb),.82);
  border-color:rgba(var(--text-rgb),.12);
  box-shadow:0 1px 0 rgba(255,255,255,.86) inset, 0 14px 34px rgba(38,49,38,.07);
}

html[data-theme="light"] .feat-card p,
html[data-theme="light"] .team-card p,
html[data-theme="light"] .lede,
html[data-theme="light"] .hero-sub,
html[data-theme="light"] .pricing-showcase .pricing-head p,
html[data-theme="light"] .pricing-showcase .pricing-list,
html[data-theme="light"] .payment-note,
html[data-theme="light"] .steps {
  color:rgba(var(--text-rgb),.7);
}

html[data-theme="light"] .pricing-showcase .pricing-card {
  color:var(--text);
}

html[data-theme="light"] .pricing-showcase .pricing-featured {
  color:var(--bg);
}

html[data-theme="light"] .pricing-showcase .pricing-featured h3,
html[data-theme="light"] .pricing-showcase .pricing-featured .price,
html[data-theme="light"] .pricing-showcase .pricing-featured .price span {
  color:var(--bg);
}

html[data-theme="light"] .pricing-showcase .pricing-featured .pricing-head p,
html[data-theme="light"] .pricing-showcase .pricing-featured .price small,
html[data-theme="light"] .pricing-showcase .pricing-featured .pricing-list {
  color:rgba(var(--bg-rgb),.76);
}

html[data-theme="light"] .pricing-featured .plan-cta {
  color:var(--accent-soft);
  border-color:rgba(var(--accent-rgb),.54);
}

html[data-theme="light"] .pricing-featured .plan-cta:hover {
  background:rgba(var(--accent-rgb),.14);
  color:var(--accent-soft);
}

html[data-theme="light"] .pricing-showcase .plan-badge {
  color:#172116;
  background:linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-color:rgba(var(--gold-rgb),.58);
}

html[data-theme="light"] .plan-cta {
  color:var(--text);
  border-color:rgba(var(--text-rgb),.22);
}

html[data-theme="light"] .plan-cta:hover {
  color:var(--text);
  background:rgba(var(--accent-rgb),.12);
}

html[data-theme="light"] .footer {
  background:var(--footer-bg);
  color:var(--text);
  border-top-color:rgba(var(--text-rgb),.1);
}

html[data-theme="light"] .footer-bottom {
  border-top-color:rgba(var(--text-rgb),.1);
}

html[data-theme="light"] .glossary-term {
  color:var(--text);
  text-decoration-color:rgba(var(--accent-rgb),.7);
}

html[data-theme="light"] .glossary-term::before {
  background:var(--bg);
  color:var(--text);
  border-color:rgba(var(--text-rgb),.14);
  box-shadow:0 14px 34px rgba(38,49,38,.12);
}

html[data-theme="light"] .problem-bar {
  color:#182319;
  box-shadow:0 1px 0 rgba(255,255,255,.42) inset, 0 -1px 0 rgba(38,49,38,.08) inset;
}

html[data-theme="light"] .problem-bar .counter {
  color:#101a12;
}

html[data-theme="light"] .big-icon,
html[data-theme="light"] .feat-card .feat-icon,
html[data-theme="light"] .feat-card .num,
html[data-theme="light"] .step-n,
html[data-theme="light"] .team-card .role {
  color:var(--accent);
}

html[data-theme="light"] .avatar {
  color:var(--text);
  border-color:rgba(var(--accent-rgb),.24);
}

html[data-theme="light"] .footer-bottom > a,
html[data-theme="light"] a:hover {
  color:var(--accent);
}


body {
  background:var(--bg);
}

.section-surface,
.section-surface2 {
  background:rgba(var(--surface-rgb),.42);
}

.nav,
.mobile-menu,
.palette-switcher,
.feat-card,
.team-card,
.payment-note,
.steps li,
.pricing-showcase .pricing-card,
.pricing-showcase .pricing-featured {
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}

.nav {
  background:rgba(var(--bg-rgb),.92);
  border-bottom:1px solid rgba(var(--text-rgb),.08);
  box-shadow:none;
}

.palette-switcher,
.mobile-menu,
.feat-card,
.team-card,
.payment-note,
.steps li {
  background:rgba(var(--surface-rgb),.52);
  box-shadow:none;
}

.cta-primary,
.cta-outline,
.plan-cta {
  box-shadow:0 6px 14px rgba(0,0,0,.12);
}

.hero-ctas .cta-primary {
  animation:none;
}

.cta-primary:hover,
.cta-outline:hover,
.plan-cta:hover {
  transform:none;
  box-shadow:0 8px 18px rgba(0,0,0,.14);
}

.feat-card:hover,
.team-card:hover,
.pricing-showcase .pricing-card:hover,
.pricing-showcase .pricing-featured:hover {
  transform:translateY(-3px);
  box-shadow:none;
}

.pricing-showcase .pricing-card,
html[data-theme="light"] .pricing-showcase .pricing-card,
html[data-theme="dark"] .pricing-showcase .pricing-card {
  background:rgba(var(--surface-rgb),.36);
  box-shadow:none;
}

.pricing-showcase .pricing-card:hover,
html[data-theme="light"] .pricing-showcase .pricing-card:hover {
  background:rgba(var(--surface-rgb),.48);
  box-shadow:none;
}

.pricing-showcase .pricing-featured,
html[data-theme="light"] .pricing-showcase .pricing-featured {
  background:#171714;
  box-shadow:none;
}

.pricing-showcase .pricing-featured:hover {
  background:#1d1d18;
  box-shadow:none;
}

.problem-bar {
  background:rgba(var(--surface-rgb),.64);
  color:var(--text);
  border-block:1px solid rgba(var(--text-rgb),.1);
  box-shadow:none;
}

.problem-bar .counter {
  color:var(--accent);
}

.iphone {
  box-shadow:
    0 14px 28px rgba(0,0,0,.18),
    inset 0 0 0 1px rgba(255,255,255,.12);
}

.iphone-screen {
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
}

.iphone-screen::after {
  opacity:.12;
}

.phone-button,
.dynamic-island {
  box-shadow:none;
}

.footer {
  box-shadow:none;
}

html[data-theme="light"] body {
  background:var(--bg);
}

html[data-theme="light"] .nav,
html[data-theme="light"] .palette-switcher,
html[data-theme="light"] .mobile-menu,
html[data-theme="light"] .feat-card,
html[data-theme="light"] .team-card,
html[data-theme="light"] .payment-note,
html[data-theme="light"] .steps li,
html[data-theme="light"] .glossary-term::before {
  box-shadow:none;
}

html[data-theme="light"] .section-surface,
html[data-theme="light"] .section-surface2 {
  background:rgba(var(--surface-rgb),.54);
}

html[data-theme="light"] .problem-bar {
  box-shadow:none;
}

html[data-theme="light"] .cta-primary,
html[data-theme="light"] .cta-outline,
html[data-theme="light"] .plan-cta {
  box-shadow:0 5px 12px rgba(38,49,38,.1);
}

html[data-theme="light"] .cta-primary:hover,
html[data-theme="light"] .cta-outline:hover,
html[data-theme="light"] .plan-cta:hover {
  box-shadow:0 7px 16px rgba(38,49,38,.12);
}

html[data-theme="light"] .download-cta,
.download-cta {
  background:linear-gradient(135deg, var(--gold-soft), var(--gold) 58%, #9f7622);
  border-color:rgba(var(--gold-rgb),.72);
  color:#172116 !important;
  box-shadow:0 10px 24px rgba(var(--gold-rgb),.24), inset 0 1px 0 rgba(255,255,255,.42);
}

html[data-theme="light"] .download-cta:hover,
.download-cta:hover {
  background:linear-gradient(135deg, #f8e69f, var(--gold-soft) 45%, var(--gold));
  border-color:rgba(var(--gold-rgb),.9);
  color:#172116 !important;
  box-shadow:0 14px 30px rgba(var(--gold-rgb),.32), 0 0 0 4px rgba(var(--gold-rgb),.1);
}


html[data-theme="light"] .nav {
  border-bottom-color:rgba(38,49,38,.16);
}

html[data-theme="light"] .palette-switcher,
html[data-theme="light"] .mobile-menu,
html[data-theme="light"] .feat-card,
html[data-theme="light"] .team-card,
html[data-theme="light"] .payment-note,
html[data-theme="light"] .steps li {
  border-color:rgba(38,49,38,.18);
}

html[data-theme="light"] .feat-card:hover,
html[data-theme="light"] .team-card:hover {
  border-color:rgba(var(--accent-rgb),.46);
}

html[data-theme="light"] .pricing-showcase .pricing-card {
  border-color:rgba(38,49,38,.22);
  box-shadow:inset 0 0 0 1px rgba(var(--accent-rgb),.12);
}

html[data-theme="light"] .pricing-showcase .pricing-card:hover {
  border-color:rgba(var(--accent-rgb),.56);
  box-shadow:inset 0 0 0 1px rgba(var(--accent-rgb),.2);
}

html[data-theme="light"] .pricing-showcase .pricing-featured {
  border-color:rgba(var(--accent-rgb),.76);
  box-shadow:inset 0 0 0 1px rgba(var(--accent-rgb),.28);
}

html[data-theme="light"] .plan-cta,
html[data-theme="light"] .cta-outline {
  border-color:rgba(38,49,38,.26);
}

html[data-theme="light"] .plan-cta:hover,
html[data-theme="light"] .cta-outline:hover {
  border-color:rgba(var(--accent-rgb),.58);
}

html[data-theme="light"] .footer {
  border-top-color:rgba(38,49,38,.18);
}

html[data-theme="light"] .footer-bottom {
  border-top-color:rgba(38,49,38,.16);
}


.pricing-showcase .pricing-card:hover {
  transform:translateY(-4px);
}

.pricing-showcase .pricing-featured {
  transform:none;
}

.pricing-showcase .pricing-featured:hover {
  transform:translateY(-4px);
}

.pricing-featured .plan-cta,
html[data-theme="light"] .pricing-featured .plan-cta {
  background:var(--accent);
  border-color:var(--accent);
  color:var(--cta-text);
}

.pricing-featured .plan-cta:hover,
html[data-theme="light"] .pricing-featured .plan-cta:hover {
  background:var(--accent-soft);
  color:var(--cta-text);
}

html[data-theme="light"] .pricing-reasons div {
  background:rgba(var(--bg-rgb),.68);
  border-color:rgba(38,49,38,.18);
}

html[data-theme="light"] .payment-note,
html[data-theme="light"] .payment-note:hover,
html[data-theme="light"] .payment-note:focus-within {
  background:rgba(231,217,204,.92);
  border-color:rgba(111,73,53,.26);
  color:#6f4935;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.72);
  transform:none;
}

html[data-theme="light"] .payment-note strong,
html[data-theme="light"] .payment-note:hover strong {
  color:#2a1a14;
}


html[data-theme="light"] .pricing-showcase .pricing-featured,
html[data-theme="light"] .pricing-showcase .pricing-featured:hover {
  background:
    linear-gradient(180deg, rgba(185,147,120,.1), rgba(42,26,20,.03)),
    #17120f;
  border-color:rgba(111,73,53,.76);
  color:#f4e8dc;
  box-shadow:
    inset 0 0 0 1px rgba(185,147,120,.2),
    inset 0 1px 0 rgba(255,255,255,.08);
}

html[data-theme="light"] .pricing-showcase .pricing-featured h3,
html[data-theme="light"] .pricing-showcase .pricing-featured .price,
html[data-theme="light"] .pricing-showcase .pricing-featured .price span,
html[data-theme="light"] .pricing-showcase .pricing-featured .plan-kicker,
html[data-theme="light"] .pricing-showcase .pricing-featured .pricing-list li::before {
  color:#f4e8dc;
}

html[data-theme="light"] .pricing-showcase .pricing-featured .pricing-head p,
html[data-theme="light"] .pricing-showcase .pricing-featured .price small,
html[data-theme="light"] .pricing-showcase .pricing-featured .pricing-list {
  color:rgba(244,232,220,.76);
}

html[data-theme="light"] .pricing-showcase .pricing-featured .plan-badge {
  background:linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-color:rgba(var(--gold-rgb),.58);
  color:#172116;
  box-shadow:0 10px 22px rgba(var(--gold-rgb),.18);
}

html[data-theme="light"] .pricing-showcase .pricing-featured .plan-cta,
html[data-theme="light"] .pricing-showcase .pricing-featured .plan-cta:hover {
  background:#6f4935;
  border-color:#6f4935;
  color:#f4e8dc;
  box-shadow:none;
}


html[data-theme="light"] body {
  background:#dbcabd;
}

html[data-theme="light"] .section-surface,
html[data-theme="light"] .section-surface2 {
  background:rgba(210,190,173,.76);
  border-block-color:rgba(111,73,53,.16);
}

html[data-theme="light"] .nav,
html[data-theme="light"] .mobile-menu {
  background:rgba(224,207,193,.92);
}

html[data-theme="light"] .palette-switcher,
html[data-theme="light"] .payment-note,
html[data-theme="light"] .feat-card,
html[data-theme="light"] .team-card,
html[data-theme="light"] .steps li,
html[data-theme="light"] .pricing-reasons div {
  background:rgba(229,215,202,.82);
}

html[data-theme="light"] .pricing-showcase .pricing-card:not(.pricing-featured) {
  background:rgba(224,208,194,.9);
}

html[data-theme="light"] .payment-note.is-emphasized {
  background:rgba(185,147,120,.78);
  border-color:#6f4935;
  box-shadow:0 0 0 5px rgba(111,73,53,.1), 0 16px 34px rgba(111,73,53,.16);
}


.iphone {
  box-shadow:
    0 58px 74px -28px rgba(0,0,0,.72),
    22px 30px 42px -28px rgba(0,0,0,.62),
    -18px 22px 38px -30px rgba(0,0,0,.48),
    0 8px 14px -8px rgba(0,0,0,.7),
    inset 0 1px 1px rgba(255,255,255,.24),
    inset 7px 0 12px rgba(255,255,255,.1),
    inset -9px 0 16px rgba(0,0,0,.72),
    inset 0 -7px 11px rgba(0,0,0,.5);
  filter:
    drop-shadow(0 24px 18px rgba(0,0,0,.28))
    drop-shadow(0 4px 3px rgba(0,0,0,.3));
}

html[data-theme="light"] .iphone {
  box-shadow:
    0 60px 76px -30px rgba(60,38,28,.5),
    24px 30px 44px -30px rgba(111,73,53,.32),
    -18px 22px 38px -30px rgba(42,26,20,.28),
    0 8px 14px -8px rgba(42,26,20,.46),
    inset 0 1px 1px rgba(255,255,255,.28),
    inset 7px 0 12px rgba(255,255,255,.11),
    inset -9px 0 16px rgba(0,0,0,.7),
    inset 0 -7px 11px rgba(0,0,0,.5);
  filter:
    drop-shadow(0 25px 19px rgba(111,73,53,.22))
    drop-shadow(0 4px 3px rgba(42,26,20,.24));
}


html[data-theme="light"] body,
html[data-theme="light"] .section-surface,
html[data-theme="light"] .section-surface2,
html[data-theme="light"] .problem-bar,
html[data-theme="light"] .footer {
  background:#dbcabd;
}

html[data-theme="light"] .section-surface,
html[data-theme="light"] .section-surface2,
html[data-theme="light"] .problem-bar {
  border-top-color:transparent;
  border-bottom-color:transparent;
}

html[data-theme="light"] .nav,
html[data-theme="light"] .mobile-menu {
  background:rgba(219,202,189,.94);
}

html[data-theme="light"] .nav {
  border-bottom-color:transparent;
}


html[data-theme="dark"] body,
html[data-theme="dark"] .section-surface,
html[data-theme="dark"] .section-surface2,
html[data-theme="dark"] .footer {
  background:#17120f;
}

html[data-theme="dark"] .nav,
html[data-theme="dark"] .mobile-menu {
  background:rgba(23,18,15,.94);
  border-bottom-color:transparent;
}

html[data-theme="dark"] .section-surface,
html[data-theme="dark"] .section-surface2,
html[data-theme="dark"] .problem-bar,
html[data-theme="dark"] .footer {
  border-top-color:transparent;
  border-bottom-color:transparent;
}

html[data-theme="dark"] .palette-switcher,
html[data-theme="dark"] .mobile-menu,
html[data-theme="dark"] .feat-card,
html[data-theme="dark"] .team-card,
html[data-theme="dark"] .payment-note,
html[data-theme="dark"] .steps li,
html[data-theme="dark"] .pricing-reasons div {
  background:rgba(36,26,22,.88);
  border-color:rgba(244,232,220,.1);
  box-shadow:none;
}

html[data-theme="dark"] .pricing-showcase .pricing-card:not(.pricing-featured) {
  background:#241a16;
  border-color:rgba(244,232,220,.1);
  box-shadow:none;
}

html[data-theme="dark"] .pricing-showcase .pricing-featured,
html[data-theme="dark"] .pricing-showcase .pricing-featured:hover {
  background:#211713;
  border-color:rgba(209,138,90,.46);
}

html[data-theme="dark"] .problem-bar {
  background:linear-gradient(135deg, rgba(45,33,27,.96), rgba(36,26,22,.9));
  border-color:rgba(244,232,220,.08);
  box-shadow:0 12px 28px rgba(0,0,0,.18);
}

html[data-theme="dark"] .footer-bottom {
  border-top-color:transparent;
}


.problem-bar {
  width:100%;
  margin:30px 0;
  border:1px solid rgba(var(--text-rgb),.1);
  border-radius:0;
  background:linear-gradient(135deg, rgba(var(--surface-rgb),.72), rgba(var(--surface-rgb),.46));
  box-shadow:0 12px 28px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.12);
}

html[data-theme="light"] .problem-bar {
  border-color:rgba(111,73,53,.12);
  background:linear-gradient(135deg, rgba(185,147,120,.5), rgba(219,202,189,.82));
  box-shadow:0 12px 28px rgba(90,57,41,.08), inset 0 1px 0 rgba(255,255,255,.3);
}

@media (max-width:640px) {
  .problem-bar {
    width:100%;
    margin:20px 0;
    border-radius:0;
  }
}



@media (max-width:640px) {
  html,
body {
    width:100%;
    overflow-x:hidden;
  }

  body {
    font-size:16px;
    -webkit-text-size-adjust:100%;
  }

  a,
button,
input,
select {
    touch-action:manipulation;
  }

  p,
li,
a,
h1,
h2,
h3,
button {
    overflow-wrap:anywhere;
  }

  .container {
    width:100%;
    padding-inline:18px;
  }

  .nav-inner {
    height:60px;
  }

  .menu-btn {
    display:grid;
    width:44px;
    height:44px;
    padding:10px;
    place-items:center;
    border-radius:12px;
  }

  .mobile-menu {
    position:fixed;
    left:12px;
    right:12px;
    top:68px;
    max-height:calc(100vh - 84px);
    max-height:calc(100dvh - 84px);
    overflow:auto;
    overscroll-behavior:contain;
    -webkit-overflow-scrolling:touch;
    padding:16px;
    border:1px solid var(--border);
    border-radius:18px;
    background:rgba(var(--bg-rgb),.88);
    backdrop-filter:saturate(160%) blur(20px);
    -webkit-backdrop-filter:saturate(160%) blur(20px);
  }

  .mobile-menu > a {
    display:flex;
    min-height:48px;
    align-items:center;
    padding:10px 12px;
    border-radius:12px;
    font-size:16px;
    font-weight:600;
  }

  .mobile-palette {
    max-width:none;
  }

  .mobile-language {
    width:100%;
  }

  .mobile-language .language-toggle {
    width:100%;
    min-height:48px;
    justify-content:space-between;
  }

  .mobile-language .language-menu button {
    min-height:46px;
  }

  .mobile-language .language-menu {
    position:static;
    min-width:0;
    width:100%;
    margin-top:8px;
    opacity:1;
    visibility:visible;
    transform:none;
    display:none;
    box-shadow:none;
  }

  .mobile-language.open .language-menu {
    display:grid;
  }

  .mobile-palette .palette-option {
    flex:1 1 0;
    max-width:none;
    min-height:46px;
  }

  .hero {
    min-height:auto;
    padding:92px 0 54px;
    text-align:center;
  }

  .hero-grid,
.two-col {
    grid-template-columns:1fr;
    gap:32px;
  }

  .hero-title {
    max-width:360px;
    margin-inline:auto;
    font-size:clamp(34px, 10vw, 42px);
    line-height:1.08;
    overflow-wrap:break-word;
  }

  .hero-sub,
.lede {
    max-width:100%;
    font-size:16px;
    line-height:1.65;
  }

  .hero-ctas {
    width:100%;
    justify-content:center;
  }

  .hero-ctas .cta-primary,
.hero-ctas .cta-outline,
.plan-cta {
    width:100%;
    max-width:min(340px, calc(100% - 16px));
    min-height:48px;
    margin-inline:auto;
    padding-inline:18px;
    white-space:normal;
  }

  .hero .phone-wrap,
.phone-center {
    width:100%;
    padding-inline:0;
    justify-content:center;
  }

  .hero .iphone,
.gallery-item .iphone {
    width:min(260px, 76vw);
  }

  .section {
    padding:64px 0;
  }

  .section-header {
    max-width:none;
    margin-bottom:30px;
    text-align:left;
  }

  .section-header.center,
.center {
    text-align:center;
  }

  .section-header h2,
.section-title {
    font-size:clamp(30px, 9vw, 38px);
    line-height:1.12;
    overflow-wrap:break-word;
  }

  .grid-3,
.pricing-grid,
.pricing-showcase,
.pricing-reasons,
.gallery {
    grid-template-columns:1fr;
    gap:16px;
  }

  .gallery {
    gap:34px;
  }

  .gallery-item {
    gap:12px;
  }

  .gallery-item .caption {
    font-size:16px;
  }

  .feat-card,
.team-card,
.pricing-showcase .pricing-card {
    width:100%;
    padding:20px;
    border-radius:18px;
    transform:none;
  }

  .feat-card:hover,
.team-card:hover,
.pricing-showcase .pricing-card:hover,
.pricing-showcase .pricing-featured:hover {
    transform:none;
  }

  .pricing-proof {
    justify-content:flex-start;
    margin-bottom:18px;
  }

  .pricing-proof span {
    width:100%;
    justify-content:center;
    text-align:center;
  }

  .pricing-showcase .pricing-head h3 {
    padding-right:0;
    font-size:26px;
  }

  .pricing-showcase .price {
    min-height:auto;
    margin-bottom:18px;
  }

  .pricing-showcase .price span {
    font-size:42px;
  }

  .pricing-showcase .pricing-head p,
.pricing-showcase .pricing-list,
.pricing-reasons span {
    font-size:14px;
    line-height:1.6;
  }

  .pricing-showcase .plan-badge {
    position:static;
    width:max-content;
    max-width:100%;
    margin-bottom:14px;
  }

  .pricing-showcase .pricing-list {
    margin-top:0;
  }

  .pricing-reasons div {
    padding:15px 16px;
    border-radius:16px;
  }

  .apk-note {
    padding:16px;
    font-size:14px;
    line-height:1.6;
  }

  .problem-bar {
    padding:22px 18px;
  }

  .problem-bar p {
    font-size:16px;
    line-height:1.55;
  }

  .footer-top,
.footer-bottom {
    align-items:flex-start;
    gap:18px;
  }

  .footer-nav {
    width:100%;
    flex-direction:column;
    gap:12px;
  }

  .footer-nav a,
.footer-bottom > a {
    display:flex;
    min-height:44px;
    align-items:center;
    padding-block:8px;
  }

  .footer-bottom {
    width:100%;
    line-height:1.55;
  }

}

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


.download-cta,
.download-cta:hover,
.hero-ctas .download-cta,
.hero-ctas .download-cta:hover {
  animation:downloadPulse 2.4s cubic-bezier(.45,0,.55,1) infinite !important;
}

.privacy-page {
  padding:140px 0 80px;
}

.privacy-page h1 {
  margin-bottom:16px;
  font-size:clamp(32px, 5vw, 56px);
}

.privacy-page .intro {
  max-width:700px;
  margin-bottom:64px;
  color:var(--text-muted);
  font-size:18px;
  line-height:1.8;
}

.privacy-section {
  margin-bottom:56px;
}

.privacy-section h2 {
  margin:32px 0 16px;
  color:var(--accent);
  font-size:28px;
}

.privacy-section h3 {
  margin:20px 0 12px;
  color:var(--text);
  font-size:18px;
  font-weight:600;
}

.privacy-section ul {
  margin-left:0;
  padding-left:0;
  list-style:none;
}

.privacy-section li {
  position:relative;
  padding:8px 0 8px 28px;
  color:var(--text-muted);
  line-height:1.7;
}

.privacy-section li::before {
  content:"▸";
  position:absolute;
  left:0;
  color:var(--accent);
  font-weight:700;
}

.privacy-section p {
  margin-bottom:16px;
  color:var(--text-muted);
  font-size:15px;
  line-height:1.8;
}

.privacy-section strong {
  color:var(--text);
}

.contact-box {
  margin-top:48px;
  padding:32px;
  border:1px solid rgba(200,168,75,.25);
  border-radius:16px;
  background:rgba(200,168,75,.08);
}

.contact-box h3 {
  margin-top:0;
  color:var(--accent);
}

.contact-box a {
  color:var(--accent);
  font-weight:600;
  text-decoration:none;
}

.contact-box a:hover {
  text-decoration:underline;
}

.privacy-page .back-btn,
.deletion-page .back-btn {
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:32px;
  color:var(--accent);
  text-decoration:none;
  transition:gap .2s;
}

.privacy-page .back-btn {
  font-weight:500;
}

.deletion-page .back-btn {
  font-weight:600;
}

.privacy-page .back-btn:hover,
.deletion-page .back-btn:hover {
  gap:12px;
}

.deletion-page {
  max-width:900px;
  padding:140px 0 80px;
}

.deletion-page h1 {
  margin-bottom:18px;
  font-size:clamp(36px, 6vw, 64px);
  line-height:1.08;
}

.deletion-page .intro {
  max-width:760px;
  margin-bottom:48px;
  color:var(--text-muted);
  font-size:18px;
  line-height:1.8;
}

.deletion-card {
  margin-bottom:28px;
  padding:clamp(24px, 5vw, 42px);
  border:1px solid var(--border);
  border-radius:24px;
  background:rgba(var(--surface-rgb),.52);
}

.deletion-card h2 {
  margin:0 0 16px;
  color:var(--accent);
  font-size:clamp(24px, 4vw, 32px);
}

.deletion-card p {
  margin:0 0 16px;
  color:var(--text-muted);
  line-height:1.75;
}

.steps-list {
  display:grid;
  gap:18px;
  margin:26px 0 0;
  padding:0;
  list-style:none;
  counter-reset:deletion-step;
}

.steps-list li {
  position:relative;
  min-height:48px;
  padding-left:64px;
  color:var(--text-muted);
  line-height:1.65;
  counter-increment:deletion-step;
}

.steps-list li::before {
  content:counter(deletion-step);
  position:absolute;
  top:0;
  left:0;
  display:grid;
  width:42px;
  height:42px;
  place-items:center;
  border-radius:50%;
  background:var(--accent);
  color:var(--bg);
  font-weight:700;
}

.steps-list strong {
  color:var(--text);
}

.status-note {
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin:22px 0;
  padding:18px;
  border:1px solid rgba(200,168,75,.35);
  border-radius:16px;
  background:rgba(200,168,75,.1);
  color:var(--text-muted);
  line-height:1.65;
}

.status-note svg {
  width:24px;
  min-width:24px;
  margin-top:2px;
  color:var(--accent);
}

.delete-panel {
  display:grid;
  gap:16px;
  padding-top:8px;
}

.delete-panel label {
  color:var(--text);
  font-weight:600;
}

.delete-panel input {
  width:100%;
  min-height:50px;
  padding:0 16px;
  border:1px solid var(--border);
  border-radius:12px;
  background:rgba(var(--bg-rgb),.55);
  color:var(--text);
  font:inherit;
  opacity:1;
}

.delete-panel input:focus {
  outline:2px solid var(--accent);
  outline-offset:2px;
}

.password-field {
  position:relative;
}

.password-field input {
  padding-right:58px;
}

.delete-panel .password-toggle {
  position:absolute;
  top:50%;
  right:6px;
  display:grid;
  width:44px;
  height:42px;
  min-height:0;
  padding:0;
  place-items:center;
  transform:translateY(-50%);
  border:0;
  border-radius:9px;
  background:transparent !important;
  color:var(--text-muted);
}

.delete-panel .password-toggle:hover {
  background:rgba(var(--text-rgb),.08) !important;
  color:var(--text);
  filter:none;
}

.delete-panel .password-toggle:focus-visible {
  outline:2px solid var(--accent);
  outline-offset:1px;
}

.password-icon {
  width:26px;
  height:22px;
}

.password-icon[hidden] {
  display:none;
}

.delete-panel button {
  min-height:50px;
  padding:0 22px;
  border:0;
  border-radius:999px;
  background:#a94442;
  color:#fff;
  font:inherit;
  font-weight:700;
  cursor:pointer;
  opacity:1;
}

.delete-panel button:hover {
  filter:brightness(1.08);
}

.status-note--error {
  border-color:rgba(169,68,66,.5);
  background:rgba(169,68,66,.12);
}

.status-note--error svg {
  color:#c65b58;
}

.status-note--success {
  border-color:rgba(91,155,108,.5);
  background:rgba(91,155,108,.12);
}

.status-note--success svg {
  color:#71b883;
}

.delete-panel small {
  color:var(--text-muted);
  line-height:1.6;
}

.support-link {
  color:var(--accent);
  font-weight:600;
}

body.modal-open {
  overflow:hidden;
}

.otp-modal {
  position:fixed;
  z-index:1000;
  inset:0;
  display:grid;
  padding:20px;
  place-items:center;
}

.otp-modal[hidden] {
  display:none;
}

.otp-modal__backdrop {
  position:absolute;
  inset:0;
  background:rgba(8,6,5,.72);
  backdrop-filter:blur(7px);
}

.otp-modal__card {
  position:relative;
  width:min(100%,480px);
  padding:38px;
  border:1px solid var(--border);
  border-radius:26px;
  background:var(--surface);
  box-shadow:0 28px 80px rgba(0,0,0,.38);
  color:var(--text);
  text-align:center;
}

.otp-modal__close {
  position:absolute;
  top:13px;
  right:13px;
  display:grid;
  width:38px;
  min-height:38px;
  padding:0;
  place-items:center;
  border:0;
  border-radius:50%;
  background:transparent;
  color:var(--text-muted);
  font-size:27px;
  font-weight:400;
  line-height:1;
  cursor:pointer;
}

.otp-modal__close:hover {
  background:rgba(var(--text-rgb),.08);
  color:var(--text);
}

.otp-modal__icon {
  display:grid;
  width:58px;
  height:58px;
  margin:0 auto 18px;
  place-items:center;
  border-radius:18px;
  background:rgba(200,168,75,.14);
  color:var(--accent);
}

.otp-modal__icon svg {
  width:29px;
  height:29px;
}

.otp-modal__card h2 {
  margin:0 0 10px;
  font-size:clamp(27px,5vw,35px);
}

.otp-modal__card > p {
  margin:0;
  color:var(--text-muted);
  line-height:1.65;
}

.otp-modal__card .otp-modal__error {
  margin-top:16px;
  padding:11px 13px;
  border:1px solid rgba(169,68,66,.5);
  border-radius:12px;
  background:rgba(169,68,66,.12);
  color:#d88380;
  font-size:14px;
}

.otp-form {
  display:grid;
  gap:14px;
  margin-top:25px;
  text-align:left;
}

.otp-form label {
  color:var(--text);
  font-weight:600;
}

.otp-form input {
  width:100%;
  min-height:58px;
  padding:0 18px;
  border:1px solid var(--border);
  border-radius:14px;
  background:rgba(var(--bg-rgb),.55);
  color:var(--text);
  font:600 23px/1 'DM Sans',sans-serif;
  letter-spacing:.32em;
  text-align:center;
}

.otp-form input:focus {
  outline:2px solid var(--accent);
  outline-offset:2px;
}

.otp-form button {
  min-height:50px;
  padding:0 20px;
  border:0;
  border-radius:999px;
  background:#a94442;
  color:#fff;
  font:700 15px/1 'DM Sans',sans-serif;
  cursor:pointer;
}

.otp-modal__card .otp-modal__note {
  margin-top:16px;
  font-size:13px;
}

@media (max-width:640px) {
  .privacy-page h1 {
    line-height:1.12;
  }

  .privacy-section h2 {
    line-height:1.18;
  }

  .deletion-page {
    padding:108px 18px 56px;
  }

  .deletion-card {
    border-radius:18px;
  }

  .otp-modal {
    padding:14px;
  }

  .otp-modal__card {
    padding:34px 22px 26px;
    border-radius:22px;
  }
}
