/* ═══════════════════════════════════════════════════════════════
   TesTalk — Design System
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #08090d;
  --surface:     #0f1117;
  --surface-2:   #161b27;
  --border:      #1e2232;
  --border-2:    #2a3048;
  --accent:      #e82127;
  --accent-dim:  rgba(232, 33, 39, .14);
  --accent-glow: rgba(232, 33, 39, .28);
  --text:        #eef0f9;
  --text-2:      #8892ab;
  --text-3:      #4f5773;
  --online:      #10b981;
  --asleep:      #f59e0b;
  --offline:     #4b5563;
  --blue:        #3b82f6;
  --blue-dim:    rgba(59, 130, 246, .14);
  --orange:      #f97316;
  --orange-dim:  rgba(249, 115, 22, .14);
  --red-dim:     rgba(232, 33, 39, .14);
  --r-sm:        10px;
  --r:           18px;
  --r-lg:        24px;
  --r-xl:        32px;
}

html {
  font-size: 15px;
  overflow-x: hidden;
  scrollbar-width: none;
}
html::-webkit-scrollbar { display: none; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.6); opacity: .5; }
}

@keyframes bump {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}

@keyframes slide-in-toast {
  from { transform: translateX(120%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

@keyframes shimmer {
  from { background-position: 200% center; }
  to   { background-position: -200% center; }
}

.spin { animation: spin .8s linear infinite; display: inline-block; }

/* ── Shared layout ───────────────────────────────────────────── */
.shell {
  width: min(960px, calc(100% - 32px));
  margin: 28px auto 80px;
}

/* ── Wordmark ─────────────────────────────────────────────────── */
.wordmark {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.04em;
}
.wordmark-sm { font-size: 18px; }
.wordmark-accent { color: var(--accent); }

/* ── Brand (icon + wordmark combo) ───────────────────────────── */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: inherit;
}
.brand-icon {
  height: 26px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

/* ── App header ──────────────────────────────────────────────── */
.app-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(8, 9, 13, .85);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.app-header-inner {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.car-header-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
}
.car-header-name {
  font-size: 15px;
  font-weight: 700;
}
.car-header-state {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
}

/* ── Icon button ─────────────────────────────────────────────── */
.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-2);
  cursor: pointer;
  transition: color .15s, border-color .15s, background .15s;
  flex-shrink: 0;
}
.icon-btn svg { width: 16px; height: 16px; }
.icon-btn:hover { color: var(--text); border-color: var(--border-2); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: none;
  border-radius: var(--r-sm);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: filter .15s, opacity .15s, transform .1s;
  white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn:hover  { filter: brightness(1.1); }
.btn:active { transform: scale(.97); opacity: .9; }

.btn-red   { background: var(--accent); color: #fff; }
.btn-ghost {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--border-2); }

.btn:disabled { opacity: 0.38; cursor: not-allowed; filter: none; transform: none; }

.btn-sm   { padding: 7px 14px; font-size: 13px; border-radius: 8px; }
.btn-sm svg { width: 13px; height: 13px; }
.btn-full { width: 100%; }
.btn-large { padding: 13px 24px; font-size: 15px; border-radius: var(--r); }

.hidden { display: none !important; }

/* ── Status dot & badge ──────────────────────────────────────── */
.status-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  animation: pulse-dot 2.4s ease-in-out infinite;
}

.state-online  .status-dot, .car-header-state.state-online  .status-dot { background: var(--online); }
.state-asleep  .status-dot, .car-header-state.state-asleep  .status-dot { background: var(--asleep); animation-duration: 4s; }
.state-offline .status-dot, .car-header-state.state-offline .status-dot { background: var(--offline); animation: none; }

.state-online  { color: var(--online); }
.state-asleep  { color: var(--asleep); }
.state-offline { color: var(--offline); }

/* ── Alert ───────────────────────────────────────────────────── */
.alert {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(248, 113, 113, .1);
  border: 1px solid rgba(248, 113, 113, .25);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-size: 14px;
  color: #f87171;
  margin-bottom: 16px;
}
.alert-icon { width: 16px; height: 16px; flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════════
   HOME PAGE
   ════════════════════════════════════════════════════════════════ */

.home-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(232, 33, 39, .06) 0%, transparent 70%),
    var(--bg);
}

.home-wrap {
  width: min(420px, calc(100% - 32px));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 40px 0;
  animation: fade-up .5s ease both;
}

.home-brand { text-align: center; }
.wordmark-large {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -.05em;
}
.home-sub {
  color: var(--text-2);
  margin-top: 6px;
  font-size: 15px;
}

/* Auth card */
.auth-card {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 6px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255,255,255,.03);
}

/* Tab bar */
.tab-bar {
  display: flex;
  position: relative;
  background: var(--bg);
  border-radius: calc(var(--r-xl) - 6px);
  padding: 4px;
  margin-bottom: 4px;
  gap: 0;
}
.tab-btn {
  flex: 1;
  background: none;
  border: none;
  border-radius: calc(var(--r-xl) - 10px);
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-3);
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: color .2s;
}
.tab-btn.active { color: var(--text); }
.tab-indicator {
  position: absolute;
  top: 4px; bottom: 4px;
  border-radius: calc(var(--r-xl) - 10px);
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: left .25s cubic-bezier(.34, 1.56, .64, 1), width .25s cubic-bezier(.34, 1.56, .64, 1);
  pointer-events: none;
}

/* Tab panels */
.tab-panel {
  display: none;
  padding: 20px;
  animation: fade-in .2s ease;
}
.tab-panel.active { display: block; }

.auth-desc {
  color: var(--text-2);
  font-size: 14px;
  margin-bottom: 18px;
  line-height: 1.6;
}

.auth-note {
  text-align: center;
  color: var(--text-3);
  font-size: 12px;
  margin-top: 12px;
}

/* Tesla / assistant logos in buttons & cards */
.tesla-icon { flex-shrink: 0; }
.tesla-btn-logo {
  height: 18px;
  width: auto;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
.asi-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ════════════════════════════════════════════════════════════════
   DASHBOARD PAGE
   ════════════════════════════════════════════════════════════════ */

.app-page { animation: fade-in .3s ease; }

.page-title-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}
.page-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.03em;
}
.car-count {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}

/* Car grid */
.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

/* Car card */
.car-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.car-card--paired {
  cursor: pointer;
}
.car-card--paired:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 33, 39, .35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .45), 0 0 0 1px rgba(232, 33, 39, .12);
}
.car-card--paired:hover .car-card-glow { opacity: 1; }
.car-card--paired:active { transform: translateY(-1px); }

.car-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232, 33, 39, .07) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}

/* Status badge on card */
.car-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.state-online.car-status-badge  { background: rgba(16,185,129,.12); color: var(--online); }
.state-asleep.car-status-badge  { background: rgba(245,158,11,.12); color: var(--asleep); }
.state-offline.car-status-badge { background: rgba(75,85,99,.15);   color: var(--offline); }

/* Car SVG */
.car-visual {
  display: flex;
  justify-content: center;
  margin: 4px 0 16px;
}
.car-svg {
  width: 100%;
  max-width: 200px;
  height: auto;
  color: var(--text);
}

.car-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 2px;
}
.car-vin {
  font-size: 12px;
  color: var(--text-3);
  font-family: ui-monospace, "SF Mono", monospace;
  margin-bottom: 14px;
}

.car-action {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
}

/* Unlinked state */
.car-unlinked {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 4px;
}
.unlinked-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 10px;
}
.pair-actions { display: flex; flex-direction: column; gap: 8px; }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  animation: fade-up .4s ease;
}
.empty-icon {
  display: block;
  margin: 0 auto 16px;
  width: 48px;
  height: 48px;
  color: var(--text-3);
}
.empty-sub {
  color: var(--text-3);
  font-size: 14px;
  margin-top: 4px;
}

/* ════════════════════════════════════════════════════════════════
   CAR CONTROLS PAGE
   ════════════════════════════════════════════════════════════════ */

.shell--car { display: flex; flex-direction: column; gap: 14px; }

.controls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 14px;
  animation: fade-up .4s ease;
}

/* Control card */
.ctrl-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: opacity .2s;
  position: relative;
  overflow: hidden;
}
.ctrl-card.is-loading { opacity: .6; pointer-events: none; }

.ctrl-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.ctrl-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ctrl-icon svg { width: 18px; height: 18px; }
.ctrl-icon--blue   { background: var(--blue-dim);   color: var(--blue); }
.ctrl-icon--orange { background: var(--orange-dim); color: var(--orange); }
.ctrl-icon--red    { background: var(--red-dim);    color: var(--accent); }

.ctrl-title { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.ctrl-sub   { font-size: 12px; color: var(--text-3); font-weight: 500; }

.ctrl-body   { flex: 1; display: flex; align-items: center; justify-content: center; padding: 10px 0 20px; }
.ctrl-footer { margin-top: auto; }

/* Loading overlay inside card */
.ctrl-loader {
  position: absolute;
  inset: 0;
  background: rgba(8,9,13,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
  border-radius: var(--r-lg);
  backdrop-filter: blur(4px);
}
.ctrl-loader:not(.hidden) { display: flex; }

/* ── AC Toggle ───────────────────────────────────────────────── */
.ac-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.ac-toggle-track {
  position: relative;
  width: 60px; height: 32px;
  border-radius: 16px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  transition: background .3s, border-color .3s, box-shadow .3s;
  flex-shrink: 0;
}
.ac-toggle[data-on="true"] .ac-toggle-track {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.ac-toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}
.ac-toggle[data-on="true"] .ac-toggle-thumb {
  transform: translateX(28px);
}

.ac-toggle-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  min-width: 32px;
}

/* ── Temperature dial ────────────────────────────────────────── */
.temp-dial {
  display: flex;
  align-items: center;
  gap: 18px;
}

.temp-step {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  color: var(--text);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s, border-color .15s, transform .1s;
  flex-shrink: 0;
}
.temp-step svg { width: 20px; height: 20px; }
.temp-step:hover  { background: var(--border-2); }
.temp-step:active { transform: scale(.9); }

.temp-number-wrap {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  line-height: 1;
  width: 160px;
  justify-content: center;
}
.temp-number {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  display: inline-block;
}
.temp-number.bump { animation: bump .2s ease; }
.temp-unit {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-2);
  padding-top: 10px;
}

/* ── Heat picker (bars are the buttons) ──────────────────────── */
.heat-picker {
  display: flex;
  gap: 10px;
  width: 100%;
  height: 90px;
  align-items: stretch;
  justify-content: center;
}

.heat-pick {
  position: relative;
  flex: 1;
  max-width: 60px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.28;
  transition: opacity .2s, transform .1s;
}
.heat-pick:hover  { opacity: 0.65; }
.heat-pick.active { opacity: 1; }
.heat-pick:active { transform: scaleY(0.94); }

.heat-pick-bar {
  display: block;
  width: 100%;
  border-radius: 4px 4px 0 0;
  transition: box-shadow .2s;
}
.heat-pick[data-level="0"] .heat-pick-bar { height: 12px; background: var(--border-2); }
.heat-pick[data-level="1"] .heat-pick-bar { height: 28px; background: rgba(232, 33, 39, .45); }
.heat-pick[data-level="2"] .heat-pick-bar { height: 44px; background: rgba(232, 33, 39, .72); }
.heat-pick[data-level="3"] .heat-pick-bar { height: 60px; background: var(--accent); }

.heat-pick.active[data-level="1"] .heat-pick-bar,
.heat-pick.active[data-level="2"] .heat-pick-bar,
.heat-pick.active[data-level="3"] .heat-pick-bar { box-shadow: 0 0 14px var(--accent-glow); }

.heat-pick-tip {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s;
}
.heat-pick:hover .heat-pick-tip,
.heat-pick.active .heat-pick-tip { opacity: 1; }

/* ── Pairing prompt ──────────────────────────────────────────── */
.pair-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 48px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  animation: fade-up .4s ease;
}
.pair-prompt-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
}
.pair-prompt-icon svg { width: 24px; height: 24px; }
.pair-prompt h2 {
  font-size: 20px;
  font-weight: 700;
}
.pair-prompt p {
  font-size: 14px;
  color: var(--text-2);
  max-width: 320px;
}

/* ── Toast ───────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 28px;
  right: 20px;
  z-index: 100;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  animation: slide-in-toast .3s cubic-bezier(.34, 1.56, .64, 1);
}
.toast--ok  { border-color: rgba(16,185,129,.35); color: var(--online); }
.toast--err { border-color: rgba(248,113,113,.35); color: #f87171; }

/* ── Car header layout ────────────────────────────────────────── */
.car-header-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.car-batt {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  color: var(--text-3);
  font-weight: 600;
}
.car-batt svg { flex-shrink: 0; }

/* ── Status bar (connecting / offline) ───────────────────────── */
.car-status-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 500;
  animation: fade-in .25s ease;
}
.car-status-bar--connecting {
  background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.2);
  color: var(--blue);
}
.car-status-bar--offline {
  background: rgba(248,113,113,.08);
  border: 1px solid rgba(248,113,113,.2);
  color: #f87171;
}
.car-status-bar svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Offline ctrl-card state ──────────────────────────────────── */
.ctrl-card.ctrl-offline {
  opacity: 0.45;
  pointer-events: none;
  filter: saturate(0.3);
}

/* ── Dashboard: status row with battery ──────────────────────── */
.car-status-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.car-status-row .car-status-badge { margin-bottom: 0; }
.car-batt-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--online);
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.2);
  border-radius: 999px;
  padding: 2px 8px;
  min-width: 36px;
  text-align: center;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 600px) {
  .controls-grid { grid-template-columns: 1fr; }
  .temp-number   { font-size: 48px; }
  .car-grid      { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   LANDING PAGE
   ════════════════════════════════════════════════════════════════ */

@keyframes l-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-11px); }
}
@keyframes glow-breathe {
  0%, 100% { opacity: .7; transform: scale(1); }
  50%       { opacity: 1;  transform: scale(1.15); }
}
@keyframes l-pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,33,39,.4); }
  50%       { box-shadow: 0 0 0 6px rgba(232,33,39,0); }
}
@keyframes wheel-spin {
  to { transform: rotate(360deg); }
}

/* ── Nav ─────────────────────────────────────────────────────── */
.l-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 0;
  transition: background .25s, border-color .25s, box-shadow .25s;
}
.l-nav-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.l-nav-links {
  display: flex;
  gap: 28px;
  margin-left: 32px;
}
.l-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color .15s;
}
.l-nav-links a:hover { color: var(--text); }
.l-nav-actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.l-nav.scrolled {
  background: rgba(8,9,13,.88);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}

/* ── Hero ────────────────────────────────────────────────────── */
.l-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 100px 0 60px;
}
.l-hero-bg {
  position: absolute;
  inset: 0;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  overflow: hidden;
}
.l-hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.l-hero-glow-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,33,39,.12) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: glow-breathe 7s ease-in-out infinite;
}
.l-hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,.07) 0%, transparent 70%);
  bottom: 0; left: -100px;
  animation: glow-breathe 9s ease-in-out infinite reverse;
}
.l-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,33,39,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,33,39,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, black 10%, transparent 75%);
}
.l-hero-content { position: relative; z-index: 1; }

.l-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid rgba(232,33,39,.3);
  background: rgba(232,33,39,.08);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 24px;
  letter-spacing: .03em;
}
.l-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: l-pulse-badge 2.5s ease-in-out infinite;
}

.l-hero-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-bottom: 22px;
}
.l-gradient-text {
  background: linear-gradient(120deg, #e82127 0%, #ff6b6b 45%, #e82127 70%, #ff4444 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
.l-hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 460px;
  margin-bottom: 32px;
}
.l-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.l-hero-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
}
.l-hero-trust span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.l-hero-trust svg { width: 13px; height: 13px; }

/* ── Hero visual ─────────────────────────────────────────────── */
.l-hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-car-scene {
  position: relative;
  width: 100%;
  max-width: 580px;
  padding: 80px 20px 30px;
}
.l-car-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.5));
}

/* Floating command bubbles */
.l-bubble {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(15,17,23,.92);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  padding: 7px 14px 7px 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,.5);
}
.l-bubble-ico {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.l-bubble-ico svg { width: 12px; height: 12px; }
.bubble-ico-img { width: 14px; height: 14px; object-fit: contain; display: block; }
.l-ico-alexa { background: rgba(0,202,255,.2); color: #00caff; }
.l-ico-google { background: rgba(66,133,244,.2); color: #4285f4; }
.l-ico-api    { background: rgba(16,185,129,.2); color: #10b981; }
.l-ico-zap    { background: rgba(232,33,39,.2);  color: var(--accent); }

.l-bubble-1 { top: 0; left: 2%; animation: l-float 4.2s ease-in-out infinite; }
.l-bubble-2 { top: 4%; right: 0; animation: l-float 4.2s ease-in-out infinite 1.4s; }
.l-bubble-3 { bottom: 22%; right: -2%; animation: l-float 4.2s ease-in-out infinite 0.7s; }
.l-bubble-4 { bottom: 18%; left: 0; animation: l-float 4.2s ease-in-out infinite 2.1s; }

/* ── Sections ────────────────────────────────────────────────── */
.l-section {
  padding: 100px 0;
  scroll-margin-top: 80px;
}
.l-container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}
.l-section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.l-section-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.l-section-sub {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 56px;
}

/* ── Scroll reveal ───────────────────────────────────────────── */
.l-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.l-reveal.revealed { opacity: 1; transform: translateY(0); }

/* ── Features grid ───────────────────────────────────────────── */
.l-feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.l-feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.l-feat-card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}
.l-feat-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-top: 6px;
}
.l-feat-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  flex: 1;
}
.l-feat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-feat-icon svg { width: 20px; height: 20px; }
.l-fi-red    { background: var(--red-dim);    color: var(--accent); }
.l-fi-blue   { background: var(--blue-dim);   color: var(--blue); }
.l-fi-purple { background: rgba(167,139,250,.14); color: #a78bfa; }
.l-fi-green  { background: rgba(16,185,129,.14);  color: #10b981; }

.l-feat-demo {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.l-cmd-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--text-2);
}
.l-cmd-pill-active { border-color: rgba(16,185,129,.4); color: #10b981; background: rgba(16,185,129,.08); }
.l-cmd-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.l-cmd-dot-off { background: var(--text-3); }
.l-cmd-dot-on  { background: #10b981; }

.l-flow-mini {
  display: flex;
  align-items: center;
  gap: 4px;
}
.l-fm-step {
  font-size: 11px;
  font-weight: 600;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 8px;
  color: var(--text-2);
}
.l-fm-arrow { color: var(--text-3); font-size: 13px; }

.l-assistants-row { gap: 6px; }
.l-mini-asi {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  overflow: hidden;
  padding: 5px;
}
.l-a-al { border-color: rgba(0,202,255,.3);   background: rgba(0,202,255,.08); }
.l-a-go { border-color: rgba(66,133,244,.3);  background: rgba(66,133,244,.08); }
.l-a-si { border-color: rgba(167,139,250,.3); background: transparent; }
.l-a-ha { border-color: rgba(24,188,242,.3);  background: rgba(24,188,242,.08); }

.l-code-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-family: ui-monospace, "SF Mono", monospace;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
}
.l-code-method { color: #10b981; font-weight: 700; }
.l-code-path   { color: var(--text-2); }

/* ── Flows section ───────────────────────────────────────────── */
.l-flows-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 30%, var(--surface) 70%, var(--bg) 100%);
}
.l-flows-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.l-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}
.l-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
}
.l-benefit svg { width: 16px; height: 16px; color: #10b981; flex-shrink: 0; }

.l-flow-demo {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.l-flow-trigger-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r);
  padding: 14px 18px;
}
.l-ftc-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(232,33,39,.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.l-ftc-icon svg { width: 18px; height: 18px; }
.l-ftc-label { font-size: 11px; color: var(--text-3); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.l-ftc-cmd   { font-size: 13px; font-weight: 600; color: var(--text); margin-top: 2px; }

.l-flow-connector {
  width: 2px;
  height: 24px;
  background: linear-gradient(to bottom, var(--border-2), transparent);
  margin: 0 auto;
}
.l-flow-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.l-fstep {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 16px;
}
.l-fstep-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  color: var(--text-3);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.l-fstep-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.l-fstep-icon svg { width: 15px; height: 15px; }
.l-fsi-blue   { background: var(--blue-dim);   color: var(--blue); }
.l-fsi-orange { background: var(--orange-dim); color: var(--orange); }
.l-fsi-red    { background: var(--red-dim);    color: var(--accent); }

.l-fstep-info { flex: 1; }
.l-fstep-title { font-size: 13px; font-weight: 600; }
.l-fstep-sub   { font-size: 11px; color: var(--text-3); }
.l-fstep-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.l-fstep-check svg { width: 13px; height: 13px; }
.l-fsc-done   { background: rgba(16,185,129,.15); color: #10b981; }
.l-fsc-active { background: rgba(232,33,39,.15);  color: var(--accent); }

.l-flow-status {
  margin-top: 16px;
  padding: 10px 14px;
  background: rgba(232,33,39,.08);
  border: 1px solid rgba(232,33,39,.2);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 7px;
}
.l-flow-status svg { width: 14px; height: 14px; }

/* ── Assistants ──────────────────────────────────────────────── */
.l-asi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
}
.l-asi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.l-asi-card:hover { border-color: var(--border-2); transform: translateY(-2px); }
.l-asi-logo {
  width: 52px; height: 52px;
  border-radius: 14px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  overflow: hidden;
}
.l-asi-name { font-size: 14px; font-weight: 700; }
.l-asi-type { font-size: 12px; color: var(--text-3); }

/* ── Pricing ─────────────────────────────────────────────────── */
.l-pricing-section { background: var(--surface); }

.l-billing-toggle {
  display: inline-flex;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px;
  gap: 2px;
  margin-bottom: 44px;
}
.l-bill-btn {
  background: none;
  border: none;
  border-radius: 9px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .15s, color .15s;
}
.l-bill-btn.active { background: var(--surface-2); color: var(--text); }
.l-bill-badge {
  font-size: 10px;
  font-weight: 700;
  background: rgba(16,185,129,.15);
  color: #10b981;
  border-radius: 999px;
  padding: 1px 6px;
}

.l-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 780px;
  margin: 0 auto;
}
.l-price-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.l-price-premium {
  border-color: rgba(232,33,39,.35);
  background: linear-gradient(145deg, rgba(232,33,39,.05) 0%, var(--surface-2) 60%);
  box-shadow: 0 0 0 1px rgba(232,33,39,.12), 0 20px 60px rgba(232,33,39,.08);
}
.l-price-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 3px 14px;
}
.l-price-tier {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
}
.l-price-amount {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 8px;
}
.l-price-curr {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-2);
  padding-top: 8px;
}
.l-price-num {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
}
.l-price-per {
  font-size: 14px;
  color: var(--text-3);
  font-weight: 500;
  align-self: flex-end;
  padding-bottom: 6px;
}
.l-price-desc {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 24px;
}
.l-price-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
  flex: 1;
}
.l-pf-yes, .l-pf-no {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
}
.l-pf-yes { color: var(--text-2); }
.l-pf-no  { color: var(--text-3); }
.l-pf-yes svg { width: 14px; height: 14px; color: #10b981; flex-shrink: 0; }
.l-pf-no  svg { width: 14px; height: 14px; color: var(--text-3); flex-shrink: 0; }
.l-extra-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
}
.l-extra-note strong { color: var(--text-2); }

/* ── Footer ──────────────────────────────────────────────────── */
.l-footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.l-footer-top {
  display: flex;
  gap: 64px;
  margin-bottom: 48px;
}
.l-footer-brand p {
  font-size: 14px;
  color: var(--text-2);
  margin-top: 8px;
  max-width: 220px;
  line-height: 1.6;
}
.l-footer-disclaimer {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 6px;
}
.l-footer-cols {
  display: flex;
  gap: 48px;
  margin-left: auto;
}
.l-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.l-footer-col-head {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}
.l-footer-col a {
  font-size: 14px;
  color: var(--text-2);
  transition: color .15s;
}
.l-footer-col a:hover { color: var(--text); }
.l-footer-bottom {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 13px;
  color: var(--text-3);
}

/* ── Auth Modal ──────────────────────────────────────────────── */
.l-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(6px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.l-backdrop.open { opacity: 1; pointer-events: all; }

.l-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(.96);
  width: min(440px, calc(100% - 32px));
  z-index: 999;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: 0 48px 120px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.04);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .25s cubic-bezier(.34,1.56,.64,1);
}
.l-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.l-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color .15s, background .15s;
}
.l-modal-close:hover { color: var(--text); background: var(--border); }
.l-modal-close svg { width: 15px; height: 15px; }
.l-modal-wordmark {
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.l-modal-logo {
  height: 44px;
  width: auto;
}

/* ── Cookie banner ───────────────────────────────────────────── */
.l-cookie {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 900;
  width: min(680px, calc(100% - 32px));
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), opacity .3s ease;
}
.l-cookie.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.l-cookie-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  flex-wrap: wrap;
}
.l-cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--text-2);
  flex: 1;
  line-height: 1.55;
  min-width: 200px;
}
.l-cookie-link { color: var(--accent); text-decoration: underline; }
.l-cookie-btns { display: flex; gap: 8px; }

/* ── Legal pages ─────────────────────────────────────────────── */
.l-legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.l-legal-header {
  margin-bottom: 56px;
}
.l-legal-header h1 {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: 10px;
}
.l-legal-date {
  font-size: 14px;
  color: var(--text-3);
}
.l-legal-body h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 36px 0 10px;
  letter-spacing: -.02em;
}
.l-legal-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-2);
  margin: 20px 0 8px;
}
.l-legal-body p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 14px;
}
.l-legal-body ul {
  margin: 10px 0 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.l-legal-body li {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}
.l-legal-body a { color: var(--accent); text-decoration: underline; }
.l-legal-body a:hover { opacity: .8; }

/* ── Landing responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .l-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 110px 0 60px;
  }
  .l-hero-sub, .l-hero-badge { margin-left: auto; margin-right: auto; }
  .l-hero-ctas, .l-hero-trust { justify-content: center; }
  .l-hero-visual { display: none; }
  .l-flows-layout { grid-template-columns: 1fr; }
  .l-flows-layout .l-section-sub { max-width: none; }
  .l-pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .l-footer-top { flex-direction: column; gap: 40px; }
  .l-footer-cols { margin-left: 0; }
}
@media (max-width: 640px) {
  .l-nav-links { display: none; }
  .l-feat-grid { grid-template-columns: 1fr; }
  .l-asi-grid  { grid-template-columns: repeat(2, 1fr); }
  .l-cookie-inner { flex-direction: column; align-items: flex-start; }
  .l-footer-cols { flex-wrap: wrap; gap: 32px; }
}
