/* ==========================================================================
   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;
  --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: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes 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;
  }
  .marquee-track {
    animation: marquee 32s linear infinite !important;
    animation-duration: 32s !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
  }
}
