/*
Theme Name: Unsurveilled
Theme URI: https://unsurveilled.co
Author: Unsurveilled
Description: Counter-surveillance equipment store. Custom WooCommerce theme. v0.1 — initial integration test.
Version: 0.3.1
Requires at least: 6.0
Requires PHP: 8.1
License: GPL-2.0-or-later
Text Domain: unsurveilled
*/

/* ==========================================================================
   unsurveilled.co — counter-surveillance equipment
   tactical-technical aesthetic; warm black + hazard amber
   ========================================================================== */

:root {
  /* surfaces */
  --bg: #08080a;
  --bg-1: #0e0e12;
  --bg-2: #14141a;
  --bg-3: #1c1c24;
  --line: #232330;
  --line-2: #2e2e3c;

  /* text */
  --text: #ededea;
  --text-dim: #a4a49c;
  --text-mute: #6a6a72;

  /* accents */
  --amber: #f5a623;
  --amber-2: #ff8a3d;
  --amber-soft: rgba(245, 166, 35, 0.12);
  --red: #e0533c;
  --green: #6ec27b;
  --blue: #6aa6e0;

  /* type */
  --f-display: "Space Grotesk", "Helvetica Neue", system-ui, sans-serif;
  --f-body: "Inter", "Helvetica Neue", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* layout */
  --maxw: 1280px;
  --pad: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--bg); }
body {
  font-family: var(--f-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.005em;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* selection */
::selection { background: var(--amber); color: #000; }

/* type scale */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
}
.eyebrow--mute { color: var(--text-mute); }
.mono { font-family: var(--f-mono); }
.tnum { font-variant-numeric: tabular-nums; }
.label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
}
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0;
}
h1 { font-size: clamp(40px, 6.4vw, 88px); letter-spacing: -0.035em; }
h2 { font-size: clamp(30px, 4.2vw, 56px); letter-spacing: -0.03em; }
h3 { font-size: clamp(20px, 2.2vw, 28px); }
p { margin: 0; }

/* ===== shell ============================================================== */
.shell {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ===== top bar ============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 10, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.topbar__row {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 60px;
}
.topbar__strip {
  border-bottom: 1px solid var(--line);
  background: #050507;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.topbar__strip-row {
  display: flex; justify-content: space-between; align-items: center;
  height: 28px;
}
.topbar__strip .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); margin-right: 8px;
  box-shadow: 0 0 0 3px rgba(110, 194, 123, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
}
.brand__mark {
  width: 22px; height: 22px;
  border: 1.5px solid var(--text);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.brand__mark::before, .brand__mark::after {
  content: "";
  position: absolute;
  background: var(--text);
}
.brand__mark::before {
  /* slash through circle */
  left: -2px; right: -2px; top: 50%;
  height: 1.5px; transform: rotate(-30deg);
}
.brand__mark::after {
  /* crosshair tick */
  left: 50%; top: 4px; bottom: 4px;
  width: 1px; transform: translateX(-50%);
  opacity: 0.4;
}

.nav {
  display: flex; gap: 22px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.nav a:hover { color: var(--amber); }
.topbar__cta {
  margin-left: auto;
  display: flex; align-items: center; gap: 14px;
}

/* ===== buttons ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn--applepay {
  background: #fff;
  color: #000;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 24px;
}
.btn--applepay svg { width: 44px; height: 18px; }
.btn--applepay:hover { background: #f0f0f0; }

.btn--amber {
  background: var(--amber);
  color: #15100a;
}
.btn--amber:hover { background: var(--amber-2); }

.btn--ghost {
  border: 1px solid var(--line-2);
  color: var(--text);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--amber); color: var(--amber); }

.btn--lg { padding: 18px 28px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--sm { padding: 9px 14px; font-size: 12.5px; }

/* ===== hero =============================================================== */
.hero {
  position: relative;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  padding: 72px 0 80px;
  align-items: center;
}
.hero__title {
  margin: 22px 0 26px;
  text-wrap: balance;
}
.hero__title em {
  font-style: normal;
  color: var(--amber);
  font-family: var(--f-mono);
  font-weight: 500;
  letter-spacing: 0;
  font-size: 0.78em;
  display: inline-block;
  vertical-align: 0.15em;
}
.hero__sub {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 46ch;
  margin-bottom: 30px;
  line-height: 1.55;
}
.hero__cta {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px;
}
.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 28px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero__meta strong { color: var(--text); display: block; font-size: 13px; margin-bottom: 4px; }

/* hero scanlines bg */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 80% 30%, rgba(245, 166, 35, 0.07), transparent 70%),
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 3px,
      rgba(255, 255, 255, 0.012) 3px,
      rgba(255, 255, 255, 0.012) 4px
    );
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

/* ===== IR camera demo ===================================================== */
.irdemo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  overflow: hidden;
  background: #000;
  position: relative;
}
.irdemo__panel {
  position: relative;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  border-right: 1px solid var(--line);
}
.irdemo__panel:last-child { border-right: 0; }

.irdemo__hud {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.irdemo__hud-tl, .irdemo__hud-tr, .irdemo__hud-bl, .irdemo__hud-br {
  position: absolute;
  padding: 12px 14px;
}
.irdemo__hud-tl { top: 0; left: 0; color: var(--text-dim); }
.irdemo__hud-tr { top: 0; right: 0; color: var(--text-dim); text-align: right; }
.irdemo__hud-bl { bottom: 0; left: 0; }
.irdemo__hud-br { bottom: 0; right: 0; text-align: right; color: var(--text-dim); }

.irdemo__brackets::before, .irdemo__brackets::after,
.irdemo__brackets > span:first-child::before, .irdemo__brackets > span:first-child::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  border-color: var(--text-dim);
  border-style: solid;
  border-width: 0;
}
.irdemo__brackets::before { top: 10px; left: 10px; border-top-width: 1px; border-left-width: 1px; }
.irdemo__brackets::after { top: 10px; right: 10px; border-top-width: 1px; border-right-width: 1px; }
.irdemo__brackets > span:first-child::before { bottom: 10px; left: 10px; border-bottom-width: 1px; border-left-width: 1px; }
.irdemo__brackets > span:first-child::after { bottom: 10px; right: 10px; border-bottom-width: 1px; border-right-width: 1px; }

.irdemo__status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 8px;
  border-radius: 2px;
  font-weight: 600;
}
.irdemo__status--bad { color: var(--red); border: 1px solid var(--red); background: rgba(224, 83, 60, 0.1); }
.irdemo__status--good { color: var(--green); border: 1px solid var(--green); background: rgba(110, 194, 123, 0.08); }

.irdemo__scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 49%,
    rgba(110, 194, 123, 0.2) 50%,
    transparent 51%,
    transparent 100%
  );
  background-size: 100% 200%;
  animation: scan 4.5s linear infinite;
  pointer-events: none;
  z-index: 4;
}
@keyframes scan {
  from { background-position: 0 -100%; }
  to { background-position: 0 100%; }
}
.irdemo__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.9  0 0 0 0 0.95  0 0 0 0 0.9  0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 3;
}
.irdemo__face-wrap { position: absolute; inset: 0; }
.irdemo__face-wrap svg { width: 100%; height: 100%; display: block; }

.irdemo__caption {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-1);
  border-top: 1px solid var(--line-2);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.irdemo__caption > div { padding: 14px 16px; border-right: 1px solid var(--line); display: flex; align-items: center; gap: 10px; }
.irdemo__caption > div:last-child { border-right: 0; }
.irdemo__caption strong { color: var(--text); font-weight: 500; }

/* ===== sections =========================================================== */
.section {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.section--tight { padding: 64px 0; }
.section__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  margin-bottom: 56px;
  align-items: end;
}
.section__head h2 { text-wrap: balance; }
.section__head p {
  color: var(--text-dim);
  max-width: 56ch;
  font-size: 16px;
}
.section__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-mute);
  margin-bottom: 16px;
}

/* ===== featured product =================================================== */
.feat {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-1);
}
.feat__media {
  position: relative;
  background:
    radial-gradient(circle at 50% 50%, #1a1a22 0%, #08080a 70%);
  aspect-ratio: 1 / 0.95;
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--line);
}
.feat__media .ph-tag {
  position: absolute; top: 16px; left: 16px;
}
.feat__media img, .feat__media .ph-image { width: 70%; max-width: 480px; }
.feat__thumbs {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  display: flex; gap: 8px;
}
.feat__thumbs button {
  width: 56px; height: 56px;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  border-radius: 4px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  display: flex; align-items: center; justify-content: center;
  text-transform: uppercase;
}
.feat__thumbs button.is-active { border-color: var(--amber); color: var(--amber); }

.feat__body { padding: 40px 40px 36px; }
.feat__title { margin: 12px 0 8px; }
.feat__sub { color: var(--text-dim); margin-bottom: 24px; max-width: 44ch; }

.price {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 4px;
}
.price__now { font-family: var(--f-display); font-size: 32px; font-weight: 600; }
.price__was { color: var(--text-mute); text-decoration: line-through; font-size: 16px; }
.price__save {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(110, 194, 123, 0.1);
  padding: 4px 8px;
  border-radius: 2px;
  border: 1px solid rgba(110, 194, 123, 0.3);
}
.price__line { font-family: var(--f-mono); font-size: 12px; color: var(--text-mute); margin-bottom: 22px; }

.specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  margin: 24px 0 28px;
}
.specs > div {
  background: var(--bg-1);
  padding: 14px 16px;
}
.specs .label { margin-bottom: 6px; }
.specs .val { font-family: var(--f-mono); font-size: 13px; color: var(--text); }

.feat__cta { display: grid; gap: 10px; }
.feat__guarantee {
  margin-top: 14px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: flex; flex-wrap: wrap; gap: 14px;
}
.feat__guarantee span::before {
  content: "▸"; color: var(--amber); margin-right: 6px;
}

/* ===== threat landscape ==================================================== */
.threats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.threat {
  background: var(--bg);
  padding: 32px 28px 36px;
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
}
.threat__num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--amber);
  letter-spacing: 0.2em;
}
.threat__title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 4px 0 8px;
}
.threat__body { color: var(--text-dim); font-size: 14.5px; line-height: 1.6; flex: 1; }
.threat__cite {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 18px;
}
.threat__icon {
  width: 48px; height: 48px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-1);
  font-family: var(--f-mono);
  color: var(--amber);
  font-size: 11px;
  letter-spacing: 0.1em;
}

/* ===== field kit ========================================================== */
.kit {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.kit__item {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg-1);
  padding: 0;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.15s ease;
}
.kit__item:hover { border-color: var(--line-2); }
.kit__media {
  aspect-ratio: 1;
  background:
    repeating-linear-gradient(45deg, var(--bg-2) 0 8px, var(--bg-1) 8px 16px);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.kit__media .ph-tag { position: absolute; top: 10px; left: 10px; }
.kit__media-svg { width: 60%; }
.kit__body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.kit__cat {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  text-transform: uppercase;
}
.kit__name { font-family: var(--f-display); font-weight: 600; font-size: 16px; margin: 4px 0; }
.kit__desc { font-size: 12.5px; color: var(--text-dim); flex: 1; line-height: 1.5; }
.kit__foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.kit__price { font-family: var(--f-mono); font-size: 14px; font-weight: 500; }
.kit__add {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--line-2);
  padding: 6px 10px;
  border-radius: 3px;
}
.kit__add:hover { color: var(--amber); border-color: var(--amber); }

/* ===== lab data =========================================================== */
.lab {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.chart {
  border: 1px solid var(--line-2);
  border-radius: 6px;
  background: var(--bg-1);
  padding: 28px;
}
.chart__head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.chart__head strong { color: var(--text); }
.chart__svg { width: 100%; height: 240px; }

.lab__list { display: flex; flex-direction: column; gap: 18px; }
.lab__row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.lab__row:last-child { border-bottom: 0; }
.lab__nm { font-family: var(--f-mono); font-size: 13px; color: var(--amber); font-weight: 500; }
.lab__bar { height: 6px; background: var(--bg-2); border-radius: 1px; overflow: hidden; }
.lab__bar > span { display: block; height: 100%; background: linear-gradient(90deg, var(--amber-2), var(--amber)); }
.lab__pct { font-family: var(--f-mono); font-size: 13px; color: var(--text); font-weight: 500; }
.lab__title { font-family: var(--f-display); margin-bottom: 14px; }
.lab__caption { font-size: 14px; color: var(--text-dim); margin-bottom: 22px; max-width: 46ch; }
.lab__pdf {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid var(--amber);
  padding: 10px 14px;
  border-radius: 3px;
  display: inline-flex; gap: 10px; align-items: center;
}

/* ===== reviews / press ==================================================== */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review {
  border: 1px solid var(--line);
  background: var(--bg-1);
  border-radius: 6px;
  padding: 26px 26px 24px;
  display: flex; flex-direction: column;
  gap: 14px;
}
.review__stars {
  color: var(--amber);
  letter-spacing: 2px;
  font-size: 13px;
}
.review__body { font-size: 15px; line-height: 1.55; flex: 1; }
.review__by {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.review__by strong { color: var(--text); font-weight: 500; }
.review__verified {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green); margin-left: 10px;
}
.review__verified::before {
  content: "✓"; font-weight: bold;
}

/* ===== faq ================================================================ */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq__q {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "＋";
  font-family: var(--f-mono);
  color: var(--amber);
  font-size: 18px;
  transition: transform 0.15s ease;
}
.faq__item[open] .faq__q::after { content: "－"; }
.faq__a {
  margin-top: 14px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  max-width: 70ch;
}

/* ===== express checkout drawer (slide up) ================================ */
.drawer {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: linear-gradient(180deg, rgba(8,8,10,0.96), rgba(8,8,10,0.99));
  border-top: 1px solid var(--amber);
  box-shadow: 0 -20px 40px rgba(0,0,0,0.5);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  backdrop-filter: blur(20px);
}
.drawer.is-open { transform: translateY(0); }
.drawer__row {
  display: flex; align-items: center; gap: 18px;
  padding: 14px 0;
}
.drawer__thumb {
  width: 56px; height: 56px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
}
.drawer__name { font-family: var(--f-display); font-weight: 600; font-size: 15px; }
.drawer__price { font-family: var(--f-mono); color: var(--text-dim); font-size: 12px; }
.drawer__cta { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.drawer__close {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-mute);
  padding: 8px 12px;
}

/* mobile sticky apple pay */
.sticky-mobile {
  display: none;
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 55;
}

/* ===== footer ============================================================= */
.footer { padding: 64px 0 32px; background: var(--bg); }
.footer__cols {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 56px;
}
.footer__col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer__col a {
  display: block;
  color: var(--text-dim);
  font-size: 14px;
  padding: 5px 0;
}
.footer__col a:hover { color: var(--amber); }
.footer__brand p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
  max-width: 36ch;
  margin-top: 14px;
}
.footer__legal {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  flex-wrap: wrap; gap: 16px;
}
.pay-row { display: flex; gap: 8px; align-items: center; }
.pay-chip {
  height: 22px; padding: 0 8px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 3px;
  display: flex; align-items: center;
  font-family: var(--f-mono);
  font-size: 9.5px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

/* ===== placeholder tag ==================================================== */
.ph-tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  background: rgba(0,0,0,0.4);
  border: 1px dashed var(--line-2);
  padding: 4px 8px;
  border-radius: 2px;
  z-index: 2;
}
.ph-image {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  display: block;
}

/* ===== tweaks panel ======================================================= */
.tweaks {
  position: fixed;
  bottom: 16px; right: 16px;
  z-index: 100;
  width: 280px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 6px;
  padding: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  display: none;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.tweaks.is-open { display: block; }
.tweaks__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-mute);
}
.tweaks__head strong { color: var(--amber); font-weight: 500; }
.tweaks__close { color: var(--text-mute); cursor: pointer; }
.tweaks__row { margin-bottom: 14px; }
.tweaks__row label { display: block; color: var(--text-mute); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.16em; font-size: 10px; }
.tweaks__seg { display: flex; gap: 4px; background: var(--bg); padding: 3px; border-radius: 4px; border: 1px solid var(--line); }
.tweaks__seg button {
  flex: 1; padding: 7px 8px; font-size: 11px; color: var(--text-dim);
  font-family: var(--f-mono); letter-spacing: 0.06em; border-radius: 3px;
  text-transform: uppercase;
}
.tweaks__seg button.is-active { background: var(--amber); color: #15100a; }
.tweaks__swatches { display: flex; gap: 8px; }
.tweaks__sw { width: 28px; height: 28px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; }
.tweaks__sw.is-active { border-color: var(--text); }

/* ===== responsive ========================================================= */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; padding: 48px 0; }
  .section__head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 36px; }
  .section { padding: 64px 0; }
  .feat { grid-template-columns: 1fr; }
  .feat__media { border-right: 0; border-bottom: 1px solid var(--line); }
  .threats { grid-template-columns: 1fr; }
  .kit { grid-template-columns: repeat(2, 1fr); }
  .lab { grid-template-columns: 1fr; gap: 32px; }
  .reviews { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 30px; }
  .nav { display: none; }
  .topbar__cta .btn:not(.btn--applepay) { display: none; }
  .sticky-mobile { display: block; }
  body { padding-bottom: 80px; }
}
@media (max-width: 560px) {
  .kit { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .hero__meta { grid-template-columns: 1fr; gap: 14px; }
  .topbar__strip-row .topbar__strip-end { display: none; }
}

/* ===== utility ============================================================ */
.row { display: flex; align-items: center; gap: 12px; }
.divider {
  height: 1px; background: var(--line); margin: 0;
}
.amber { color: var(--amber); }
.dim { color: var(--text-dim); }
.mute { color: var(--text-mute); }
.kbd {
  font-family: var(--f-mono); font-size: 10px;
  border: 1px solid var(--line-2); border-radius: 2px;
  padding: 2px 6px; color: var(--text-dim);
}

/* ============================================================
   INLINE STYLES from index.html / product.html / defeat-flock.html
   ============================================================ */

/* ===== from index.html ===== */
/* ===== Faraday demo (replaces IR demo) ===== */
.fdemo { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line-2); border-radius: 6px; overflow: hidden; background: #000; position: relative; }
.fdemo__panel { position: relative; aspect-ratio: 1 / 1.05; overflow: hidden; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display:flex; align-items:center; justify-content:center; padding: 20px; }
.fdemo__panel:nth-child(2n) { border-right: 0; }
.fdemo__panel:nth-last-child(-n+2) { border-bottom: 0; }
.fdemo__panel--map { background: radial-gradient(circle at 60% 40%, #15161a, #08080a); }
.fdemo__panel--radios { background: linear-gradient(180deg, #0d0d12, #08080a); }
.fdemo__panel--map.is-blocked { background: radial-gradient(circle at 60% 40%, #0c0e10, #050507); }
.fdemo__hud { position: absolute; inset: 0; pointer-events: none; font-family: var(--f-mono); font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; }
.fdemo__hud > span { position: absolute; padding: 12px 14px; }
.fdemo__hud-tl { top: 0; left: 0; color: var(--text-dim); }
.fdemo__hud-tr { top: 0; right: 0; color: var(--text-dim); text-align: right; }
.fdemo__hud-bl { bottom: 0; left: 0; }
.fdemo__hud-br { bottom: 0; right: 0; text-align: right; color: var(--text-dim); }
.fdemo__status--bad { color: var(--red); }
.fdemo__status--good { color: var(--green); }

/* mini map svg */
.fmap { width: 100%; height: 100%; max-width: 280px; }
.fmap-grid line { stroke: #1a1d22; stroke-width: 0.5; }
.fmap-road { stroke: #2a2f37; stroke-width: 1.5; fill: none; }
.fmap-pin { fill: var(--red); }
.fmap-pin-stale { fill: var(--text-mute); opacity: 0.4; }
.fmap-pulse { fill: var(--red); opacity: 0.25; animation: fmappulse 1.6s ease-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes fmappulse { 0% { transform: scale(0.6); opacity: 0.5; } 100% { transform: scale(2.4); opacity: 0; } }
.fmap-trail { fill: none; stroke: var(--red); stroke-width: 1.2; stroke-dasharray: 3 3; opacity: 0.7; }
.fmap-trail-stale { stroke: var(--text-mute); opacity: 0.3; }
.fmap-label { font-family: var(--f-mono); font-size: 8.5px; fill: var(--text-dim); letter-spacing: 0.1em; text-transform: uppercase; }

/* radio bars */
.radios { display: flex; flex-direction: column; gap: 14px; width: 100%; max-width: 260px; }
.radios__row { display: grid; grid-template-columns: 56px 1fr 36px; align-items: center; gap: 12px; }
.radios__name { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--text-dim); }
.radios__bar { height: 8px; background: #15161a; border-radius: 2px; overflow: hidden; position: relative; }
.radios__bar span { position: absolute; left: 0; top: 0; bottom: 0; background: linear-gradient(90deg, var(--red), #ff7a5c); }
.radios__bar.zero span { width: 0 !important; }
.radios__bar.zero { background: #0d0d10; }
.radios__val { font-family: var(--f-mono); font-size: 11px; text-align: right; color: var(--red); }
.radios__val.zero { color: var(--green); }
.radios--blocked .radios__name { color: var(--text-mute); }
.radios--blocked .radios__bar { background: #0a0a0c; }
.radios--blocked .radios__bar span { width: 0 !important; }

/* phone illustration */
.phone-ill { width: 64px; height: 110px; border: 2px solid #3a3a44; border-radius: 10px; position: relative; background: linear-gradient(180deg, #141519, #0a0a0c); flex-shrink: 0; }
.phone-ill::before { content:""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 22px; height: 4px; border-radius: 2px; background: #2a2a32; }
.phone-ill.is-bagged { border-color: #4a3018; box-shadow: 0 0 0 4px #1a120a, 0 0 0 5px #2a1c10, inset 0 0 30px rgba(0,0,0,0.5); opacity: 0.5; }

.fdemo__caption {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px;
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mute);
}
.fdemo__caption span:first-child { color: var(--amber); margin-right: 6px; }

/* hero meta tweaks */
.hero__meta { grid-template-columns: repeat(4, auto); gap: 22px; }

/* ===== Faraday product card layout (homepage featured) ===== */
.feat__media-fb { background: radial-gradient(circle at 50% 40%, #1c1a16 0%, #0a0a0c 70%); display: flex; align-items: center; justify-content: center; }

/* Faraday SVG illustration */
.fb-illus { width: 80%; max-width: 360px; }

/* ===== Coming-soon tile ===== */
.kit__item--soon { position: relative; border-color: var(--amber); }
.kit__item--soon .kit__media { background: linear-gradient(135deg, rgba(245,166,35,0.05), transparent 60%); border-bottom-color: rgba(245,166,35,0.3); }
.kit__soon-badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  font-family: var(--f-mono); font-size: 9.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--amber); color: #15100a; padding: 5px 9px; border-radius: 3px;
}
.waitlist { display: grid; gap: 8px; margin-top: 10px; padding-top: 12px; border-top: 1px solid var(--line); }
.waitlist__row { display: grid; grid-template-columns: 1fr auto; gap: 6px; }
.waitlist__input {
  background: var(--bg); border: 1px solid var(--line-2); border-radius: 4px;
  padding: 9px 11px; font-family: var(--f-body); font-size: 13px; color: var(--text);
  min-width: 0;
}
.waitlist__input:focus { outline: none; border-color: var(--amber); }
.waitlist__btn {
  background: var(--amber); color: #15100a;
  font-family: var(--f-display); font-weight: 600; font-size: 12px;
  padding: 9px 14px; border-radius: 4px; white-space: nowrap;
}
.waitlist__btn:hover { background: var(--amber-2); }
.waitlist__micro {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em;
  color: var(--text-mute); text-transform: uppercase; line-height: 1.5;
  display: flex; justify-content: space-between; gap: 8px; flex-wrap: wrap;
}
.waitlist__count { color: var(--amber); }
.waitlist__success { color: var(--green); font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; padding: 8px 0; }

@media (max-width: 760px) {
  .hero__meta { grid-template-columns: repeat(2, auto); gap: 14px; }
}
.cway { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid var(--line-2); border-radius: 999px; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }
.cway span { width: 14px; height: 14px; border-radius: 50%; background: var(--swatch); border: 1px solid rgba(255,255,255,0.1); }
.cway.is-active { border-color: var(--amber); color: var(--text); }

/* ===== from product.html ===== */
.pdp { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; padding: 48px 0 80px; align-items: start; }
.pdp__gallery { position: sticky; top: 110px; }
.pdp__main {
  aspect-ratio: 1 / 0.95; background: radial-gradient(circle at 50% 50%, #1a1a22 0%, #08080a 70%);
  border: 1px solid var(--line-2); border-radius: 6px; display: flex; align-items: center; justify-content: center; position: relative;
}
.pdp__main .ph-tag { position: absolute; top: 16px; left: 16px; }
.pdp__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 12px; }
.pdp__thumbs button {
  aspect-ratio: 1; border: 1px solid var(--line-2); border-radius: 4px; background: var(--bg-1);
  font-family: var(--f-mono); font-size: 10px; color: var(--text-mute); letter-spacing: 0.16em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; line-height: 1.3; text-align: center;
}
.pdp__thumbs button.is-active { border-color: var(--amber); color: var(--amber); }
.pdp__bread { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 18px; }
.pdp__bread a:hover { color: var(--amber); }
.pdp__title { margin: 8px 0 14px; font-size: clamp(34px, 4vw, 48px); }
.pdp__sub { color: var(--text-dim); margin-bottom: 24px; max-width: 50ch; line-height: 1.55; }

.opt { margin: 32px 0; }
.opt__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.opt__lbl { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute); font-weight: 500; }
.opt__val { font-family: var(--f-display); font-size: 15px; color: var(--text); font-weight: 500; }
.opt__choices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.opt__choice {
  position: relative;
  border: 1.5px solid var(--line-2); background: var(--bg-1); border-radius: 8px;
  padding: 16px 16px 14px;
  font-family: var(--f-display); font-size: 15px; font-weight: 500; text-align: left; color: var(--text);
  cursor: pointer; transition: border-color .15s, background .15s;
  min-height: 64px;
}
.opt__choice:hover:not([disabled]) { border-color: var(--text-mute); }
.opt__choice.is-active {
  border-color: var(--amber);
  background: linear-gradient(180deg, rgba(245,166,35,0.08), rgba(245,166,35,0.02));
  box-shadow: 0 0 0 3px rgba(245,166,35,0.10);
}
.opt__choice.is-active::after {
  content: ""; position: absolute; top: 10px; right: 10px;
  width: 16px; height: 16px; border-radius: 50%;
  background-image: linear-gradient(135deg, var(--amber), var(--amber-2));
}
.opt__choice.is-active::before {
  content: ""; position: absolute; top: 14px; right: 14px; z-index: 1;
  width: 8px; height: 4px; border: 1.5px solid #15100a; border-top: 0; border-right: 0;
  transform: rotate(-45deg);
}
.opt__choice .opt__small { display: block; font-family: var(--f-mono); font-size: 11px; color: var(--text-mute); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; font-weight: 400; }

.cway-swatch { display: block; width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.12); margin-bottom: 12px; }
.cway-swatch--black { background: linear-gradient(135deg, #2a2a32, #0a0a0c); }
.cway-swatch--coyote { background: linear-gradient(135deg, #b89368, #7a5e3a); }
.cway-swatch--ranger { background: linear-gradient(135deg, #5a6b45, #2f3a25); }

/* pack picker */
.opt__choices--packs { display: grid; grid-template-columns: 1fr; gap: 10px; }
.opt__choices--packs .opt__choice {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 18px; align-items: center;
  padding: 18px 56px 18px 20px; min-height: 84px;
}
.opt__choices--packs .opt__choice[data-pack="3"] {
  border-color: rgba(245,166,35,0.55);
  background: linear-gradient(180deg, rgba(245,166,35,0.04), rgba(245,166,35,0.01));
}
.pack__count { font-family: var(--f-display); font-size: 38px; font-weight: 600; line-height: 1; letter-spacing: -0.04em; color: var(--text); display: flex; align-items: baseline; gap: 4px; }
.pack__count-num { font-variant-numeric: tabular-nums; }
.pack__count-x { font-size: 22px; color: var(--text-mute); font-weight: 500; }
.pack__name { font-family: var(--f-display); font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 4px; letter-spacing: -0.01em; }
.pack__sub { font-family: var(--f-body); font-size: 13.5px; color: var(--text-dim); line-height: 1.4; }
.pack__price { text-align: right; min-width: 120px; }
.pack__price-now { font-family: var(--f-display); font-size: 22px; font-weight: 600; letter-spacing: -0.02em; color: var(--text); display: block; line-height: 1; }
.pack__price-was { font-family: var(--f-mono); font-size: 12px; color: var(--text-mute); text-decoration: line-through; display: block; margin-top: 4px; }
.pack__price-per { font-family: var(--f-mono); font-size: 11px; color: var(--text-mute); letter-spacing: 0.06em; text-transform: uppercase; display: block; margin-top: 6px; }
.pack__save {
  display: inline-block; margin-top: 6px;
  font-family: var(--f-mono); font-size: 10.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: #0a1f0e; background: var(--green); padding: 3px 8px; border-radius: 3px;
}
.pack__save--big { background: var(--amber); color: #15100a; }
.pack__ribbon {
  position: absolute; top: -1px; right: 60px;
  font-family: var(--f-mono); font-size: 9.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--amber); color: #15100a;
  padding: 4px 10px 4px 10px; border-radius: 0 0 4px 4px; line-height: 1;
}
.opt__choices--packs .opt__choice.is-active::after { top: 50%; right: 18px; transform: translateY(-50%); width: 22px; height: 22px; }
.opt__choices--packs .opt__choice.is-active::before { top: 50%; right: 23px; margin-top: -3px; width: 11px; height: 5px; }
.opt__choices--packs .opt__choice:not(.is-active)::after {
  content: ""; position: absolute; top: 50%; right: 18px; transform: translateY(-50%);
  width: 22px; height: 22px; border: 1.5px solid var(--line-2); border-radius: 50%;
}
.pack__note { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mute); margin-top: 14px; display: flex; align-items: center; gap: 8px; }
.pack__note::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(110,194,123,0.18); }

.tabs { margin-top: 56px; border-top: 1px solid var(--line); padding-top: 32px; }
.tabs__nav { display: flex; gap: 28px; margin-bottom: 28px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.tabs__nav button {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute);
  padding: 14px 0; border-bottom: 2px solid transparent;
}
.tabs__nav button.is-active { color: var(--amber); border-color: var(--amber); }
.tabs__panel { display: none; }
.tabs__panel.is-active { display: block; }
.tabs__grid { display: grid; grid-template-columns: 220px 1fr; gap: 16px 32px; font-size: 14.5px; line-height: 1.6; }
.tabs__grid dt { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mute); padding-top: 4px; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.tabs__grid dd { margin: 0; color: var(--text); border-bottom: 1px solid var(--line); padding-bottom: 14px; }

.upsell { background: var(--bg-1); border: 1px solid var(--line); border-radius: 6px; padding: 22px; margin-top: 28px; }
.upsell__title { font-family: var(--f-display); font-weight: 600; margin-bottom: 14px; font-size: 16px; display: flex; justify-content: space-between; align-items: center; }
.upsell__title .label { margin: 0; }
.upsell__row { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-top: 1px solid var(--line); }
.upsell__thumb { width: 52px; height: 52px; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.upsell__name { font-family: var(--f-display); font-size: 14px; font-weight: 500; }
.upsell__sub { font-family: var(--f-mono); font-size: 11px; color: var(--text-mute); letter-spacing: 0.1em; }
.upsell__pr { margin-left: auto; font-family: var(--f-mono); font-size: 13px; }
.upsell__add { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); border: 1px solid var(--amber); padding: 6px 10px; border-radius: 3px; }

@media (max-width: 980px) {
  .pdp { grid-template-columns: 1fr; gap: 32px; }
  .pdp__gallery { position: static; }
  .tabs__grid { grid-template-columns: 1fr; gap: 4px; }
  .tabs__grid dt { border-bottom: 0; padding-bottom: 4px; }
}

/* ===== from defeat-flock.html ===== */
.guide { padding: 56px 0 32px; }
.guide__head { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: end; padding-bottom: 56px; border-bottom: 1px solid var(--line);}
.guide__head h1 { font-size: clamp(40px, 5.4vw, 72px); }
.guide__lede { color: var(--text-dim); font-size: 17px; line-height: 1.6; max-width: 50ch; }
.guide__meta { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mute); display: flex; gap: 24px; padding-top: 18px; border-top: 1px solid var(--line); margin-top: 24px; }
.guide__meta strong { color: var(--text); font-weight: 500; }

.steps { display: grid; grid-template-columns: 1fr; gap: 0; }
.step { display: grid; grid-template-columns: 100px 1fr 360px; gap: 40px; padding: 48px 0; border-bottom: 1px solid var(--line); align-items: start; }
.step__num { font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.18em; color: var(--amber); padding-top: 6px; }
.step__title { font-family: var(--f-display); font-weight: 600; font-size: 28px; letter-spacing: -0.02em; margin-bottom: 14px; line-height: 1.1; text-wrap: balance; }
.step__body { color: var(--text-dim); line-height: 1.65; font-size: 15.5px; max-width: 56ch; }
.step__body p + p { margin-top: 14px; }
.step__body strong { color: var(--text); }
.step__cite { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mute); margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); }
.step__cite a { color: var(--amber); }

.gear-card {
  border: 1px solid var(--line-2); background: var(--bg-1); border-radius: 6px; overflow: hidden;
  display: flex; flex-direction: column;
}
.gear-card__media { aspect-ratio: 16 / 10; background: repeating-linear-gradient(45deg, var(--bg-2) 0 8px, var(--bg-1) 8px 16px); border-bottom: 1px solid var(--line); position: relative; display: flex; align-items: center; justify-content: center; }
.gear-card__media .ph-tag { position: absolute; top: 10px; left: 10px; }
.gear-card__body { padding: 18px 20px 20px; }
.gear-card__cat { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute); }
.gear-card__name { font-family: var(--f-display); font-size: 17px; font-weight: 600; margin: 4px 0 8px; }
.gear-card__desc { font-size: 13px; color: var(--text-dim); line-height: 1.5; }
.gear-card__foot { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); }
.gear-card__price { font-family: var(--f-mono); font-size: 14px; }

.callout {
  border: 1px solid var(--amber);
  background: var(--amber-soft);
  border-radius: 6px;
  padding: 24px 28px;
  margin: 40px 0;
  display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center;
}
.callout__icon { font-family: var(--f-mono); color: var(--amber); font-size: 11px; letter-spacing: 0.16em; border: 1px solid var(--amber); padding: 6px 10px; border-radius: 3px; }
.callout__body strong { font-family: var(--f-display); font-weight: 600; font-size: 18px; display: block; margin-bottom: 4px; }
.callout__body p { color: var(--text-dim); font-size: 14px; }

.legal { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin: 20px 0; }
.legal__cell { background: var(--bg); padding: 14px 16px; }
.legal__state { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--text); }
.legal__rule { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--text-mute); margin-top: 4px; text-transform: uppercase; }
.legal__rule.ok { color: var(--green); }
.legal__rule.warn { color: var(--amber); }
.legal__rule.bad { color: var(--red); }

.cta-strip {
  margin: 48px 0 0;
  padding: 40px 36px;
  border: 1px solid var(--amber);
  background: linear-gradient(135deg, var(--bg-1), var(--bg));
  border-radius: 6px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center;
}
.cta-strip h3 { font-size: 28px; margin-bottom: 8px; }
.cta-strip p { color: var(--text-dim); }

@media (max-width: 980px) {
  .guide__head { grid-template-columns: 1fr; gap: 24px; }
  .step { grid-template-columns: 1fr; gap: 18px; }
  .step__num { padding-top: 0; }
  .legal { grid-template-columns: repeat(2, 1fr); }
  .callout { grid-template-columns: 1fr; }
  .cta-strip { grid-template-columns: 1fr; }
}

/* ============================================================
   WooCommerce overrides — match dark amber theme
   Cart, Checkout (block), My Account, single product
   ============================================================ */

/* Page wrapper for WC pages so they have a sane content width */
.woocommerce, .wc-block-cart, .wc-block-checkout, .woocommerce-account {
  color: var(--text);
}
.woocommerce a { color: var(--amber); }
.woocommerce a:hover { color: var(--amber-2); }
body.woocommerce-page main.shell,
body.woocommerce-cart main.shell,
body.woocommerce-checkout main.shell,
body.woocommerce-account main.shell {
  padding: 32px 0 80px;
}

/* Cart/Checkout BLOCK styles (Gutenberg block) */
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
  color: var(--text);
}
.wc-block-components-text-input input,
.wc-block-components-textarea,
.wc-block-checkout__contact-fields input,
.wc-block-checkout__shipping-fields input,
.wc-block-checkout__billing-fields input,
.wc-block-components-address-form input,
.wc-block-components-address-form select,
.wc-block-components-text-input select {
  background: var(--bg-1) !important;
  color: var(--text) !important;
  border: 1px solid var(--line-2) !important;
  border-radius: 4px !important;
  font-family: var(--f-body) !important;
}
.wc-block-components-text-input input:focus,
.wc-block-components-textarea:focus {
  border-color: var(--amber) !important;
  box-shadow: 0 0 0 2px rgba(245,166,35,0.15) !important;
}
.wc-block-components-text-input label,
.wc-block-components-checkbox__label,
.wc-block-components-radio-control__label {
  color: var(--text-dim) !important;
}
.wc-block-components-form .wc-block-components-text-input.is-active label,
.wc-block-components-text-input.is-active label {
  color: var(--amber) !important;
}
.wc-block-components-totals-item__label,
.wc-block-components-totals-item__value,
.wc-block-cart-items__row,
.wc-block-cart-item__product,
.wc-block-checkout__order-summary,
.wc-block-components-product-name,
.wc-block-components-product-metadata {
  color: var(--text) !important;
}
.wc-block-components-product-name { font-family: var(--f-display); }
.wc-block-components-totals-item,
.wc-block-cart__totals-title,
.wc-block-checkout__sidebar h2 {
  color: var(--text-dim) !important;
}

/* Cart line items */
.wp-block-woocommerce-cart-line-items-block table,
.wc-block-cart-items {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.wc-block-cart-items th,
.wc-block-cart-items td {
  border-color: var(--line) !important;
  color: var(--text);
}
.wc-block-components-quantity-selector {
  border: 1px solid var(--line-2) !important;
  background: var(--bg) !important;
  border-radius: 4px;
}
.wc-block-components-quantity-selector__input {
  color: var(--text) !important;
}
.wc-block-components-quantity-selector__button {
  color: var(--amber) !important;
}

/* Cart sidebar / totals */
.wp-block-woocommerce-cart-order-summary-block,
.wp-block-woocommerce-checkout-order-summary-block {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px;
}
.wc-block-components-totals-wrapper {
  border-color: var(--line) !important;
}

/* Buttons inside WC blocks */
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button,
.wc-block-components-button.contained {
  background: var(--amber) !important;
  color: #15100a !important;
  border-radius: 4px !important;
  font-family: var(--f-display) !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
}
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover {
  background: var(--amber-2) !important;
  color: #15100a !important;
}
.wc-block-components-button.outlined {
  background: transparent !important;
  color: var(--text) !important;
  border: 1.5px solid var(--text) !important;
}

/* Notices */
.wc-block-components-notice-banner {
  background: var(--bg-1) !important;
  color: var(--text) !important;
  border: 1px solid var(--line) !important;
}
.wc-block-components-notice-banner.is-success {
  border-color: rgba(60,180,90,0.4) !important;
}
.wc-block-components-notice-banner.is-error {
  border-color: rgba(224,83,60,0.6) !important;
}

/* Empty cart message */
.wp-block-woocommerce-empty-cart-block,
.wc-block-cart__empty-cart__title {
  color: var(--text-dim) !important;
}

/* Checkbox / radio */
.wc-block-components-checkbox__mark,
.wc-block-components-radio-control__option-checked {
  color: var(--amber) !important;
}
.wc-block-components-checkbox input:checked + .wc-block-components-checkbox__mark {
  background: var(--amber) !important;
  border-color: var(--amber) !important;
}

/* Classic My Account */
.woocommerce-MyAccount-navigation ul {
  list-style: none; padding: 0; margin: 0;
  border: 1px solid var(--line); border-radius: 6px; background: var(--bg-1);
}
.woocommerce-MyAccount-navigation li {
  border-bottom: 1px solid var(--line);
}
.woocommerce-MyAccount-navigation li:last-child { border-bottom: 0; }
.woocommerce-MyAccount-navigation li a {
  display: block; padding: 12px 14px; color: var(--text-dim);
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
}
.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a:hover {
  color: var(--amber); background: var(--bg);
}
.woocommerce-MyAccount-content {
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 6px;
  padding: 22px; color: var(--text);
}
.woocommerce-form-login,
.woocommerce-form-register {
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 6px;
  padding: 22px;
}
.woocommerce-form-login input,
.woocommerce-form-register input,
.woocommerce-form-coupon input,
.woocommerce input.input-text,
.woocommerce textarea {
  background: var(--bg) !important; color: var(--text) !important;
  border: 1px solid var(--line-2) !important; border-radius: 4px !important;
  padding: 9px 11px !important;
}
.woocommerce input.input-text:focus,
.woocommerce textarea:focus { border-color: var(--amber) !important; outline: none !important; }
.woocommerce label { color: var(--text-dim); font-size: 13px; }
.woocommerce .button,
.woocommerce input[type="submit"],
.woocommerce button.button {
  background: var(--amber) !important; color: #15100a !important;
  border-radius: 4px !important; padding: 10px 16px !important;
  font-family: var(--f-display) !important; font-weight: 600 !important;
  border: 0 !important;
}
.woocommerce .button:hover,
.woocommerce input[type="submit"]:hover { background: var(--amber-2) !important; }
.woocommerce table.shop_table,
.woocommerce-orders-table {
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 6px;
  border-collapse: separate !important; border-spacing: 0 !important;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td { border-color: var(--line) !important; color: var(--text); }
.woocommerce table.shop_table th { color: var(--text-dim); font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }

/* Single product (default WC template until we replace) */
.woocommerce div.product .product_title { font-family: var(--f-display); color: var(--text); }
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: var(--amber); font-family: var(--f-display); font-size: 28px; }
.woocommerce ul.products li.product .price { color: var(--amber); }
.woocommerce div.product .stock { color: var(--green, #3cb45a); font-family: var(--f-mono); }
.woocommerce-Tabs-panel { color: var(--text); }
.woocommerce div.product .woocommerce-tabs ul.tabs { border-bottom: 1px solid var(--line); }
.woocommerce div.product .woocommerce-tabs ul.tabs li { background: var(--bg-1); border: 1px solid var(--line); border-bottom: 0; border-radius: 4px 4px 0 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { color: var(--text-dim); }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { background: var(--bg); }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--amber); }

/* Variation form */
.woocommerce div.product form.cart .variations select {
  background: var(--bg) !important; color: var(--text) !important;
  border: 1px solid var(--line-2) !important; padding: 8px 10px !important;
  border-radius: 4px !important;
}
.woocommerce div.product form.cart .single_add_to_cart_button {
  background: var(--amber) !important; color: #15100a !important;
  font-family: var(--f-display) !important; font-weight: 600 !important;
  text-transform: none !important;
}
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  background: var(--bg-1) !important; color: var(--text) !important;
  border-top-color: var(--amber) !important;
}

/* ===== Footer layout (added) ===== */
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.footer__title { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer ul a { color: var(--text-dim); font-size: 14px; }
.footer ul a:hover { color: var(--amber); }
.footer .dim { color: var(--text-mute); }
.footer__legal { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; gap: 16px; flex-wrap: wrap; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mute); }
.pay-row { display: flex; gap: 6px; }
.pay-chip { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.12em; padding: 4px 8px; border: 1px solid var(--line); border-radius: 3px; color: var(--text-dim); }
@media (max-width: 720px) {
	.footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Order summary line item — keep product name in a normal column */
.wc-block-components-order-summary__content,
.wc-block-components-order-summary-item {
  display: block !important;
}
.wc-block-components-order-summary-item__image {
  float: left; width: 56px; margin-right: 12px;
}
.wc-block-components-order-summary-item__description {
  overflow: hidden;
  word-break: normal !important;
  hyphens: none !important;
}
.wc-block-components-order-summary-item__description .wc-block-components-product-name {
  display: block !important;
  word-break: normal !important;
  font-size: 13px;
  line-height: 1.4;
}
.wc-block-components-order-summary-item__description .wc-block-components-product-price {
  display: block !important;
  margin-top: 4px;
}
.wc-block-components-order-summary-item__total-price {
  float: right;
}
