/* ==========================================================================
   GarageBook marketing site — design system
   Tokens mirror mobile/lib/core/theme/{app_colors,app_tokens,app_text_styles}.dart
   Dark-first (product identity), light theme via [data-theme="light"].
   ========================================================================== */

:root {
  /* colour — dark theme (app_colors.dart) */
  --bg: #0F1720;
  --surface: #18222D;
  --surface-2: #223041;
  --elevated: #2B3B4E;
  --border: #334155;
  --divider: #253241;
  --shimmer: #2A3646;
  --text: #F5F7FA;
  --text-2: #AAB3C5;
  --text-3: #7C8799;
  --accent: #16B8C9;
  --accent-dark: #0E94A3;
  --accent-container: #102B30;
  --error: #FF6B6B;
  --warning: #FFB547;
  --success: #34D399;
  --info: #60A5FA;
  --grad: linear-gradient(135deg, #16B8C9, #0E94A3);
  --glow: 0 6px 24px rgba(22, 184, 201, .30);

  /* category colours (expense_category.dart) */
  --cat-fuel:#FF8A3D; --cat-service:#16B8C9; --cat-insurance:#7C83FD;
  --cat-puc:#34D399; --cat-fastag:#FBBF24; --cat-toll:#A78BFA;
  --cat-parking:#FFA94D; --cat-repair:#FF6B6B; --cat-tyres:#94A3B8;
  --cat-battery:#FACC15; --cat-accessories:#B08968; --cat-cleaning:#60A5FA;
  --cat-hotel:#EC4899; --cat-food:#FB923C; --cat-other:#7C8799;

  /* geometry (app_tokens.dart) */
  --r-xs: 6px; --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 20px; --r-pill: 999px;
  --shadow-card: 0 4px 12px rgba(0,0,0,.10);
  --shadow-raised: 0 8px 20px rgba(0,0,0,.14);

  /* motion (AppDuration / AppCurves) */
  --t-fast: 150ms; --t-med: 250ms; --t-slow: 400ms; --t-chart: 650ms;
  --ease-standard: cubic-bezier(.33,1,.68,1);
  --ease-emph: cubic-bezier(.2,0,0,1);
  --ease-decel: cubic-bezier(.05,.7,.1,1);

  --font: "Plus Jakarta Sans", -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "Source Code Pro", ui-monospace, "SF Mono", Menlo, monospace;

  --header-h: 68px;
  color-scheme: dark;
}

[data-theme="light"] {
  --bg: #F7F8FA;
  --surface: #FFFFFF;
  --surface-2: #EDF1F5;
  --elevated: #FFFFFF;
  --border: #D9DEE5;
  --divider: #E6EAF0;
  --shimmer: #E9EDF2;
  --text: #0D1620;
  --text-2: #4A5568;
  --text-3: #8A94A6;
  --accent-container: #DEF4F6;
  --shadow-card: 0 4px 12px rgba(13,22,32,.08);
  --shadow-raised: 0 8px 20px rgba(13,22,32,.12);
  color-scheme: light;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  transition: background var(--t-med) var(--ease-standard), color var(--t-med) var(--ease-standard);
}
img, svg { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
h1,h2,h3,h4 { line-height: 1.18; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }
p { margin: 0 0 1em; }
.muted { color: var(--text-2); }
.small { font-size: .85rem; }
.mono { font-family: var(--mono); letter-spacing: .08em; }
::selection { background: rgba(22,184,201,.35); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--accent); color: #06282c; padding: 10px 18px; border-radius: 0 0 var(--r-sm) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- scroll progress ---------- */
.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--grad); z-index: 120; border-radius: 0 2px 2px 0;
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med), background var(--t-med);
}
.site-header.scrolled { border-bottom-color: var(--divider); }
.nav {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.12rem; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand .mark { width: 30px; height: 30px; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--text-2); font-size: .92rem; font-weight: 500; position: relative; padding: 6px 0;
}
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--accent); border-radius: 2px; transition: width var(--t-med) var(--ease-decel);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.theme-toggle {
  background: var(--surface); border: 1px solid var(--border); color: var(--text-2);
  width: 38px; height: 38px; border-radius: var(--r-pill); cursor: pointer;
  display: grid; place-items: center; transition: color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.theme-toggle:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-1px); }
.theme-toggle .sun { display: none; }
[data-theme="light"] .theme-toggle .sun { display: block; }
[data-theme="light"] .theme-toggle .moon { display: none; }

.menu-btn { display: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: 600 .95rem/1 var(--font); letter-spacing: .01em;
  padding: 14px 26px; border-radius: var(--r-sm); border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform var(--t-fast) var(--ease-standard), box-shadow var(--t-med), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  will-change: transform;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--grad); color: #04262b; box-shadow: var(--glow); }
.btn-primary:hover { box-shadow: 0 10px 32px rgba(22,184,201,.42); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--text); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: .88rem; }

/* ---------- badges & chips ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; font-weight: 600; letter-spacing: .04em;
  padding: 6px 12px; border-radius: var(--r-pill);
  background: var(--accent-container); color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
}
.kicker {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}

/* ---------- sections ---------- */
.section { padding: clamp(64px, 9vw, 110px) 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-alt { background: color-mix(in srgb, var(--surface) 55%, var(--bg)); }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 26px; box-shadow: var(--shadow-card);
  transition: transform var(--t-med) var(--ease-decel), box-shadow var(--t-med), border-color var(--t-med);
}
.card:hover { border-color: color-mix(in srgb, var(--accent) 40%, var(--border)); box-shadow: var(--shadow-raised); }
.card h3 { margin-top: 14px; }
.card p:last-child { margin-bottom: 0; }

.icon-chip {
  width: 46px; height: 46px; border-radius: var(--r-md);
  display: grid; place-items: center; font-size: 22px;
  background: color-mix(in srgb, var(--chip, var(--accent)) 15%, transparent);
  color: var(--chip, var(--accent));
  transition: transform var(--t-med) var(--ease-decel);
}
.card:hover .icon-chip { transform: translateY(-3px) scale(1.06); }

.cat-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: var(--r-pill);
  background: color-mix(in srgb, var(--chip) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--chip) 30%, transparent);
  color: var(--text); font-size: .85rem; font-weight: 600;
  transition: transform var(--t-fast) var(--ease-decel);
}
.cat-chip:hover { transform: translateY(-2px); }
.cat-chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--chip); }

/* ---------- hero ---------- */
.hero { position: relative; padding: clamp(64px, 10vw, 130px) 0 clamp(48px, 7vw, 90px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero .lede { font-size: 1.14rem; color: var(--text-2); max-width: 34rem; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 18px; }
.hero-note { font-size: .82rem; color: var(--text-3); }

.ambient {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(560px 420px at 82% 8%, rgba(22,184,201,.16), transparent 65%),
    radial-gradient(480px 380px at 6% 82%, rgba(14,148,163,.12), transparent 65%);
}
.ambient::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--divider) 1px, transparent 1px),
    linear-gradient(90deg, var(--divider) 1px, transparent 1px);
  background-size: 56px 56px; opacity: .28;
  mask-image: radial-gradient(70% 60% at 50% 30%, black, transparent);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, black, transparent);
}

/* ---------- phone mockup (recreations of real app screens) ---------- */
.stage { perspective: 1200px; display: grid; place-items: center; position: relative; }
.phone {
  width: 300px; border-radius: 38px; padding: 10px;
  background: #0B1118; border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0,0,0,.45), var(--glow);
  transform-style: preserve-3d;
  transition: transform var(--t-slow) var(--ease-decel), box-shadow var(--t-slow);
}
.stage.float .phone { animation: float 7s ease-in-out infinite; }
@keyframes float {
  0%,100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0); }
  50% { transform: rotateY(-8deg) rotateX(4deg) translateY(-12px); }
}
.phone-screen {
  border-radius: 30px; overflow: hidden;
  background: #0F1720; color: #F5F7FA;
  aspect-ratio: 9 / 19; display: flex; flex-direction: column;
  font-size: 11px; line-height: 1.4;
}
.phone-screen > .m-body { flex: 1; padding: 12px 12px 6px; overflow: hidden; display: flex; flex-direction: column; gap: 9px; }

/* floating chips around hero phone */
.float-chip {
  position: absolute; z-index: 2;
  background: color-mix(in srgb, #18222D 88%, transparent);
  border: 1px solid #334155; border-radius: var(--r-md);
  box-shadow: var(--shadow-raised);
  padding: 10px 14px; font-size: .8rem; font-weight: 600; color: #F5F7FA;
  display: flex; align-items: center; gap: 8px;
  backdrop-filter: blur(8px);
}
.float-chip .dot { width: 8px; height: 8px; border-radius: 50%; }
.stage.float .float-chip { animation: float-soft 9s ease-in-out infinite; }
.stage.float .float-chip:nth-of-type(2) { animation-delay: -3s; }
.stage.float .float-chip:nth-of-type(3) { animation-delay: -6s; }
@keyframes float-soft { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-9px);} }

/* mockup atoms — values from audited screens */
.m-statusbar { display: flex; justify-content: space-between; padding: 10px 14px 0; font-size: 9px; color: #AAB3C5; }
.m-topline { display: flex; align-items: center; justify-content: space-between; }
.m-app { color: #16B8C9; font-weight: 700; font-size: 12px; }
.m-iconbtn {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg,#16B8C9,#0E94A3); display: grid; place-items: center; font-size: 13px;
}
.m-greet { font-size: 15px; font-weight: 700; }
.m-date { font-size: 9px; color: #7C8799; }
.m-hero-card {
  background: linear-gradient(135deg,#16B8C9,#0E94A3);
  border-radius: 14px; padding: 12px; color: #04262b;
}
.m-hero-card .lbl { font-size: 8px; font-weight: 700; letter-spacing: .12em; color: rgba(4,38,43,.75); display:flex; justify-content: space-between; align-items:center; }
.m-hero-card .lbl .pill { background: rgba(255,255,255,.25); color:#04262b; border-radius: 99px; padding: 2px 7px; letter-spacing: 0; font-weight:600;}
.m-amount { font-size: 22px; font-weight: 800; letter-spacing: -.02em; margin-top: 4px; color: #FFFFFF; }
.m-hero-card .sub { font-size: 8.5px; color: rgba(255,255,255,.8); }
.m-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }
.m-stat { background: #18222D; border: 1px solid #334155; border-radius: 11px; padding: 8px; text-align: center; }
.m-stat .ic { font-size: 13px; }
.m-stat .v { font-weight: 700; font-size: 12px; margin-top: 2px; }
.m-stat .l { font-size: 8px; color: #7C8799; }
.m-sec { font-size: 10.5px; font-weight: 600; color: #AAB3C5; margin-top: 2px; }
.m-row {
  display: flex; align-items: center; gap: 8px;
  background: #18222D; border: 1px solid #334155; border-radius: 11px; padding: 8px;
}
.m-ico {
  width: 26px; height: 26px; border-radius: 8px; flex: none;
  display: grid; place-items: center; font-size: 13px;
  background: color-mix(in srgb, var(--chip, #16B8C9) 18%, transparent);
}
.m-row .t { flex: 1; min-width: 0; }
.m-row .t .n { font-weight: 600; font-size: 10.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.m-row .t .s { font-size: 8.5px; color: #7C8799; }
.m-row .r { text-align: right; font-weight: 700; font-size: 10.5px; }
.m-row .r .s { font-weight: 400; font-size: 8.5px; color: #7C8799; }
.m-pill { font-size: 7.5px; font-weight: 700; border-radius: 99px; padding: 2px 7px; }
.m-pill.warn { background: rgba(255,181,71,.16); color: #FFB547; }
.m-pill.ok { background: rgba(22,184,201,.16); color: #16B8C9; }
.m-pill.late { background: rgba(255,107,107,.16); color: #FF6B6B; }
.m-nav {
  display: grid; grid-template-columns: repeat(5,1fr);
  border-top: 1px solid #253241; padding: 7px 4px 10px; background: #18222D;
  font-size: 8px; text-align: center; color: #7C8799; margin-top: auto;
}
.m-nav .on { color: #16B8C9; font-weight: 700; }
.m-nav span { display: block; font-size: 13px; margin-bottom: 1px; }
.m-vscroll { display: flex; gap: 8px; overflow: hidden; }
.m-vcard {
  flex: none; width: 118px; background: #18222D; border: 1px solid #334155;
  border-radius: 12px; padding: 8px;
}
.m-vcard .img { height: 42px; border-radius: 8px; background: #102B30; display: grid; place-items: center; font-size: 18px; }
.m-vcard .n { font-weight: 600; font-size: 10px; margin-top: 5px; }
.m-vcard .p { font-family: var(--mono); font-size: 8px; color: #AAB3C5; letter-spacing: .1em; }
.m-vcard .k { font-size: 8px; color: #7C8799; }
.m-chart { display: flex; align-items: flex-end; gap: 6px; height: 74px; padding: 4px 2px 0; }
.m-chart .bar { flex: 1; border-radius: 4px 4px 0 0; background: #223041; position: relative; }
.m-chart .bar i { position: absolute; inset: auto 0 0 0; border-radius: 4px 4px 0 0; background: linear-gradient(180deg,#16B8C9,#0E94A3); display: block; }
.m-axis { display: flex; gap: 6px; font-size: 7.5px; color: #7C8799; text-align: center; }
.m-axis span { flex: 1; }
.m-donut-wrap { display: flex; align-items: center; gap: 12px; }
.m-donut {
  width: 84px; height: 84px; border-radius: 50%; flex: none;
  background: conic-gradient(#FF8A3D 0 38%, #16B8C9 38% 60%, #7C83FD 60% 74%, #FF6B6B 74% 84%, #A78BFA 84% 92%, #7C8799 92% 100%);
  display: grid; place-items: center;
}
.m-donut::after { content: ""; width: 52px; height: 52px; border-radius: 50%; background: #0F1720; }
.m-legend { font-size: 8.5px; color: #AAB3C5; display: grid; gap: 4px; }
.m-legend .dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; margin-right: 5px; }
.m-field {
  background: #223041; border: 1px solid #334155; border-radius: 8px;
  padding: 8px 10px; font-size: 10px; color: #AAB3C5;
  display: flex; align-items: center; gap: 7px;
}
.m-field b { color: #F5F7FA; font-weight: 600; }
.m-label { font-size: 9px; font-weight: 600; color: #AAB3C5; margin-bottom: -4px; }
.m-btn {
  background: linear-gradient(135deg,#16B8C9,#0E94A3); color: #04262b;
  text-align: center; font-weight: 700; font-size: 11px;
  border-radius: 9px; padding: 10px; margin-top: 2px;
}
.m-pinrow { display: flex; gap: 8px; justify-content: center; }
.m-pin {
  width: 34px; height: 38px; border-radius: 8px;
  background: #223041; border: 1.5px solid #334155;
  display: grid; place-items: center; font-size: 16px; color: #16B8C9;
}
.m-pin.active { border-color: #16B8C9; }
.m-brandmark { text-align: center; padding-top: 10px; }
.m-brandmark .ring {
  width: 44px; height: 44px; margin: 0 auto 8px; border-radius: 50%;
  border: 3px solid #102B30; border-top-color: #16B8C9; border-right-color: #16B8C9;
  display: grid; place-items: center;
}
.m-brandmark .ring i { width: 12px; height: 12px; border-radius: 50%; background: #16B8C9; box-shadow: 0 0 12px #16B8C9; }
.m-brandmark .t { font-weight: 800; font-size: 15px; }
.m-brandmark .s { font-size: 8.5px; color: #7C8799; }
.m-tabs { display: flex; gap: 12px; font-size: 9.5px; color: #7C8799; border-bottom: 1px solid #253241; padding-bottom: 5px; }
.m-tabs .on { color: #16B8C9; font-weight: 700; position: relative; }
.m-tabs .on::after { content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px; background:#16B8C9; border-radius:2px;}
.m-gradbar { background: linear-gradient(135deg,#16B8C9,#0E94A3); margin: -12px -12px 0; padding: 12px; border-radius: 0; color: #fff; font-weight: 700; font-size: 12px; }

/* screens page layout */
.screen-item { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.screen-item:nth-child(even) .stage { order: -1; }
.screens-flow { display: grid; gap: clamp(48px, 7vw, 88px); }

/* ---------- steps (how it works) ---------- */
.step { display: flex; gap: 18px; }
.step-num {
  flex: none; width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent-container); color: var(--accent);
  display: grid; place-items: center; font-weight: 800;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
details.faq {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 0 22px; transition: border-color var(--t-med);
}
details.faq[open] { border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); }
details.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 18px 0; font-weight: 600;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+"; font-size: 1.3rem; color: var(--accent); font-weight: 400;
  transition: transform var(--t-med) var(--ease-decel);
}
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq .faq-a { padding: 0 0 20px; color: var(--text-2); }
details.faq .faq-a p:last-child { margin-bottom: 0; }

/* ---------- notice / callout ---------- */
.notice {
  border: 1px solid color-mix(in srgb, var(--warning) 45%, var(--border));
  background: color-mix(in srgb, var(--warning) 8%, var(--surface));
  border-radius: var(--r-md); padding: 16px 20px; font-size: .92rem;
}
.notice.info {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  background: color-mix(in srgb, var(--accent) 7%, var(--surface));
}

/* ---------- legal pages ---------- */
.legal-wrap { max-width: 780px; margin: 0 auto; }
.legal-wrap h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
.legal-meta { color: var(--text-3); font-size: .88rem; margin-bottom: 2em; }
.legal-wrap h2 { font-size: 1.25rem; margin-top: 2.2em; }
.legal-wrap h3 { font-size: 1.02rem; margin-top: 1.6em; }
.legal-wrap ul { padding-left: 1.3em; color: var(--text-2); }
.legal-wrap li { margin-bottom: .4em; }
.legal-wrap p { color: var(--text-2); }
.legal-wrap strong { color: var(--text); }
.table-scroll { overflow-x: auto; }
table.data {
  width: 100%; border-collapse: collapse; font-size: .9rem; margin: 1em 0 1.6em;
}
table.data th, table.data td {
  text-align: left; padding: 10px 14px; border: 1px solid var(--border); color: var(--text-2);
}
table.data th { background: var(--surface); color: var(--text); font-weight: 600; }
.crumbs { font-size: .84rem; color: var(--text-3); margin-bottom: 18px; }
.crumbs a { color: var(--text-3); }
.crumbs a:hover { color: var(--accent); }

/* ---------- download / contact ---------- */
.dl-card { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.spec-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.spec-list li { display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--divider); padding-bottom: 10px; font-size: .93rem; }
.spec-list li span:first-child { color: var(--text-3); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--grad); border-radius: var(--r-lg);
  padding: clamp(36px, 6vw, 64px); text-align: center; color: #04262b;
  position: relative; overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 520px; margin: 0 auto 26px; }
.cta-band .btn { background: #0F1720; color: #F5F7FA; box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.cta-band .btn:hover { transform: translateY(-2px); }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--divider); padding: 56px 0 36px; margin-top: 40px; font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-grid h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-3); margin-bottom: 14px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-grid a { color: var(--text-2); }
.footer-grid a:hover { color: var(--accent); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid var(--divider); padding-top: 22px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--text-3); font-size: .82rem;
}

/* ---------- error pages ---------- */
.error-hero { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 80px 24px; }
.error-code { font-size: clamp(5rem, 16vw, 9rem); font-weight: 800; letter-spacing: -.04em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }

/* ---------- reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.in { opacity: 1; transform: none; transition: opacity var(--t-slow) var(--ease-decel), transform var(--t-slow) var(--ease-decel); }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero .lede { margin-inline: auto; }
  .hero-grid > div:first-child { text-align: center; }
  .hero-ctas { justify-content: center; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .screen-item { grid-template-columns: 1fr; gap: 24px; }
  .screen-item:nth-child(even) .stage { order: 0; }
  .float-chip { display: none; }
}
@media (max-width: 720px) {
  .nav-links {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--divider);
    padding: 8px 24px 16px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; font-size: 1rem; }
  .menu-btn {
    display: grid; place-items: center; width: 38px; height: 38px;
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-sm);
    color: var(--text); cursor: pointer;
  }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .phone { width: 270px; }
}

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

/* Theme switcher disabled — site ships in light mode only */
.theme-toggle { display: none !important; }
