/* Pitch Radar — 2026 conference product UI */

:root {
  --bg: #050a0f;
  --bg-alt: #0a1219;
  --surface: #0f1a24;
  --surface-2: #152433;
  --border: rgba(148, 163, 184, 0.12);
  --border-strong: rgba(0, 229, 160, 0.28);
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --accent: #00e5a0;
  --accent-2: #7c6cff;
  --accent-dim: rgba(0, 229, 160, 0.1);
  --gold: #fbbf24;
  --danger: #fb7185;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --font: "Inter", system-ui, sans-serif;
  --display: "Sora", var(--font);
  --nav-h: 72px;
  --shell: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: #5ef5c4; }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  padding: 0.75rem 1rem; background: var(--accent); color: var(--bg);
}
.skip:focus { left: 1rem; top: 1rem; }

.shell { width: min(100% - 2rem, var(--shell)); margin-inline: auto; position: relative; z-index: 1; }
.shell--narrow { max-width: 760px; }

/* Nav */
.nav {
  position: fixed; inset: 0 0 auto; height: var(--nav-h); z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s, backdrop-filter 0.3s;
}
.nav.is-scrolled {
  background: rgba(5, 10, 15, 0.82);
  backdrop-filter: blur(20px) saturate(1.2);
  border-color: var(--border);
}
.nav__inner { height: 100%; display: flex; align-items: center; gap: 1.5rem; }
.nav__brand {
  display: flex; align-items: center; gap: 0.65rem;
  color: var(--text); font-family: var(--display); font-weight: 600; font-size: 1rem;
}
.nav__mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 24px rgba(0, 229, 160, 0.35);
}
.nav__links { display: none; gap: 1.5rem; margin-left: auto; }
.nav__links a { color: var(--text-muted); font-size: 0.875rem; font-weight: 500; }
.nav__links a:hover { color: var(--text); }
.nav__cta { margin-left: auto; }
.nav__toggle {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__cta { margin-left: 0; }
  .nav__toggle { display: none; }
}

.nav__links.is-open {
  display: flex; flex-direction: column; position: absolute;
  top: var(--nav-h); left: 0; right: 0; padding: 1.25rem;
  background: rgba(10, 18, 25, 0.98); border-bottom: 1px solid var(--border);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.8rem 1.4rem; border-radius: 999px; border: 1px solid transparent;
  font-family: var(--font); font-size: 0.9rem; font-weight: 600; cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--accent); color: #04120c; box-shadow: 0 8px 32px rgba(0, 229, 160, 0.25); }
.btn--primary:hover { background: #2af0b8; color: #04120c; }
.btn--ghost { background: rgba(255,255,255,0.03); border-color: var(--border); color: var(--text); }
.btn--ghost:hover { border-color: var(--border-strong); background: var(--accent-dim); }
.btn--sm { padding: 0.55rem 1rem; font-size: 0.82rem; }
.btn--lg { padding: 1rem 1.75rem; font-size: 1rem; }
.btn--block { width: 100%; }

/* Hero */
.hero {
  position: relative; padding: calc(var(--nav-h) + 3rem) 0 4rem; overflow: hidden;
}
.hero__mesh {
  position: absolute; inset: -20% -10% auto; height: 70%; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 20% 20%, rgba(0, 229, 160, 0.14), transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 10%, rgba(124, 108, 255, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(0, 229, 160, 0.06), transparent);
}
.hero__grid {
  display: grid; gap: 3rem; align-items: center;
}
@media (min-width: 960px) { .hero__grid { grid-template-columns: 1.05fr 0.95fr; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.85rem; border-radius: 999px;
  border: 1px solid var(--border); background: rgba(15, 26, 36, 0.8);
  font-size: 0.78rem; font-weight: 600; color: var(--text-muted); margin-bottom: 1.25rem;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.85)} }

.hero h1 {
  font-family: var(--display); font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 1rem;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #a78bfa 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lede { color: var(--text-muted); font-size: 1.05rem; max-width: 52ch; margin-bottom: 1.75rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.hero__stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  padding-top: 1.5rem; border-top: 1px solid var(--border);
}
@media (min-width: 640px) { .hero__stats { grid-template-columns: repeat(4, 1fr); } }
.hero__stats dt {
  font-family: var(--display); font-size: 1.35rem; font-weight: 700; color: var(--accent);
}
.hero__stats dd { font-size: 0.78rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; }

/* Hero preview */
.hero__preview { position: relative; min-height: 380px; }
.preview-card {
  position: relative; z-index: 2;
  background: linear-gradient(180deg, rgba(21, 36, 51, 0.95), rgba(15, 26, 36, 0.98));
  border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
}
.preview-card__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--border);
  font-size: 0.85rem; font-weight: 600;
}
.preview-card__live {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--accent); font-size: 0.75rem;
}
.preview-card__live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  animation: pulse 2s infinite;
}
.preview-card__body { padding: 0.75rem; display: grid; gap: 0.5rem; min-height: 220px; }
.preview-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 0.75rem; align-items: center;
  padding: 0.65rem 0.75rem; border-radius: var(--radius-sm);
  background: rgba(0,0,0,0.2); border: 1px solid var(--border);
  font-size: 0.82rem;
}
.preview-row__sig {
  width: 32px; height: 32px; border-radius: 8px;
  display: grid; place-items: center; font-size: 0.65rem; font-weight: 700;
  background: var(--accent-dim); color: var(--accent);
}
.preview-row__score { font-family: var(--display); font-weight: 700; color: var(--gold); }
.preview-card__foot {
  display: flex; justify-content: space-between; padding: 0.85rem 1.25rem;
  border-top: 1px solid var(--border); font-size: 0.78rem; color: var(--text-dim);
}
.preview-card__score { font-family: var(--display); font-size: 1.1rem; color: var(--accent); }
.preview-float {
  position: absolute; z-index: 3; padding: 0.5rem 0.85rem; border-radius: 999px;
  background: rgba(15, 26, 36, 0.92); border: 1px solid var(--border);
  font-size: 0.72rem; font-weight: 600; color: var(--text-muted);
  backdrop-filter: blur(12px);
  animation: float 6s ease-in-out infinite;
}
.preview-float--a { top: 8%; right: -4%; }
.preview-float--b { bottom: 12%; left: -6%; animation-delay: -3s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* Marquee */
.marquee {
  border-block: 1px solid var(--border); background: var(--bg-alt);
  padding: 1rem 0; overflow: hidden;
}
.marquee__track {
  display: flex; gap: 3rem; width: max-content;
  animation: marquee 40s linear infinite;
  font-size: 0.8rem; font-weight: 600; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.12em;
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* Sections */
.section { padding: 5rem 0; }
.section--alt { background: var(--bg-alt); }
.section__head { margin-bottom: 2.5rem; max-width: 720px; }
.section__head--center { text-align: center; margin-inline: auto; }
.section__head--center .section__lede { margin-inline: auto; }
.kicker {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
}
.section__head h2 {
  font-family: var(--display); font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em; margin-bottom: 0.75rem;
}
.section__lede { color: var(--text-muted); font-size: 1.02rem; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* Bento */
.bento { display: grid; gap: 1rem; }
@media (min-width: 768px) { .bento { grid-template-columns: repeat(2, 1fr); } }
.bento__card {
  padding: 1.75rem; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), rgba(15, 26, 36, 0.6));
  border: 1px solid var(--border);
  transition: border-color 0.25s, transform 0.25s var(--ease);
}
.bento__card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.bento__card--wide { grid-column: 1 / -1; }
.bento__step {
  display: inline-block; font-family: var(--display); font-size: 0.75rem;
  color: var(--accent-2); font-weight: 700; margin-bottom: 0.75rem;
}
.bento__card h3 { font-family: var(--display); font-size: 1.15rem; margin-bottom: 0.5rem; }
.bento__card p { color: var(--text-muted); font-size: 0.92rem; }

/* Chips & cards */
.chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.chip {
  padding: 0.45rem 0.95rem; border-radius: 999px; border: 1px solid var(--border);
  background: transparent; color: var(--text-muted); font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.chip.is-active, .chip:hover { background: var(--accent); color: #04120c; border-color: var(--accent); }

.card-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem;
}
.investor-card {
  padding: 1.35rem; border-radius: var(--radius); background: var(--surface);
  border: 1px solid var(--border); transition: transform 0.25s var(--ease), border-color 0.25s;
}
.investor-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.investor-card.is-hidden { display: none; }
.investor-avatar {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 0.85rem;
  display: grid; place-items: center; font-weight: 700; font-size: 0.8rem;
  background: linear-gradient(135deg, rgba(0,229,160,0.15), rgba(124,108,255,0.15));
  color: var(--accent); border: 1px solid var(--border);
}
.investor-name { font-weight: 600; margin-bottom: 0.15rem; }
.investor-firm { font-size: 0.82rem; color: var(--accent); margin-bottom: 0.5rem; }
.investor-focus { font-size: 0.8rem; color: var(--text-muted); line-height: 1.45; }
.investor-meta { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.75rem; }
.tag {
  padding: 0.2rem 0.5rem; border-radius: 6px; font-size: 0.68rem; font-weight: 600;
  background: var(--accent-dim); color: var(--accent);
}

/* Agenda */
.agenda { display: grid; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.agenda-item {
  display: grid; gap: 0.25rem; padding: 1.1rem 1.25rem;
  background: var(--surface); border-bottom: 1px solid var(--border);
}
.agenda-item:last-child { border-bottom: none; }
@media (min-width: 700px) {
  .agenda-item { grid-template-columns: 110px 1fr auto; align-items: start; gap: 1rem; }
}
.agenda-time { font-size: 0.8rem; font-weight: 700; color: var(--accent); }
.agenda-title { font-weight: 600; }
.agenda-desc { font-size: 0.88rem; color: var(--text-muted); }
.agenda-track {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.2rem 0.55rem; border-radius: 6px; background: rgba(124,108,255,0.12); color: #a78bfa;
  justify-self: start;
}

/* Speakers */
.speaker-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem;
}
.speaker-card {
  padding: 1.5rem 1.25rem; text-align: center; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  transition: transform 0.25s var(--ease);
}
.speaker-card:hover { transform: translateY(-4px); }
.speaker-photo {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 0.85rem;
  display: grid; place-items: center; font-family: var(--display); font-weight: 700;
  background: linear-gradient(135deg, var(--surface-2), var(--bg-alt));
  border: 2px solid var(--border-strong); color: var(--gold);
}
.speaker-name { font-weight: 600; font-size: 0.95rem; }
.speaker-role { font-size: 0.78rem; color: var(--text-muted); margin: 0.2rem 0 0.5rem; }
.speaker-topic { font-size: 0.75rem; color: var(--accent); }

/* Tickets */
.ticket-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem;
}
.ticket {
  position: relative; display: flex; flex-direction: column;
  padding: 1.5rem; border-radius: var(--radius); background: var(--surface);
  border: 1px solid var(--border);
}
.ticket--featured {
  border-color: var(--accent); box-shadow: 0 0 0 1px rgba(0,229,160,0.2), 0 20px 60px rgba(0,0,0,0.35);
}
.ticket__badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  padding: 0.25rem 0.65rem; border-radius: 999px; background: var(--accent); color: #04120c;
  font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
}
.ticket h3 { font-family: var(--display); font-size: 1.05rem; margin-bottom: 0.35rem; }
.ticket__price {
  font-family: var(--display); font-size: 2rem; font-weight: 700; color: var(--accent); margin-bottom: 0.35rem;
}
.ticket__price small { font-size: 0.85rem; color: var(--text-dim); font-weight: 400; }
.ticket__blurb { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; flex: 1; }
.ticket__features { list-style: none; margin-bottom: 1.25rem; }
.ticket__features li {
  font-size: 0.82rem; color: var(--text-muted); padding: 0.3rem 0 0.3rem 1.1rem; position: relative;
}
.ticket__features li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.ticket__features li.muted { opacity: 0.45; }
.ticket__features li.muted::before { content: "—"; color: var(--text-dim); }

/* Radar workbench */
.radar-workbench {
  display: grid; gap: 0; border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--surface); box-shadow: var(--shadow);
}
@media (min-width: 768px) { .radar-workbench { grid-template-columns: 200px 1fr; } }
.radar-workbench__sidebar {
  display: flex; flex-direction: row; gap: 0.35rem; padding: 0.75rem; flex-wrap: wrap;
  border-bottom: 1px solid var(--border); background: var(--bg-alt);
}
@media (min-width: 768px) {
  .radar-workbench__sidebar { flex-direction: column; border-bottom: none; border-right: 1px solid var(--border); }
}
.radar-filter {
  padding: 0.5rem 0.85rem; border-radius: var(--radius-sm); border: 1px solid transparent;
  background: transparent; color: var(--text-muted); font-size: 0.8rem; font-weight: 600;
  cursor: pointer; text-align: left;
}
.radar-filter.is-active, .radar-filter:hover {
  background: var(--accent-dim); color: var(--accent); border-color: var(--border-strong);
}
.radar-workbench__bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 1.25rem; border-bottom: 1px solid var(--border);
  font-size: 0.8rem; color: var(--text-dim);
}
.radar-workbench__count { color: var(--accent); font-weight: 700; }
.radar-list { max-height: 420px; overflow-y: auto; }
.radar-item {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center;
  padding: 0.9rem 1.25rem; border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.radar-item:hover { background: rgba(0,229,160,0.04); }
.radar-item.is-hidden { display: none; }
.radar-signal {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center; font-size: 0.68rem; font-weight: 800;
  background: var(--accent-dim); color: var(--accent); border: 1px solid var(--border);
}
.radar-company { font-weight: 600; font-size: 0.92rem; }
.radar-sector { font-size: 0.78rem; color: var(--text-muted); }
.radar-score { text-align: right; }
.radar-score-value { font-family: var(--display); font-size: 1.2rem; color: var(--gold); }
.radar-heat {
  display: inline-block; margin-top: 0.15rem; padding: 0.15rem 0.45rem; border-radius: 6px;
  font-size: 0.62rem; font-weight: 800; text-transform: uppercase;
}
.radar-heat.hot { background: rgba(251,113,133,0.12); color: var(--danger); }
.radar-heat.warm { background: rgba(251,191,36,0.12); color: var(--gold); }
.radar-heat.rising { background: var(--accent-dim); color: var(--accent); }

/* Compare table */
.compare-table-wrap {
  overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface);
}
.compare-table { width: 100%; min-width: 880px; border-collapse: collapse; font-size: 0.85rem; }
.compare-table th, .compare-table td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--border); text-align: left; }
.compare-table th {
  background: var(--bg-alt); font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-dim);
}
.compare-table__us { background: rgba(0,229,160,0.06); }
.compare-table__us td:first-child { color: var(--accent); }
.compare-table .yes { color: var(--accent); font-weight: 600; }
.compare-table .partial { color: var(--gold); font-weight: 600; }
.compare-table .no { color: var(--text-dim); }

/* Research */
.research {
  display: grid; gap: 2rem; padding: 2rem; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--surface), rgba(124,108,255,0.06));
  border: 1px solid var(--border);
}
@media (min-width: 800px) { .research { grid-template-columns: 1fr 1fr; align-items: center; } }
.research__copy p { color: var(--text-muted); margin: 0.75rem 0 1.5rem; }
.research__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.research__metrics strong {
  display: block; font-family: var(--display); font-size: 1.5rem; color: var(--accent);
}
.research__metrics span { font-size: 0.72rem; color: var(--text-dim); text-transform: uppercase; }
.bars { display: flex; align-items: flex-end; gap: 0.75rem; height: 200px; padding: 1.5rem; }
.bar {
  flex: 1; height: var(--h); border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--accent), rgba(0,229,160,0.2));
  position: relative; min-height: 12px;
}
.bar span {
  position: absolute; bottom: -1.5rem; left: 50%; transform: translateX(-50%);
  font-size: 0.62rem; color: var(--text-dim); white-space: nowrap;
}

/* Quotes */
.quote-grid { display: grid; gap: 1rem; }
@media (min-width: 768px) { .quote-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  padding: 1.5rem; border-radius: var(--radius); background: var(--surface);
  border: 1px solid var(--border);
}
.testimonial-quote { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.55; }
.testimonial-author { display: flex; gap: 0.75rem; align-items: center; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; font-size: 0.75rem; font-weight: 700;
  background: var(--accent-dim); color: var(--accent);
}
.testimonial-name { font-size: 0.88rem; font-weight: 600; }
.testimonial-role { font-size: 0.75rem; color: var(--text-dim); }

/* FAQ */
.faq { display: grid; gap: 0.5rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; background: var(--surface); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.15rem; background: none; border: none; color: var(--text);
  font: inherit; font-weight: 600; font-size: 0.92rem; text-align: left; cursor: pointer;
}
.faq-icon { color: var(--accent); font-size: 1.2rem; transition: transform 0.25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-item.open .faq-answer { max-height: 240px; }
.faq-answer p { padding: 0 1.15rem 1rem; color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* CTA band */
.cta-band {
  padding: 3.5rem 0; background: linear-gradient(135deg, rgba(0,229,160,0.08), rgba(124,108,255,0.08));
  border-top: 1px solid var(--border);
}
.cta-band__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.cta-band h2 { font-family: var(--display); font-size: 1.5rem; margin-bottom: 0.35rem; }
.cta-band p { color: var(--text-muted); font-size: 0.9rem; }

/* Footer */
.footer { padding: 3rem 0 6rem; border-top: 1px solid var(--border); background: var(--bg-alt); }
.footer__inner { display: grid; gap: 1.25rem; }
@media (min-width: 640px) {
  .footer__inner { grid-template-columns: 1fr auto; align-items: center; }
}
.footer__brand { display: flex; align-items: center; gap: 0.65rem; font-family: var(--display); font-weight: 600; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer__nav a { color: var(--text-muted); font-size: 0.85rem; }
.footer__copy { grid-column: 1 / -1; font-size: 0.78rem; color: var(--text-dim); padding-top: 1rem; border-top: 1px solid var(--border); }

/* Mobile CTA */
.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  padding: 0.75rem 1rem; background: rgba(5,10,15,0.92);
  backdrop-filter: blur(16px); border-top: 1px solid var(--border);
}
@media (min-width: 768px) { .mobile-cta { display: none; } }

/* Modal */
.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 1rem; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(6px); }
.modal__panel {
  position: relative; width: min(100%, 440px); padding: 1.75rem;
  border-radius: var(--radius-lg); background: var(--surface);
  border: 1px solid var(--border-strong); box-shadow: var(--shadow);
  animation: modalIn 0.35s var(--ease);
}
@keyframes modalIn { from{opacity:0;transform:translateY(16px) scale(.98)} to{opacity:1;transform:none} }
.modal__close {
  position: absolute; top: 1rem; right: 1rem; background: none; border: none;
  color: var(--text-muted); font-size: 1.5rem; cursor: pointer; line-height: 1;
}
.modal h2 { font-family: var(--display); font-size: 1.25rem; margin-bottom: 0.35rem; }
.modal__sub { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 1.25rem; }
.form__field { display: block; margin-bottom: 0.85rem; }
.form__field span {
  display: block; font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--text-dim); margin-bottom: 0.35rem;
}
.form__field input, .form__field select {
  width: 100%; padding: 0.7rem 0.9rem; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--bg-alt); color: var(--text); font: inherit;
}
.form__field input:focus, .form__field select:focus { outline: none; border-color: var(--accent); }
.form__message { margin-top: 0.75rem; font-size: 0.85rem; text-align: center; }
.form__message.success { color: var(--accent); }
.form__message.error { color: var(--danger); }

/* 404 */
.page-404 {
  min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 2rem;
}
.page-404 h1 { font-family: var(--display); font-size: 5rem; color: var(--accent); }
.page-404 p { color: var(--text-muted); margin: 0.5rem 0 1.5rem; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
