/* ============================================================
   LensHaus — pro gear rental
   Cool light, technical, mono as a material. Safety-orange signal.
   ============================================================ */

:root {
  --paper: #f4f5f2;
  --card: #ffffff;
  --ink: #14171a;
  --ink-soft: #41464d;
  --muted: #79808a;
  --line: #e3e6e1;
  --line-2: #d2d6d0;
  --accent: #ff5400;
  --accent-soft: #fff1ea;
  --green: #1f9d55;
  --low: #c98a1b;
  --out: #9aa0a8;

  --maxw: 1260px;
  --gut: clamp(20px, 5vw, 56px);
  --r: 14px;

  --display: "Archivo", "Helvetica Neue", sans-serif;
  --body: "IBM Plex Sans", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body); background: var(--paper); color: var(--ink);
  line-height: 1.6; font-size: 16.5px; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
.mono { font-family: var(--mono); }
.dim { color: var(--muted); }
.accent { color: var(--accent); }
.green { color: var(--green); }
.low { color: var(--low); }
.out { color: var(--out); }
.hide-sm { }
::selection { background: var(--accent); color: #fff; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; font-weight: 600;
}
.skip-link:focus { left: 0; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }

h1, h2, h3 { font-family: var(--display); letter-spacing: -0.025em; line-height: 1.04; }
em { font-style: normal; color: var(--accent); }

/* ============================== ANNOUNCE ============================== */
.announce { background: var(--ink); color: #fff; font-size: 12.5px; }
.announce-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; height: 36px; }
.announce .mono { letter-spacing: .03em; }
.announce .tick { display: inline-block; width: 7px; height: 7px; background: var(--accent); margin-right: 7px; vertical-align: middle; }
.announce .accent { font-weight: 600; }

/* ============================== HEADER ============================== */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(244,245,242,0.85);
  backdrop-filter: blur(12px) saturate(140%); -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid transparent; transition: border-color .3s;
}
.site-header[data-scrolled="true"] { border-bottom-color: var(--line); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-name { font-family: var(--display); font-weight: 800; font-size: 18px; letter-spacing: .02em; }
.brand-name b { font-weight: 800; color: var(--accent); }
.brand-aperture {
  width: 26px; height: 26px; border-radius: 50%; border: 2.5px solid var(--ink);
  position: relative; flex-shrink: 0;
}
.brand-aperture::before {
  content: ""; position: absolute; inset: 4px; border-radius: 50%;
  background:
    conic-gradient(from 0deg, var(--ink) 0 30deg, transparent 30deg 60deg,
      var(--ink) 60deg 90deg, transparent 90deg 120deg,
      var(--ink) 120deg 150deg, transparent 150deg 180deg,
      var(--ink) 180deg 210deg, transparent 210deg 240deg,
      var(--ink) 240deg 270deg, transparent 270deg 300deg,
      var(--ink) 300deg 330deg, transparent 330deg 360deg);
  -webkit-mask: radial-gradient(circle, transparent 26%, #000 27%);
          mask: radial-gradient(circle, transparent 26%, #000 27%);
}
.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav a:not(.nav-cta):not(.ghost) {
  font-size: 15px; font-weight: 500; color: var(--ink-soft); position: relative; transition: color .2s;
}
.primary-nav a:not(.nav-cta):not(.ghost):hover { color: var(--ink); }
.primary-nav a:not(.nav-cta):not(.ghost):hover::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px; background: var(--accent);
}
.primary-nav .ghost { font-size: 15px; font-weight: 500; color: var(--ink-soft); }
.nav-cta {
  background: var(--ink); color: #fff; font-weight: 600; font-size: 14.5px;
  padding: 11px 18px; border-radius: 8px; transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }
.menu-toggle { display: none; }

/* ============================== BUTTONS ============================== */
.btn {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--body);
  font-weight: 600; font-size: 15.5px; padding: 13px 22px; border-radius: 8px;
  cursor: pointer; border: 1.5px solid transparent; transition: all .2s; white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #e64800; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(255,84,0,.3); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); background: var(--card); }
.btn-lg { padding: 16px 28px; font-size: 16.5px; }
.btn span { transition: transform .2s; }
.btn:hover span { transform: translateX(4px); }

/* ============================== HERO ============================== */
.hero { padding: clamp(48px, 7vh, 76px) 0 clamp(60px, 8vh, 92px); border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.eyebrow { font-size: 12.5px; letter-spacing: .12em; color: var(--accent); font-weight: 600; margin-bottom: 22px; }
h1 { font-size: clamp(42px, 6vw, 72px); font-weight: 800; margin-bottom: 22px; }
.hero-lede { font-size: clamp(17px, 1.7vw, 19px); color: var(--ink-soft); max-width: 46ch; margin-bottom: 28px; }

.search {
  display: flex; align-items: center; gap: 8px; background: var(--card);
  border: 1.5px solid var(--line-2); border-radius: 10px; padding: 7px 7px 7px 16px;
  max-width: 520px; margin-bottom: 26px; transition: border-color .2s, box-shadow .2s;
}
.search:focus-within { border-color: var(--ink); box-shadow: 0 0 0 4px rgba(20,23,26,.06); }
.search svg { color: var(--muted); flex-shrink: 0; }
.search input {
  flex: 1; border: none; outline: none; font-family: var(--mono); font-size: 14px;
  color: var(--ink); background: transparent; padding: 8px 0; min-width: 0;
}
.search input::placeholder { color: var(--muted); }
.search .btn { padding: 10px 18px; font-size: 14.5px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 13px; }
.hero-trust li { display: flex; align-items: center; gap: 8px; color: var(--ink-soft); }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot.green { background: var(--green); }

/* ----- spec card ----- */
.spec-card {
  background: var(--card); border: 1.5px solid var(--line-2); border-radius: var(--r);
  overflow: hidden; box-shadow: 0 30px 60px -30px rgba(20,23,26,.18);
}
.spec-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 16px; font-size: 11.5px; letter-spacing: .06em;
  border-bottom: 1px dashed var(--line-2); background: #fafbfa;
}
.spec-head .stock { color: var(--green); font-weight: 600; }
.spec-stage {
  position: relative; height: 240px; display: grid; place-items: center;
  background:
    linear-gradient(var(--paper),var(--paper)),
    linear-gradient(45deg, transparent 49.3%, var(--line) 49.3% 50.7%, transparent 50.7%);
  background-size: auto, 16px 16px; background-blend-mode: multiply;
}
.reg { position: absolute; width: 14px; height: 14px; }
.reg::before, .reg::after { content: ""; position: absolute; background: var(--accent); }
.reg::before { width: 14px; height: 2px; top: 6px; }
.reg::after { width: 2px; height: 14px; left: 6px; }
.reg-tl { top: 12px; left: 12px; } .reg-tr { top: 12px; right: 12px; }
.reg-bl { bottom: 12px; left: 12px; } .reg-br { bottom: 12px; right: 12px; }

/* CSS camera */
.camera { position: relative; width: 230px; height: 160px; }
.cam-body {
  position: absolute; right: 0; top: 30px; width: 150px; height: 96px;
  background: #1d2128; border-radius: 10px; box-shadow: 0 6px 0 -2px #11141a, 0 14px 30px rgba(0,0,0,.25);
}
.cam-grip { position: absolute; right: -10px; top: 14px; width: 26px; height: 70px; background: #14171c; border-radius: 4px 8px 8px 4px; }
.cam-prism { position: absolute; top: -16px; left: 30px; width: 54px; height: 20px; background: #14171c; border-radius: 5px 5px 0 0; }
.cam-dial { position: absolute; top: -10px; right: 16px; width: 22px; height: 22px; border-radius: 50%; background: #2a2f37; border: 2px solid #0d0f13; }
.cam-shutter { position: absolute; top: -7px; right: 44px; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px #14171c; }
.cam-logo { position: absolute; bottom: 10px; left: 16px; color: #6b7280; font-size: 12px; font-weight: 600; letter-spacing: .1em; }
.cam-lens {
  position: absolute; left: 6px; top: 44px; width: 120px; height: 120px;
}
.lens-ring { position: absolute; border-radius: 50%; }
.lens-ring.r1 { inset: 0; background: linear-gradient(135deg,#3a3f48,#191c21); }
.lens-ring.r2 { inset: 14px; background: #0d0f13; }
.lens-ring.r3 { inset: 26px; background: radial-gradient(circle at 35% 30%, #2b3138, #0a0c0f); border: 2px solid #23272e; }
.lens-glass {
  position: absolute; inset: 38px; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(120,200,255,.55), rgba(20,40,70,.2) 40%, rgba(5,10,20,.9) 75%);
  box-shadow: inset 0 0 18px rgba(0,0,0,.7);
}

.spec-body { padding: 18px 18px 20px; }
.spec-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.spec-grid dt { font-size: 11px; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
.spec-grid dd { font-size: 13.5px; color: var(--ink); font-weight: 500; margin-top: 2px; }
.spec-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.rate-price { font-family: var(--display); font-weight: 800; font-size: 28px; letter-spacing: -.02em; }
.rate-price span { font-size: 14px; color: var(--muted); font-weight: 500; }
.rate-sub { display: block; font-size: 11.5px; color: var(--muted); margin-top: 2px; }

/* ============================== STAT BAND ============================== */
.stat-band { background: var(--ink); color: #fff; }
.stat-row { display: grid; grid-template-columns: repeat(5, 1fr); }
.stat { padding: 30px 20px; border-right: 1px solid rgba(255,255,255,.08); text-align: center; }
.stat:last-child { border-right: none; }
.stat b { font-family: var(--display); font-weight: 800; font-size: clamp(28px, 3.4vw, 42px); display: block; line-height: 1; }
.stat .unit { color: var(--accent); }
.stat span { font-size: 12px; color: rgba(255,255,255,.55); display: block; margin-top: 8px; letter-spacing: .03em; }

/* ============================== SECTION HEAD ============================== */
section { position: relative; }
.section-head { margin-bottom: 44px; }
.section-head.row { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; }
.kicker { font-size: 12px; letter-spacing: .1em; color: var(--accent); font-weight: 600; margin-bottom: 16px; }
h2 { font-size: clamp(32px, 4.4vw, 50px); font-weight: 800; }

/* ============================== HOW / FLOW ============================== */
.how { padding: clamp(70px, 9vh, 110px) 0; }
.flow {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1.5px solid var(--line-2); border-radius: var(--r); overflow: hidden; background: var(--card);
  counter-reset: step;
}
.flow-step {
  padding: 32px 26px; border-right: 1px solid var(--line); position: relative;
  transition: background .3s;
}
.flow-step:last-child { border-right: none; }
.flow-step:hover { background: var(--accent-soft); }
.flow-num { font-size: 13px; letter-spacing: .1em; color: var(--accent); font-weight: 600; }
.flow-step h3 { font-size: 24px; font-weight: 700; margin: 14px 0 8px; }
.flow-step p { color: var(--ink-soft); font-size: 15px; }
.flow-meta { display: block; margin-top: 16px; font-size: 12px; color: var(--muted); letter-spacing: .03em; }
.flow-step:not(:last-child)::after {
  content: ""; position: absolute; right: -7px; top: 36px; width: 14px; height: 14px;
  background: var(--card); border-top: 1.5px solid var(--line-2); border-right: 1.5px solid var(--line-2);
  transform: rotate(45deg); z-index: 2;
}

/* ============================== CATALOG ============================== */
.catalog { padding: clamp(70px, 9vh, 110px) 0; background: #eceee9; border-block: 1px solid var(--line); }
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: .02em; font-weight: 500;
  padding: 8px 14px; border-radius: 999px; border: 1.5px solid var(--line-2); background: var(--card);
  color: var(--ink-soft); cursor: pointer; transition: all .2s;
}
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

.gear-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gear-card {
  background: var(--card); border: 1.5px solid var(--line); border-radius: var(--r);
  overflow: hidden; transition: transform .3s, border-color .3s, box-shadow .3s; display: flex; flex-direction: column;
}
.gear-card:hover { transform: translateY(-5px); border-color: var(--ink); box-shadow: 0 20px 40px -20px rgba(20,23,26,.25); }
.gear-card.hide { display: none; }
.gear-media {
  position: relative; height: 180px; display: grid; place-items: center;
  background:
    linear-gradient(#f7f8f5,#f7f8f5),
    linear-gradient(45deg, transparent 49.3%, var(--line) 49.3% 50.7%, transparent 50.7%);
  background-size: auto, 14px 14px; background-blend-mode: multiply;
}
.badge { position: absolute; top: 12px; left: 12px; font-size: 10.5px; letter-spacing: .08em; background: var(--ink); color: #fff; padding: 4px 9px; border-radius: 4px; font-weight: 500; }
.gear-info { padding: 18px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.gear-info h3 { font-size: 17px; font-weight: 700; }
.gear-spec { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 14px; padding-block: 4px; }
.gear-spec dt { font-size: 10.5px; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
.gear-spec dd { font-size: 12.5px; color: var(--ink); margin-top: 1px; }
.gear-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); }
.rate { font-family: var(--display); font-weight: 800; font-size: 22px; }
.rate span { font-size: 13px; color: var(--muted); font-weight: 500; }
.avail { font-size: 11.5px; font-weight: 600; letter-spacing: .03em; }
.catalog-cta { margin-top: 36px; text-align: center; }

/* gear icons (flat) */
.icon { width: 90px; height: 90px; position: relative; }
.icon-lens, .icon-cam { width: 88px; height: 88px; border-radius: 50%; background: linear-gradient(135deg,#3a3f48,#191c21); box-shadow: inset 0 0 0 6px #0d0f13, inset 0 0 0 10px #2a2f37, inset 0 0 20px rgba(0,0,0,.6); }
.icon-lens::after { content:""; position:absolute; inset: 26px; border-radius:50%; background: radial-gradient(circle at 32% 28%, rgba(120,200,255,.5), rgba(20,40,70,.2) 45%, rgba(5,10,20,.9) 78%); }
.icon-cam::after { content:""; position:absolute; inset: 28px; border-radius:50%; background: radial-gradient(circle at 35% 30%, #ff5400, #7a2800 60%, #2a0f00); box-shadow: inset 0 0 12px rgba(0,0,0,.6); }
.icon-dslr { width: 104px; height: 76px; background: #1d2128; border-radius: 10px; position: relative; box-shadow: 0 10px 20px rgba(0,0,0,.2); }
.icon-dslr::before { content:""; position:absolute; top:-12px; left:24px; width:42px; height:16px; background:#14171c; border-radius:4px 4px 0 0; }
.icon-dslr::after { content:""; position:absolute; left:22px; top:18px; width:44px; height:44px; border-radius:50%; background: radial-gradient(circle at 35% 30%, rgba(120,200,255,.5), rgba(20,40,70,.2) 45%, #0a0c0f 78%); box-shadow: inset 0 0 0 5px #2a2f37, inset 0 0 14px rgba(0,0,0,.7); }
.icon-light { width: 96px; height: 96px; border-radius: 12px; background: #191c21; position: relative; box-shadow: 0 10px 22px rgba(0,0,0,.18); overflow: hidden; }
.icon-light::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 50% 40%, rgba(255,210,150,.9), rgba(255,140,40,.3) 50%, transparent 75%); }
.icon-light::after { content:""; position:absolute; inset:0; background:
  repeating-linear-gradient(90deg, rgba(0,0,0,.35) 0 2px, transparent 2px 9px),
  repeating-linear-gradient(0deg, rgba(0,0,0,.35) 0 2px, transparent 2px 9px); opacity:.5; }
.icon-mic { width: 54px; height: 100px; position: relative; }
.icon-mic::before { content:""; position:absolute; top:0; left:50%; transform:translateX(-50%); width:40px; height:74px; background:#1d2128; border-radius:20px; box-shadow: inset 0 0 0 4px #2a2f37; }
.icon-mic::after { content:""; position:absolute; top:10px; left:50%; transform:translateX(-50%); width:24px; height:54px; background: repeating-linear-gradient(0deg, rgba(255,255,255,.18) 0 2px, transparent 2px 6px); border-radius:12px; }
.icon-drone { width: 110px; height: 110px; position: relative; }
.icon-drone::before { content:""; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:46px; height:46px; background:#1d2128; border-radius:10px; box-shadow:0 6px 14px rgba(0,0,0,.2); }
.icon-drone::after { content:""; position:absolute; inset:0; background:
  radial-gradient(circle 18px at 12px 12px, #2a2f37 14px, transparent 15px),
  radial-gradient(circle 18px at calc(100% - 12px) 12px, #2a2f37 14px, transparent 15px),
  radial-gradient(circle 18px at 12px calc(100% - 12px), #2a2f37 14px, transparent 15px),
  radial-gradient(circle 18px at calc(100% - 12px) calc(100% - 12px), #2a2f37 14px, transparent 15px); }
.icon-drone i { position:absolute; }

/* ============================== INSURANCE ============================== */
.insurance { padding: clamp(70px, 9vh, 110px) 0; }
.insurance-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.insurance-copy .lede { font-size: 18px; color: var(--ink-soft); max-width: 46ch; margin: 18px 0 24px; }
.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--ink); }
.chk { width: 22px; height: 22px; border-radius: 6px; background: var(--accent-soft); flex-shrink: 0; position: relative; margin-top: 1px; }
.chk::after { content:""; position:absolute; left:7px; top:3px; width:6px; height:11px; border:solid var(--accent); border-width:0 2.5px 2.5px 0; transform: rotate(45deg); }
.insurance-card { background: var(--ink); color: #fff; border-radius: var(--r); padding: 26px; font-size: 13px; letter-spacing: .03em; box-shadow: 0 30px 60px -30px rgba(20,23,26,.4); }
.ic-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed rgba(255,255,255,.12); }
.ic-row:first-child { padding-top: 0; }
.ic-row .accent { color: var(--accent); font-weight: 600; }
.ic-bar { display: flex; align-items: center; gap: 12px; padding-top: 18px; color: rgba(255,255,255,.7); }
.ic-bar i { flex: 1; height: 6px; background: rgba(255,255,255,.12); border-radius: 3px; position: relative; overflow: hidden; }
.ic-bar i::after { content:""; position:absolute; inset:0; width:100%; background: linear-gradient(90deg, var(--green), #6fd18f); border-radius: 3px; }

/* ============================== QUOTE ============================== */
.quote { padding: clamp(70px, 9vh, 110px) 0; background: var(--ink); color: #fff; }
.quote-inner { max-width: 900px; text-align: center; }
.quote blockquote { font-family: var(--display); font-weight: 600; font-size: clamp(22px, 3vw, 34px); line-height: 1.3; letter-spacing: -.015em; margin-bottom: 28px; }
.cite { display: inline-flex; align-items: center; gap: 14px; font-size: 13px; color: rgba(255,255,255,.6); letter-spacing: .03em; text-align: left; }
.cite strong { color: #fff; }
.cite-ava { width: 44px; height: 44px; border-radius: 8px; background: var(--accent); color: #fff; display:grid; place-items:center; font-family: var(--display); font-weight: 800; font-size: 14px; }

/* ============================== CTA ============================== */
.cta { padding: clamp(70px, 9vh, 110px) 0; }
.cta-inner { text-align: center; max-width: 680px; margin: 0 auto; }
.cta-tick { font-size: 12px; letter-spacing: .1em; color: var(--accent); font-weight: 600; margin-bottom: 16px; }
.cta h2 { margin-bottom: 16px; }
.cta p { color: var(--ink-soft); font-size: 18px; margin-bottom: 30px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ============================== FOOTER ============================== */
.site-footer { background: #101317; color: #fff; padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 2fr; gap: 48px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-aperture { border-color: #fff; }
.footer-brand .brand-aperture::before { background:
  conic-gradient(from 0deg, #fff 0 30deg, transparent 30deg 60deg, #fff 60deg 90deg, transparent 90deg 120deg,
    #fff 120deg 150deg, transparent 150deg 180deg, #fff 180deg 210deg, transparent 210deg 240deg,
    #fff 240deg 270deg, transparent 270deg 300deg, #fff 300deg 330deg, transparent 330deg 360deg); }
.footer-brand p { color: rgba(255,255,255,.5); font-size: 13px; margin-top: 16px; max-width: 34ch; letter-spacing: .02em; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-nav h4 { font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 14px; font-weight: 600; }
.footer-nav a { display: block; color: rgba(255,255,255,.85); font-size: 13.5px; padding: 5px 0; transition: color .2s; letter-spacing: .02em; }
.footer-nav a:hover { color: var(--accent); }
.footer-base { display: flex; justify-content: space-between; padding-top: 22px; font-size: 11.5px; color: rgba(255,255,255,.4); letter-spacing: .05em; }

/* ============================== REVEAL ============================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================== RESPONSIVE ============================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(3) { border-right: none; }
  .stat:nth-child(n+4) { border-top: 1px solid rgba(255,255,255,.08); }
  .gear-grid { grid-template-columns: 1fr 1fr; }
  .insurance-grid { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr 1fr; }
  .flow-step:nth-child(2) { border-right: none; }
  .flow-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .flow-step::after { display: none; }
}
@media (max-width: 760px) {
  .announce .hide-sm { display: none; }
  .announce-row { justify-content: center; gap: 12px; font-size: 11.5px; }
  .primary-nav {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--paper); border-bottom: 1px solid var(--line-2); padding: 16px var(--gut) 26px; gap: 4px;
    transform: translateY(-140%); transition: transform .4s ease; z-index: 90; box-shadow: 0 20px 30px -20px rgba(0,0,0,.2);
  }
  .primary-nav[data-open="true"] { transform: translateY(0); }
  .primary-nav a { padding: 13px 4px; border-bottom: 1px solid var(--line); }
  .primary-nav .ghost { border-bottom: none; }
  .nav-cta { text-align: center; margin-top: 10px; border-bottom: none; }
  .menu-toggle {
    display: flex; flex-direction: column; gap: 5px; width: 44px; height: 44px;
    background: none; border: 1.5px solid var(--line-2); border-radius: 10px; cursor: pointer; align-items: center; justify-content: center;
  }
  .menu-toggle span { width: 20px; height: 2px; background: var(--ink); transition: transform .3s, opacity .3s; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .stat { border-right: 1px solid rgba(255,255,255,.08); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.08); }
  .gear-grid { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; }
  .flow-step { border-right: none; border-bottom: 1px solid var(--line); }
  .flow-step:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-base { flex-direction: column; gap: 6px; text-align: center; }
  .section-head.row { align-items: flex-start; }
  .spec-foot { flex-direction: column; align-items: flex-start; gap: 14px; }
  .spec-foot .btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
