/* ==========================================================================
   Drivewolf Go - Modern monochrome design system (v2.0)
   Dark-first, black & white, oversized type, bento layout, micro-interactions
   ========================================================================== */

:root {
  --bg: #060606;
  --surface: #0d0d0d;
  --surface-2: #121212;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #ececec;
  --muted: rgba(236, 236, 236, 0.58);
  --faint: rgba(236, 236, 236, 0.32);
  --white: #ffffff;
  --black: #000000;
  --brand-yellow: #f6c400;
  --radius: 20px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Space Grotesk", "Inter", -apple-system, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-h: 76px;
  --pad: clamp(1.25rem, 4vw, 3rem);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Subtle grain + vignette for tactile depth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(255, 255, 255, 0.05), transparent 60%),
    var(--bg);
}
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 2147483000;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 9s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--white); text-decoration: none; }

::selection { background: var(--white); color: var(--black); }

:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- layout ---------- */

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.section {
  padding: clamp(4rem, 9vw, 7.5rem) 0;
  position: relative;
}
.section--tight { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.section--hero {
  padding-top: calc(var(--header-h) + clamp(3.5rem, 9vw, 7rem));
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ---------- typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: var(--white);
}

.display-xl {
  font-size: clamp(2.75rem, 8.5vw, 6.75rem);
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.display-lg { font-size: clamp(2.25rem, 5.5vw, 4.25rem); }
.display-md { font-size: clamp(1.6rem, 3.4vw, 2.5rem); }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--muted);
  line-height: 1.7;
  max-width: 46ch;
}
.lead--center { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  margin-bottom: 1.75rem;
  background: rgba(255, 255, 255, 0.03);
}
.eyebrow::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  transform-origin: center;
  animation: eyebrow-pulse 2.4s ease-in-out infinite;
}
@keyframes eyebrow-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.75); }
}

.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .index {
  font-family: var(--font-display);
  color: var(--faint);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  display: block;
  margin-bottom: 0.9rem;
}

.text-center { text-align: center; }
.muted { color: var(--muted); }

.prose p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin: 0 0 1.4rem;
}
.prose strong { color: var(--white); font-weight: 600; }
.prose a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.prose ul { color: var(--muted); line-height: 1.85; padding-left: 1.2rem; }
.prose li { margin-bottom: 0.5rem; }

/* ---------- skip link ---------- */

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 3000;
  background: var(--white);
  color: var(--black);
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- buttons ---------- */

.btn,
.menu-toggle,
.nav-link,
.choice-card,
.step,
.contact-line,
.to-top,
button,
a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 999px;
  padding: 1rem 2.1rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
              border-color 0.35s var(--ease), transform 0.35s var(--ease),
              box-shadow 0.35s var(--ease);
  will-change: transform;
}
.btn .btn-arrow {
  display: inline-block;
  transition: transform 0.35s var(--ease);
}
.btn:active { transform: scale(0.97); }

.btn-solid {
  background: var(--white);
  color: var(--black);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--line-strong);
}

.btn-small { padding: 0.6rem 1.4rem; font-size: 0.9rem; }
.btn-large { padding: 1.15rem 2.6rem; font-size: 1.08rem; }
.btn[disabled], .btn.btn-loading { opacity: 0.55; pointer-events: none; }

.text-link {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
  transition: border-color 0.3s var(--ease);
}

/* ---------- header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  overflow: visible;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
              backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(6, 6, 6, 0.78);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.header-inner {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-width: 0;
}

.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { height: 30px; width: auto; }

@media (min-width: 769px) {
  .brand img { height: 46px; }
}

@media (min-width: 1025px) {
  .brand img { height: 56px; }
}

.header-nav {
  display: none; /* navigation lives in the Menu overlay */
}
.nav-link {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav-link[aria-expanded="true"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}
.nav-link.active { color: var(--white); }

.nav-drop { position: relative; }
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  background: #0b0b0b;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}
.nav-drop.open .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-drop-menu a {
  display: block;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), padding-left 0.25s var(--ease);
}
.nav-drop-caret { transition: transform 0.3s var(--ease); }
.nav-drop.open .nav-drop-caret { transform: rotate(180deg); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--white);
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.menu-toggle .bars {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 16px;
}
.menu-toggle .bars span {
  height: 1.5px;
  width: 100%;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
body.menu-open .menu-toggle .bars span:first-child { transform: translateY(2.75px) rotate(45deg); }
body.menu-open .menu-toggle .bars span:last-child { transform: translateY(-2.75px) rotate(-45deg); }

@media (max-width: 640px) {
  .header-actions .btn { display: none; }
  .brand img { height: 24px; }
  .menu-toggle { flex-shrink: 0; }
}

/* ---------- full-screen menu overlay ---------- */

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 990;
  background: rgba(4, 4, 4, 0.92);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
  overflow-y: auto;
  padding: calc(var(--header-h) + 2rem) 0 3rem;
}
body.menu-open .menu-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.menu-open { overflow: hidden; }

.menu-overlay-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
}
@media (max-width: 800px) {
  .menu-overlay-grid { grid-template-columns: 1fr; }
}

.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list > li {
  border-bottom: 1px solid var(--line);
  transform: translateY(18px);
  opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
}
body.menu-open .menu-list > li { transform: translateY(0); opacity: 1; }
body.menu-open .menu-list > li:nth-child(1) { transition-delay: 0.05s; }
body.menu-open .menu-list > li:nth-child(2) { transition-delay: 0.1s; }
body.menu-open .menu-list > li:nth-child(3) { transition-delay: 0.15s; }
body.menu-open .menu-list > li:nth-child(4) { transition-delay: 0.2s; }
body.menu-open .menu-list > li:nth-child(5) { transition-delay: 0.25s; }
body.menu-open .menu-list > li:nth-child(6) { transition-delay: 0.3s; }
body.menu-open .menu-list > li:nth-child(7) { transition-delay: 0.35s; }
body.menu-open .menu-list > li:nth-child(8) { transition-delay: 0.4s; }

.menu-list a {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  padding: 1.05rem 0.25rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: color 0.3s var(--ease), padding-left 0.35s var(--ease);
}
.menu-list .num {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--faint);
}

.menu-side h4 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 1rem;
}
.menu-side .menu-sub {
  list-style: none;
  margin: 0 0 2.25rem;
  padding: 0;
}
.menu-side .menu-sub a {
  display: inline-block;
  padding: 0.4rem 0;
  color: var(--muted);
  text-decoration: none;
  font-size: 1.02rem;
  transition: color 0.25s var(--ease), padding-left 0.3s var(--ease);
}

/* ---------- hero ---------- */

.hero-title-ghost {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.85);
  color: transparent;
}

/* ---------- marquee ticker ---------- */

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 1.1rem 0;
  background: rgba(255, 255, 255, 0.02);
}
.marquee-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  gap: 3rem;
  will-change: transform;
  animation: marquee 32s linear infinite;
}
.marquee-item {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 3rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-item::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--faint);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- choice cards (big bento links) ---------- */

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 760px) {
  .choice-grid { grid-template-columns: 1fr; }
}

.choice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(300px, 38vw, 440px);
  padding: 2.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease),
              transform 0.5s var(--ease);
}
.choice-card .ghost {
  position: absolute;
  top: -0.18em;
  right: -0.05em;
  font-family: var(--font-display);
  font-size: clamp(11rem, 24vw, 19rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  color: transparent;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.08) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  pointer-events: none;
  transition: transform 0.7s var(--ease), opacity 0.5s var(--ease);
}
.choice-card h3 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 0.4rem;
}
.choice-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 30ch;
  transition: color 0.5s var(--ease);
}
.choice-card .go {
  position: absolute;
  top: 1.75rem;
  left: 1.95rem;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.45s var(--ease), color 0.45s var(--ease),
              border-color 0.45s var(--ease), transform 0.45s var(--ease);
}

/* ---------- stats / trust ---------- */

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.65rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
@media (max-width: 880px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.trust-item {
  padding: clamp(1.75rem, 3.5vw, 3rem) 1.5rem;
  text-align: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.4s var(--ease);
}
.stats-grid .trust-item:nth-child(4n) { border-right: 0; }
@media (max-width: 880px) {
  .stats-grid .trust-item:nth-child(2n) { border-right: 0; }
  .stats-grid .trust-item:nth-child(4n - 1) { border-right: 1px solid var(--line); }
  .stats-grid .trust-item:nth-child(2n - 1) { border-right: 1px solid var(--line); }
}

.trust-number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.6rem;
  font-variant-numeric: tabular-nums;
}
.trust-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- bento / feature cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 760px) {
  .card-grid { grid-template-columns: 1fr; }
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease),
              background 0.4s var(--ease);
}
.panel h3 { font-size: 1.35rem; margin-bottom: 0.7rem; }
.panel p { margin: 0; color: var(--muted); line-height: 1.75; }

.panel-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1.4rem;
  color: var(--white);
}
.panel-icon svg { width: 24px; height: 24px; }

.note-strip {
  border: 1px solid var(--line);
  border-left: 3px solid var(--white);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 1.4rem 1.75rem;
  color: var(--muted);
  line-height: 1.75;
}
.note-strip strong { color: var(--white); }
.note-strip a { color: var(--white); }

/* ---------- steps (how it works) ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}
@media (max-width: 1100px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; }
}
.step {
  position: relative;
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  counter-increment: step;
  text-decoration: none;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
a.step,
a.step *,
a.step::before {
  text-decoration: none;
  text-decoration-line: none;
}
a.step:visited { color: var(--text); }
a.step:visited p { color: var(--muted); }
a.step:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}
.step::before {
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--faint);
  display: block;
  margin-bottom: 1.25rem;
}
.step h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.step p { margin: 0; color: var(--muted); line-height: 1.7; }

/* ---------- you / we split ---------- */

.split-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 1rem;
}
@media (max-width: 680px) {
  .split-row { grid-template-columns: 1fr; }
  .split-arrow { transform: rotate(90deg); margin: -0.25rem auto; }
}
.split-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 2rem;
  text-align: center;
}
.split-card .who {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.6rem;
}
.split-card .what {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 600;
  color: var(--white);
  margin: 0;
}
.split-card--invert {
  background: var(--white);
  border-color: var(--white);
}
.split-card--invert .who { color: rgba(0, 0, 0, 0.5); }
.split-card--invert .what { color: var(--black); }
.split-arrow {
  align-self: center;
  color: var(--muted);
  display: grid;
  place-items: center;
}

/* ---------- check list ---------- */

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 680px) {
  .check-grid { grid-template-columns: 1fr; }
}
.check-grid li {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 1.1rem 1.35rem;
  color: var(--text);
  font-weight: 500;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.check-grid .tick {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
}
.check-grid .tick svg { width: 14px; height: 14px; }

/* ---------- pricing ---------- */

.seg-control {
  display: inline-flex;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
  background: rgba(255, 255, 255, 0.03);
}
.seg-control a {
  padding: 0.55rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.seg-control a.on { background: var(--white); color: var(--black); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
@media (max-width: 980px) {
  .price-grid { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; }
}

.price-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  position: relative;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.price-card .plan {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.1rem;
}
.price-card .amount {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.price-card .amount sub {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
  vertical-align: baseline;
}
.price-card .tagline { color: var(--muted); font-size: 0.95rem; margin: 0 0 1.6rem; }
.price-card ul {
  list-style: none;
  margin: 0 0 2rem;
  padding: 1.4rem 0 0;
  border-top: 1px solid var(--line);
  flex: 1;
}
.price-card li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.7rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 14px;
  height: 8px;
  border-left: 1.5px solid var(--white);
  border-bottom: 1.5px solid var(--white);
  transform: rotate(-45deg) scale(0.85);
}
.price-card .btn { width: 100%; }

.price-card--featured {
  background: var(--white);
  border-color: var(--white);
}
.price-card--featured .plan { color: rgba(0, 0, 0, 0.55); }
.price-card--featured .amount { color: var(--black); }
.price-card--featured .amount sub { color: rgba(0, 0, 0, 0.55); }
.price-card--featured .tagline { color: rgba(0, 0, 0, 0.6); }
.price-card--featured ul { border-top-color: rgba(0, 0, 0, 0.12); }
.price-card--featured li { color: rgba(0, 0, 0, 0.7); }
.price-card--featured li::before { border-color: var(--black); }
.price-card--featured .btn-solid {
  background: var(--black);
  color: var(--white);
}
.price-card .flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.35rem 1rem;
  white-space: nowrap;
  border: 4px solid var(--bg);
}

/* ---------- forms ---------- */

.form-shell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 3rem);
}

.field { margin-bottom: 1.5rem; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="password"],
.field input[type="number"],
.field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.02rem;
  padding: 0.95rem 1.2rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field textarea { min-height: 150px; resize: vertical; line-height: 1.7; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 640px) {
  .field-row { grid-template-columns: 1fr; }
}

.form-section-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 1.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.form-section-label:first-child { padding-top: 0; border-top: 0; }

.radio-pills { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.radio-pill { position: relative; }
.radio-pill input {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}
.radio-pill label {
  display: inline-block;
  margin: 0;
  padding: 0.65rem 1.8rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.radio-pill input:checked + label {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.radio-pill input:focus-visible + label {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

/* ---------- alerts ---------- */

.alert {
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.4rem;
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
  line-height: 1.65;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}
.alert[hidden] { display: none; }
.alert-success {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
  font-weight: 500;
}
.alert-warning {
  border-style: dashed;
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}
.alert-danger {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

/* ---------- form success panel ---------- */

.form-success {
  text-align: center;
  padding: clamp(1.5rem, 4vw, 3rem) 0;
  animation: success-in 0.5s var(--ease) both;
}
.form-success[hidden] { display: none; }
@keyframes success-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-success-check {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: success-pop 0.55s var(--ease) 0.15s both;
}
.form-success-check svg {
  width: 44px;
  height: 44px;
}
.form-success-check svg path {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: success-draw 0.45s ease-out 0.5s forwards;
}
@keyframes success-pop {
  0% { transform: scale(0.4); opacity: 0; }
  70% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes success-draw {
  to { stroke-dashoffset: 0; }
}

.form-success-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.9rem;
}
.form-success-text {
  max-width: 46ch;
  margin: 0 auto 1.25rem;
  color: var(--muted);
  line-height: 1.7;
}
.form-success-note {
  max-width: 52ch;
  margin: 0 auto 1.5rem;
  padding: 1rem 1.3rem;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--text);
  text-align: left;
}
.form-success-note[hidden] { display: none; }
.form-success .btn { margin-top: 0.5rem; }

@media (prefers-reduced-motion: reduce) {
  .form-success,
  .form-success-check,
  .form-success-check svg path {
    animation: none;
  }
  .form-success-check svg path { stroke-dashoffset: 0; }
}

/* ---------- contact info ---------- */

.contact-lines { margin: 2rem 0; }
.contact-line {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding-left 0.35s var(--ease);
}
.contact-line:first-child { border-top: 1px solid var(--line); }
.contact-line .tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
  min-width: 70px;
}
.contact-line .value {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  word-break: break-word;
}

.social-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-row a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.6rem 1.3rem;
  color: var(--muted);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

/* ---------- embeds ---------- */

.embed-shell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2.5rem);
  display: flex;
  justify-content: center;
}

/* ---------- CTA band ---------- */

.cta-band {
  border-top: 1px solid var(--line);
  text-align: center;
}
.cta-band .display-lg { margin-bottom: 1.25rem; }
.cta-band .lead { margin-bottom: 2.5rem; }

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 7vw, 5.5rem) 0 2rem;
  background: #050505;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 3.5rem;
}
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand img { height: 26px; width: auto; margin-bottom: 1.25rem; }
.footer-brand p { color: var(--muted); max-width: 30ch; line-height: 1.7; margin: 0; }

.site-footer h4 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 1.25rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin-bottom: 0.65rem; }
.site-footer ul a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.25s var(--ease), padding-left 0.3s var(--ease);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--faint);
  font-size: 0.85rem;
}
.footer-bottom a { color: var(--muted); text-decoration: none; }

/* ---------- scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* legacy hooks used by the homepage stats script */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.animate-on-scroll.animated { opacity: 1; transform: none; }

/* ---------- back to top ---------- */

.to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(6, 6, 6, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease),
              visibility 0.35s, background 0.3s var(--ease), color 0.3s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }

/* ---------- utilities ---------- */

.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; } .mt-6 { margin-top: 4rem; }
.mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; } .mb-5 { margin-bottom: 3rem; }
.narrow { max-width: 820px; margin-left: auto; margin-right: auto; }
.wide { max-width: 1100px; margin-left: auto; margin-right: auto; }

/* Hover effects — desktop pointer only (prevents double-tap on touch) */
@media (hover: hover) and (pointer: fine) {
  .btn:hover .btn-arrow { transform: translateX(5px); }
  .btn-solid:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    box-shadow: 0 0 0 1px var(--white) inset;
  }
  .btn-ghost:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
  }
  .text-link:hover { border-color: var(--white); }
  .nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
  }
  .nav-drop-menu a:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--white);
    padding-left: 1.25rem;
  }
  .menu-toggle:hover { background: var(--white); color: var(--black); }
  .menu-list a:hover { color: var(--white); padding-left: 0.9rem; }
  .menu-side .menu-sub a:hover { color: var(--white); padding-left: 0.5rem; }
  .choice-card:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--black);
    transform: translateY(-6px);
  }
  .choice-card:hover h3 { color: var(--black); }
  .choice-card:hover p { color: rgba(0, 0, 0, 0.6); }
  .choice-card:hover .ghost {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.06) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    transform: translateX(-8px);
  }
  .choice-card:hover .go {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: rotate(-45deg);
  }
  .trust-item:hover { background: rgba(255, 255, 255, 0.04); }
  .panel:hover {
    border-color: var(--line-strong);
    transform: translateY(-4px);
    background: var(--surface-2);
  }
  .step:hover { border-color: var(--line-strong); transform: translateY(-4px); }
  .check-grid li:hover { border-color: var(--line-strong); background: var(--surface-2); }
  .seg-control a:hover { color: var(--white); }
  .price-card:hover { border-color: var(--line-strong); transform: translateY(-6px); }
  .price-card--featured .btn-solid:hover {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
    box-shadow: 0 0 0 1px var(--black) inset;
  }
  .radio-pill label:hover { color: var(--white); }
  .radio-pill input:checked + label:hover { color: var(--black); }
  .contact-line:hover { padding-left: 0.9rem; }
  .social-row a:hover { background: var(--white); color: var(--black); border-color: var(--white); }
  .site-footer ul a:hover { color: var(--white); padding-left: 0.4rem; }
  .footer-bottom a:hover { color: var(--white); }
  .to-top:hover { background: var(--white); color: var(--black); }

  @media (max-width: 1024px) {
    .menu-toggle:hover {
      background: transparent;
      color: var(--white);
      border-color: var(--white);
    }
  }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body::after { animation: none; }
  .reveal, .animate-on-scroll,
  .menu-list > li {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .eyebrow::before {
    animation-name: eyebrow-pulse !important;
    animation-duration: 2.4s !important;
    animation-iteration-count: infinite !important;
    animation-timing-function: ease-in-out !important;
  }
  .marquee-track {
    animation: marquee 32s linear infinite !important;
    animation-duration: 32s !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
  }
}

/* ==========================================================================
   Editorial edition (v3.0)
   Hard rules, oversized type, graphic labels and print-inspired composition
   ========================================================================== */

:root {
  --bg: #050505;
  --surface: #0a0a0a;
  --surface-2: #111111;
  --paper: #f2f2f2;
  --ink: #080808;
  --line: rgba(255, 255, 255, 0.24);
  --line-strong: rgba(255, 255, 255, 0.72);
  --text: #f2f2f2;
  --muted: rgba(242, 242, 242, 0.68);
  --faint: rgba(242, 242, 242, 0.42);
  --radius: 0;
  --radius-sm: 0;
  --header-h: 84px;
  --pad: clamp(1rem, 3vw, 2.75rem);
}

body {
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(255,255,255,.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.034) 1px, transparent 1px);
  background-size: clamp(42px, 5vw, 76px) clamp(42px, 5vw, 76px);
}

body::before {
  background:
    radial-gradient(900px 500px at 78% 8%, rgba(255,255,255,.055), transparent 62%),
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(255,255,255,.035) 50%, transparent calc(50% + .5px));
}

body::after {
  opacity: .045;
  mix-blend-mode: screen;
}

::selection { background: var(--paper); color: var(--ink); }

.container { max-width: 1380px; }
.narrow { max-width: 900px; }
.wide { max-width: 1200px; }

.section {
  padding: clamp(4.5rem, 9vw, 8.5rem) 0;
  border-bottom: 1px solid var(--line);
}
.section--tight { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--hero {
  min-height: min(900px, 92svh);
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--header-h) + 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.section--hero::before {
  content: "DWG / 2026";
  position: absolute;
  top: calc(var(--header-h) + 2rem);
  right: var(--pad);
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
  color: var(--faint);
}
.section--hero::after {
  content: "";
  position: absolute;
  width: clamp(220px, 34vw, 520px);
  aspect-ratio: 1;
  border: 1px solid var(--brand-yellow);
  border-radius: 50%;
  right: clamp(-150px, -9vw, -60px);
  top: 18%;
  pointer-events: none;
}

.hero-editorial {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, .27fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  text-align: left;
}
.hero-editorial .display-xl {
  margin-inline: 0;
  max-width: 8.5ch;
}
.hero-editorial .lead {
  margin-left: 0;
  margin-right: 0;
}
.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: .5rem;
}
.hero-stamp {
  width: clamp(150px, 17vw, 220px);
  aspect-ratio: 1;
  border: 2px solid var(--paper);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(.72rem, 1vw, .88rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .14em;
  text-transform: uppercase;
  transform: rotate(8deg);
}
.hero-aside-note {
  margin: 0;
  padding-top: .8rem;
  border-top: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.55;
  max-width: 24ch;
}

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -.055em;
}
.display-xl {
  font-size: clamp(3.8rem, 11.4vw, 10.5rem);
  line-height: .82;
  letter-spacing: -.075em;
  max-width: 10ch;
  margin-inline: auto;
  text-transform: uppercase;
}
.display-lg {
  font-size: clamp(2.8rem, 7.4vw, 6.9rem);
  line-height: .9;
  letter-spacing: -.065em;
  text-transform: uppercase;
}
.display-md {
  font-size: clamp(2rem, 4.4vw, 3.8rem);
  line-height: .96;
}
.lead {
  font-size: clamp(1.05rem, 1.55vw, 1.32rem);
  line-height: 1.55;
}
.section--hero .lead {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-strong);
  max-width: 56ch;
}
.hero-title-ghost {
  -webkit-text-stroke: 1.5px var(--text);
}

.eyebrow,
.trust-badge {
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: .55rem .8rem;
  background: transparent;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .19em;
}
.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 0;
}
.section-head {
  display: grid;
  grid-template-columns: minmax(120px, .32fr) 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  padding-top: 1rem;
  border-top: 3px solid var(--text);
}
.section-head .index {
  color: var(--text);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-header {
  height: var(--header-h);
  background: var(--bg);
  border-bottom: 1px solid var(--line-strong);
}
.site-header.scrolled {
  background: rgba(5,5,5,.94);
  border-bottom-color: var(--line-strong);
}
.header-inner { max-width: none; }
.brand img { height: 38px; }
.header-actions { gap: 0; }
.header-actions .btn,
.menu-toggle {
  min-height: 48px;
  border-radius: 0;
  border: 1px solid var(--paper);
  padding: .7rem 1.25rem;
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .14em;
}
.header-actions .btn { border-right: 0; }
.menu-toggle .bars span { height: 2px; }

.menu-overlay {
  background:
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(255,255,255,.12) 50%, transparent calc(50% + .5px)),
    rgba(5,5,5,.98);
  backdrop-filter: none;
}
.menu-overlay-grid { gap: clamp(3rem, 8vw, 8rem); }
.menu-list > li { border-bottom-color: var(--line-strong); }
.menu-list > li:first-child { border-top: 3px solid var(--paper); }
.menu-list a {
  font-size: clamp(1.8rem, 4.6vw, 4.8rem);
  line-height: .95;
  text-transform: uppercase;
  padding: .8rem .15rem;
}
.menu-list .num { color: var(--text); }
.menu-side {
  padding-top: 1rem;
  border-top: 3px solid var(--paper);
}
.menu-side h4,
.site-footer h4 {
  color: var(--text);
  font-weight: 700;
}

.btn {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  min-height: 52px;
  padding: .9rem 1.5rem;
  border-width: 1px;
}
.btn-large { min-height: 62px; padding: 1.1rem 2rem; font-size: .82rem; }
.btn-small { min-height: 42px; padding: .65rem 1rem; font-size: .68rem; }
.btn-solid { background: var(--paper); color: var(--ink); }
.btn-ghost { border-color: var(--paper); }

.marquee {
  padding: .72rem 0;
  border-color: var(--line-strong);
  background: var(--paper);
}
.marquee-item {
  color: var(--ink);
  font-size: .72rem;
  font-weight: 700;
}
.marquee-item::after {
  width: 18px;
  height: 18px;
  border: 1px solid var(--ink);
  background: transparent;
}

.choice-grid { gap: 0; border: 1px solid var(--line-strong); }
.choice-card {
  min-height: clamp(360px, 42vw, 560px);
  padding: clamp(1.5rem, 3vw, 3rem);
  border: 0;
  border-right: 1px solid var(--line-strong);
  background: rgba(5,5,5,.7);
}
.choice-card:last-child { border-right: 0; }
.choice-card .ghost {
  top: -.1em;
  right: .02em;
  font-size: clamp(14rem, 31vw, 28rem);
  -webkit-text-stroke: 1px rgba(255,255,255,.34);
  background: none;
  color: transparent;
}
.choice-card h3 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  text-transform: uppercase;
  line-height: .9;
}
.choice-card .go {
  top: 1.5rem;
  left: 1.5rem;
  border-radius: 50%;
  border-color: var(--paper);
}

.stats-grid {
  border-radius: 0;
  border-color: var(--line-strong);
  background: transparent;
}
.trust-item {
  text-align: left;
  background: var(--paper);
  color: var(--ink);
  border-color: var(--ink);
}
.trust-number {
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: .8;
}
.trust-label { color: rgba(0,0,0,.68); font-weight: 700; }

.card-grid,
.price-grid,
.steps { gap: 0; border: 1px solid var(--line-strong); }
.panel,
.price-card,
.step,
.split-card,
.form-shell,
.embed-shell {
  border-radius: 0;
  border: 0;
  border-right: 1px solid var(--line-strong);
  background: rgba(5,5,5,.76);
}
.card-grid > :nth-child(2n),
.price-grid > :last-child,
.steps > :last-child { border-right: 0; }
.panel { min-height: 300px; }
.panel-icon {
  border-radius: 50%;
  border-color: var(--paper);
}
.panel h3,
.step h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  text-transform: uppercase;
}
.step::before {
  color: var(--text);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.note-strip {
  border: 1px dashed var(--line-strong);
  border-left: 8px solid var(--paper);
  border-radius: 0;
  background: transparent;
}

.split-card { border: 1px solid var(--line-strong); }
.split-card--invert { background: var(--paper); border-color: var(--paper); }
.split-card .who { font-weight: 700; }

.check-grid { gap: 0; border: 1px solid var(--line-strong); }
.check-grid li {
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  min-height: 90px;
}
.check-grid .tick { border-radius: 50%; border-color: var(--paper); }

.seg-control {
  border-radius: 0;
  padding: 0;
  gap: 0;
}
.seg-control a { border-radius: 0; padding: .7rem 1.4rem; }
.price-card { min-height: 520px; }
.price-card--featured { background: var(--paper); border-color: var(--paper); }
.price-card .flag {
  top: 0;
  left: 0;
  transform: none;
  border: 0;
  border-radius: 0;
  background: var(--ink);
  color: var(--paper);
  padding: .5rem .75rem;
}

.form-shell {
  border: 1px solid var(--line-strong);
  padding: clamp(1.5rem, 5vw, 4rem);
}
.form-section-label {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  text-transform: uppercase;
  border-top: 3px solid var(--paper);
  padding-top: .8rem;
}
.field label { color: var(--text); font-weight: 700; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="password"],
.field input[type="number"],
.field textarea {
  border-radius: 0;
  border-color: var(--line-strong);
  background: transparent;
}
.radio-pill label { border-radius: 0; border-color: var(--paper); }
.alert { border-radius: 0; }

.contact-line {
  border-bottom-color: var(--line-strong);
  min-height: 96px;
}
.contact-line:first-child { border-top: 3px solid var(--paper); }
.contact-line .tag { color: var(--text); font-weight: 700; }
.social-row a { border-radius: 0; border-color: var(--paper); }

.embed-shell {
  border: 1px solid var(--line-strong);
  background: var(--paper);
}

.cta-band {
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
}
.cta-band::before {
  content: "GO";
  position: absolute;
  left: -.08em;
  bottom: -.3em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,.15);
  font: 700 clamp(13rem, 34vw, 34rem)/.7 var(--font-display);
  letter-spacing: -.1em;
}
.cta-band h2 { color: var(--ink); position: relative; }
.cta-band .lead { color: rgba(0,0,0,.65); position: relative; }
.cta-band .btn-solid { background: var(--ink); color: var(--paper); }
.cta-band .btn-ghost { color: var(--ink); border-color: var(--ink); }

.site-footer {
  border-top: 0;
  padding-top: clamp(4rem, 8vw, 7rem);
  background: var(--bg);
}
.footer-grid {
  padding-top: 1.5rem;
  border-top: 3px solid var(--paper);
}
.footer-brand img { height: 34px; }
.footer-bottom { border-top-color: var(--line-strong); }

.to-top {
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

@media (hover: hover) and (pointer: fine) {
  .choice-card:hover {
    background: var(--paper);
    transform: none;
  }
  .choice-card:hover .ghost {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-stroke-color: rgba(0,0,0,.28);
  }
  .panel:hover,
  .step:hover,
  .price-card:hover {
    transform: none;
    background: var(--paper);
    color: var(--ink);
    border-color: var(--paper);
  }
  .panel:hover h3,
  .step:hover h3,
  .price-card:hover .amount { color: var(--ink); }
  .panel:hover p,
  .step:hover p,
  .price-card:hover .tagline,
  .price-card:hover li { color: rgba(0,0,0,.66); }
  .panel:hover .panel-icon { color: var(--ink); border-color: var(--ink); }
  .step:hover::before { color: var(--ink); border-color: rgba(0,0,0,.2); }
  .btn-solid:hover { background: var(--ink); color: var(--paper); }
  .cta-band .btn-solid:hover { background: transparent; color: var(--ink); border-color: var(--ink); }
  .cta-band .btn-ghost:hover { background: var(--ink); color: var(--paper); }
}

@media (max-width: 1100px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps > :nth-child(2) { border-right: 0; }
  .steps > :nth-child(-n+2) { border-bottom: 1px solid var(--line-strong); }
}

@media (max-width: 880px) {
  :root { --header-h: 72px; }
  .section--hero { min-height: 76svh; }
  .display-xl { font-size: clamp(3.5rem, 15vw, 7rem); }
  .stats-grid .trust-item:nth-child(2n) { border-right: 0; }
  .stats-grid .trust-item:nth-child(-n+2) { border-bottom-color: var(--ink); }
  .price-grid { border: 0; gap: 1rem; }
  .price-card { border: 1px solid var(--line-strong); min-height: auto; }
}

@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; gap: .5rem; }
  .hero-editorial { grid-template-columns: 1fr; }
  .hero-aside {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line-strong);
    padding-top: 1.5rem;
  }
  .hero-stamp { width: 130px; flex-shrink: 0; }
  .choice-grid,
  .card-grid { grid-template-columns: 1fr; }
  .choice-card,
  .panel { border-right: 0; border-bottom: 1px solid var(--line-strong); }
  .choice-card:last-child,
  .panel:last-child { border-bottom: 0; }
  .choice-card { min-height: 390px; }
  .card-grid > :last-child { border-bottom: 0; }
}

@media (max-width: 600px) {
  .brand img { height: 25px; }
  .menu-toggle { min-height: 42px; padding: .6rem .8rem; }
  .section--hero::before { display: none; }
  .section--hero::after { opacity: .55; }
  .display-xl { font-size: clamp(3.15rem, 16.8vw, 5.3rem); }
  .hero-aside { align-items: flex-end; }
  .hero-stamp { width: 112px; font-size: .62rem; padding: .8rem; }
  .hero-aside-note { font-size: .72rem; }
  .steps { grid-template-columns: 1fr; }
  .steps > * { border-right: 0; border-bottom: 1px solid var(--line-strong); }
  .steps > :last-child { border-bottom: 0; }
  .field-row[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  .field-row[style*="grid-template-columns"] .btn { width: 100%; margin-top: .75rem; }
  .footer-brand img { height: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  body::after,
  .eyebrow::before,
  .marquee-track {
    animation: none !important;
  }
  .marquee { overflow-x: auto; }
  .reveal,
  .animate-on-scroll,
  .menu-list > li {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
