@font-face { font-family:"Geist"; src:url("fonts/Geist-Bold.ttf") format("truetype"); font-weight:700; }
@font-face { font-family:"Geist"; src:url("fonts/Geist-SemiBold.ttf") format("truetype"); font-weight:600; }
@font-face { font-family:"Geist"; src:url("fonts/Geist-Medium.ttf") format("truetype"); font-weight:500; }
@font-face { font-family:"Geist"; src:url("fonts/Geist-Regular.ttf") format("truetype"); font-weight:400; }
@font-face { font-family:"Geist Mono"; src:url("fonts/GeistMono-Regular.ttf") format("truetype"); font-weight:400; }
@font-face { font-family:"Geist Mono"; src:url("fonts/GeistMono-Bold.ttf") format("truetype"); font-weight:700; }

*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }

:root {
  --bg:       #000000;
  --surface:  #0a0a0a;
  --surface2: #111111;
  --border:   #1f1f1f;
  --border2:  #2a2a2a;
  --text:     #ededed;
  --muted:    #888888;
  --muted2:   #555555;
  --accent:   #c8c8c8;
  --accent-d: #aaaaaa;
  --white:    #ffffff;
}

html { scroll-behavior:smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Geist", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ── ANNOUNCE ── */
.announce {
  height: 38px;
  border-bottom: 1px solid rgba(200,40,40,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: #ccc;
  background: linear-gradient(90deg, #1a0303 0%, #2c0707 28%, #360909 50%, #2c0707 72%, #1a0303 100%);
}
.chip {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: .03em;
}
.chip-red   { background: rgba(180,25,25,.25); color: #f87272; border: 1px solid rgba(200,50,50,.4); }
.chip-blue  { background: #1a1a1a; color: var(--muted); border: 1px solid var(--border2); }
.chip-green { background: #1a1a1a; color: var(--muted); border: 1px solid var(--border2); }
.a-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  color: #f87272;
  text-decoration: none;
  border: 1px solid rgba(200,50,50,.35);
  padding: 3px 10px;
  border-radius: 999px;
  transition: border-color 150ms, background 150ms;
}
.a-link:hover { border-color: rgba(220,80,80,.6); background: rgba(180,20,20,.2); }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid rgba(255,255,255,.07);
  height: 48px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.nav-inner {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  text-decoration: none;
  margin-right: 20px;
  flex-shrink: 0;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px) saturate(1.5);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 5px 11px 5px 8px;
  transition: background 150ms, border-color 150ms;
}
.nav-logo:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
}
.nav-links {
  display: flex;
  align-items: center;
  flex: 1;
}
.nav-a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
  height: 48px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 150ms;
  position: relative;
}
.nav-a:hover { color: var(--text); }
.nav-a.active { color: var(--white); }
.nav-a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--white);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.btn-ghost {
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid var(--border2);
  background: transparent;
  font-family: "Geist", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: border-color 150ms, background 150ms;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: #555; background: #111; }
.btn-white {
  padding: 6px 14px;
  border-radius: 6px;
  border: none;
  background: var(--white);
  font-family: "Geist", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 150ms;
  white-space: nowrap;
}
.btn-white:hover { opacity: .85; }

/* ── PAGE WRAPPER ── */
.page { max-width: 1150px; margin: 0 auto; padding: 0 24px; }

/* ── HERO ── */
.hero {
  text-align: center;
  padding: 96px 24px 0;
  max-width: 1150px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--muted);
}
.hero h1 {
  font-size: clamp(40px, 6.5vw, 72px);
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: #ff5050; }
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 460px;
  margin: 0 auto 36px;
}
.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--white);
  color: #000;
  border: none;
  border-radius: 6px;
  font-family: "Geist", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 150ms;
}
.btn-primary:hover { opacity: .85; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
  border-radius: 6px;
  font-family: "Geist", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 150ms, background 150ms;
}
.btn-secondary:hover { border-color: #555; background: #111; }

/* ── GRID BG ── */
.grid-wrap { position: relative; overflow: hidden; }
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--border) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: .6;
  pointer-events: none;
}
.grid-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, #000 100%);
}

/* ── GRADIENT VISUAL ── */
.hero-visual {
  position: relative;
  height: 340px;
  margin-top: 56px;
}
.gblob {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 15% 55%, rgba(200,35,35,.55) 0%, transparent 68%),
    radial-gradient(ellipse 40% 55% at 5%  80%, rgba(180,20,20,.45)  0%, transparent 65%),
    radial-gradient(ellipse 40% 55% at 82% 50%, rgba(30,200,160,.3) 0%, transparent 70%),
    radial-gradient(ellipse 28% 42% at 93% 75%, rgba(50,180,90,.25)  0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 50% 28%, rgba(210,35,55,.4)   0%, transparent 58%),
    radial-gradient(ellipse 30% 40% at 38% 48%, rgba(170,15,15,.3)   0%, transparent 55%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 72%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 72%, transparent 100%);
}
.network-visual {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 280px;
  opacity: .8;
}

/* ── SECTION ── */
.section { padding: 80px 0; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 480px;
}
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── CARD GRID ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 48px;
}
.card {
  background: var(--surface);
  padding: 28px;
  transition: background 200ms;
}
.card:hover { background: var(--surface2); }
.card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border2);
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 16px;
}
.card-num {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  color: var(--muted2);
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -.3px;
}
.card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: gap 150ms, color 150ms;
}
.card-link:hover { gap: 8px; color: var(--text); }

/* Card with full-width illustration area */
.card-hero {
  width: calc(100% + 56px);
  margin: -28px -28px 20px;
  height: 128px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-hero svg { opacity: .55; }
.card:hover .card-hero svg { opacity: .75; }

/* File upload */
.file-upload-wrap {
  position: relative;
}
.file-upload-wrap input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.file-upload-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px dashed var(--border2);
  border-radius: 6px;
  font-size: 13px;
  color: var(--muted);
  background: var(--surface2);
  cursor: pointer;
  transition: border-color 150ms, background 150ms;
  user-select: none;
}
.file-upload-wrap:hover .file-upload-label {
  border-color: #444;
  background: #131313;
}
.file-upload-name {
  font-size: 11px;
  color: var(--muted2);
  margin-top: 4px;
  display: none;
}
.file-upload-name.visible { display: block; }

/* ── 3-COL STEPS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 48px;
}
.step { background: var(--surface); padding: 28px; }
.step-num {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  color: var(--muted2);
  margin-bottom: 16px;
  letter-spacing: .04em;
}
.step h3 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.step p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── FAQ ── */
.faq {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 40px;
}
.faq-row { border-bottom: 1px solid var(--border); }
.faq-row:last-child { border-bottom: none; }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px 20px;
  font-family: "Geist", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 150ms;
}
.faq-btn:hover { background: #0d0d0d; }
.faq-chevron {
  flex-shrink: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--muted);
  transition: transform 250ms ease, background 150ms;
}
.faq-row.open .faq-chevron {
  transform: rotate(45deg);
  background: var(--white);
  color: #000;
  border-color: var(--white);
}
.faq-ans { max-height:0; overflow:hidden; transition: max-height 300ms cubic-bezier(.3,.57,.07,.95); }
.faq-ans p { padding: 0 20px 16px; font-size: 13px; color: var(--muted); line-height: 1.65; }
.faq-row.open .faq-ans { max-height: 180px; }

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 64px 48px;
  text-align: center;
  margin: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 200px;
  background: radial-gradient(ellipse, rgba(200,35,35,.25) 0%, transparent 70%);
  pointer-events: none;
}
.cta-block h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 12px;
  position: relative;
}
.cta-block p { color: var(--muted); font-size: 16px; margin-bottom: 28px; position: relative; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.footer-top {
  max-width: 1150px;
  margin: 0 auto;
  padding: 56px 24px 48px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.footer-brand {}
.footer-logo {
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 240px;
  margin-bottom: 20px;
}
.footer-contact-inline { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-inline a,
.footer-contact-inline span {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 150ms;
}
.footer-contact-inline a:hover { color: var(--text); }

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 16px;
}
.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 150ms;
}
.footer-col-links a:hover { color: var(--text); }

.footer-hours { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.footer-hours-row { display: flex; justify-content: space-between; gap: 12px; }
.footer-hours-row .fday { font-size: 13px; color: var(--muted); }
.footer-hours-row .ftime { font-size: 13px; color: var(--text); font-weight: 500; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
}
.footer-bottom-inner {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: var(--muted2); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: 12px; color: var(--muted2); text-decoration: none; transition: color 150ms; }
.footer-legal a:hover { color: var(--muted); }

@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px 32px; }
}

/* ── FORM CARD ── */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 660px;
  margin: 0 auto;
}
.progress-track { height: 2px; background: var(--border2); }
.progress-fill  { height: 2px; background: var(--white); transition: width 350ms cubic-bezier(.3,.57,.07,.95); }
.step-hd { padding: 24px 28px 20px; border-bottom: 1px solid var(--border); }
.step-hd-meta { font-size: 11px; color: var(--muted2); font-family: "Geist Mono", monospace; margin-bottom: 4px; letter-spacing:.04em; }
.step-hd-title { font-size: 18px; font-weight: 700; letter-spacing: -.5px; color: var(--white); }
.step-body { padding: 24px 28px; display: flex; flex-direction: column; gap: 18px; }
.step-foot { padding: 16px 28px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
.foot-note { font-size: 11px; color: var(--muted2); margin-right: auto; }

.field { display: flex; flex-direction: column; gap: 5px; }
.field label { font-size: 12px; font-weight: 500; color: var(--text); }
.hint { font-size: 11px; color: var(--muted2); margin-top: -2px; }
.field input,
.field textarea {
  border: 1px solid var(--border2);
  border-radius: 6px;
  padding: 9px 12px;
  font-family: "Geist", sans-serif;
  font-size: 13px;
  color: var(--text);
  background: var(--surface2);
  outline: none;
  width: 100%;
  transition: border-color 150ms;
}
.field input:focus,
.field textarea:focus { border-color: var(--white); }
.field textarea { resize: vertical; min-height: 72px; }
.field input::placeholder,
.field textarea::placeholder { color: var(--muted2); }

.opts       { display: flex; flex-direction: column; gap: 6px; }
.opts-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.opt {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  border: 1px solid var(--border2);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 120ms, background 120ms;
  user-select: none;
}
.opt:hover { border-color: #444; background: #111; }
.opt.on    { border-color: var(--white); background: #151515; }
.opt input { width: 14px; height: 14px; accent-color: var(--white); flex-shrink:0; padding:0; border:none; }
.opt span  { font-size: 13px; color: var(--text); flex: 1; }
.opt em    { font-style: normal; color: var(--muted); font-size: 12px; }

.btn-back {
  border: 1px solid var(--border2);
  border-radius: 6px;
  background: transparent;
  padding: 7px 14px;
  font-family: "Geist", sans-serif;
  font-size: 12px; font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 150ms, color 150ms;
}
.btn-back:hover { border-color: #555; color: var(--text); }
.btn-next {
  border-radius: 6px;
  border: none;
  background: var(--white);
  padding: 7px 16px;
  font-family: "Geist", sans-serif;
  font-size: 12px; font-weight: 600;
  color: #000;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 5px;
  transition: opacity 150ms;
}
.btn-next:hover { opacity: .8; }

.success-wrap {
  display: none;
  text-align: center;
  padding: 56px 28px;
}
.success-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(69,222,196,.1);
  border: 1px solid rgba(69,222,196,.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 20px;
}
.success-wrap h2 { font-size: 20px; font-weight: 700; letter-spacing: -.5px; margin-bottom: 8px; color: var(--white); }
.success-wrap p  { font-size: 13px; color: var(--muted); line-height: 1.6; }
.success-tag {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; padding: 5px 12px;
  border: 1px solid var(--border2); border-radius: 999px;
  font-size: 12px; color: var(--muted);
}
.dot-green { width: 6px; height: 6px; border-radius: 50%; background: #45dec4; }

/* ── INFO TABLE ── */
.info-table {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 32px;
}
.info-row {
  display: flex;
  border-bottom: 1px solid var(--border);
}
.info-row:last-child { border-bottom: none; }
.info-row dt {
  width: 160px;
  flex-shrink: 0;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  border-right: 1px solid var(--border);
  background: var(--surface);
}
.info-row dd {
  padding: 14px 20px;
  font-size: 13px;
  color: var(--text);
  background: var(--surface2);
  flex: 1;
}

/* ── CONTACT GRID ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

/* ── PAGE HEADER ── */
.page-header {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.page-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
}
.page-header .breadcrumb a { color: var(--muted); text-decoration: none; }
.page-header .breadcrumb a:hover { color: var(--text); }
.page-header h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -2.5px;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}
.page-header p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 520px;
}

/* ── STAT ROW ── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 48px;
}
.stat { background: var(--surface); padding: 24px 28px; }
.stat-val { font-size: 32px; font-weight: 700; letter-spacing: -1.5px; color: var(--white); }
.stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .steps  { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .opts-grid { grid-template-columns: 1fr; }
  .nav-a { display: none; }
  .cta-block { padding: 40px 24px; }
  .step-body { padding: 20px; }
  .step-hd   { padding: 20px; }
  .step-foot { padding: 14px 20px; }
}
@media (max-width: 480px) {
  .announce span:not(.chip):not(.a-link) { display: none; }
  .page-header h1 { letter-spacing: -1.5px; }
}

/* ── UTIL ── */
.mt-48 { margin-top: 48px; }
.mt-32 { margin-top: 32px; }
.text-muted { color: var(--muted); }
.mono { font-family: "Geist Mono", monospace; }
