/* ============================================================
   COLAB Creative Share site
   Visual system adapted from the TGM Handbook.
   Recant for the COLAB wordmark · Inter for everything else.
   ============================================================ */

@font-face {
  font-family: 'Recant';
  src: url('fonts/CSRecant-Regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}

:root {
  /* backgrounds */
  --bg: #0A0A0A;
  --bg-soft: #131313;
  --surface: #171717;
  --surface-2: #1F1F1F;
  --surface-deep: #050505;

  /* text */
  --text: #FFFFFF;
  --text-muted: #A8A8A8;
  --text-light: #6B6B6B;

  /* borders */
  --border: #262626;
  --border-strong: #3A3A3A;

  /* accents */
  --lime: #C8FF35;
  --lime-dark: #B8EE25;
  --lime-soft: rgba(200, 255, 53, 0.10);
  --coral: #FF5E5B;
  --coral-soft: rgba(255, 94, 91, 0.10);
  --info: #6FA8FF;
  --info-soft: rgba(111, 168, 255, 0.09);
  --violet: #C49BFF;
  --violet-soft: rgba(196, 155, 255, 0.10);

  /* radii */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* shadow / glow */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.25);
  --shadow-md: 0 8px 28px rgba(0,0,0,0.35);
  --glow-lime: 0 0 32px rgba(200,255,53,0.20);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ---------- LOADING SPLASH ---------- */
#splash {
  position: fixed; inset: 0; z-index: 999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
#splash img {
  width: min(52vw, 380px); height: auto;
  animation: splashPulse 1.15s ease-in-out infinite;
}
#splash.hide { opacity: 0; visibility: hidden; }
@keyframes splashPulse {
  0%, 100% { opacity: .5; transform: scale(.985); }
  50% { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) { #splash img { animation: none; } }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

.wrap { max-width: 820px; margin: 0 auto; padding: 22px 22px 100px; }

/* content links default to lime brand colour */
a { color: var(--lime); text-decoration-color: rgba(200,255,53,.45); }

/* ---------- TOP NAV (pill bar) ---------- */
nav {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(23,23,23,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 9px 9px 9px 18px;
  box-shadow: var(--shadow-md);
  margin-bottom: 36px;
}
nav .logo {
  font-family: 'Recant', 'Inter', sans-serif;
  font-size: 22px;
  letter-spacing: .02em;
  margin-right: auto;
  color: var(--text);
}
nav .logo span { color: var(--lime); }
nav .brand { margin-right: auto; display: flex; align-items: center; line-height: 0; }
nav .brand img { height: 19px; width: auto; display: block; }
nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  transition: all .15s;
}
nav a:hover { color: var(--text); background: var(--surface-2); }
nav a.on { background: var(--lime); color: var(--bg); font-weight: 700; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 38px 34px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.hero::before {
  content: ""; position: absolute; top: -120px; right: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(200,255,53,0.12), transparent 62%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; bottom: -140px; left: -120px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(255,94,91,0.08), transparent 62%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lime); color: var(--bg);
  padding: 6px 14px; border-radius: var(--r-pill);
  font-size: 11px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 20px;
}
.kicker.coral { background: var(--coral); }

h1 {
  font-size: clamp(38px, 7vw, 62px);
  font-weight: 900; letter-spacing: -.025em;
  text-transform: uppercase; line-height: .92;
  margin-bottom: 16px;
}
h1 span { color: var(--lime); }
.lede {
  font-size: 17px; color: var(--text-muted);
  max-width: 600px; line-height: 1.5;
}
.lede a { color: var(--lime); text-decoration: none; border-bottom: 1px solid rgba(200,255,53,0.4); }

.hero-meta { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--r-pill); padding: 8px 15px;
  font-size: 13px; font-weight: 500; color: var(--text);
}
.chip svg { width: 15px; height: 15px; color: var(--lime); flex-shrink: 0; }

/* ---------- SECTION TITLES ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--text-muted);
  margin: 44px 0 14px;
}
.eyebrow::before {
  content: ""; width: 20px; height: 2px;
  background: var(--lime); border-radius: 2px;
}

h2 {
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -.015em; line-height: 1;
  margin-bottom: 14px;
}
h2 span { color: var(--lime); }

h3 {
  font-size: 17px; font-weight: 700; letter-spacing: -.01em;
  margin: 26px 0 8px; color: var(--text);
}
p { color: var(--text-muted); margin-bottom: 13px; }
p strong, li strong { color: var(--text); font-weight: 700; }
em { color: var(--text); font-style: italic; }

/* generic lists (presenter guide) */
.body-list { margin: 6px 0 16px; }
.body-list li {
  list-style: none; position: relative;
  padding-left: 24px; margin-bottom: 9px;
  color: var(--text-muted);
}
.body-list li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 9px; height: 2px; background: var(--lime); border-radius: 2px;
}

/* ---------- CALLOUTS ---------- */
.callout {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 16px 20px; margin: 18px 0;
  border-radius: var(--r); border: 1px solid transparent;
}
.callout .ic { flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px; }
.callout-body { font-size: 14.5px; line-height: 1.5; color: var(--text); }
.callout-body b { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 4px; }
.callout.tip { background: var(--lime-soft); border-color: rgba(200,255,53,0.25); }
.callout.tip .ic, .callout.tip b { color: var(--lime); }
.callout.info { background: var(--info-soft); border-color: rgba(111,168,255,0.25); }
.callout.info .ic, .callout.info b { color: var(--info); }
.callout.warn { background: var(--coral-soft); border-color: rgba(255,94,91,0.30); }
.callout.warn .ic, .callout.warn b { color: var(--coral); }

/* ---------- HOW IT WORKS (flow steps) ---------- */
.flow {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin: 18px 0 8px;
}
.flow-step {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--r); padding: 22px 20px; position: relative;
  transition: all .2s;
}
.flow-step:hover { transform: translateY(-2px); border-color: var(--border-strong); }
.flow-step:last-child { background: var(--lime); border-color: var(--lime); box-shadow: var(--glow-lime); }
.flow-num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--lime); color: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 15px; margin-bottom: 13px;
}
.flow-step:last-child .flow-num { background: var(--bg); color: var(--lime); }
.flow-step h4 { font-size: 14px; font-weight: 800; margin-bottom: 5px; color: var(--text); }
.flow-step p { font-size: 13px; margin: 0; color: var(--text-muted); }
.flow-step:last-child h4 { color: var(--bg); }
.flow-step:last-child p { color: rgba(10,10,10,0.78); }

/* ---------- CARD GRID (formats / what to bring) ---------- */
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 18px 0; }
.card {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--r); padding: 20px; transition: all .2s;
}
.card:hover { transform: translateY(-2px); border-color: var(--lime); box-shadow: 0 0 24px rgba(200,255,53,0.10); }
.card .ic { width: 24px; height: 24px; color: var(--lime); margin-bottom: 12px; }
.card-title { font-weight: 700; font-size: 15px; margin-bottom: 4px; color: var(--text); }
.card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ---------- TWO EVENT TYPES ---------- */
.events { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 18px 0 8px; }
.event-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r); padding: 22px 20px; }
.event-card.share { border-color: rgba(200,255,53,0.35); }
.event-card.exhibit { border-color: rgba(255,94,91,0.35); }
.event-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--r-pill); margin-bottom: 13px; color: var(--bg);
}
.event-card.share .event-tag { background: var(--lime); }
.event-card.exhibit .event-tag { background: var(--coral); }
.event-card h4 { font-size: 16px; font-weight: 800; margin-bottom: 5px; color: var(--text); }
.event-card .event-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 13px; }
.event-card .body-list { margin: 0; }
.event-card .body-list li { font-size: 13px; margin-bottom: 7px; }
.event-card.exhibit .body-list li::before { background: var(--coral); }
.event-note {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--text-muted); margin: 4px 0 8px;
}
.event-note svg { width: 16px; height: 16px; color: var(--lime); flex-shrink: 0; }

/* clickable event cards (deck step 1) */
a.event-card { text-decoration: none; display: block; }
.event-card.clickable { cursor: pointer; transition: all .18s; }
.event-card.clickable.share:hover, .event-card.clickable.share:focus-visible { border-color: var(--lime); transform: translateY(-3px); box-shadow: 0 0 26px rgba(200,255,53,.14); outline: none; }
.event-card.clickable.exhibit:hover, .event-card.clickable.exhibit:focus-visible { border-color: var(--coral); transform: translateY(-3px); box-shadow: 0 0 26px rgba(255,94,91,.14); outline: none; }
.event-go { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; font-size: 13.5px; font-weight: 800; }
.event-card.share .event-go { color: var(--lime); }
.event-card.exhibit .event-go { color: var(--coral); }
.event-go svg { width: 15px; height: 15px; transition: transform .18s; }
.event-card.clickable:hover .event-go svg { transform: translateX(3px); }

/* deck swipe feel */
.stepper-track { overflow-x: hidden; }
.deck.fwd .step.active { animation: deckInR .32s cubic-bezier(.2,.7,.2,1); }
.deck.back .step.active { animation: deckInL .32s cubic-bezier(.2,.7,.2,1); }
@keyframes deckInR { from { opacity: 0; transform: translateX(42px); } to { opacity: 1; transform: translateX(0); } }
@keyframes deckInL { from { opacity: 0; transform: translateX(-42px); } to { opacity: 1; transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) { .deck.fwd .step.active, .deck.back .step.active { animation: none; } }

/* ---------- DECISION CHOICE CARDS (stepper step 1) ---------- */
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 6px 0; }
.choice {
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  text-align: left; text-decoration: none; cursor: pointer;
  background: var(--bg-soft); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 20px 18px; font-family: inherit;
  transition: all .18s;
}
.choice.share:hover { border-color: var(--lime); transform: translateY(-3px); box-shadow: 0 0 26px rgba(200,255,53,.14); }
.choice.exhibit:hover { border-color: var(--coral); transform: translateY(-3px); box-shadow: 0 0 26px rgba(255,94,91,.14); }
.choice .ch-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-pill); color: var(--bg);
}
.choice.share .ch-tag { background: var(--lime); }
.choice.exhibit .ch-tag { background: var(--coral); }
.choice .ch-t { font-size: 17px; font-weight: 800; color: var(--text); }
.choice .ch-d { font-size: 13px; color: var(--text-muted); line-height: 1.45; }
.choice .ch-go {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 6px;
  font-size: 13px; font-weight: 800; letter-spacing: .02em;
}
.choice.share .ch-go { color: var(--lime); }
.choice.exhibit .ch-go { color: var(--coral); }
.choice .ch-go svg { width: 15px; height: 15px; transition: transform .18s; }
.choice:hover .ch-go svg { transform: translateX(3px); }
@media (max-width: 600px) { .choice-grid { grid-template-columns: 1fr; } }

/* ---------- ASK COMPARISON TABLE ---------- */
.cmp { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 18px 0; }
.cmp-col { border-radius: var(--r); border: 1px solid var(--border); overflow: hidden; }
.cmp-col h5 {
  font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 11px 16px;
}
.cmp-col.weak h5 { background: var(--coral-soft); color: var(--coral); }
.cmp-col.strong h5 { background: var(--lime-soft); color: var(--lime); }
.cmp-col ul { padding: 8px 16px 14px; }
.cmp-col li { list-style: none; font-size: 13.5px; color: var(--text-muted); padding: 6px 0; border-bottom: 1px solid var(--border); }
.cmp-col li:last-child { border-bottom: none; }
.cmp-col.strong li { color: var(--text); }

/* ---------- STEPPER (click-through guide) ---------- */
.stepper {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 26px 28px 24px; margin: 18px 0 8px;
  box-shadow: var(--shadow-sm);
}
.stepper-bar { height: 4px; background: var(--surface-2); border-radius: 99px; overflow: hidden; margin-bottom: 18px; }
.stepper-progress { height: 100%; background: var(--lime); border-radius: 99px; width: 14%; transition: width .3s ease; }
.stepper-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 4px; }
.stepper-count { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); }
.stepper-count b { color: var(--lime); }
.stepper-track { min-height: 140px; }
.step { display: none; animation: stepIn .3s ease; }
.step.active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.step h3 { margin-top: 0; font-size: 22px; font-weight: 900; letter-spacing: -.01em; }

/* big animated step icon */
.step-ico {
  width: 56px; height: 56px; border-radius: 18px;
  background: var(--lime-soft); border: 1px solid rgba(200,255,53,.3);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.step-ico svg { width: 28px; height: 28px; color: var(--lime); }
.step.active .step-ico { animation: icoPop .5s cubic-bezier(.2,.8,.2,1); }
@keyframes icoPop { 0% { transform: scale(.5) rotate(-8deg); opacity: 0; } 60% { transform: scale(1.1) rotate(2deg); } 100% { transform: scale(1) rotate(0); opacity: 1; } }
.step-lead { font-size: 15.5px; color: var(--text-muted); margin-bottom: 14px; }
.step-lead strong { color: var(--text); }

/* mini icon cards inside steps */
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 6px 0; }
.mini {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px; transition: all .2s;
}
.step.active .mini { animation: stepIn .4s ease backwards; }
.step.active .mini:nth-child(2) { animation-delay: .06s; }
.step.active .mini:nth-child(3) { animation-delay: .12s; }
.step.active .mini:nth-child(4) { animation-delay: .18s; }
.mini:hover { border-color: var(--lime); transform: translateY(-2px); }
.mini.wide { grid-column: 1 / -1; }
.mini .mi-ic { width: 26px; height: 26px; color: var(--lime); margin-bottom: 9px; }
.mini .mi-t { font-weight: 700; font-size: 14px; color: var(--text); margin-bottom: 3px; }
.mini .mi-d { font-size: 12.5px; color: var(--text-muted); line-height: 1.45; }

/* pick-one visual grid */
.pickgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(58px, 1fr)); gap: 9px; margin: 14px 0 10px; }
.pt {
  position: relative;
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: 14px;
  color: var(--text-light); transition: all .2s; cursor: default;
}
.pt svg { width: 21px; height: 21px; }
.pt:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }
.pt::after {
  content: attr(data-label);
  position: absolute; bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--surface-2); color: var(--text); border: 1px solid var(--border-strong);
  font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 7px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .15s, transform .15s; z-index: 6;
}
.pt:hover::after { opacity: 1; transform: translateX(-50%) translateY(0); }
.pt.on { background: var(--lime-soft); border-color: var(--lime); color: var(--lime); box-shadow: 0 0 22px rgba(200,255,53,.18); }
.pt.on::before {
  content: ""; position: absolute; top: -5px; right: -5px;
  width: 16px; height: 16px; border-radius: 50%; background: var(--lime);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230A0A0A' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.step.active .pt.on { animation: icoPop .5s cubic-bezier(.2,.8,.2,1); }
.pick-cap { font-size: 13px; color: var(--text-light); margin-bottom: 4px; }

/* animated timeline (structure step) */
.timeline { display: flex; flex-direction: column; gap: 9px; margin: 8px 0; }
.tl-row {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--r); padding: 13px 16px;
}
.step.active .tl-row { animation: tlIn .45s ease backwards; }
.step.active .tl-row:nth-child(1) { animation-delay: .05s; }
.step.active .tl-row:nth-child(2) { animation-delay: .14s; }
.step.active .tl-row:nth-child(3) { animation-delay: .23s; }
.step.active .tl-row:nth-child(4) { animation-delay: .32s; }
@keyframes tlIn { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: translateX(0); } }
.tl-ic {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--lime); color: var(--bg);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tl-ic svg { width: 19px; height: 19px; }
.tl-info { min-width: 0; }
.tl-t { font-weight: 700; color: var(--text); font-size: 14px; }
.tl-d { font-size: 12.5px; color: var(--text-muted); line-height: 1.4; }
.tl-time {
  margin-left: auto; flex-shrink: 0;
  font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  color: var(--lime); background: var(--lime-soft); padding: 5px 11px; border-radius: var(--r-pill);
}
@media (prefers-reduced-motion: reduce) {
  .step.active .step-ico, .step.active .mini, .step.active .tl-row { animation: none; }
}
.stepper-nav { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); }
.stepper-nav .spacer { flex: 1; }
.step-dots { display: flex; gap: 7px; }
.step-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--surface-2); border: none; padding: 0; cursor: pointer; transition: all .15s; }
.step-dot.on { background: var(--lime); transform: scale(1.25); }
.btn-min {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent; border: 1.5px solid var(--border-strong); color: var(--text);
  padding: 11px 20px; border-radius: var(--r-pill); font-size: 14px; font-weight: 700;
  font-family: inherit; cursor: pointer; transition: all .15s;
}
.btn-min:hover { border-color: var(--text-muted); }
.btn-min:disabled { opacity: .35; cursor: default; }
.btn-min svg { width: 16px; height: 16px; }

@media (max-width: 680px) {
  .stepper { padding: 22px 18px; }
  .step-dots { display: none; }
}

/* ---------- FAQ ACCORDION ---------- */
.faq { margin: 8px 0 6px; }
details {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--r); margin-bottom: 9px; overflow: hidden;
  transition: border-color .15s;
}
details[open] { border-color: var(--border-strong); }
summary {
  cursor: pointer; list-style: none;
  padding: 15px 18px; font-size: 14.5px; font-weight: 600; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+"; color: var(--lime); font-size: 22px; font-weight: 400;
  line-height: 1; flex-shrink: 0; transition: transform .2s;
}
details[open] summary::after { content: "\2212"; }
details .ans { padding: 0 18px 16px; font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* ---------- FORM ---------- */
.form-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 32px 30px; margin-top: 18px;
  box-shadow: var(--shadow-sm);
}
.form-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.form-card-head .badge {
  background: var(--lime); color: var(--bg);
  font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-pill);
}
.form-card h2 { font-size: 22px; margin-bottom: 4px; }
.form-intro { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; }

label {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--text-muted);
  margin: 20px 0 7px;
}
label .req { color: var(--lime); font-weight: 800; }
label svg { width: 14px; height: 14px; color: var(--text-light); }
input, textarea, select {
  width: 100%; background: var(--surface-deep);
  border: 1px solid var(--border-strong); border-radius: var(--r-sm);
  color: var(--text); padding: 13px 15px; font-size: 15px;
  font-family: inherit; transition: border-color .15s, box-shadow .15s;
}
input::placeholder, textarea::placeholder { color: var(--text-light); }
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(200,255,53,0.12);
}
textarea { min-height: 104px; resize: vertical; }
select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23C8FF35' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px;
}
.field-hint { font-size: 12px; color: var(--text-light); margin-top: 6px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- BUTTONS ---------- */
.cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--lime); color: var(--bg);
  font-weight: 800; letter-spacing: .03em;
  padding: 15px 28px; border-radius: var(--r-pill);
  text-decoration: none; font-size: 14.5px; border: none; cursor: pointer;
  font-family: inherit; transition: all .15s;
}
.cta:hover { background: var(--lime-dark); transform: translateY(-1px); box-shadow: var(--glow-lime); }
.cta svg { width: 17px; height: 17px; transition: transform .18s; }
.cta:hover svg { transform: translateX(3px); }
.cta:disabled { opacity: .55; cursor: default; transform: none; box-shadow: none; }
.cta.ghost { background: transparent; color: var(--lime); border: 1.5px solid var(--lime); }
.cta.ghost:hover { background: var(--lime-soft); box-shadow: none; }
.cta.block { width: 100%; margin-top: 26px; padding: 16px; font-size: 15px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin: 24px 0 8px; }

/* stacked CTA: label + small clarifier line */
.cta.stacked { flex-direction: column; gap: 3px; padding: 12px 26px; line-height: 1.15; }
.cta .cta-label { display: inline-flex; align-items: center; gap: 8px; }
.cta .cta-sub { font-size: 11px; font-weight: 600; letter-spacing: .01em; text-transform: none; opacity: .72; }
.cta-or { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-light); }

/* ---------- SUBMIT MESSAGE ---------- */
.msg { margin-top: 18px; padding: 16px 18px; border-radius: var(--r); font-size: 14px; display: none; line-height: 1.5; }
.msg.ok { display: flex; gap: 11px; align-items: flex-start; background: var(--lime-soft); color: var(--lime); border: 1px solid rgba(200,255,53,0.4); }
.msg.err { display: flex; gap: 11px; align-items: flex-start; background: var(--coral-soft); color: #ff9b99; border: 1px solid rgba(255,94,91,0.4); }
.msg svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }

/* ---------- FOOTER ---------- */
footer {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--border);
  color: var(--text-light); font-size: 12px;
  display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center;
}
footer .logo { font-family: 'Recant','Inter',sans-serif; font-size: 16px; color: var(--text-muted); }
footer .logo span { color: var(--lime); }
footer a { color: var(--text-muted); text-decoration: none; }
footer a:hover { color: var(--lime); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 680px) {
  .flow { grid-template-columns: 1fr; }
  .card-grid, .cmp { grid-template-columns: 1fr; }
  .hero { padding: 30px 22px 26px; }
  .form-card { padding: 26px 20px; }
  nav { padding: 8px 8px 8px 14px; gap: 2px; }
  nav a { padding: 7px 10px; font-size: 11.5px; }
}
