/* =========================================================
   DroneMex — Redesign
   Editorial × Technical · Warm B2B
   ========================================================= */

:root {
  /* Palette — Warm (default) */
  --bg:           #f5f1ea;
  --bg-2:         #ebe4d4;
  --surface:      #ffffff;
  --ink:          #1a1814;
  --ink-2:        #2c2823;
  --muted:        #6b6457;
  --muted-2:      #a39c8d;
  --divider:      #d9d2c1;
  --divider-2:    #c8bfa9;

  /* Accents */
  --accent:       #c94a23;  /* terracotta primary */
  --accent-deep:  #a93a1c;
  --accent-tint:  #f4d8cc;
  --data:         #163e5e;  /* deep aerial blue */
  --data-tint:    #d3dce4;
  --ndvi:         #5a8a3a;
  --live:         #2eb872;
  --amber:        #d4a847;

  /* Type */
  --font-display: "Newsreader", Georgia, serif;
  --font-body:    "IBM Plex Sans", -apple-system, system-ui, sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, monospace;

  /* Sizing */
  --max-w:        1320px;
  --gutter:       40px;
  --section-y:    clamp(80px, 11vh, 160px);

  /* Radii / shadows */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-pill: 999px;

  --shadow-1: 0 1px 0 rgba(26, 24, 20, 0.04), 0 1px 2px rgba(26, 24, 20, 0.06);
  --shadow-2: 0 10px 30px -10px rgba(26, 24, 20, 0.16);
}

/* Palette: Cool */
.palette-cool {
  --bg:           #eef1f4;
  --bg-2:         #dfe5ec;
  --surface:      #ffffff;
  --ink:          #0f1419;
  --ink-2:        #1d242c;
  --muted:        #5a6470;
  --muted-2:      #93a0ad;
  --divider:      #cfd7e0;
  --divider-2:    #b6c1ce;
  --accent:       #2b6cb0;
  --accent-deep:  #1f558a;
  --accent-tint:  #d3e2f1;
  --data:         #0f2e4a;
  --data-tint:    #cdd9e5;
}

/* Palette: Mono */
.palette-mono {
  --bg:           #f4f4f3;
  --bg-2:         #e5e5e3;
  --surface:      #ffffff;
  --ink:          #111111;
  --ink-2:        #2a2a2a;
  --muted:        #6b6b6b;
  --muted-2:      #a3a3a3;
  --divider:      #d6d6d4;
  --divider-2:    #c1c1bf;
  --accent:       #111111;
  --accent-deep:  #000000;
  --accent-tint:  #e2e2e0;
  --data:         #1c1c1c;
  --data-tint:    #d6d6d4;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-feature-settings: "ss01", "ss02";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.5;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
hr { border: 0; height: 1px; background: var(--divider); margin: 0; }

::selection { background: var(--accent); color: var(--bg); }

/* ---------- Utilities ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mono-sm {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.serif {
  font-family: var(--font-display);
  font-weight: 400;
}
.serif-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}
.muted { color: var(--muted); }
.divider-line { height: 1px; background: var(--divider); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 6px;
}
.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--ink);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--divider);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand .dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  align-self: center;
}
.brand .mx {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-left: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 24px;
}
.nav-links a {
  font-size: 14px;
  color: var(--ink-2);
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--accent); }
.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
  background: var(--bg-2);
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}
.lang-switch button {
  padding: 5px 10px;
  border-radius: var(--r-pill);
  color: var(--muted);
}
.lang-switch button.active {
  background: var(--ink);
  color: var(--bg);
}
.lang-switch button:hover:not(.active) { color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--r-pill);
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
}
.btn-primary:hover { background: var(--accent); border-color: var(--accent); }
.btn-accent {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}
.btn-accent:hover { background: var(--accent-deep); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-quiet {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--divider);
}
.btn-quiet:hover { background: var(--surface); border-color: var(--ink); }
.btn-sm {
  padding: 8px 14px;
  font-size: 13px;
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  background: #0e0d0b;
  color: #f5f1ea;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video-wrap video,
.hero-video-wrap .video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Animated placeholder — terrain-ish gradient with subtle motion */
.video-placeholder {
  background:
    radial-gradient(1200px 600px at 70% 30%, rgba(201, 74, 35, 0.22), transparent 60%),
    radial-gradient(1000px 800px at 20% 80%, rgba(22, 62, 94, 0.45), transparent 65%),
    linear-gradient(180deg, #1a1814 0%, #0e1b27 100%);
}
.video-placeholder::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(245, 241, 234, 0.06) 1px, transparent 1.5px);
  background-size: 14px 14px;
  mix-blend-mode: screen;
  opacity: 0.5;
}
.hero-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(14, 13, 11, 0.35) 0%, transparent 40%, rgba(14, 13, 11, 0.55) 100%),
    linear-gradient(90deg, rgba(14, 13, 11, 0.5) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(245, 241, 234, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 241, 234, 0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.7);
  margin-bottom: 28px;
}
.hero-kicker .live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 0 0 rgba(46, 184, 114, 0.7);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(46, 184, 114, 0.8); }
  70%  { box-shadow: 0 0 0 14px rgba(46, 184, 114, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 184, 114, 0); }
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 8.4vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  max-width: 14ch;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.hero-sub {
  font-size: 19px;
  line-height: 1.45;
  max-width: 52ch;
  color: rgba(245, 241, 234, 0.85);
  margin: 0 0 40px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero .btn-primary {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}
.hero .btn-primary:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.hero .btn-ghost {
  color: var(--bg);
  border-color: rgba(245, 241, 234, 0.4);
}
.hero .btn-ghost:hover {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}

/* HUD / readouts overlaid on hero */
.hero-hud {
  position: relative;
  z-index: 2;
  padding: 24px 0;
  border-top: 1px solid rgba(245, 241, 234, 0.14);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hud-cell {
  padding: 0 24px;
  border-right: 1px solid rgba(245, 241, 234, 0.14);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hud-cell:last-child { border-right: 0; }
.hud-cell:first-child { padding-left: 0; }
.hud-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.55);
}
.hud-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.hud-value .unit {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(245, 241, 234, 0.55);
  text-transform: uppercase;
}
.hud-value .live-dot {
  width: 7px; height: 7px;
  background: var(--live);
  border-radius: 50%;
  margin-right: 4px;
  align-self: center;
}

/* Coordinate readouts in corners of hero */
.hero-coord {
  position: absolute;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(245, 241, 234, 0.55);
  text-transform: uppercase;
}
.hero-coord.tl { top: 24px; left: var(--gutter); }
.hero-coord.tr { top: 24px; right: var(--gutter); text-align: right; }
.hero-coord .row { display: block; }
.hero-coord .row + .row { margin-top: 4px; }

/* Crosshair */
.crosshair {
  position: absolute;
  width: 64px; height: 64px;
  border: 1px solid rgba(245, 241, 234, 0.4);
  z-index: 2;
}
.crosshair::before,
.crosshair::after {
  content: "";
  position: absolute;
  background: rgba(245, 241, 234, 0.4);
}
.crosshair::before { top: 50%; left: -8px; right: -8px; height: 1px; }
.crosshair::after  { left: 50%; top: -8px; bottom: -8px; width: 1px; }
.crosshair.tl { top: 80px; left: var(--gutter); }
.crosshair.br { bottom: 80px; right: var(--gutter); }

/* ---------- Activity ticker ---------- */
.ticker {
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 14px 0;
  white-space: nowrap;
  animation: tickerScroll 60s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ticker-item .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.ticker-item .ndvi-dot { background: var(--ndvi); }
.ticker-item .live-dot { background: var(--live); }
.ticker-item .blue-dot { background: #5b9ed1; }

/* ---------- Sections ---------- */
section { position: relative; }
.section {
  padding: var(--section-y) 0;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 64px;
  align-items: end;
}
.section-head .left .section-eyebrow { margin-bottom: 16px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 16ch;
}
.section-head h2 em {
  font-style: italic;
  color: var(--accent);
}
.section-head .right {
  font-size: 17px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 52ch;
  align-self: end;
}

/* ---------- Map of México ---------- */
.map-section {
  background: var(--bg);
  padding: var(--section-y) 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.map-frame {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--r-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  min-height: 560px;
  box-shadow: var(--shadow-1);
}
.map-canvas {
  position: relative;
  background:
    linear-gradient(rgba(26, 24, 20, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 24, 20, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  border: 1px dashed var(--divider-2);
  border-radius: var(--r-md);
  overflow: hidden;
}
.map-canvas svg { width: 100%; height: 100%; min-height: 480px; }
.map-corner {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding: 12px;
  text-transform: uppercase;
}
.map-corner.tl { top: 0; left: 0; }
.map-corner.tr { top: 0; right: 0; text-align: right; }
.map-corner.bl { bottom: 0; left: 0; }
.map-corner.br { bottom: 0; right: 0; text-align: right; }

.map-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.map-side h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.map-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--divider);
  border-radius: var(--r-md);
  overflow: hidden;
}
.map-stat {
  background: var(--surface);
  padding: 14px 16px;
}
.map-stat .v {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
}
.map-stat .l {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 8px;
}
.map-feed {
  border: 1px solid var(--divider);
  border-radius: var(--r-md);
  background: var(--surface);
  overflow: hidden;
}
.map-feed-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--divider);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}
.map-feed-head .live-dot {
  width: 6px; height: 6px;
  background: var(--live);
  border-radius: 50%;
}
.map-feed-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--divider);
  font-size: 13px;
}
.map-feed-item:last-child { border-bottom: 0; }
.map-feed-item .t {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}
.map-feed-item .label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Mission marker pulse */
.marker {
  transform-origin: center;
}
.marker .pulse {
  animation: markerPulse 2.4s ease-out infinite;
  transform-origin: center;
}
@keyframes markerPulse {
  0%   { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(3); opacity: 0; }
}

/* ---------- How it works ---------- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--divider);
}
.how-step {
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--divider);
  position: relative;
}
.how-step:last-child { border-right: 0; padding-right: 0; }
.how-step + .how-step { padding-left: 32px; }
.how-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.how-num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--divider);
}
.how-step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.how-step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.how-step .glyph {
  margin-bottom: 24px;
  height: 96px;
  display: flex;
  align-items: center;
}

/* ---------- Categories ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--divider);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.cat-card {
  background: var(--surface);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 280px;
  transition: background 0.2s ease;
  cursor: pointer;
}
.cat-card:hover { background: var(--bg-2); }
.cat-card .cat-vis {
  height: 80px;
  display: flex;
  align-items: center;
}
.cat-card .cat-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.cat-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin: 0;
}
.cat-card .cat-code {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}
.cat-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  max-width: 38ch;
  flex: 1;
}
.cat-card .cat-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px dashed var(--divider);
  padding-top: 16px;
}
.cat-card .cat-from {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}
.cat-card .cat-price {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.cat-card .cat-price .ccy {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-left: 4px;
}

/* ---------- Calculator ---------- */
.calc-section {
  background: var(--ink);
  color: var(--bg);
  padding: var(--section-y) 0;
}
.calc-section .section-head h2 { color: var(--bg); }
.calc-section .section-head h2 em { color: var(--amber); }
.calc-section .section-head .right { color: rgba(245, 241, 234, 0.7); }
.calc-section .section-eyebrow { color: rgba(245, 241, 234, 0.6); }
.calc-section .section-eyebrow::before { background: var(--bg); }

.calculator {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1px;
  background: rgba(245, 241, 234, 0.12);
  border: 1px solid rgba(245, 241, 234, 0.12);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.calc-left, .calc-right {
  background: #211e19;
  padding: 36px;
}
.calc-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(245, 241, 234, 0.55);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}
.service-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid rgba(245, 241, 234, 0.14);
  border-radius: var(--r-md);
  font-size: 14px;
  text-align: left;
  width: 100%;
  transition: all 0.15s ease;
  color: rgba(245, 241, 234, 0.85);
}
.service-opt:hover {
  border-color: rgba(245, 241, 234, 0.4);
  background: rgba(245, 241, 234, 0.04);
}
.service-opt.active {
  border-color: var(--amber);
  background: rgba(212, 168, 71, 0.1);
  color: var(--bg);
}
.service-opt .ico {
  width: 32px; height: 32px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  background: rgba(245, 241, 234, 0.08);
}
.service-opt.active .ico {
  background: var(--amber);
  color: var(--ink);
}
.service-opt .meta {
  display: flex; flex-direction: column; gap: 2px;
}
.service-opt .meta .n { font-weight: 500; }
.service-opt .meta .d {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(245, 241, 234, 0.5);
  text-transform: uppercase;
}

.calc-row { margin-bottom: 24px; }
.calc-row:last-child { margin-bottom: 0; }
.range-wrap { display: flex; flex-direction: column; gap: 10px; }
.range-row { display: flex; align-items: baseline; justify-content: space-between; }
.range-row .v {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
}
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 2px;
  background: rgba(245, 241, 234, 0.2);
  border-radius: 2px;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  background: var(--amber);
  border-radius: 50%;
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 16px; height: 16px;
  background: var(--amber);
  border-radius: 50%;
  border: 0;
  cursor: pointer;
}

.calc-result {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.calc-result .estimate-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(245, 241, 234, 0.55);
  text-transform: uppercase;
}
.calc-result .estimate-value {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.6vw, 72px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 16px 0 8px;
  color: var(--amber);
}
.calc-result .estimate-value .ccy {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: rgba(245, 241, 234, 0.6);
  margin-left: 10px;
  vertical-align: super;
}
.calc-result .estimate-note {
  font-size: 13px;
  color: rgba(245, 241, 234, 0.6);
  line-height: 1.5;
  max-width: 36ch;
}
.calc-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 32px 0;
  border-top: 1px solid rgba(245, 241, 234, 0.12);
  border-bottom: 1px solid rgba(245, 241, 234, 0.12);
}
.calc-meta-cell {
  padding: 14px 16px;
  border-right: 1px solid rgba(245, 241, 234, 0.12);
}
.calc-meta-cell:first-child { padding-left: 0; }
.calc-meta-cell:last-child { border-right: 0; }
.calc-meta-cell .l {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(245, 241, 234, 0.5);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.calc-meta-cell .v {
  font-family: var(--font-display);
  font-size: 18px;
}

/* ---------- Trust ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.trust-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.trust-card {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 220px;
  position: relative;
}
.trust-card .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--bg);
  color: var(--ink);
}
.trust-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.2;
}
.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.trust-card .stripe-mark,
.trust-card .afac-mark {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}

/* Pilot card example */
.pilot-card {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pilot-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pilot-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-2);
  font-family: var(--font-display);
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.pilot-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
.pilot-loc {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}
.pilot-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--divider);
  border-radius: var(--r-md);
  overflow: hidden;
}
.pilot-stat {
  background: var(--surface);
  padding: 10px 12px;
}
.pilot-stat .v {
  font-family: var(--font-display);
  font-size: 20px;
}
.pilot-stat .l {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 4px;
}
.pilot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: var(--r-sm);
  background: var(--bg);
  color: var(--ink-2);
  border: 1px solid var(--divider);
}
.tag.verified {
  background: var(--accent-tint);
  color: var(--accent-deep);
  border-color: transparent;
}
.review-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-top: 1px dashed var(--divider);
  padding-top: 14px;
}
.review-row .stars {
  color: var(--amber);
  letter-spacing: 0.1em;
}
.review-row .rating {
  font-family: var(--font-display);
  font-size: 20px;
}
.review-row .count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* ---------- Audience (clients/pilots) split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--divider);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.split-pane {
  background: var(--bg);
  padding: 80px var(--gutter);
}
.split-pane.dark {
  background: var(--ink);
  color: var(--bg);
}
.split-pane h3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 400;
  margin: 16px 0 24px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.split-pane h3 em { font-style: italic; color: var(--accent); }
.split-pane.dark h3 em { color: var(--amber); }
.split-pane p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 44ch;
  color: var(--muted);
}
.split-pane.dark p { color: rgba(245, 241, 234, 0.7); }
.split-pane ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.split-pane ul li {
  font-size: 15px;
  padding: 12px 0;
  border-top: 1px solid var(--divider);
  display: flex;
  gap: 14px;
  align-items: baseline;
}
.split-pane.dark ul li { border-top-color: rgba(245, 241, 234, 0.14); }
.split-pane ul li::before {
  content: "→";
  color: var(--accent);
  font-family: var(--font-mono);
}
.split-pane.dark ul li::before { color: var(--amber); }

/* ---------- FAQ ---------- */
.faq {
  border-top: 1px solid var(--divider);
}
details.q {
  border-bottom: 1px solid var(--divider);
  padding: 24px 0;
}
details.q summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 32px;
}
details.q summary::-webkit-details-marker { display: none; }
details.q summary h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
  flex: 1;
}
details.q summary .toggle {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--accent);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}
details.q[open] summary .toggle { transform: rotate(45deg); }
details.q .answer {
  max-width: 70ch;
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

/* ---------- CTA ---------- */
.cta {
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--divider);
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 20% 100%, var(--accent-tint), transparent 60%),
    radial-gradient(800px 500px at 90% 0%, var(--data-tint), transparent 60%);
  z-index: 0;
  opacity: 0.6;
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.4vw, 96px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.cta h2 em { font-style: italic; color: var(--accent); }
.cta p {
  font-size: 18px;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 auto 40px;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245, 241, 234, 0.14);
}
.footer .brand {
  color: var(--bg);
  font-size: 32px;
}
.footer .brand .mx { color: rgba(245, 241, 234, 0.5); }
.footer-tag {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(245, 241, 234, 0.6);
  max-width: 36ch;
  line-height: 1.5;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.5);
  margin: 0 0 18px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(245, 241, 234, 0.85);
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(245, 241, 234, 0.4);
  text-transform: uppercase;
}

/* ---------- Density: compact ---------- */
.density-compact {
  --section-y: 72px;
}
.density-compact .hero-content { padding: 56px 0 44px; }

/* =========================================================
   REFINEMENT v2 — magazine / editorial polish
   ========================================================= */

/* ---------- Hero refinement: bigger italic + editorial caption ---------- */
.hero-caption {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  font-weight: 400;
  color: rgba(245, 241, 234, 0.7);
  max-width: 28ch;
  line-height: 1.4;
  padding: 24px 0 0;
  border-top: 1px solid rgba(245, 241, 234, 0.14);
  margin-top: 32px;
}
.hero-caption .mark {
  display: inline-block;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: rgba(245, 241, 234, 0.5);
  text-transform: uppercase;
  margin-right: 10px;
  vertical-align: 2px;
}

/* ---------- Section numbering — Roman in margin ---------- */
.section-roman {
  position: absolute;
  top: var(--section-y);
  left: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.04em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ---------- MANIFESTO band ---------- */
.manifesto {
  background: var(--bg);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vh, 160px) 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
/* Very subtle topo contour decoration */
.manifesto::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(201, 74, 35, 0.08);
  box-shadow:
    0 0 0 40px rgba(201, 74, 35, 0.025),
    0 0 0 80px rgba(201, 74, 35, 0.04),
    0 0 0 120px rgba(201, 74, 35, 0.025),
    0 0 0 160px rgba(201, 74, 35, 0.035),
    0 0 0 200px rgba(201, 74, 35, 0.025);
  pointer-events: none;
  z-index: 0;
}
.manifesto-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 4fr 1fr;
  gap: 32px;
  align-items: start;
}
.manifesto-mark {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent-deep);
  text-transform: uppercase;
  padding-top: 12px;
  position: relative;
}
.manifesto-mark::before {
  content: "";
  position: absolute;
  top: 0;
  left: -16px;
  width: 3px;
  height: 48px;
  background: var(--accent);
}
.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
  position: relative;
}
/* Opening serif quote glyph */
.manifesto-text::before {
  content: "“";
  position: absolute;
  left: -48px;
  top: -32px;
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.6;
  font-style: italic;
}
.manifesto-text em {
  font-style: italic;
  color: var(--accent-deep);
}
.manifesto-attrib {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}
.manifesto-attrib::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--accent);
}

/* ---------- DELIVERABLES gallery ---------- */
.deliverables {
  padding: var(--section-y) 0;
  background: var(--bg);
}
.deliv-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  grid-auto-rows: minmax(0, auto);
}
.deliv-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.deliv-card.big   { grid-column: span 7; }
.deliv-card.med   { grid-column: span 5; }
.deliv-card.small { grid-column: span 4; }
.deliv-card.wide  { grid-column: span 8; }

.deliv-image {
  position: relative;
  flex: 1;
  min-height: 280px;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--accent-tint) 100%);
  overflow: hidden;
}
.deliv-card image-slot {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
}
.deliv-card.big .deliv-image,
.deliv-card.big image-slot { min-height: 400px; }
.deliv-card.wide .deliv-image,
.deliv-card.wide image-slot { min-height: 340px; }

.deliv-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--bg);
  background: rgba(26, 24, 20, 0.78);
  padding: 5px 10px;
  border-radius: var(--r-sm);
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.deliv-tag .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: 1px;
}

.deliv-foot {
  padding: 18px 20px;
  border-top: 1px solid var(--divider);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.deliv-foot h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
}
.deliv-foot .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

/* Crosshair overlay on deliv cards */
.deliv-image::before {
  content: "";
  position: absolute;
  top: 16px; right: 16px;
  width: 18px; height: 18px;
  border-top: 1px solid rgba(245, 241, 234, 0.5);
  border-right: 1px solid rgba(245, 241, 234, 0.5);
  z-index: 1;
  pointer-events: none;
}
.deliv-image::after {
  content: "";
  position: absolute;
  bottom: 16px; left: 16px;
  width: 18px; height: 18px;
  border-bottom: 1px solid rgba(245, 241, 234, 0.5);
  border-left: 1px solid rgba(245, 241, 234, 0.5);
  z-index: 1;
  pointer-events: none;
}

/* Placeholder pattern when no image dropped */
.deliv-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
.deliv-placeholder .ph-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  background: var(--surface);
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid var(--divider);
}

/* image-slot v2 — make our drop targets look like the field */
.deliv-card image-slot {
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0px, transparent 12px,
      rgba(201, 74, 35, 0.04) 12px, rgba(201, 74, 35, 0.04) 13px
    );
}

@media (max-width: 1024px) {
  .manifesto-inner { grid-template-columns: 1fr; }
  .deliv-grid { grid-template-columns: 1fr; }
  .deliv-card.big, .deliv-card.med, .deliv-card.small, .deliv-card.wide { grid-column: span 1; }
  .section-roman { display: none; }
}

/* ---------- Hero variants ---------- */
/* Variant: split (Clients | Pilots side-by-side hero) */
.hero.variant-split .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero.variant-split .hero-title {
  font-size: clamp(40px, 5vw, 76px);
  max-width: none;
}
.hero.variant-split .split-side {
  border-left: 1px solid rgba(245, 241, 234, 0.2);
  padding-left: 40px;
}
.hero.variant-split .split-side:first-child {
  border-left: 0;
  padding-left: 0;
}
.hero.variant-split .hud-cell:last-child {
  border-right: 0;
}

/* Variant: map-first */
.hero.variant-map .video-placeholder {
  background:
    radial-gradient(1200px 600px at 50% 50%, rgba(22, 62, 94, 0.55), transparent 60%),
    linear-gradient(180deg, #0e1b27 0%, #0a1117 100%);
}
.hero.variant-map .video-placeholder::after {
  background-image:
    linear-gradient(rgba(245, 241, 234, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 241, 234, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 1;
}

/* Variant: calc-hero (calculator embedded in hero) */
.hero.variant-calc .hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero.variant-calc .hero-title {
  font-size: clamp(40px, 5vw, 80px);
  max-width: 12ch;
}
.hero-mini-calc {
  background: rgba(245, 241, 234, 0.05);
  border: 1px solid rgba(245, 241, 234, 0.2);
  border-radius: var(--r-lg);
  padding: 24px;
  backdrop-filter: blur(20px);
}
.hero-mini-calc .estimate-value {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--amber);
  margin: 12px 0 4px;
}
.hero-mini-calc .estimate-value .ccy {
  font-family: var(--font-mono);
  font-size: 13px;
  vertical-align: super;
  color: rgba(245, 241, 234, 0.6);
  margin-left: 8px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  :root { --gutter: 24px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .map-frame { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .how-step { border-right: 0; border-bottom: 1px solid var(--divider); padding: 32px 0; }
  .how-step + .how-step { padding-left: 0; }
  .cat-grid { grid-template-columns: 1fr; }
  .calculator { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-cards { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .hero.variant-split .hero-content,
  .hero.variant-calc .hero-content { grid-template-columns: 1fr; }
  .hero-hud { grid-template-columns: repeat(2, 1fr); gap: 16px 0; padding: 20px 0; }
}

/* ---------- Pricing ---------- */
.pricing-section { padding: var(--section-y) 0; }
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 56px;
}
.pricing-card {
    background: var(--surface);
    border: 1px solid var(--divider);
    border-radius: var(--r-lg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
    overflow: hidden;
}
.pricing-card.pricing-pilot {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}
.pricing-card .pc-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 5px 10px;
    border-radius: var(--r-pill);
    background: var(--bg-2);
    border: 1px solid var(--divider);
    margin-bottom: 14px;
}
.pricing-card.pricing-pilot .pc-tag {
    background: rgba(245, 241, 234, 0.05);
    border-color: rgba(245, 241, 234, 0.18);
    color: var(--muted-2);
}
.pricing-card .pc-tag .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
}
.pricing-card .pc-head h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.7rem;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
    line-height: 1.15;
}
.pricing-card .pc-sub {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
    line-height: 1.55;
}
.pricing-card.pricing-pilot .pc-sub { color: rgba(245, 241, 234, 0.55); }

.pricing-card .pc-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 16px 0 4px;
    border-top: 1px solid var(--divider);
}
.pricing-card.pricing-pilot .pc-price { border-color: rgba(245, 241, 234, 0.1); }
.pricing-card .pc-amount {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
}
.pricing-card .pc-unit {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}
.pricing-card.pricing-pilot .pc-unit { color: rgba(245, 241, 234, 0.5); }

.pricing-card .pc-trial {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: var(--r-pill);
    background: color-mix(in srgb, var(--live) 14%, transparent);
    border: 1px solid color-mix(in srgb, var(--live) 35%, transparent);
    color: color-mix(in srgb, var(--live) 60%, var(--ink));
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    width: fit-content;
}
.pricing-card.pricing-pilot .pc-trial {
    color: color-mix(in srgb, var(--live) 75%, white);
    background: color-mix(in srgb, var(--live) 15%, transparent);
}

.pricing-card .pc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pricing-card .pc-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-2);
}
.pricing-card.pricing-pilot .pc-list li { color: rgba(245, 241, 234, 0.75); }
.pricing-card .pc-mark {
    flex-shrink: 0;
    color: var(--accent);
    font-weight: 600;
    margin-top: 1px;
}
.pricing-card.pricing-pilot .pc-mark { color: var(--accent); }

.pricing-card .pc-cta {
    margin-top: auto;
    justify-content: center;
}
.pricing-card .pc-foot {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-align: center;
    color: var(--muted);
}
.pricing-card.pricing-pilot .pc-foot { color: rgba(245, 241, 234, 0.5); }

.pricing-fineprint {
    margin: 48px 0 0;
    text-align: center;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}
.pricing-fineprint .mono-sm { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; }
.pricing-fineprint a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.pricing-fineprint a:hover { color: var(--accent-deep); }

@media (max-width: 820px) {
    .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
    .pricing-card { padding: 32px 24px; }
    .pricing-card .pc-amount { font-size: 3.2rem; }
}
