/* ============================================================
   ROBOOK v5 — IBM Plex Mono · electric blue · dark
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

:root {
  --bg:    #0C0C0A;
  --bg2:   #141410;
  --bg3:   #1C1C18;
  --ink:   #E8E4DC;
  --ink2:  #8A8680;
  --ink3:  #545250;
  --line:  #222018;
  --line2: #2E2C24;

  --lbg:   #EFECE6;
  --lbg2:  #E4E1DA;
  --lbg3:  #D5D2CA;
  --link:  #0E0E0C;
  --link2: #64605A;
  --lline: #CCCAC4;
  --lline2:#B8B4AC;

  --acc:   #3B82F6;
  --acc-l: #60A5FA;
  --acc-d: #2563EB;
  --on-acc:#FFFFFF;

  --maxw: 1240px;
  --gut: clamp(28px, 6vw, 80px);
  --mono: 'IBM Plex Mono', ui-monospace, 'Courier New', monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--acc); color: var(--on-acc); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* ── noise overlay ── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ── progress bar ── */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: var(--acc);
  z-index: 200;
  transform-origin: left center;
  box-shadow: 0 0 8px rgba(59,130,246,0.6);
  transition: width 0.08s linear;
}

/* ── layout ── */
.wrap   { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 9vw, 128px); position: relative; }

/* ── eyebrow ── */
.eyebrow {
  font-size: 11px; font-weight: 400; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink3);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--acc); flex: none; }
.lblock .eyebrow { color: var(--link2); }
.lblock .eyebrow::before { background: var(--acc-d); }

/* ── headings ── */
h2.title {
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(34px, 5.2vw, 68px);
  line-height: 1.0;
  letter-spacing: -0.03em;
}
h2.title em { font-style: italic; color: var(--acc); font-weight: 400; }
.lblock h2.title em { color: var(--acc-d); }

.lead {
  font-size: clamp(13px, 1.3vw, 15px);
  line-height: 1.75;
  color: var(--ink2);
  max-width: 52ch;
  font-weight: 400;
}
.lblock .lead { color: var(--link2); }

/* ── buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: none; border-radius: 2px;
  padding: 12px 20px;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: transform .3s var(--ease), background .2s, box-shadow .3s var(--ease), color .2s, border-color .2s;
}
.btn .arr { font-weight: 400; transition: transform .3s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }
.btn-acc { background: var(--acc); color: var(--on-acc); }
.btn-acc:hover { background: var(--acc-d); transform: translateY(-2px); box-shadow: 0 10px 28px -10px rgba(59,130,246,0.55); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line2); }
.btn-ghost:hover { border-color: var(--ink3); transform: translateY(-2px); }
.btn-dark { background: var(--link); color: var(--lbg); }
.btn-dark:hover { transform: translateY(-2px); }

/* ── NAV ── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gut);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .35s, padding .35s var(--ease);
}
.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding-block: 13px;
}
.brand {
  font-family: var(--mono); font-weight: 700; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.brand .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--acc);
  animation: pulse 2.2s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59,130,246,0.45); }
  60%       { box-shadow: 0 0 0 7px rgba(59,130,246,0); }
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 11px; font-weight: 500; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--ink2);
  white-space: nowrap; position: relative;
  padding-bottom: 2px; overflow: hidden;
}
.nav-links a span { position: relative; }
.nav-links a::after {
  content: "";
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--acc);
  transform: translateX(-101%);
  transition: transform .35s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: translateX(0); }
@media (max-width: 940px) { .nav-links { display: none; } }

/* ── HERO ── */
.hero {
  padding-top: clamp(80px, 10vw, 120px);
  padding-bottom: 0;
  padding-right: var(--gut);
  border-bottom: 1px solid var(--line);
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 44%;
  min-height: calc(100vh - clamp(80px, 10vw, 120px));
  align-items: start;
}
.hero-main {
  padding-block: clamp(40px, 5vw, 72px);
  padding-left: var(--gut);
  padding-right: clamp(24px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-h1 {
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(38px, 5.8vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.hero-h1 em { font-style: italic; font-weight: 400; color: var(--acc); }
.h1-line-wrap { overflow: hidden; }
.h1-line { display: block; transform: translateY(105%); }
.hero-sub {
  margin-top: 4px;
  color: var(--ink2);
  font-size: 13px;
  line-height: 1.7;
  max-width: 40ch;
}
.hero-actions { margin-top: 28px; display: flex; gap: 10px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line2);
  font-size: 12px; color: var(--ink3); line-height: 1.9;
}
.hero-meta strong { color: var(--ink); font-weight: 600; }
.ticker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.06em; color: var(--ink2);
  border: 1px solid var(--line2); border-radius: 2px;
  padding: 7px 12px; background: var(--bg2); margin-bottom: 22px;
  align-self: flex-start;
}
.ticker .live { width: 6px; height: 6px; border-radius: 50%; background: var(--acc); animation: blink 1.8s ease infinite; flex: none; }
.ticker b { color: var(--ink); font-variant-numeric: tabular-nums; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ── LEAFLET MAP ── */
.hero-map-wrap {
  border-left: 1px solid var(--line2);
  background: var(--bg2);
  display: flex;
  flex-direction: column;
  /* sticky map: stays in view while left side scrolls */
  position: sticky;
  top: 0;
  height: 80vh;
  max-height: 80vh;
  /* must NOT be inside overflow:hidden parent for sticky to work */
  align-self: flex-start;
}
.map-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line2);
  background: var(--bg3);
  flex-shrink: 0;
}
.map-label {
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink3);
}
.map-count {
  font-size: 10px; letter-spacing: 0.06em; color: var(--acc);
  display: flex; align-items: center; gap: 6px;
}
.map-count .live { width: 5px; height: 5px; border-radius: 50%; background: var(--acc); animation: blink 1.8s ease infinite; flex: none; }
.map-body { flex: 1; position: relative; overflow: hidden; }
#sf-map { height: 100%; min-height: 520px; }
.map-legend {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 14px;
  border-top: 1px solid var(--line2);
  background: var(--bg3);
  font-size: 10px; letter-spacing: 0.06em; color: var(--ink3);
  flex-shrink: 0;
}
.ml-item { display: flex; align-items: center; gap: 5px; }
.ml-dot { width: 6px; height: 6px; border-radius: 50%; }
.ml-dot.active { background: var(--acc); }
.ml-dot.idle { background: rgba(59,130,246,0.3); border: 1px solid rgba(59,130,246,0.4); }
.ml-sep { color: var(--line2); }
.ml-note { color: var(--ink3); margin-left: auto; }

/* ── Leaflet overrides ── */
.leaflet-container { background: #0C0C0A; }
.leaflet-tile-pane { filter: saturate(0.7) brightness(0.85); }
.leaflet-attribution-flag { display: none !important; }
.leaflet-control-attribution {
  background: rgba(12,12,10,0.7) !important;
  color: #545250 !important;
  font-family: 'IBM Plex Mono', monospace !important;
  font-size: 9px !important;
  padding: 2px 6px !important;
  border-radius: 0 !important;
}
.leaflet-control-attribution a { color: #3B82F6 !important; }

/* robot markers */
.robot-marker { width: 16px; height: 16px; position: relative; }
.robot-marker .rm-core { position: absolute; inset: 3px; border-radius: 50%; background: #3B82F6; }
.robot-marker .rm-ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid #3B82F6; animation: rm-ping 2s ease infinite; }
.robot-marker.idle .rm-core { background: rgba(59,130,246,0.35); }
.robot-marker.idle .rm-ring { border-color: rgba(59,130,246,0.25); animation: none; }
@keyframes rm-ping {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* Leaflet popup */
.rb-popup .leaflet-popup-content-wrapper {
  background: #141410;
  border: 1px solid #2E2C24;
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}
.rb-popup .leaflet-popup-content {
  color: #E8E4DC;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  margin: 10px 14px;
}
.rb-popup .leaflet-popup-tip { background: #141410; }
.rb-popup .leaflet-popup-close-button { color: #545250 !important; }

@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; min-height: auto; }
  .hero-map-wrap { position: relative; height: 400px; max-height: 400px; border-left: none; border-top: 1px solid var(--line2); }
  .hero-main { padding-right: 0; }
}

/* ── HERO STATS + TRUST ── */
.hero-stats {
  margin-top: 24px; display: flex; align-items: center; gap: 0;
  border: 1px solid var(--line2); border-radius: 2px; overflow: hidden;
  align-self: flex-start;
}
.hstat { padding: 10px 18px; display: flex; flex-direction: column; align-items: center; }
.hstat-n { font-weight: 700; font-size: 18px; letter-spacing: -0.03em; color: var(--ink); }
.hstat-l { font-size: 9px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink3); margin-top: 2px; }
.hstat-sep { font-size: 18px; color: var(--line2); align-self: stretch; display: flex; align-items: center; }
.hero-trust {
  margin-top: 14px; font-size: 10px; letter-spacing: 0.06em; color: var(--ink3);
  display: flex; align-items: center; gap: 7px;
}
.ht-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--acc); flex: none; }

/* ── 22-HOUR SECTION ── */
.idle-vis { margin-top: 44px; }
.idle-bar-label {
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink3); margin-bottom: 8px;
}
.idle-bar {
  display: flex; height: 48px; border: 1px solid var(--line2);
  overflow: hidden; border-radius: 2px;
}
.idle-seg {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: width 1.2s var(--ease);
}
.idle-seg.work {
  background: color-mix(in srgb, var(--acc) 20%, var(--bg2));
  border-right: 1px solid var(--acc);
}
.idle-seg.work.rb {
  background: color-mix(in srgb, var(--acc) 18%, var(--bg2));
  border-right: 1px solid rgba(59,130,246,0.3);
}
.idle-seg.waste {
  background: var(--bg3);
  flex: 1;
}
.idle-seg.transit {
  background: color-mix(in srgb, var(--ink3) 12%, var(--bg2));
  border-left: 1px solid var(--line2);
}
.idle-seg-lbl {
  font-size: 8px; letter-spacing: 0.06em; color: var(--acc-l);
  text-align: center; line-height: 1.3;
  pointer-events: none;
}
.idle-seg.waste .idle-seg-lbl { color: var(--ink3); font-size: 10px; }
.idle-bar-sub {
  font-size: 10px; color: var(--ink3); letter-spacing: 0.04em; margin-top: 7px;
}

/* ── why-grid ── */
.why-grid {
  display: flex; align-items: center; gap: 16px;
  margin-top: 44px; flex-wrap: wrap;
}
.why-card {
  border: 1px solid var(--line2); padding: 20px 24px;
  background: var(--bg2); text-align: center; min-width: 120px;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s;
}
.why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59,130,246,0.35);
  box-shadow: 0 12px 32px -8px rgba(59,130,246,0.18);
}
.why-card.accent { border-color: var(--acc); background: color-mix(in srgb, var(--acc) 8%, var(--bg2)); }
.why-card.accent:hover { box-shadow: 0 12px 32px -8px rgba(59,130,246,0.35); }
.why-num {
  font-weight: 700; font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.04em; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.why-card.accent .why-num { color: var(--acc-l); }
.why-desc { font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink3); margin-top: 4px; }
.why-op { font-size: 28px; color: var(--ink3); font-weight: 300; }
.why-flywheel {
  margin-top: 36px; max-width: 60ch;
  font-size: 13px; color: var(--ink2); line-height: 1.85;
  border-left: 2px solid var(--acc);
  padding-left: 18px;
}

/* ── TIMELINE — horizontal 2-row grid ── */
.tl-outer {
  margin-top: 44px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  padding-inline: var(--gut);
  padding-bottom: 12px;
  /* custom scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--lline2) transparent;
}
.tl-outer::-webkit-scrollbar { height: 4px; }
.tl-outer::-webkit-scrollbar-track { background: transparent; }
.tl-outer::-webkit-scrollbar-thumb { background: var(--lline2); border-radius: 2px; }

.tl-rows { display: flex; flex-direction: column; gap: 14px; width: max-content; margin: 0 auto; }
.tl-row { display: flex; align-items: stretch; gap: 0; }

/* card */
.tl-card {
  width: 260px; flex-shrink: 0;
  border: 1px solid var(--lline);
  background: var(--lbg2);
  padding: 20px 20px 16px;
  display: flex; flex-direction: column; gap: 6px;
  position: relative; overflow: hidden;
  scroll-snap-align: start;
  transition: border-color .25s, box-shadow .25s, transform .25s var(--ease);
}
.tl-card:hover {
  border-color: var(--acc-d);
  box-shadow: 0 6px 20px -6px rgba(37,99,235,0.18);
  transform: translateY(-2px);
}
.tl-card.tl-first { border-color: var(--acc-d); background: color-mix(in srgb, var(--acc-d) 4%, var(--lbg2)); }
.tl-card.tl-summary {
  border-color: var(--acc-d); background: var(--acc-d); color: #fff;
  border-left-width: 2px;
}
.tlc-badge {
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--acc-d); font-weight: 600; margin-bottom: 4px;
}
.tlc-badge.active::before { content: "● "; }
.tlc-time {
  font-weight: 700; font-size: 18px; letter-spacing: -0.03em; color: var(--link);
  line-height: 1;
}
.tl-card.tl-summary .tlc-time { color: rgba(255,255,255,0.7); font-size: 12px; }
.tlc-name { font-weight: 700; font-size: 15px; letter-spacing: -0.01em; color: var(--link); }
.tlc-loc { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--link2); }
.tlc-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 4px; }
.tlc-footer {
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--lline);
  display: flex; justify-content: space-between; align-items: center;
}
.tlc-earn { font-weight: 700; font-size: 16px; color: var(--acc-d); letter-spacing: -0.02em; }
.tlc-next { font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--link2); }

/* summary card */
.tlc-sum-label { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.tlc-sum-num { font-weight: 700; font-size: 44px; letter-spacing: -0.05em; color: #fff; line-height: 1; margin: 4px 0; }
.tlc-sum-sub { font-size: 10px; color: rgba(255,255,255,0.72); line-height: 1.6; }
.tlc-sum-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }
.tl-card.tl-summary .tag { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.3); }

/* connector between cards */
.tl-conn {
  display: flex; align-items: center; flex-shrink: 0; width: 40px; position: relative;
}
.tl-conn-line { flex: 1; height: 1px; background: var(--lline2); }
.tl-conn-arr { font-size: 13px; color: var(--lline2); position: absolute; right: 6px; }
.tl-conn-invisible { opacity: 0; pointer-events: none; }

.lblock .tag { font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--link2); border: 1px solid var(--lline2); padding: 4px 9px; border-radius: 2px; }

/* ── TASKS ── */
.lblock { background: var(--lbg); color: var(--link); }
.tasks-head { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: end; margin-bottom: 48px; }
.task-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--lline); }
.task {
  padding: 30px 26px 34px; border-right: 1px solid var(--lline); border-bottom: 1px solid var(--lline);
  position: relative; overflow: hidden;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.task:nth-child(3n) { border-right: none; }
.task:hover {
  background: var(--lbg2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(59,130,246,0.12);
}
.task-n { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--link2); }
.task h3 { font-family: var(--mono); font-weight: 700; font-size: clamp(28px, 3.2vw, 40px); line-height: 1.0; letter-spacing: -0.03em; margin: 14px 0 10px; }
.task p { font-size: 13px; color: var(--link2); max-width: 26ch; line-height: 1.7; }
.task-tags { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 6px; }
.tag { font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--link2); border: 1px solid var(--lline2); padding: 4px 9px; border-radius: 2px; }
.task .spark { position: absolute; right: -30px; top: -30px; width: 90px; height: 90px; border-radius: 50%; background: var(--acc); opacity: 0; filter: blur(36px); transition: opacity .5s; pointer-events: none; }
.task:hover .spark { opacity: 0.10; }
@media (max-width: 700px) {
  .tasks-head { grid-template-columns: 1fr; }
  .task-grid { grid-template-columns: 1fr; }
  .task { border-right: none; }
}

/* ── HOW IT WORKS ── */
.how-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 52px;
  border-top: 1px solid var(--line);
}
.step { padding: 26px 18px 26px 0; border-bottom: 1px solid var(--line); position: relative; }
.step::before { content: ""; position: absolute; top: -1px; left: 0; width: 0; height: 2px; background: var(--acc); transition: width .9s var(--ease); }
.step.on::before { width: 100%; }
.step .sn { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink3); }
.step h4 { font-family: var(--mono); font-weight: 700; font-size: clamp(18px, 1.8vw, 23px); margin: 10px 0 8px; letter-spacing: -0.02em; }
.step p { font-size: 12px; color: var(--ink2); max-width: 22ch; line-height: 1.65; }
@media (max-width: 780px) { .how-grid { grid-template-columns: 1fr 1fr; gap: 0; } .step { padding: 22px 0; } }

/* ── SHIFT IN ACTION — real images ── */
.action-hd { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 20px; margin-bottom: 38px; }
.action-clock .ctime { font-size: clamp(18px, 2.2vw, 26px); font-weight: 700; letter-spacing: 0.02em; color: var(--acc); }
.action-clock .csub { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink3); margin-top: 4px; }
.shots { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; }
.shot-meta { display: flex; align-items: baseline; gap: 10px; margin-top: 9px; }
.shot-meta .ts { font-weight: 700; font-size: clamp(16px, 1.9vw, 22px); letter-spacing: -0.01em; }
.shot-meta .rm { font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--acc); }
.shot-meta .rm::before { content: "— "; color: var(--ink3); }
.sa { grid-column: span 7; }
.sb { grid-column: span 5; align-self: end; }
.sc { grid-column: span 5; }
.sd { grid-column: span 7; }

/* shot figure */
.shot-fig {
  position: relative;
  overflow: hidden;
  display: block;
  border: 1px solid var(--line2);
}
.shot-fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) contrast(1.05) brightness(0.88);
  transition: transform .6s var(--ease), filter .4s;
}
.shot:hover .shot-fig img {
  transform: scale(1.03);
  filter: grayscale(10%) contrast(1.08) brightness(0.92);
}
.shot-fig::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,10,0.72) 0%, rgba(12,12,10,0.0) 50%);
  pointer-events: none;
}
.fig-ts {
  position: absolute;
  bottom: 10px; left: 12px;
  z-index: 2;
  font-size: 10px; letter-spacing: 0.10em;
  text-transform: uppercase; color: rgba(232,228,220,0.65);
  font-family: 'IBM Plex Mono', monospace;
}
.sa .shot-fig { aspect-ratio: 16/11; }
.sb .shot-fig { aspect-ratio: 4/3; }
.sc .shot-fig { aspect-ratio: 4/3; }
.sd .shot-fig { aspect-ratio: 16/9; }

@media (max-width: 720px) {
  .shots { grid-template-columns: 1fr; }
  .sa,.sb,.sc,.sd { grid-column: 1/-1; }
  .sa .shot-fig, .sb .shot-fig, .sc .shot-fig, .sd .shot-fig { aspect-ratio: 16/9; }
}

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: start; margin-top: 40px; }
.price-num {
  font-family: var(--mono); font-weight: 700;
  font-size: clamp(90px, 17vw, 220px); line-height: 0.86; letter-spacing: -0.05em;
  color: var(--link);
}
.price-num sup { font-size: 0.34em; vertical-align: super; font-weight: 400; }
.price-unit { font-size: 12px; color: var(--link2); letter-spacing: 0.06em; margin-top: 10px; text-transform: uppercase; }
.cmp { margin-top: 28px; }
.cmp-row { display: grid; grid-template-columns: 80px 1fr 56px; align-items: center; gap: 12px; padding: 9px 0; }
.cmp-row .cl { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--link2); }
.bar { height: 5px; background: var(--lbg3); overflow: hidden; border-radius: 1px; }
.bar i { display: block; height: 100%; width: 0; transition: width 1.1s var(--ease); border-radius: 1px; }
.cmp-row.me .bar i { background: var(--acc-d); }
.cmp-row.them .bar i { background: var(--lline2); }
.cmp-row .cv { font-size: 11px; font-weight: 600; letter-spacing: 0.02em; color: var(--link2); font-variant-numeric: tabular-nums; }
.price-list { margin-top: 4px; }
.price-list ul { list-style: none; }
.price-list li { display: flex; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--lline); font-size: 13px; }
.price-list li:first-child { border-top: 1px solid var(--lline); }
.price-list .pk { font-weight: 600; color: var(--acc-d); flex: none; font-size: 11px; padding-top: 1px; }
.price-list b { font-weight: 700; display: block; font-size: 14px; margin-bottom: 2px; }
.price-list span { color: var(--link2); font-size: 13px; }
.pv { display: flex; flex-direction: column; }
@media (max-width: 780px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ── MANUFACTURERS ── */
.makers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: start; }
.maker-pts { list-style: none; margin-top: 30px; }
.maker-pts li { display: flex; gap: 14px; padding: 18px 0; border-top: 1px solid var(--line); }
.maker-pts li:last-child { border-bottom: 1px solid var(--line); }
.maker-pts .mn { font-size: 10px; color: var(--acc); padding-top: 3px; flex: none; }
.maker-pts b { display: block; font-size: 14px; font-weight: 700; margin-bottom: 3px; letter-spacing: -0.01em; }
.maker-pts span { font-size: 13px; color: var(--ink2); }
.flow-stack { display: flex; flex-direction: column; gap: 8px; }
.fc { border: 1px solid var(--line2); padding: 18px 20px; background: var(--bg2); }
.fc.mid { border-color: var(--acc); background: var(--bg3); }
.fc .fl { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink3); margin-bottom: 6px; }
.fc.mid .fl { color: var(--acc); }
.fc .fv { font-family: var(--mono); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.fc .arr { color: var(--acc); font-weight: 400; }
.fc-loop { border-style: dashed; background: transparent; }
.fc-loop .fv { font-size: 14px; font-weight: 400; color: var(--ink2); }

/* ── MANUFACTURER OFFER GRID ── */
.mfr-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 52px;
}
.mfr-card {
  padding: 28px 24px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.mfr-card:hover {
  background: var(--bg3);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px -8px rgba(59,130,246,0.14);
}
.mfr-card .mc-n { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink3); margin-bottom: 14px; }
.mfr-card h4 { font-weight: 700; font-size: clamp(16px, 1.8vw, 20px); letter-spacing: -0.02em; margin-bottom: 10px; }
.mfr-card p { font-size: 12px; color: var(--ink2); line-height: 1.72; max-width: 28ch; }
.mfr-card .mc-accent { display: block; margin-top: 16px; font-size: 20px; font-weight: 700; color: var(--acc); letter-spacing: -0.03em; }
.mfr-card .mc-spark { position: absolute; right: -20px; top: -20px; width: 80px; height: 80px; border-radius: 50%; background: var(--acc); opacity: 0; filter: blur(32px); transition: opacity .5s; pointer-events: none; }
.mfr-card:hover .mc-spark { opacity: 0.12; }

.mfr-loi {
  margin-top: 40px; padding: 22px 24px;
  border: 1px solid var(--acc);
  background: color-mix(in srgb, var(--acc) 6%, var(--bg2));
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.mfr-loi-text { font-size: 13px; color: var(--ink2); max-width: 50ch; line-height: 1.7; }
.mfr-loi-text strong { color: var(--ink); font-weight: 600; }

@media (max-width: 780px) {
  .makers-grid { grid-template-columns: 1fr; }
  .mfr-offer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 500px) { .mfr-offer-grid { grid-template-columns: 1fr; } }

/* ── DATA PRIVACY ── */
.privacy-section { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.privacy-header {
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end;
  margin-bottom: 52px;
}
.privacy-badge {
  border: 1px solid var(--line2); padding: 20px 24px; background: var(--bg3);
  text-align: center; max-width: 200px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.pb-icon { display: flex; align-items: center; justify-content: center; }
.pb-text { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink2); line-height: 1.5; }
.privacy-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.prv-card {
  padding: 28px 24px 32px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
  transition: background .3s var(--ease);
}
.prv-card:hover { background: var(--bg3); }
.prv-card .prv-n {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink3); margin-bottom: 14px;
}
.prv-card h4 { font-weight: 700; font-size: 16px; letter-spacing: -0.02em; margin-bottom: 10px; color: var(--ink); }
.prv-card p { font-size: 12px; color: var(--ink2); line-height: 1.75; max-width: 30ch; }

@media (max-width: 900px) { .privacy-header { grid-template-columns: 1fr; } .privacy-badge { display: none; } }
@media (max-width: 780px) { .privacy-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .privacy-grid { grid-template-columns: 1fr; } }

/* ── FAQ — premium redesign ── */
.faq-wrap { border-top: 1px solid var(--lline); margin-top: 44px; }
.faq-item {
  border-bottom: 1px solid var(--lline);
  position: relative;
  overflow: hidden;
}
.faq-ghost-num {
  position: absolute;
  left: -8px; top: 50%;
  transform: translateY(-50%);
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(37, 99, 235, 0.12);
  pointer-events: none;
  line-height: 1;
  transition: -webkit-text-stroke-color .3s;
  user-select: none;
}
.faq-item.open .faq-ghost-num,
.faq-item:hover .faq-ghost-num {
  -webkit-text-stroke-color: rgba(37, 99, 235, 0.22);
}
.faq-q {
  width: 100%; background: none; border: none; text-align: left; color: var(--link);
  display: flex; align-items: center; gap: 10px; padding: 22px 4px 22px 68px;
  transition: background .2s;
}
.faq-q:hover { background: rgba(37,99,235,0.03); }
.faq-q-inner { display: flex; align-items: center; gap: 12px; flex: 1; }
.faq-q .qn { font-size: 10px; letter-spacing: 0.12em; color: var(--link2); flex: none; }
.faq-q .qt { font-size: clamp(16px, 1.9vw, 20px); font-weight: 600; letter-spacing: -0.02em; }
.faq-q .ico {
  width: 26px; height: 26px; border: 1px solid var(--lline2); border-radius: 2px;
  display: grid; place-items: center; position: relative;
  transition: all .3s var(--ease); flex: none; margin-left: auto;
}
.faq-q .ico::before, .faq-q .ico::after {
  content: ""; position: absolute; background: var(--link);
  transition: transform .3s var(--ease), background .2s;
}
.faq-q .ico::before { width: 10px; height: 1.5px; }
.faq-q .ico::after  { width: 1.5px; height: 10px; }
.faq-item.open .faq-q .ico { background: var(--acc-d); border-color: var(--acc-d); }
.faq-item.open .faq-q .ico::before,
.faq-item.open .faq-q .ico::after { background: #fff; }
.faq-item.open .faq-q .ico::after { transform: rotate(90deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.faq-a > div { overflow: hidden; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a p { padding: 0 4px 26px 68px; font-size: 14px; color: var(--link2); max-width: 62ch; line-height: 1.78; }

@media (max-width: 560px) {
  .faq-ghost-num { display: none; }
  .faq-q { padding-left: 4px; }
  .faq-a p { padding-left: 4px; }
  .faq-q .qn { display: none; }
}

/* ── CTA / WAITLIST ── */
.cta-block { background: var(--acc); color: #fff; text-align: center; }
.cta-block h2 {
  font-family: var(--mono); font-weight: 700;
  font-size: clamp(46px, 9vw, 124px); line-height: 0.90; letter-spacing: -0.04em;
}
.cta-block .lead { color: rgba(255,255,255,0.72); margin: 18px auto 0; max-width: 38ch; }
.wl { margin: 34px auto 0; max-width: 480px; display: flex; flex-direction: column; gap: 8px; align-items: stretch; }
.wl-fields { display: flex; flex-direction: column; gap: 8px; }
.wl input {
  width: 100%; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; border-radius: 2px; padding: 12px 16px; font-family: var(--mono); font-size: 13px; outline: none;
  transition: border-color .2s;
}
.wl input::placeholder { color: rgba(255,255,255,0.45); }
.wl input:focus { border-color: rgba(255,255,255,0.7); }
.wl .btn { justify-content: center; }
.wl-ok { margin-top: 12px; font-size: 11px; letter-spacing: 0.06em; color: rgba(255,255,255,0.8); min-height: 16px; }

/* ── FOOTER ── */
.footer { background: var(--bg2); border-top: 1px solid var(--line); padding-block: 32px; }
.footer-row { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer .brand { color: var(--ink2); }
.footer-links { display: flex; gap: 20px; font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink3); }
.footer-links a:hover { color: var(--ink); }
.footer .cr { font-size: 10px; letter-spacing: 0.06em; color: var(--ink3); }

/* ── BOOK SHEET ── */
.scrim {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(12,12,10,0.75); backdrop-filter: blur(8px);
  display: grid; place-items: center; padding: 16px;
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
}
.scrim.show { opacity: 1; pointer-events: auto; }
.sheet {
  width: min(480px, 100%); background: var(--bg2); border: 1px solid var(--line2);
  max-height: 90vh; display: flex; flex-direction: column;
  transform: translateY(18px) scale(0.988);
  transition: transform .38s var(--ease);
  box-shadow: 0 32px 70px -18px rgba(0,0,0,0.8);
}
.scrim.show .sheet { transform: none; }
.sh-top { display: flex; align-items: center; justify-content: space-between; padding: 15px 18px; border-bottom: 1px solid var(--line2); flex-shrink: 0; }
.sh-step { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink3); }
.sh-close { width: 26px; height: 26px; border: 1px solid var(--line2); background: none; color: var(--ink2); display: grid; place-items: center; font-size: 14px; border-radius: 2px; transition: all .2s; }
.sh-close:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.sh-body { padding: 22px 18px 18px; overflow-y: auto; flex: 1; }
.sh-body h3 { font-family: var(--mono); font-weight: 700; font-size: 26px; letter-spacing: -0.03em; margin-bottom: 4px; }
.sh-body .sub { font-size: 12px; color: var(--ink2); margin-bottom: 18px; line-height: 1.65; }
.og { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.op { border: 1px solid var(--line2); padding: 13px; background: var(--bg3); display: flex; flex-direction: column; gap: 3px; text-align: left; transition: border-color .2s; position: relative; }
.op:hover { border-color: var(--ink3); }
.op.sel { border-color: var(--acc); }
.op .onm { font-weight: 700; font-size: 14px; }
.op .omn { font-size: 10px; color: var(--ink3); letter-spacing: 0.04em; }
.op .ock { position: absolute; top: 10px; right: 10px; width: 14px; height: 14px; border: 1px solid var(--line2); border-radius: 50%; transition: all .2s; }
.op.sel .ock { background: var(--acc); border-color: var(--acc); }
.op.sel .ock::after { content: "✓"; color: #fff; font-size: 9px; display: grid; place-items: center; height: 100%; }
.slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.slot { border: 1px solid var(--line2); padding: 12px 8px; text-align: center; background: var(--bg3); transition: all .2s; }
.slot:hover:not(:disabled) { border-color: var(--ink3); }
.slot.sel { border-color: var(--acc); background: color-mix(in srgb, var(--acc) 8%, var(--bg3)); }
.slot .sd { font-weight: 700; font-size: 13px; }
.slot .sh { font-size: 10px; color: var(--ink3); margin-top: 2px; }
.slot:disabled { opacity: .3; cursor: not-allowed; }
.sh-foot { padding: 13px 18px 16px; border-top: 1px solid var(--line2); display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-shrink: 0; }
.sh-foot .tot { font-size: 12px; color: var(--ink2); }
.sh-foot .tot b { color: var(--ink); }
.sh-foot .btn:disabled { opacity: .3; pointer-events: none; }
.receipt { border: 1px solid var(--line2); margin-top: 16px; }
.rr { display: flex; justify-content: space-between; padding: 10px 13px; font-size: 13px; }
.rr:not(:last-child) { border-bottom: 1px solid var(--line2); }
.rr .rk { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink3); }
.rr .rv { font-weight: 600; }
.matching { text-align: center; padding: 28px 0 8px; }
.radar { width: 110px; height: 110px; margin: 0 auto 18px; position: relative; }
.radar::before, .radar .rr1, .radar .rr2 { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 1px solid var(--acc); opacity: 0; animation: rad 2s var(--ease) infinite; }
.radar .rr1 { animation-delay: .67s; } .radar .rr2 { animation-delay: 1.33s; }
@keyframes rad { 0%{transform:scale(.15);opacity:.9} 100%{transform:scale(1);opacity:0} }
.radar .core { position: absolute; inset: 40%; border-radius: 50%; background: var(--acc); }
.match-lbl { font-size: 11px; letter-spacing: 0.06em; color: var(--ink2); min-height: 16px; }
.confirmed { text-align: center; padding: 10px 0; }
.ck-big { width: 56px; height: 56px; border-radius: 50%; background: var(--acc); color: #fff; display: grid; place-items: center; font-size: 24px; margin: 0 auto 16px; animation: pop .5s var(--ease); }
@keyframes pop { 0%{transform:scale(0)} 70%{transform:scale(1.1)} 100%{transform:scale(1)} }

/* ============================================================
   MOBILE NAV — hamburger + drawer
   ============================================================ */
.nav-hamburger {
  display: none;
  width: 36px; height: 36px;
  border: 1px solid var(--line2); background: none; color: var(--ink);
  border-radius: 2px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  transition: border-color .2s;
  flex-shrink: 0;
  position: relative; z-index: 90;
}
.nav-hamburger:hover { border-color: var(--acc); }
.nav-hamburger span {
  display: block; width: 16px; height: 1.5px;
  background: currentColor;
  transition: transform .35s var(--ease), opacity .2s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 940px) { .nav-hamburger { display: flex; } }

/* Drawer */
.nav-drawer {
  position: fixed; inset: 0; z-index: 78;
  background: color-mix(in srgb, var(--bg) 97%, transparent);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 88px var(--gut) var(--gut);
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease);
}
.nav-drawer.open { opacity: 1; pointer-events: auto; }

.drawer-link {
  font-size: clamp(26px, 5.5vw, 48px);
  font-weight: 700; letter-spacing: -0.03em;
  color: var(--ink3); padding: 10px 0;
  border-bottom: 1px solid var(--line);
  display: block;
  opacity: 0; transform: translateY(20px);
  transition: color .25s,
              opacity .4s var(--ease),
              transform .4s var(--ease),
              padding-left .3s var(--ease);
}
.nav-drawer.open .drawer-link { opacity: 1; transform: none; }
.nav-drawer.open .drawer-link:nth-child(1) { transition-delay: .05s; }
.nav-drawer.open .drawer-link:nth-child(2) { transition-delay: .10s; }
.nav-drawer.open .drawer-link:nth-child(3) { transition-delay: .15s; }
.nav-drawer.open .drawer-link:nth-child(4) { transition-delay: .20s; }
.nav-drawer.open .drawer-link:nth-child(5) { transition-delay: .25s; }
.nav-drawer.open .drawer-link:nth-child(6) { transition-delay: .30s; }
.drawer-link:hover { color: var(--ink); padding-left: 10px; }

.drawer-book {
  margin-top: 32px; align-self: flex-start;
  opacity: 0; transform: translateY(20px);
  transition: opacity .4s var(--ease) .36s, transform .4s var(--ease) .36s,
              background .2s, box-shadow .3s var(--ease);
}
.nav-drawer.open .drawer-book { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE — 768px tablet
   ============================================================ */
@media (max-width: 768px) {
  .action-hd { grid-template-columns: 1fr; gap: 12px; }
  .action-clock { padding-top: 12px; border-top: 1px solid var(--line2); }
  .makers-grid { grid-template-columns: 1fr; gap: 48px; }
  .mfr-offer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — 640px mobile
   ============================================================ */
@media (max-width: 640px) {
  :root { --gut: clamp(16px, 5vw, 22px); }

  /* Nav */
  .nav > .btn.btn-acc { display: none; }

  /* Hero */
  .hero { padding-top: clamp(68px, 14vw, 90px); padding-right: var(--gut); }
  .hero-main { padding: clamp(24px, 5vw, 40px) var(--gut); }
  .hero-h1 { font-size: clamp(32px, 9.5vw, 54px); }
  .hero-sub { max-width: 100%; font-size: 12px; }
  .hero-map-wrap { height: 280px; max-height: 280px; }
  #sf-map { min-height: 280px; }

  /* Hero stats — 2×2 grid */
  .hero-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    overflow: hidden;
    align-self: stretch;
  }
  .hstat-sep { display: none; }
  .hstat { border-right: 1px solid var(--line2); border-bottom: 1px solid var(--line2); padding: 8px 10px; }
  /* DOM order: hstat(1) sep(2) hstat(3) sep(4) hstat(5) sep(6) hstat(7) */
  /* Col 2 items → no right border */
  .hstat:nth-child(3), .hstat:nth-child(7) { border-right: none; }
  /* Row 2 items → no bottom border */
  .hstat:nth-child(5), .hstat:nth-child(7) { border-bottom: none; }
  .hstat-n { font-size: 15px; }
  .hstat-l { font-size: 8px; }
  .hero-trust { font-size: 9px; flex-wrap: wrap; line-height: 1.6; }

  /* Why */
  .why-grid { flex-direction: column; align-items: stretch; }
  .why-op { text-align: center; padding: 0; font-size: 24px; }
  .why-card { min-width: auto; }
  .why-num { font-size: clamp(28px, 8vw, 42px); }

  /* Timeline */
  .tl-card { width: 210px; padding: 14px 14px 12px; }
  .tlc-time { font-size: 13px; }
  .tlc-name { font-size: 14px; }
  .tlc-sum-num { font-size: 34px; }

  /* Pricing */
  .price-num { font-size: clamp(68px, 22vw, 110px); }
  .pricing-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Manufacturers */
  .mfr-offer-grid { grid-template-columns: 1fr; }
  .mfr-loi { flex-direction: column; gap: 16px; }

  /* Privacy */
  .privacy-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-block h2 { font-size: clamp(38px, 13vw, 68px); }
  .wl { max-width: 100%; }

  /* Footer */
  .footer-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-links { flex-wrap: wrap; gap: 12px; }
}

/* ============================================================
   RESPONSIVE — 420px small phones
   ============================================================ */
@media (max-width: 420px) {
  .hero-h1 { font-size: clamp(28px, 10.5vw, 38px); }
  .hero-actions .btn { font-size: 10px; padding: 10px 14px; }
  .hero-map-wrap { height: 240px; max-height: 240px; }
  #sf-map { min-height: 240px; }

  .tl-card { width: 180px; padding: 12px 12px 10px; }
  .tlc-time { font-size: 12px; }
  .tlc-sum-num { font-size: 28px; }
  .tl-conn { width: 30px; }

  .price-num { font-size: clamp(56px, 22vw, 90px); }
  .why-num { font-size: clamp(26px, 9.5vw, 38px); }

  .cta-block h2 { font-size: clamp(32px, 14vw, 52px); }
}

/* ============================================================
   TOUCH — disable problematic hover transforms
   ============================================================ */
@media (hover: none) {
  .task:hover,
  .mfr-card:hover,
  .prv-card:hover,
  .why-card:hover,
  .tl-card:hover { transform: none !important; box-shadow: none !important; }
  .btn:hover { transform: none !important; box-shadow: none !important; }
}

/* ============================================================
   ENHANCED ANIMATIONS — clip-path initial states (set by JS)
   ============================================================ */
.shot-fig { will-change: clip-path; }
.task, .mfr-card, .prv-card { will-change: transform, opacity; }
