/* ==========================================================================
   Voyage marketing site — "The Road Ledger"
   Editorial-cartographic direction: ink night-drive hero, warm paper ledger
   sections, one continuous route line down the page, Fraunces display +
   Instrument Sans body + Fragment Mono figures. No frameworks, no build.
   ========================================================================== */

:root {
  /* Ink (night) */
  --ink: #0d0f24;
  --ink-2: #14163a;
  --ink-3: #1c1f3f;
  --ink-line: rgba(233, 226, 208, 0.14);
  --ink-text: #f3efe4;
  --ink-muted: #a9a7c0;

  /* Paper (day) */
  --paper: #faf6ec;
  --paper-2: #f3ecdd;
  --line: #e4dac4;
  --text: #221f33;
  --muted: #5d5a6e;

  /* Accents */
  --amber: #e9a23b;
  --amber-deep: #d4842a;
  --amber-ink: #9a6112;
  --indigo: #6366f1;
  --indigo-deep: #4338ca;
  --ok: #1f7a44;
  --ok-bg: #e7f4ea;

  /* Type */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Instrument Sans', 'Segoe UI', sans-serif;
  --font-mono: 'Fragment Mono', 'Courier New', monospace;

  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 16px 48px rgba(13, 15, 36, 0.14);
  --shadow-soft: 0 8px 28px rgba(13, 15, 36, 0.08);
  --container: 1180px;
}

/* ----------------------------- Base ----------------------------- */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Film grain — one tiny inline SVG, fixed, everywhere. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; margin: 0 0 0.5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(42px, 6.2vw, 82px); font-variation-settings: 'opsz' 110; }
h2 { font-size: clamp(30px, 4vw, 50px); font-variation-settings: 'opsz' 80; }
h3 { font-size: 21px; font-weight: 600; }
p { margin: 0 0 1em; }
a { color: inherit; }
ul { padding: 0; margin: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }

.mono { font-family: var(--font-mono); font-size: 0.92em; letter-spacing: -0.01em; }

::selection { background: var(--amber); color: var(--ink); }

:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 4px; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 4vw, 40px); }
.section { padding-block: clamp(72px, 9vw, 130px); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 3000;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* Kicker — the little route-rule eyebrow used everywhere. */
.kicker {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber-ink); margin: 0 0 18px;
}
.kicker-rule { width: 34px; height: 2px; background: var(--amber); border-radius: 2px; flex: none; position: relative; }
.kicker-rule::after { content: ''; position: absolute; right: -5px; top: -2.2px; width: 6.5px; height: 6.5px; border-radius: 50%; background: var(--amber); }
.kicker--light { color: var(--amber); }
.kicker.center { justify-content: center; }

/* Sub-pages still use .eyebrow — keep it alive. */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber-ink); margin-bottom: 14px;
}
.eyebrow--light { color: var(--amber); }

.section-head { max-width: 680px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 18px; }
.section-head .lead { font-size: 19px; }

/* ----------------------------- Buttons ----------------------------- */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 15.5px;
  padding: 12px 22px; border-radius: 999px; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn svg { width: 17px; height: 17px; transition: transform 0.18s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn:hover { transform: translateY(-1.5px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--ink); color: #fff; box-shadow: 0 6px 18px rgba(13, 15, 36, 0.25); }
.btn-primary:hover { background: var(--ink-2); }

.btn-gold { background: var(--amber); color: var(--ink); box-shadow: 0 10px 28px rgba(233, 162, 59, 0.35); }
.btn-gold:hover { background: #f0ad4e; }

.btn-ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--text); }

.btn-outline-light { border-color: rgba(243, 239, 228, 0.35); color: var(--ink-text); background: transparent; }
.btn-outline-light:hover { border-color: var(--amber); color: var(--amber); }

.btn-lg { padding: 15px 28px; font-size: 16.5px; }

/* ----------------------------- Header ----------------------------- */

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  background: rgba(13, 15, 36, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--ink-line), 0 10px 30px rgba(13, 15, 36, 0.35);
}
.nav { display: flex; align-items: center; gap: 28px; padding-block: 16px; }
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 22px;
  color: var(--ink-text); text-decoration: none; letter-spacing: 0.01em;
}
.brand .mark { width: 34px; height: 34px; border-radius: 9px; box-shadow: 0 0 0 1px var(--ink-line); }
.nav-links { display: flex; gap: 26px; margin-inline: auto; }
.nav-links a {
  color: var(--ink-muted); text-decoration: none; font-weight: 500; font-size: 15px;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--amber); }
.nav-cta { display: flex; align-items: center; gap: 16px; margin-left: auto; }
/* The persistent header CTA stays high-contrast amber on the ink chrome. */
.site-header .btn-primary { background: var(--amber); color: var(--ink); box-shadow: 0 6px 18px rgba(233, 162, 59, 0.3); }
.site-header .btn-primary:hover { background: #f0ad4e; }
.signin { color: var(--ink-muted); text-decoration: none; font-weight: 600; font-size: 15px; }
.signin:hover { color: var(--ink-text); }
.nav-toggle { display: none; background: none; border: 0; padding: 6px; color: var(--ink-text); }
.nav-toggle svg { width: 26px; height: 26px; }
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 24px 24px; background: var(--ink-2);
  border-top: 1px solid var(--ink-line);
}
.mobile-menu a { color: var(--ink-text); text-decoration: none; padding: 11px 4px; font-weight: 600; border-bottom: 1px solid var(--ink-line); }
.mobile-menu a:last-child { border: 0; margin-top: 10px; justify-content: center; }
.mobile-menu.open { display: flex; }

/* ----------------------------- Hero ----------------------------- */

.hero {
  position: relative;
  background:
    radial-gradient(1100px 480px at 78% 108%, rgba(233, 162, 59, 0.20), transparent 64%),
    radial-gradient(800px 420px at 12% -10%, rgba(99, 102, 241, 0.16), transparent 60%),
    var(--ink);
  color: var(--ink-text);
  margin-top: -67px; /* run under the sticky header */
  padding-top: 67px;
  overflow: hidden;
}
.hero-horizon {
  position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--amber) 35%, var(--amber-deep) 65%, transparent);
  opacity: 0.85;
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(36px, 5vw, 72px); align-items: center;
  padding-block: clamp(72px, 9vw, 128px) clamp(84px, 10vw, 140px);
}
.hero h1 { color: #fff; margin-bottom: 24px; }
.hero h1 em {
  font-style: italic; font-weight: 420; color: var(--amber);
  font-variation-settings: 'opsz' 110;
  background-image: linear-gradient(90deg, rgba(233,162,59,0.55), rgba(233,162,59,0.18));
  background-repeat: no-repeat; background-size: 100% 2.5px; background-position: 0 96%;
}
.hero .kicker { color: var(--amber); }
.hero-sub { font-size: 19px; color: var(--ink-muted); max-width: 56ch; margin-bottom: 32px; }
.hero-sub strong { color: var(--ink-text); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }
.hero-note { display: flex; align-items: center; gap: 9px; color: var(--ink-muted); font-size: 14.5px; margin: 0 0 34px; }
.hero-note svg { width: 16px; height: 16px; color: var(--amber); flex: none; }

.hero-ledger {
  display: flex; flex-wrap: wrap; gap: 0; margin: 0;
  border-top: 1px solid var(--ink-line);
}
.hero-ledger > div { flex: 1 1 150px; padding: 16px 18px 0 0; }
.hero-ledger > div + div { border-left: 1px solid var(--ink-line); padding-left: 18px; }
.hero-ledger dt { font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 4px; }
.hero-ledger dd { margin: 0; font-size: 15px; color: var(--ink-text); }
.hero-ledger .mono { color: var(--amber); font-size: 17px; }

/* ----- Living demo card ----- */

.hero-visual { position: relative; }
.demo {
  position: relative;
  background: linear-gradient(180deg, rgba(28, 31, 63, 0.85), rgba(20, 22, 58, 0.95));
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.demo-chrome {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 18px; border-bottom: 1px solid var(--ink-line);
  font-size: 12.5px; color: var(--ink-muted);
}
.demo-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--amber); box-shadow: 14px 0 0 rgba(169,167,192,.45), 28px 0 0 rgba(169,167,192,.25); margin-right: 22px; }
.demo-route { color: var(--ink-text); }
.demo-step { margin-left: auto; color: var(--amber); }

.demo-stage { position: relative; min-height: 252px; }
.scene {
  position: absolute; inset: 0; padding: 20px 22px;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.scene.active { opacity: 1; transform: none; }
.scene header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.scene-tag { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); }
.scene-title { color: #fff; font-size: 19px; margin-bottom: 12px; }
.scene-rows li {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 8.5px 0; border-bottom: 1px dashed var(--ink-line);
  font-size: 14px; color: var(--ink-muted);
}
.scene-rows li:last-child { border-bottom: 0; }
.scene-rows .mono { color: var(--ink-text); }
.scene-rows .ok { color: #7fd49a; }
.scene-total { font-weight: 700; }
.scene-total span { color: var(--amber) !important; }

.chip { font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em; padding: 4px 11px; border-radius: 999px; }
.chip-wait { background: rgba(233, 162, 59, 0.16); color: var(--amber); }
.chip-ok { background: rgba(72, 187, 120, 0.16); color: #7fd49a; }
.chip-off { background: rgba(99, 102, 241, 0.18); color: #aab0ff; }

.stamp {
  position: absolute; right: 26px; bottom: 22px;
  font-family: var(--font-display); font-style: italic; font-size: 26px; color: #7fd49a;
  border: 2px solid #7fd49a; border-radius: 10px; padding: 2px 14px;
  transform: rotate(-7deg); opacity: 0.9;
}

.scene-map { border: 1px solid var(--ink-line); border-radius: 10px; margin-bottom: 12px; background: rgba(13, 15, 36, 0.5); }
.map-grid { stroke: rgba(169, 167, 192, 0.12); stroke-width: 1; }
.map-route { stroke: var(--amber); stroke-width: 2.6; stroke-linecap: round; stroke-dasharray: 3 7; }
.map-pin-a { fill: var(--indigo); }
.map-pin-b { fill: var(--amber); }
.scene.active .map-route { animation: dash-march 1.4s linear infinite; }
@keyframes dash-march { to { stroke-dashoffset: -20; } }

.demo-foot {
  display: flex; align-items: center; gap: 16px;
  padding: 11px 18px; border-top: 1px solid var(--ink-line);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted);
}
.demo-foot span[data-on="true"] { color: var(--amber); }
.demo-progress { flex: 1; height: 2px; background: var(--ink-line); border-radius: 2px; overflow: hidden; margin-left: 6px; }
.demo-progress-bar { display: block; height: 100%; width: 0%; background: var(--amber); transition: width 0.3s linear; }

.float-tag {
  position: absolute; display: flex; flex-direction: column;
  background: var(--paper); color: var(--text);
  border: 1px solid var(--line); border-radius: 12px;
  padding: 10px 16px; font-size: 13.5px; font-weight: 600;
  box-shadow: var(--shadow);
}
.float-tag .k { font-size: 10.5px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--amber-ink); }
.float-tag.t1 { top: -18px; left: -22px; transform: rotate(-2deg); }
.float-tag.t2 { bottom: -16px; right: -14px; transform: rotate(1.6deg); }

/* ----------------------------- Proof strip ----------------------------- */

.proof { background: var(--paper-2); border-bottom: 1px solid var(--line); }
.proof-row { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; padding-block: 22px; }
.proof-lead { margin: 0; font-size: 14px; font-weight: 600; color: var(--muted); flex: 1 1 240px; }
.proof-tiles { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.proof-tiles li { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--text); }
.proof-tiles svg { width: 18px; height: 18px; color: var(--amber-ink); }

/* ----------------------------- The journey ----------------------------- */

.journey-track { position: relative; }
.route-svg {
  position: absolute; left: 50%; top: 0; height: 100%; width: 80px;
  transform: translateX(-50%);
  overflow: visible; pointer-events: none;
}
.route-shadow, .route-path { fill: none; stroke-width: 2.5; vector-effect: non-scaling-stroke; }
.route-shadow { stroke: var(--line); stroke-dasharray: 2 8; stroke-linecap: round; }
.route-path { stroke: var(--amber-deep); stroke-linecap: round; }

.waypoints { display: flex; flex-direction: column; gap: clamp(56px, 7vw, 104px); }
.waypoint {
  display: grid; grid-template-columns: 1fr 96px 1fr;
  gap: clamp(16px, 3vw, 40px); align-items: center;
}
.waypoint .wp-no {
  grid-column: 2; grid-row: 1; justify-self: center; align-self: center;
  width: 64px; height: 64px; display: grid; place-items: center;
  background: var(--paper); border: 2px solid var(--amber-deep); border-radius: 50%;
  font-size: 17px; color: var(--amber-ink);
  box-shadow: 0 0 0 7px var(--paper), var(--shadow-soft);
  position: relative; z-index: 2;
}
.waypoint .wp-body { grid-column: 1; grid-row: 1; }
.waypoint .wp-card { grid-column: 3; grid-row: 1; justify-self: start; }
.waypoint:nth-child(even) .wp-body { grid-column: 3; }
.waypoint:nth-child(even) .wp-card { grid-column: 1; justify-self: end; }

.wp-body h3 { font-size: clamp(22px, 2.4vw, 28px); font-weight: 500; }
.wp-body p { color: var(--muted); max-width: 46ch; }
.wp-list li {
  position: relative; padding-left: 26px; margin-bottom: 7px;
  font-size: 15px; font-weight: 500;
}
.wp-list li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 13px; height: 8px;
  border-left: 2.2px solid var(--amber-deep); border-bottom: 2.2px solid var(--amber-deep);
  transform: rotate(-45deg);
}

.wp-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 18px; min-width: min(280px, 100%);
  box-shadow: var(--shadow-soft);
  transform: rotate(-0.8deg);
}
.waypoint:nth-child(even) .wp-card { transform: rotate(0.8deg); }
.wp-card-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 7px; }
.wp-card-title { font-weight: 600; font-size: 15px; }
.wp-card .chip-wait { background: #fdf1dc; color: var(--amber-ink); }
.wp-card .chip-ok { background: var(--ok-bg); color: var(--ok); }
.wp-card .chip-off { background: #eceafb; color: var(--indigo-deep); }
.wp-card-meta { font-size: 13px; color: var(--muted); }

/* ----------------------------- Versus ----------------------------- */

.versus { background: var(--paper-2); border-block: 1px solid var(--line); }
.versus-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 3vw, 34px);
  max-width: 940px; margin-inline: auto; position: relative;
}
.versus-col { border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 38px); }
.versus-col.old {
  background: #fff; border: 1px solid var(--line);
  transform: rotate(-0.5deg); box-shadow: var(--shadow-soft);
}
.versus-col.new {
  background: var(--ink); color: var(--ink-text);
  transform: rotate(0.5deg); box-shadow: var(--shadow);
}
.versus-title { font-size: 14px; font-family: var(--font-body); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; }
.versus-col.old .versus-title { color: var(--muted); }
.versus-col.new .versus-title { color: var(--amber); }
.versus-col li { position: relative; padding: 9px 0 9px 30px; font-size: 15.5px; border-bottom: 1px dashed var(--line); }
.versus-col.new li { border-color: var(--ink-line); }
.versus-col li:last-child { border: 0; }
.versus-col.old li { color: var(--muted); }
.versus-col.old li::before { content: '×'; position: absolute; left: 2px; top: 6px; font-weight: 700; color: #c4452f; }
.versus-col.new li::before {
  content: ''; position: absolute; left: 2px; top: 15px;
  width: 13px; height: 8px;
  border-left: 2.2px solid var(--amber); border-bottom: 2.2px solid var(--amber);
  transform: rotate(-45deg);
}

/* ----------------------------- Capabilities ----------------------------- */

.caps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cap {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 26px 24px 22px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
}
.cap::before {
  content: ''; position: absolute; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--amber), var(--amber-deep));
  transition: width 0.3s ease;
}
.cap:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cap:hover::before { width: 100%; }
.cap-ic {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: #f0edff; color: var(--indigo-deep); margin-bottom: 16px;
}
.cap-ic svg { width: 24px; height: 24px; }
.cap h3 { font-size: 19px; }
.cap p { color: var(--muted); font-size: 15px; margin: 0; }

/* ----------------------------- Compliance ----------------------------- */

.compliance {
  background:
    radial-gradient(900px 420px at 85% 115%, rgba(233, 162, 59, 0.16), transparent 62%),
    var(--ink);
  color: var(--ink-text);
}
.compliance h2 { color: #fff; }
.compliance .section-head p { color: var(--ink-muted); }
.compliance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.comp-card {
  background: rgba(28, 31, 63, 0.6); border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 36px);
}
.comp-card .ic {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: rgba(233, 162, 59, 0.14); color: var(--amber); margin-bottom: 18px;
}
.comp-card .ic svg { width: 24px; height: 24px; }
.comp-card h3 { color: #fff; font-size: 22px; }
.comp-card p { color: var(--ink-muted); font-size: 15.5px; }
.pill {
  display: inline-block; font-size: 12.5px; padding: 6px 14px;
  border: 1px solid rgba(233, 162, 59, 0.4); color: var(--amber); border-radius: 999px;
}

/* ----------------------------- Pricing ----------------------------- */

.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 26px 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card h3 { font-size: 17px; font-family: var(--font-body); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.price { font-family: var(--font-display); font-size: 42px; font-weight: 500; margin-bottom: 8px; }
.price small { font-size: 15px; font-family: var(--font-body); color: var(--muted); font-weight: 500; }
.price-card .desc { color: var(--muted); font-size: 15px; min-height: 44px; }
.price-card ul { margin-bottom: 24px; flex: 1; }
.price-card li {
  position: relative; padding: 8px 0 8px 28px; font-size: 15px;
  border-bottom: 1px dashed var(--line);
}
.price-card li:last-child { border: 0; }
.price-card li::before {
  content: ''; position: absolute; left: 2px; top: 14px;
  width: 13px; height: 8px;
  border-left: 2.2px solid var(--amber-deep); border-bottom: 2.2px solid var(--amber-deep);
  transform: rotate(-45deg);
}
.price-card .btn { justify-content: center; }

.price-card.featured {
  background: var(--ink); color: var(--ink-text);
  border-color: var(--ink); box-shadow: var(--shadow);
  transform: scale(1.03);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.price-card.featured h3 { color: var(--amber); }
.price-card.featured .price { color: #fff; }
.price-card.featured .desc { color: var(--ink-muted); }
.price-card.featured li { border-color: var(--ink-line); }
.price-card.featured li::before { border-color: var(--amber); }
.price-card.featured .btn-primary { background: var(--amber); color: var(--ink); }
.price-card.featured .btn-primary:hover { background: #f0ad4e; }
.price-card .tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: var(--ink);
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 999px; white-space: nowrap;
}

/* ----------------------------- FAQ ----------------------------- */

.faq-section { background: var(--paper-2); border-block: 1px solid var(--line); }
.faq-list { max-width: 760px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  list-style: none; cursor: pointer; padding: 20px 4px;
  font-family: var(--font-display); font-size: 19.5px; font-weight: 500;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q .ic { position: relative; flex: none; width: 22px; height: 22px; }
.faq-q .ic::before, .faq-q .ic::after {
  content: ''; position: absolute; background: var(--amber-ink); border-radius: 2px;
  transition: transform 0.25s ease;
}
.faq-q .ic::before { left: 0; top: 9.5px; width: 22px; height: 3px; }
.faq-q .ic::after { left: 9.5px; top: 0; width: 3px; height: 22px; }
.faq-item[open] .faq-q .ic::after { transform: scaleY(0); }
.faq-a { padding: 0 36px 22px 4px; color: var(--muted); font-size: 16px; }

/* ----------------------------- CTA band ----------------------------- */

.cta-band {
  position: relative;
  background:
    radial-gradient(1000px 460px at 50% 120%, rgba(233, 162, 59, 0.22), transparent 64%),
    var(--ink);
  color: var(--ink-text);
  padding-block: clamp(88px, 11vw, 150px);
  overflow: hidden;
}
.cta-horizon {
  position: absolute; left: 0; right: 0; top: 0; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--amber) 50%, transparent);
  opacity: 0.7;
}
.cta-inner { text-align: center; max-width: 720px; margin-inline: auto; }
.cta-inner h2 { color: #fff; font-size: clamp(34px, 4.6vw, 58px); }
.cta-inner h2 em { font-style: italic; font-weight: 420; color: var(--amber); }
.cta-inner p { color: var(--ink-muted); font-size: 18px; margin-bottom: 34px; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ----------------------------- Footer ----------------------------- */

.site-footer { background: var(--ink-2); color: var(--ink-muted); padding-block: 60px 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { font-size: 14.5px; max-width: 34ch; }
.footer-col h4 { color: var(--ink-text); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; margin: 4px 0 14px; }
.footer-col a { display: block; color: var(--ink-muted); text-decoration: none; padding: 5px 0; font-size: 14.5px; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  border-top: 1px solid var(--ink-line); padding-top: 22px; font-size: 13.5px;
}
.made { display: inline-flex; align-items: center; gap: 8px; }
.made svg { width: 16px; height: 16px; color: var(--amber); }

/* ----------------------------- Sub-pages ----------------------------- */
/* about / contact / privacy / terms / security share these. */

.page-hero { background: var(--ink); color: var(--ink-text); padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 64px); }
.page-hero h1 { color: #fff; font-size: clamp(34px, 5vw, 56px); }
.page-hero p { color: var(--ink-muted); max-width: 62ch; font-size: 18px; }
.page-hero .eyebrow { color: var(--amber); }
.updated { font-size: 13.5px; color: var(--ink-muted); }

.prose { max-width: 760px; padding-block: clamp(40px, 6vw, 72px); }
.prose h2 { font-size: 26px; margin-top: 1.6em; }
.prose h3 { font-size: 19px; margin-top: 1.4em; }
.prose p, .prose li { color: var(--muted); font-size: 16px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 1em; }
.prose a { color: var(--indigo-deep); }
.review-note {
  background: #fdf1dc; border: 1px solid #efd9ad; color: var(--amber-ink);
  border-radius: 12px; padding: 14px 18px; font-size: 14.5px; margin-block: 18px;
}

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; padding-block: clamp(40px, 6vw, 72px); }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 26px;
}
.contact-card h3 { font-size: 20px; }
.contact-card p { color: var(--muted); font-size: 15.5px; }

/* ----------------------------- Reveal ----------------------------- */

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ----------------------------- Responsive ----------------------------- */

@media (max-width: 1060px) {
  .caps-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 56px; }
  .hero-visual { max-width: 560px; }
  .float-tag.t1 { left: auto; right: 8px; top: -16px; }
  .route-svg { display: none; }
  .waypoint, .waypoint:nth-child(even) { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
  .waypoint .wp-no { box-shadow: var(--shadow-soft); width: 52px; height: 52px; }
  .waypoint .wp-card, .waypoint:nth-child(even) .wp-card { justify-self: start; transform: none; }
  .versus-grid { grid-template-columns: 1fr; }
  .versus-col.old, .versus-col.new { transform: none; }
  .compliance-grid { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links, .signin { display: none; }
  .nav-toggle { display: block; }
  .caps-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-ledger > div + div { border-left: 0; padding-left: 0; }
  .hero-ledger > div { flex-basis: 100%; border-top: 1px solid var(--ink-line); }
  .hero-ledger > div:first-child { border-top: 0; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}

/* ----------------------------- Reduced motion ----------------------------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .route-path { stroke-dashoffset: 0 !important; }
  .scene { transform: none; }
}
