/* RideDispatch — shared styles */
:root {
  /* Light surfaces — warm white */
  --bg: #fafaf9;
  --panel: #ffffff;
  --panel-2: #f5f5f4;
  --border: #e7e5e4;
  --border-strong: #d6d3d1;

  /* Text */
  --text: #0a0a0a;
  --text-muted: #525252;
  --text-soft: #a3a3a3;

  /* Brand — deep matte BLACK */
  --brand: #0a0a0a;
  --brand-600: #000000;       /* pure black for max contrast */
  --brand-50:  #f5f5f5;
  --brand-glow: rgba(255, 106, 26, .4);

  /* Accent — keep small touches of warm gold for trim */
  --accent: #d4a447;
  --accent-600: #b88c2e;
  --accent-50: #faf2dc;

  /* SPARK — VIBRANT ORANGE (the energy color) */
  --spark: #ff6a1a;
  --spark-600: #ea5600;
  --spark-50:  #ffe9d6;

  /* Success / warning / danger / info */
  --success: #15803d;
  --success-50: #e9f9ee;
  --warning: #b45309;
  --warning-50: #fff5e6;
  --danger: #c81e1e;
  --danger-50: #fee9e7;
  --info: #0c4a6e;
  --info-50: #e7f1fb;

  /* Shadows — sharper, more contrasty */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 1px rgba(0,0,0,.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.22), 0 8px 24px rgba(0,0,0,.10);
  --shadow-glow: 0 0 0 4px rgba(255,106,26,.18), 0 8px 30px rgba(255,106,26,.30);
  --shadow-orange: 0 8px 32px rgba(255,106,26,.4);

  --radius: 12px;
  --radius-sm: 8px;
  --sidebar-w: 232px;

  /* Decorative gradients — black + orange punch */
  --grad-hero: linear-gradient(135deg, #000000 0%, #1a1110 50%, #0a0a0a 100%);
  --grad-spark: linear-gradient(135deg, #ff6a1a 0%, #ea5600 100%);
  --grad-spark-warm: linear-gradient(135deg, #ff8541 0%, #ff6a1a 50%, #ea5600 100%);
  --grad-gold:  linear-gradient(135deg, #f5c466 0%, #c98e2e 100%);
  --grad-black-orange: linear-gradient(135deg, #0a0a0a 0%, #1a0a05 60%, #ff6a1a 130%);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- App layout (sidebar + main) ---------- */
.app { display: grid; grid-template-columns: var(--sidebar-w) 1fr; min-height: 100vh; }

.sidebar {
  background: linear-gradient(180deg, #0a0f1f 0%, #050810 100%);
  color: #cbd5e1;
  padding: 18px 0;
  position: sticky; top: 0; height: 100vh;
  border-right: 1px solid rgba(224,182,89,.08);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  padding: 4px 20px 18px; color: white; font-weight: 700; font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.brand-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--grad-spark);
  display: grid; place-items: center; color: white;
  font-weight: 800; font-family: Georgia, "Times New Roman", serif;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 4px 12px rgba(240,106,59,.35), inset 0 1px 0 rgba(255,255,255,.2);
  position: relative;
}
.brand-mark::after {
  content: ""; position: absolute; inset: -3px; border-radius: 10px;
  background: var(--grad-spark); opacity: 0; filter: blur(8px); z-index: -1;
  transition: opacity .3s;
}
.m-logo:hover .brand-mark::after { opacity: .5; }
.nav { padding: 12px 8px; display: flex; flex-direction: column; gap: 2px; overflow-y: auto; max-height: calc(100vh - 80px); }
.nav-item { position: relative; }
.nav-item > a {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px; border-radius: 8px;
  color: #b8c2d4; font-weight: 500; font-size: 13.5px;
  cursor: pointer;
}
.nav-item > a:hover { background: rgba(255,255,255,.06); color: white; text-decoration: none; }
.nav-item > a.active {
  background: linear-gradient(90deg, rgba(240,106,59,.2), rgba(224,182,89,.1));
  color: white;
  box-shadow: inset 3px 0 0 var(--spark);
}
.nav-item .icon { width: 16px; height: 16px; opacity: .9; flex-shrink: 0; }
.nav-item .caret { margin-left: auto; opacity: .55; transition: transform .15s; }
.nav-item.has-sub.open > a .caret { transform: rotate(180deg); }
.nav-item .sub-nav { display: none; padding-left: 14px; margin: 2px 0 6px; border-left: 1px solid rgba(255,255,255,.06); margin-left: 22px; }
.nav-item.has-sub.open > .sub-nav { display: block; }
.nav-item .sub-nav .nav-item > a { padding: 6px 10px; font-size: 13px; gap: 8px; color: #a6b0c2; }
.nav-item .sub-nav .nav-item > a .icon svg circle { fill: currentColor; }
.nav-section { padding: 18px 20px 6px; font-size: 10.5px; text-transform: uppercase; letter-spacing: .1em; color: #6b7689; font-weight: 700; }
.nav-section.open { color: var(--accent); }

/* Scrollbar styling for sidebar nav */
.nav::-webkit-scrollbar { width: 6px; }
.nav::-webkit-scrollbar-thumb { background: rgba(255,255,255,.08); border-radius: 3px; }
.nav::-webkit-scrollbar-track { background: transparent; }

.main { display: flex; flex-direction: column; min-width: 0; }
.topbar {
  height: 56px; background: var(--panel); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 24px; gap: 16px; position: sticky; top: 0; z-index: 10;
}
.topbar .search {
  flex: 1; max-width: 460px; position: relative;
}
.topbar .search input {
  width: 100%; padding: 8px 12px 8px 34px; border: 1px solid var(--border);
  border-radius: 8px; background: var(--panel-2); font-size: 13.5px;
}
.topbar .search svg { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); color: var(--text-soft); }
.topbar .spacer { flex: 1; }
.user-chip {
  display: flex; align-items: center; gap: 10px; padding: 4px 10px 4px 4px;
  border-radius: 999px; border: 1px solid var(--border); background: var(--panel-2);
  font-size: 13px; color: var(--text-muted);
}
.avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #06b6d4); color: white;
  display: grid; place-items: center; font-weight: 700; font-size: 12px;
}

.content { padding: 24px; }
.page-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px; gap: 12px; flex-wrap: wrap;
}
.page-header h1 { font-size: 22px; margin: 0; letter-spacing: -0.01em; }
.page-header .sub { color: var(--text-muted); font-size: 13px; margin-top: 4px; }

/* ---------- Buttons & inputs ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 8px; border: 1px solid var(--border-strong);
  background: var(--panel); color: var(--text); font-weight: 500; font-size: 13.5px; cursor: pointer;
  transition: background .15s, border-color .15s, transform .05s;
}
.btn:hover { background: var(--panel-2); }
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--brand); border-color: var(--brand); color: white;
  position: relative; overflow: hidden;
}
.btn-primary:hover { background: var(--brand-600); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(10,15,31,.25); }
.btn-spark {
  background: var(--grad-spark); border-color: transparent; color: white;
  box-shadow: 0 4px 14px rgba(240,106,59,.3);
}
.btn-spark:hover { box-shadow: 0 8px 22px rgba(240,106,59,.45); transform: translateY(-1px); color: white; }
.btn-ghost { background: transparent; border-color: transparent; }
.btn-ghost:hover { background: var(--panel-2); }
.btn-danger { background: var(--danger); border-color: var(--danger); color: white; }
.btn-danger:hover { background: #b91c1c; }
.btn-sm { padding: 5px 10px; font-size: 12.5px; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12.5px; font-weight: 600; color: var(--text-muted); }
.field input, .field select, .field textarea {
  padding: 9px 12px; border: 1px solid var(--border-strong); border-radius: 8px;
  font-size: 13.5px; background: var(--panel); color: var(--text); font-family: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(29,78,216,.12);
}
.field .hint { font-size: 12px; color: var(--text-soft); }

/* ---------- Cards / panels ---------- */
.card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.card-pad { padding: 18px; }
.card-head {
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.card-head h2 { font-size: 14.5px; margin: 0; font-weight: 600; }

/* ---------- Stat tiles ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat {
  padding: 16px; background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.stat .label { color: var(--text-muted); font-size: 12.5px; font-weight: 500; }
.stat .value { font-size: 26px; font-weight: 700; margin-top: 4px; letter-spacing: -0.01em; }
.stat .trend { margin-top: 6px; font-size: 12.5px; color: var(--success); }
.stat .trend.down { color: var(--danger); }
.stat {
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.stat:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.stat .icon-wrap {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--grad-gold); color: var(--brand);
  display: grid; place-items: center; float: right;
  box-shadow: 0 4px 12px rgba(224,182,89,.25);
}
@media (max-width: 1100px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Filter row ---------- */
.filters {
  display: flex; align-items: end; gap: 12px; flex-wrap: wrap;
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px; margin-bottom: 16px;
}
.filters .field { min-width: 160px; flex: 1; max-width: 220px; }
.filters .actions { display: flex; gap: 8px; margin-left: auto; }

/* ---------- Tabs / status pill row ---------- */
.tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.tab {
  padding: 6px 12px; border-radius: 999px; border: 1px solid var(--border-strong);
  background: var(--panel); cursor: pointer; font-size: 13px; color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 6px;
}
.tab .count { font-size: 11.5px; background: var(--bg); padding: 1px 6px; border-radius: 999px; color: var(--text-muted); }
.tab.active { background: var(--brand); color: white; border-color: var(--brand); }
.tab.active .count { background: rgba(255,255,255,.22); color: white; }

/* ---------- Table ---------- */
.table-wrap { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
table.runs { width: 100%; border-collapse: collapse; font-size: 13.5px; }
table.runs thead th {
  text-align: left; padding: 11px 14px; background: var(--panel-2); color: var(--text-muted);
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .03em;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0;
}
table.runs tbody td { padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
table.runs tbody tr:hover { background: #fafbfe; }
table.runs tbody tr:last-child td { border-bottom: none; }
table.runs .run-id { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; color: var(--text-muted); font-size: 12.5px; }
table.runs .pax { font-weight: 600; }
table.runs .meta { color: var(--text-muted); font-size: 12px; margin-top: 2px; }
table.runs .price { font-variant-numeric: tabular-nums; font-weight: 600; }
.row-actions { display: flex; gap: 4px; opacity: .8; }
.row-actions .btn { padding: 4px 8px; font-size: 12px; }

.table-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; border-top: 1px solid var(--border); background: var(--panel-2);
  font-size: 12.5px; color: var(--text-muted);
}
.pager { display: flex; gap: 4px; }
.pager .btn { padding: 4px 10px; }

/* ---------- Status pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 9px; border-radius: 999px; font-size: 12px; font-weight: 600;
  border: 1px solid transparent;
}
.pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.pill-quoted { color: #6366f1; background: #eef2ff; }
.pill-booked { color: #0284c7; background: #eff6ff; }
.pill-dispatched { color: #d97706; background: #fff7ed; }
.pill-en-route { color: #ea580c; background: #fff1e6; }
.pill-onboard { color: #0ea5e9; background: #ecfeff; }
.pill-completed { color: #15803d; background: #ecfdf5; }
.pill-cancelled { color: #b91c1c; background: #fef2f2; }
.pill-no-show { color: #92400e; background: #fef3c7; }

/* ---------- Login ---------- */
.login-wrap {
  min-height: 100vh; display: grid; place-items: center;
  background:
    radial-gradient(1200px 600px at -10% -10%, rgba(59,130,246,.18), transparent 60%),
    radial-gradient(900px 500px at 110% 110%, rgba(6,182,212,.18), transparent 60%),
    linear-gradient(180deg, #0b1220, #0b1220);
  padding: 24px;
}
.login-card {
  width: 100%; max-width: 420px; background: var(--panel);
  border-radius: 14px; padding: 32px; box-shadow: 0 20px 60px rgba(2,6,23,.5);
}
.login-card .brand { padding: 0 0 20px; border: none; color: var(--text); }
.login-card h1 { margin: 4px 0 4px; font-size: 22px; letter-spacing: -0.01em; }
.login-card p.sub { color: var(--text-muted); margin: 0 0 22px; font-size: 13.5px; }
.login-card .field + .field { margin-top: 12px; }
.login-card .row { display: flex; align-items: center; justify-content: space-between; margin: 12px 0 16px; font-size: 13px; color: var(--text-muted); }
.login-card .btn-primary { width: 100%; justify-content: center; padding: 11px; font-size: 14.5px; }
.login-foot { text-align: center; color: var(--text-muted); margin-top: 14px; font-size: 13px; }
.divider { height: 1px; background: var(--border); margin: 18px 0; }
.demo-note {
  background: var(--info-50); border: 1px solid #cfe3fb; color: #0c4a6e;
  padding: 10px 12px; border-radius: 8px; font-size: 12.5px; margin-bottom: 14px;
}

/* ---------- Run detail / form ---------- */
.detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.section-title { font-size: 12.5px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; margin: 8px 0 10px; }

.timeline { list-style: none; padding: 0; margin: 0; }
.timeline li { position: relative; padding: 10px 0 10px 22px; border-left: 2px solid var(--border); margin-left: 6px; }
.timeline li::before { content: ""; position: absolute; left: -7px; top: 14px; width: 12px; height: 12px; border-radius: 50%; background: var(--brand); border: 2px solid var(--panel); }
.timeline .when { font-size: 12px; color: var(--text-soft); }
.timeline .what { font-weight: 600; }

.kv { display: grid; grid-template-columns: 100px 1fr; gap: 6px 12px; font-size: 13px; }
.kv .k { color: var(--text-muted); }
.kv .v { color: var(--text); }

@media (max-width: 920px) {
  .app { grid-template-columns: 1fr; }
  .sidebar { position: static; height: auto; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .detail-grid, .form-grid { grid-template-columns: 1fr; }
}

/* ---------- Toast ---------- */
.toast-stack { position: fixed; bottom: 20px; right: 20px; display: flex; flex-direction: column; gap: 8px; z-index: 50; }
.toast {
  background: #0f172a; color: white; padding: 10px 14px; border-radius: 8px; font-size: 13px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25); display: flex; align-items: center; gap: 8px;
  animation: toast-in .2s ease-out;
}
.toast.success { background: #15803d; }
.toast.error { background: #b91c1c; }
@keyframes toast-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ============================================================
   PUBLIC MARKETING SITE (index.html)
   Premium black-car: deep navy + gold, refined spacing, serif heads.
   ============================================================ */
body.marketing {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
  background: #fbfaf6;
  color: var(--text);
  line-height: 1.55;
}
.marketing .serif {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 600; letter-spacing: -0.01em;
}
.marketing .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* Header — translucent dark glass */
.m-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(10, 15, 31, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  color: #f4ecd8;
  border-bottom: 1px solid rgba(224, 182, 89, 0.18);
}
.m-nav {
  display: flex; align-items: center; gap: 28px; height: 72px;
}
.m-logo {
  display: flex; align-items: center; gap: 12px; color: white;
  font-family: "Cormorant Garamond", Georgia, serif; font-size: 22px; font-weight: 700; letter-spacing: 0.01em;
  text-decoration: none;
}
.m-logo .brand-mark { width: 36px; height: 36px; font-size: 18px; }
.m-logo small { display: block; font-family: -apple-system, sans-serif; font-size: 10.5px; font-weight: 600; color: var(--accent); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 1px; }
.m-nav-links { display: flex; gap: 24px; margin-left: 32px; }
.m-nav-links a {
  color: #d8d4ca; text-decoration: none; font-size: 14px; font-weight: 500;
  transition: color .15s; position: relative;
}
.m-nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: center;
  transition: transform .25s ease-out;
}
.m-nav-links a:hover { color: var(--accent); text-decoration: none; }
.m-nav-links a:hover::after { transform: scaleX(1); }
.m-nav-cta { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.m-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 6px; font-weight: 600; font-size: 14px; cursor: pointer;
  border: 1px solid transparent; text-decoration: none;
  transition: background .15s, border-color .15s, color .15s, transform .05s;
}
.m-btn:hover { text-decoration: none; }
.m-btn:active { transform: translateY(1px); }
.m-btn-gold {
  background: var(--grad-gold); color: #0a0f1f;
  box-shadow: 0 6px 18px rgba(224,182,89,.3);
  position: relative; overflow: hidden;
}
.m-btn-gold:hover { box-shadow: 0 10px 28px rgba(224,182,89,.45); transform: translateY(-1px); }
.m-btn-gold::before {
  content: ""; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transition: left .6s ease;
}
.m-btn-gold:hover::before { left: 100%; }

/* SPARK (copper) — for primary CTAs you want to pop */
.m-btn-spark {
  background: var(--grad-spark); color: #fff;
  box-shadow: 0 6px 22px rgba(240,106,59,.35);
  position: relative; overflow: hidden;
}
.m-btn-spark:hover {
  box-shadow: 0 10px 32px rgba(240,106,59,.55), 0 0 0 4px rgba(240,106,59,.15);
  transform: translateY(-1px);
}
.m-btn-spark::before {
  content: ""; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transition: left .6s ease;
}
.m-btn-spark:hover::before { left: 100%; }

.m-btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.m-btn-outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(224,182,89,.06); }
.m-btn-dark { background: var(--brand); color: white; box-shadow: 0 6px 16px rgba(10,15,31,.2); }
.m-btn-dark:hover { background: var(--brand-600); color: white; transform: translateY(-1px); box-shadow: 0 10px 26px rgba(10,15,31,.3); }
.m-btn-ghost-dark { background: transparent; color: var(--brand); border-color: var(--brand); }
.m-btn-ghost-dark:hover { background: var(--brand); color: white; }
.m-btn-lg { padding: 14px 26px; font-size: 15px; }

/* Hero — richer gradient with animated glow + grid pattern */
.hero {
  position: relative; overflow: hidden;
  background: var(--grad-hero);
  color: white; padding: 96px 0 110px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(900px 500px at 78% 8%, rgba(255,106,26,.32), transparent 60%),
    radial-gradient(700px 380px at 12% 92%, rgba(234,86,0,.22), transparent 60%),
    radial-gradient(500px 280px at 95% 95%, rgba(255,133,65,.15), transparent 65%);
  pointer-events: none;
  animation: hero-glow 12s ease-in-out infinite alternate;
}
.hero::after {
  /* subtle grid pattern for tech-luxe feel */
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 30%, #000 30%, transparent 80%);
  pointer-events: none;
}
@keyframes hero-glow {
  0%   { opacity: .85; transform: scale(1) translateY(0); }
  100% { opacity: 1; transform: scale(1.04) translateY(-6px); }
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); padding: 7px 14px; border: 1px solid rgba(224,182,89,.4);
  border-radius: 999px; background: rgba(224,182,89,.08);
  position: relative;
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--spark); box-shadow: 0 0 10px var(--spark);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.4); }
}
.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 60px; line-height: 1.03; letter-spacing: -0.02em; font-weight: 600;
  margin: 18px 0 18px;
}
.hero h1 em {
  font-style: normal;
  background: var(--grad-spark);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.hero p.lead {
  font-size: 17px; color: #d8d4ca; max-width: 540px; margin: 0 0 28px;
}
.hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 28px; margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.hero-stats .stat-mini .v {
  font-family: "Cormorant Garamond", Georgia, serif; font-size: 32px; font-weight: 600;
  background: var(--grad-spark); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stats .stat-mini .l { font-size: 12px; color: #b8b3a6; text-transform: uppercase; letter-spacing: .12em; }
.hero-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(224,182,89,.3);
  border-radius: 18px; padding: 32px;
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow:
    0 30px 80px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.05),
    0 0 0 1px rgba(224,182,89,.06);
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(224,182,89,.4), transparent 30%, transparent 70%, rgba(240,106,59,.3));
  z-index: -1; pointer-events: none;
}
.hero-card h3 { margin: 0 0 4px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 22px; color: white; font-weight: 600; }
.hero-card p { margin: 0 0 18px; color: #b8b3a6; font-size: 13.5px; }
.hero-card .field label { color: #b8b3a6; }
.hero-card .field input,
.hero-card .field select {
  background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: white;
}
.hero-card .field input::placeholder { color: rgba(255,255,255,.4); }
.hero-card .field input:focus,
.hero-card .field select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201,168,106,.18); }

@media (max-width: 880px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 64px; }
  .hero h1 { font-size: 40px; }
  .hero-stats { flex-wrap: wrap; gap: 16px 28px; }
}

/* Section base */
.section { padding: 88px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head .eyebrow { color: var(--accent-600); border-color: rgba(169,135,69,.3); background: rgba(201,168,106,.08); }
.section-head h2 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 44px; line-height: 1.1; margin: 14px 0 12px; color: var(--text); font-weight: 600; letter-spacing: -0.015em; }
.section-head h2 .accent {
  background: var(--grad-spark); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-head p { color: var(--text-muted); font-size: 16px; margin: 0; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  background: white; border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-spark); transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease-out;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.service-card:hover::before { transform: scaleX(1); }
.service-card .ico {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--grad-gold); color: var(--brand);
  display: grid; place-items: center; margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(224,182,89,.25);
}
.service-card h3 { margin: 0 0 6px; font-size: 17px; color: var(--text); font-weight: 700; }
.service-card p { margin: 0; color: var(--text-muted); font-size: 14px; }
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }

/* Fleet (split) — richer gradient + subtle glow */
.fleet {
  background: var(--grad-hero);
  color: white; position: relative; overflow: hidden;
}
.fleet::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 350px at 80% 50%, rgba(240,106,59,.15), transparent 60%);
  pointer-events: none;
}
.fleet .container { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.fleet h2 { color: white; }
.fleet p.lead { color: #d8d4ca; font-size: 16px; }
.fleet ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.fleet ul li { display: flex; gap: 10px; align-items: flex-start; color: #e8e4dc; font-size: 14.5px; }
.fleet ul li svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.fleet-visual {
  background: linear-gradient(135deg, #1a2d52 0%, #0b1d3f 100%);
  border-radius: 14px; padding: 44px 32px; border: 1px solid rgba(201,168,106,.25);
  position: relative; overflow: hidden;
}
.fleet-visual::after {
  content: ""; position: absolute; inset: -40%; background: radial-gradient(circle at 30% 30%, rgba(201,168,106,.18), transparent 50%); pointer-events: none;
}
.fleet-visual .badge { display: inline-block; padding: 4px 12px; border-radius: 999px; background: rgba(201,168,106,.15); color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.fleet-visual h3 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 32px; margin: 0 0 8px; color: white; font-weight: 600; }
.fleet-visual .specs { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); position: relative; }
.fleet-visual .specs .k { font-size: 11px; color: #b8b3a6; text-transform: uppercase; letter-spacing: .1em; }
.fleet-visual .specs .v { font-family: "Cormorant Garamond", Georgia, serif; font-size: 22px; color: var(--accent); font-weight: 600; margin-top: 2px; }
.suv-illust { display:block; margin: 0 auto 14px; }
@media (max-width: 880px) {
  .fleet .container { grid-template-columns: 1fr; }
  .fleet ul { grid-template-columns: 1fr; }
}

/* How it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step {
  background: white; border: 1px solid var(--border); border-radius: 16px; padding: 32px;
  position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.step::before {
  content: ""; position: absolute; top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at 100% 0%, rgba(240,106,59,.1), transparent 70%);
  pointer-events: none;
}
.step .num {
  font-family: "Cormorant Garamond", Georgia, serif; font-size: 64px; line-height: 1;
  font-weight: 600;
  background: var(--grad-spark); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.step h3 { margin: 8px 0 6px; font-size: 18px; }
.step p { margin: 0; color: var(--text-muted); font-size: 14.5px; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }

/* Service area — soft warm gradient */
.area-band {
  background:
    linear-gradient(180deg, #faf7f0 0%, #f4ecd8 100%);
  position: relative; overflow: hidden;
}
.area-band::before {
  content: ""; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(224,182,89,.15), transparent 70%);
  pointer-events: none;
}
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.area-list { columns: 2; column-gap: 24px; margin: 22px 0 0; padding: 0; list-style: none; }
.area-list li { padding: 6px 0 6px 22px; position: relative; color: var(--text-muted); font-size: 14.5px; break-inside: avoid; }
.area-list li::before {
  content: ""; position: absolute; left: 0; top: 12px; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); border: 2px solid var(--brand);
}
.area-map {
  background: white; border-radius: 14px; padding: 28px; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
@media (max-width: 880px) { .area-grid { grid-template-columns: 1fr; } .area-list { columns: 1; } }

/* Testimonials */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.t-card {
  background: white; border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.t-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.t-card::before {
  content: """; position: absolute; top: 18px; right: 22px;
  font-family: Georgia, serif; font-size: 70px; line-height: 1;
  color: var(--accent); opacity: .25; font-weight: 700;
}
.t-card .stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 12px; font-size: 16px; }
.t-card blockquote { margin: 0 0 16px; color: var(--text); font-size: 15px; line-height: 1.6; font-style: italic; }
.t-card .who { display: flex; align-items: center; gap: 12px; }
.t-card .who .av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #0b1d3f, #1a2d52); color: var(--accent); display: grid; place-items: center; font-weight: 700; font-family: serif; }
.t-card .who .nm { font-weight: 600; font-size: 14px; }
.t-card .who .role { font-size: 12.5px; color: var(--text-muted); }
@media (max-width: 880px) { .t-grid { grid-template-columns: 1fr; } }

/* Booking */
.book {
  background: var(--grad-hero); color: white;
  padding: 88px 0; position: relative; overflow: hidden;
}
.book::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 20% 0%, rgba(240,106,59,.15), transparent 60%),
              radial-gradient(600px 300px at 80% 100%, rgba(224,182,89,.12), transparent 60%);
  pointer-events: none;
}
.book .container { position: relative; z-index: 1; }
.book .container { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.book h2 { color: white; }
.book p.lead { color: #d8d4ca; font-size: 16px; max-width: 480px; }
.book ul.guarantees { list-style: none; padding: 0; margin: 24px 0 0; }
.book ul.guarantees li { display: flex; align-items: center; gap: 10px; padding: 8px 0; color: #e8e4dc; font-size: 14.5px; }
.book ul.guarantees svg { color: var(--accent); flex-shrink: 0; }
.book-form {
  background: white; color: var(--text); border-radius: 14px; padding: 32px; box-shadow: 0 24px 60px rgba(0,0,0,.3);
}
.book-form h3 { margin: 0 0 4px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 26px; font-weight: 600; }
.book-form .sub { color: var(--text-muted); margin: 0 0 18px; font-size: 13.5px; }
.book-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.book-form .full { grid-column: 1 / -1; }
.book-form .m-btn { width: 100%; justify-content: center; }
@media (max-width: 880px) { .book .container { grid-template-columns: 1fr; } }

/* Footer */
.m-footer {
  background: #050810;
  color: #b8b3a6; padding: 64px 0 28px;
  border-top: 1px solid rgba(224,182,89,.18);
  position: relative; overflow: hidden;
}
.m-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-spark);
  opacity: .8;
}
.m-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
.m-footer h4 { color: var(--accent); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 14px; font-weight: 700; }
.m-footer ul { list-style: none; padding: 0; margin: 0; }
.m-footer ul li { padding: 4px 0; font-size: 13.5px; }
.m-footer ul a { color: #d8d4ca; text-decoration: none; }
.m-footer ul a:hover { color: var(--accent); text-decoration: none; }
.m-footer .blurb { font-size: 13.5px; line-height: 1.65; max-width: 320px; }
.m-footer-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: 12.5px; color: #8e8a82;
}
@media (max-width: 880px) { .m-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .m-footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CLIENT (CUSTOMER) PAGES — account.html, book.html
   ============================================================ */
.client-shell { background: #fbfaf6; min-height: 100vh; }
.client-shell .m-header { position: sticky; top: 0; z-index: 30; }
.client-page {
  padding: 56px 0 80px;
}
.client-page h1.serif {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 38px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 6px;
}
.client-page p.lead { color: var(--text-muted); margin: 0 0 28px; font-size: 15.5px; }

/* Auth tabs */
.auth-tabs {
  display: flex; gap: 4px; background: var(--bg);
  padding: 4px; border-radius: 999px; margin-bottom: 22px; width: fit-content;
}
.auth-tabs button {
  border: 0; background: transparent; padding: 8px 18px; border-radius: 999px;
  font-size: 13.5px; font-weight: 600; color: var(--text-muted); cursor: pointer;
}
.auth-tabs button.active { background: var(--brand); color: white; }

.auth-card {
  background: white; border: 1px solid var(--border); border-radius: 14px;
  padding: 32px; box-shadow: var(--shadow-sm); max-width: 480px;
}
.auth-card .field + .field { margin-top: 12px; }
.auth-card .row { display: flex; align-items: center; justify-content: space-between; margin: 14px 0; font-size: 13px; color: var(--text-muted); }
.auth-card .m-btn { width: 100%; justify-content: center; }
.auth-card .err {
  margin-top: 12px; padding: 10px 12px; border-radius: 8px; background: var(--danger-50);
  color: var(--danger); font-size: 13px; border: 1px solid #fecaca; display: none;
}
.auth-card .err.show { display: block; }

/* Account dashboard */
.acc-grid { display: grid; grid-template-columns: 280px 1fr; gap: 28px; }
.acc-side {
  background: white; border: 1px solid var(--border); border-radius: 14px; padding: 22px;
  height: fit-content;
}
.acc-side .av-lg {
  width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, #0b1d3f, #1a2d52);
  color: var(--accent); display: grid; place-items: center; font-weight: 700; font-family: serif; font-size: 22px;
}
.acc-side h3 { margin: 12px 0 4px; font-size: 17px; }
.acc-side .em { color: var(--text-muted); font-size: 13px; }
.acc-side .navlinks { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 4px; }
.acc-side .navlinks a { padding: 8px 10px; border-radius: 8px; color: var(--text-muted); font-size: 13.5px; }
.acc-side .navlinks a:hover { background: var(--bg); color: var(--text); text-decoration: none; }
.acc-side .navlinks a.active { background: var(--brand); color: white; }

.acc-content {
  background: white; border: 1px solid var(--border); border-radius: 14px;
}
.acc-section-head {
  padding: 18px 22px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.acc-section-head h2 { margin: 0; font-size: 18px; }
.acc-list { padding: 6px 0; }
.acc-list .empty { padding: 40px 22px; text-align: center; color: var(--text-soft); }
.booking-row {
  padding: 16px 22px; border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 100px 1fr auto; gap: 18px; align-items: center;
}
.booking-row:last-child { border-bottom: 0; }
.booking-row .when {
  text-align: center; padding: 8px; background: var(--bg); border-radius: 8px;
}
.booking-row .when .d { font-family: "Cormorant Garamond", serif; font-size: 22px; font-weight: 600; color: var(--brand); line-height: 1; }
.booking-row .when .m { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted); margin-top: 2px; }
.booking-row .body .route {
  display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14.5px;
}
.booking-row .body .route svg { color: var(--accent); flex-shrink: 0; }
.booking-row .body .meta { color: var(--text-muted); font-size: 12.5px; margin-top: 4px; }
.booking-row .right { text-align: right; }
.booking-row .right .amt { font-family: "Cormorant Garamond", serif; font-size: 22px; color: var(--brand); font-weight: 600; }
.booking-row .right .pill { margin-top: 4px; }

@media (max-width: 880px) {
  .acc-grid { grid-template-columns: 1fr; }
  .booking-row { grid-template-columns: 80px 1fr; }
  .booking-row .right { grid-column: 2 / 3; text-align: left; }
}

/* Booking flow / stepper */
.stepper {
  display: flex; gap: 8px; align-items: center; margin-bottom: 24px;
  background: white; padding: 14px 18px; border: 1px solid var(--border); border-radius: 999px;
  width: fit-content;
}
.stepper .step-dot {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg); color: var(--text-muted);
  display: grid; place-items: center; font-weight: 700; font-size: 12.5px;
  border: 1px solid var(--border-strong);
}
.stepper .step-dot.active { background: var(--brand); color: white; border-color: var(--brand); }
.stepper .step-dot.done { background: var(--accent); color: white; border-color: var(--accent); }
.stepper .step-line { width: 28px; height: 2px; background: var(--border-strong); }
.stepper .step-line.done { background: var(--accent); }
.stepper .step-label { font-size: 13px; color: var(--text-muted); margin: 0 6px; font-weight: 600; }
.stepper .step-label.active { color: var(--text); }

.booking-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; align-items: start; }
.booking-grid .left, .booking-grid .right {
  background: white; border: 1px solid var(--border); border-radius: 14px;
}
.booking-grid .left { padding: 28px; }
.booking-grid .left h2 { font-family: "Cormorant Garamond", serif; font-size: 26px; margin: 0 0 16px; font-weight: 600; }
.booking-grid .right { padding: 24px; position: sticky; top: 96px; }
.booking-grid .right h3 { font-family: "Cormorant Garamond", serif; font-size: 22px; margin: 0 0 4px; font-weight: 600; }
.booking-grid .right p.sub { color: var(--text-muted); font-size: 13px; margin: 0 0 18px; }

.qrow { display: flex; justify-content: space-between; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--text); }
.qrow.muted { color: var(--text-muted); font-size: 13px; }
.qrow.total { font-weight: 700; font-size: 17px; padding-top: 14px; border-top: 1px dashed var(--border-strong); margin-top: 10px; }
.qrow.total .v { font-family: "Cormorant Garamond", serif; font-size: 26px; color: var(--brand); }

.match-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px; font-size: 11.5px; font-weight: 600;
  background: var(--success-50); color: var(--success); margin-bottom: 10px;
}
.match-pill.unmatched { background: var(--warning-50); color: var(--warning); }

@media (max-width: 880px) {
  .booking-grid { grid-template-columns: 1fr; }
  .booking-grid .right { position: static; }
}

/* ============================================================
   INTERACTIVITY LAYER — scroll reveals, tilt, sticky mobile CTA,
   counter animations, parallax. Driven by assets/interactive.js.
   ============================================================ */

/* Scroll reveal — hidden by default, animated in via IntersectionObserver */
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
  will-change: transform, opacity;
}
[data-reveal].in {
  opacity: 1; transform: translateY(0);
}
[data-reveal][data-reveal-delay="1"].in { transition-delay: .08s; }
[data-reveal][data-reveal-delay="2"].in { transition-delay: .16s; }
[data-reveal][data-reveal-delay="3"].in { transition-delay: .24s; }
[data-reveal][data-reveal-delay="4"].in { transition-delay: .32s; }

/* Variants */
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="zoom"]  { transform: scale(.94); }
[data-reveal="left"].in,
[data-reveal="right"].in,
[data-reveal="zoom"].in { transform: none; }

/* Tilt cards — driven by JS to add CSS variables --tx / --ty */
[data-tilt] {
  transform: perspective(800px) rotateX(var(--ty, 0deg)) rotateY(var(--tx, 0deg)) translateZ(0);
  transition: transform .15s ease-out;
  transform-style: preserve-3d;
}
[data-tilt]:hover { transition: none; }

/* Counter — make sure it doesn't reflow during animation */
[data-count] { font-variant-numeric: tabular-nums; min-width: 1ch; display: inline-block; }

/* Sticky floating "Book a ride" button (mobile-only by default) */
.sticky-book {
  position: fixed; bottom: 18px; right: 18px; left: 18px; z-index: 40;
  background: var(--grad-spark);
  color: white; padding: 14px 20px; border-radius: 999px;
  font-size: 15px; font-weight: 700; text-align: center;
  box-shadow: 0 10px 30px rgba(255,106,26,.45), 0 0 0 1px rgba(0,0,0,.05);
  text-decoration: none;
  display: none; /* shown via JS on small screens */
  animation: sticky-pulse 2.4s ease-in-out infinite;
}
@keyframes sticky-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(255,106,26,.45), 0 0 0 0 rgba(255,106,26,.4); }
  50%      { box-shadow: 0 10px 30px rgba(255,106,26,.55), 0 0 0 14px rgba(255,106,26,0); }
}
.sticky-book:hover { color: white; text-decoration: none; transform: translateY(-2px); }

/* Mouse-parallax targets (set --mx/--my on a parent container via JS) */
.parallax-slow  { transform: translate3d(calc(var(--mx,0)*-12px), calc(var(--my,0)*-12px), 0); transition: transform .25s ease-out; }
.parallax-mid   { transform: translate3d(calc(var(--mx,0)*-22px), calc(var(--my,0)*-22px), 0); transition: transform .2s ease-out; }
.parallax-fast  { transform: translate3d(calc(var(--mx,0)*-36px), calc(var(--my,0)*-36px), 0); transition: transform .15s ease-out; }

/* Magnetic button — slight pull toward cursor (JS sets --mx/--my on the element) */
.btn-magnet {
  transform: translate3d(calc(var(--mx,0)*8px), calc(var(--my,0)*8px), 0);
  transition: transform .2s ease-out;
}

/* Marquee strip — for trust band etc. */
.marquee {
  overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
          mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: inline-flex; gap: 56px; padding: 18px 0;
  animation: marquee-scroll 40s linear infinite;
  white-space: nowrap;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Glow ring for important interactive elements */
.glow-ring {
  position: relative;
}
.glow-ring::before {
  content: ""; position: absolute; inset: -2px; border-radius: inherit;
  background: var(--grad-spark);
  z-index: -1; opacity: 0; filter: blur(8px);
  transition: opacity .3s;
}
.glow-ring:hover::before { opacity: .6; }

/* Animated gradient border (used on key cards) */
.grad-border {
  position: relative; isolation: isolate;
}
.grad-border::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: conic-gradient(from var(--g, 0deg), var(--spark), var(--accent), var(--spark));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: grad-border-spin 6s linear infinite;
  pointer-events: none;
}
@keyframes grad-border-spin {
  to { --g: 360deg; }
}
@property --g { syntax: '<angle>'; inherits: false; initial-value: 0deg; }

/* Mobile nav toggle (very simple) */
.m-burger { display: none; background: transparent; border: 0; color: white; padding: 6px; }
@media (max-width: 880px) {
  .m-nav-links { display: none; }
  .m-burger { display: inline-flex; }
  .m-nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 72px; left: 0; right: 0; background: #0b1d3f; padding: 16px 24px;
    border-bottom: 1px solid rgba(201,168,106,.2);
  }
}

