/* CosmoTender — Website styles
   Design tokens are loaded from colors_and_type.css (dark cosmic default).
   This file contains only layout and component styles.
   ─────────────────────────────────────────────────────────────────────────── */

* {
  box-sizing: border-box;
}

/* ── Live stats bar ───────────────────────────────────────────────────────── */

.live-stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  padding: 12px 0 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}

.stat-chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1 1 140px;
  padding: 10px 16px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}

.stat-chip:first-child { border-left: 2px solid var(--ct-beacon); }

.stat-value {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--ct-ocean-glow);
  letter-spacing: -0.01em;
  line-height: 1;
}

.stat-value.color-go     { color: var(--ct-go); }
.stat-value.color-maybe  { color: var(--ct-maybe); }
.stat-value.color-beacon { color: var(--ct-beacon); }
.stat-value.color-ocean  { color: var(--ct-ocean-soft); }

.stat-label {
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--text-dim);
  line-height: 1.3;
}

.stat-unit {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
}

@media (max-width: 680px) {
  .stat-chip { flex: 1 1 calc(50% - 8px); }
  .animation-banner { aspect-ratio: 16 / 10; }
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

/* ── Layout shell ─────────────────────────────────────────────────────────── */

.page-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 24px 80px;
  background: var(--bg-page-grad);
  min-height: 100vh;
}

/* ── Header ───────────────────────────────────────────────────────────────── */

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

/* ── Language picker ──────────────────────────────────────────────────────── */

.lang-pick {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.lang-btn {
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: transparent;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: var(--tr-label);
  cursor: pointer;
  transition: color var(--dur-1) var(--ease), background var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease);
}

.lang-btn:hover {
  color: var(--text);
  border-color: var(--border-strong);
}

.lang-btn.active,
.lang-btn[aria-pressed="true"] {
  background: var(--ct-beacon);
  border-color: var(--ct-beacon);
  color: #fff;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-lg);
  background: var(--ct-void);
  border: 1px solid var(--border);
  box-shadow: var(--glow-beacon);
  padding: 6px;
}

.brand-name,
.eyebrow {
  margin: 0;
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--ct-ocean-soft);
}

.brand-line {
  margin: var(--sp-1) 0 0;
  font-size: var(--fs-sm);
  color: var(--text-mid);
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */

.hero-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
  padding: 64px 0 40px;
}

.hero-copy {
  max-width: 600px;
}

.hero-copy .eyebrow {
  color: var(--ct-beacon);
  letter-spacing: var(--tr-eyebrow);
}

h1 {
  margin: 20px 0 0;
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text);
}

.subtitle {
  margin: 20px 0 0;
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text-mid);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-pill);
  padding: 13px 26px;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  text-decoration: none;
  transition:
    transform var(--dur-2) var(--ease),
    box-shadow var(--dur-2) var(--ease),
    background-color var(--dur-2) var(--ease);
  border: none;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.button.primary {
  background: var(--ct-beacon);
  color: #fff;
  box-shadow: var(--glow-beacon);
}

.button.primary:hover {
  background: var(--ct-beacon-ink);
  box-shadow: 0 0 0 1px rgba(0,162,232,.6), 0 0 24px rgba(0,162,232,.5);
}

.button.secondary {
  background: var(--bg-raised);
  color: var(--text);
  border: 1px solid var(--border);
}

.button.secondary:hover {
  background: var(--bg-hover);
  border-color: var(--border-strong);
}

/* ── Hero panel card ──────────────────────────────────────────────────────── */

.hero-panel {
  display: grid;
  justify-content: end;
  padding-top: 20px;
}

.panel-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-3);
  min-width: 300px;
  position: relative;
  overflow: hidden;
}

.panel-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ct-beacon) 0%, var(--ct-ocean) 100%);
}

.panel-label {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--ct-beacon);
  margin-bottom: 20px;
}

.panel-score-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-pill);
  padding: 7px 16px;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
}

.pill-go    { background: var(--ct-go);    box-shadow: 0 0 10px var(--ct-go-soft); }
.pill-maybe { background: var(--ct-maybe); box-shadow: 0 0 10px var(--ct-maybe-soft); }
.pill-nogo  { background: var(--ct-nogo);  box-shadow: 0 0 10px var(--ct-nogo-soft); }

.panel-score {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--ct-go);
}

.panel-score-label {
  margin: 4px 0 0;
  font-size: var(--fs-xs);
  color: var(--text-dim);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: var(--tr-label);
}

.panel-copy {
  margin: 0 0 16px;
  font-size: var(--fs-sm);
  color: var(--text-mid);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.panel-list li {
  color: var(--text-dim);
  font-size: var(--fs-sm);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.panel-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--ct-beacon);
  font-size: 10px;
  top: 2px;
}

/* ── Sections ─────────────────────────────────────────────────────────────── */

.features-section,
.process-section,
.waitlist-section {
  margin-top: 96px;
}

.section-header {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-header .eyebrow {
  margin-bottom: 14px;
}

.section-header p {
  margin: 14px 0 0;
  color: var(--text-mid);
  font-size: var(--fs-body);
  line-height: 1.65;
}

h2 {
  margin: 10px 0 0;
  font-family: var(--font-sans);
  font-size: var(--fs-h1);
  font-weight: 600;
  line-height: var(--lh-h1);
  letter-spacing: var(--tr-h1);
  color: var(--text);
}

/* ── Feature cards ────────────────────────────────────────────────────────── */

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.feature-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  min-height: 160px;
  transition: border-color var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
}

.feature-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-2);
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--text);
}

.feature-card p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── Process list ─────────────────────────────────────────────────────────── */

.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  counter-reset: step;
}

.process-list li {
  position: relative;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 22px 22px 70px;
  transition: border-color var(--dur-2) var(--ease);
}

.process-list li:hover {
  border-color: var(--ct-beacon);
}

.process-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ct-beacon);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--fs-sm);
  box-shadow: 0 0 12px rgba(0,162,232,.4);
}

.process-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--text);
}

.process-list p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── Waitlist ─────────────────────────────────────────────────────────────── */

.waitlist-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-2);
  max-width: 640px;
}

.waitlist-form {
  display: grid;
  gap: 20px;
}

.waitlist-form label {
  display: grid;
  gap: 8px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text);
}

.waitlist-form input,
.waitlist-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 14px;
  background: var(--bg-raised);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  transition: border-color var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
  outline: none;
}

.waitlist-form input:focus,
.waitlist-form textarea:focus {
  border-color: var(--ct-beacon);
  box-shadow: var(--shadow-focus);
}

.waitlist-form input::placeholder,
.waitlist-form textarea::placeholder {
  color: var(--text-mute);
}

.waitlist-form textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: var(--fs-xs);
  color: var(--text-dim);
  font-family: var(--font-mono);
}

/* ── Cosmic animation ─────────────────────────────────────────────────────── */

.animation-section {
  margin-top: 96px;
}

.animation-banner {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #050D1A;
  position: relative;
}

.animation-banner canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */

.footer {
  margin: 80px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--text-dim);
}

.footer p {
  margin: 0;
}

.footer::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ct-beacon);
  animation: ct-pulse 2.5s ease infinite;
}

/* ── Form feedback ────────────────────────────────────────────────────────── */

.form-feedback {
  margin: 16px 0 0;
  padding: 14px 18px;
  border-radius: var(--r-lg);
  font-size: var(--fs-sm);
  line-height: 1.5;
}

.form-feedback--ok {
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid var(--ct-go);
  color: var(--ct-go);
}

.form-feedback--err {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid var(--ct-nogo);
  color: var(--ct-nogo);
}

/* ── Header nav (shared across pages) ─────────────────────────────────────── */

.page-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 32px;
}

.nav-link {
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: color var(--dur-1) var(--ease), background var(--dur-1) var(--ease);
}

.nav-link:hover { color: var(--text); background: var(--bg-raised); text-decoration: none; }
.nav-link.active { color: var(--ct-beacon); }

/* ── Tender analysis insights ─────────────────────────────────────────────── */

.insights-section { margin-top: 96px; }

.insight-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.insight-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: border-color var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
}

.insight-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-2);
}

.insight-value {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--ct-ocean-glow);
}

.insight-value.color-go    { color: var(--ct-go); }
.insight-value.color-maybe { color: var(--ct-maybe); }
.insight-value.color-beacon{ color: var(--ct-beacon); }

.insight-label {
  display: block;
  margin: 10px 0 8px;
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--ct-ocean-soft);
}

.insight-detail {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--text-mid);
  line-height: 1.6;
}

/* Sector value ranking — horizontal bars */
.sector-ranking {
  margin-top: 24px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 28px 24px;
}

.sector-ranking h3 {
  margin: 0 0 4px;
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--text);
}

.sector-ranking .ranking-note {
  margin: 0 0 22px;
  font-size: var(--fs-sm);
  color: var(--text-dim);
}

.sector-bar-row {
  display: grid;
  grid-template-columns: 120px 1fr 90px;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.sector-bar-row:last-child { margin-bottom: 0; }

.sector-bar-name {
  font-size: var(--fs-sm);
  color: var(--text-mid);
  text-transform: capitalize;
}

.sector-bar-track {
  height: 10px;
  border-radius: var(--r-pill);
  background: var(--bg-raised);
  overflow: hidden;
}

.sector-bar-fill {
  height: 100%;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--ct-beacon) 0%, var(--ct-ocean) 100%);
}

.sector-bar-value {
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--ct-ocean-glow);
  text-align: right;
}

/* ── Industry news ────────────────────────────────────────────────────────── */

.news-section { margin-top: 96px; }

.news-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  text-decoration: none;
  transition: border-color var(--dur-2) var(--ease), transform var(--dur-2) var(--ease);
}

.news-card:hover {
  border-color: var(--ct-beacon);
  transform: translateY(-3px);
  text-decoration: none;
}

.news-tag {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ct-beacon);
  background: var(--accent-soft);
  border-radius: var(--r-pill);
  padding: 4px 10px;
}

.news-headline {
  margin: 0;
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.news-source {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--text-mid);
  line-height: 1.55;
  flex: 1;
}

.news-link-label {
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--ct-ocean-soft);
}

.news-foot-note {
  margin: 22px 0 0;
  font-size: var(--fs-xs);
  color: var(--text-dim);
  font-family: var(--font-mono);
}

/* ── AI transparency disclaimer (About) ───────────────────────────────────── */

.ai-disclaimer {
  margin: 28px 0 8px;
  background: linear-gradient(145deg, #0F2340 0%, #0B1B30 100%);
  border: 1px solid rgba(0,162,232,.35);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  box-shadow: 0 0 32px rgba(0,162,232,.07);
}

.ai-disclaimer .disclaimer-label {
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--ct-beacon);
  margin: 0 0 12px;
}

.ai-disclaimer h3 {
  margin: 0 0 12px;
  font-size: var(--fs-h2);
  font-weight: 600;
  color: var(--text);
}

.ai-disclaimer p {
  margin: 0 0 12px;
  font-size: var(--fs-sm);
  color: var(--text-mid);
  line-height: 1.7;
}

.ai-disclaimer p:last-child { margin-bottom: 0; }

/* Small "AI" badge for persona cards */
.ai-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,162,232,.85);
  border-radius: var(--r-pill);
  padding: 3px 9px;
  box-shadow: 0 0 10px rgba(0,162,232,.5);
}

/* ── Legal / compliance prose (EU AI Act page) ────────────────────────────── */

.legal-hero {
  padding: 72px 0 24px;
  max-width: 760px;
}

.legal-hero h1 { margin-top: 16px; }

.legal-hero .lead {
  margin-top: 20px;
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 640px;
}

.legal-prose {
  max-width: 760px;
  margin-top: 40px;
}

.legal-prose section { margin-bottom: 40px; }

.legal-prose h2 {
  font-size: var(--fs-h2);
  margin: 0 0 14px;
}

.legal-prose p {
  margin: 0 0 14px;
  font-size: var(--fs-body);
  color: var(--text-mid);
  line-height: 1.7;
}

.legal-prose ul {
  margin: 0 0 14px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.legal-prose ul li {
  position: relative;
  padding-left: 22px;
  font-size: var(--fs-body);
  color: var(--text-mid);
  line-height: 1.6;
}

.legal-prose ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--ct-beacon);
  font-size: 12px;
}

.legal-prose a { color: var(--ct-beacon); }

/* Risk classification callout */
.classification-card {
  background: var(--bg-panel);
  border: 1px solid rgba(0,162,232,.3);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  margin: 0 0 14px;
}

.classification-card .class-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ct-maybe);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  margin-bottom: 14px;
}

.classification-card h3 {
  margin: 0 0 8px;
  font-size: var(--fs-h3);
  color: var(--text);
}

.classification-card p { margin: 0; }

/* Compliance timeline */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}

.timeline li {
  position: relative;
  padding: 0 0 24px 28px;
  border-left: 1px solid var(--border);
}

.timeline li:last-child { padding-bottom: 0; border-left-color: transparent; }

.timeline li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 2px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--ct-beacon);
  box-shadow: 0 0 10px rgba(0,162,232,.5);
}

.timeline .tl-date {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--ct-ocean-soft);
  margin-bottom: 4px;
}

.timeline .tl-body {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--text-mid);
  line-height: 1.6;
}

.updates-note {
  background: var(--bg-panel);
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  font-size: var(--fs-sm);
  color: var(--text-dim);
  line-height: 1.6;
}

.updates-note .review-stamp {
  display: block;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--text-mute);
}

/* ── Sticky sign-up CTA ───────────────────────────────────────────────────── */

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  background: var(--ct-beacon);
  color: #fff;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 16px;
  transition:
    background var(--dur-1) var(--ease),
    box-shadow var(--dur-1) var(--ease),
    transform var(--dur-2) var(--ease);
  box-shadow: var(--glow-beacon);
}

.header-cta:hover {
  background: var(--ct-beacon-ink);
  box-shadow: 0 0 0 1px rgba(0,162,232,.6), 0 0 24px rgba(0,162,232,.5);
  transform: translateY(-1px);
  text-decoration: none;
}

/* ── Hamburger menu ───────────────────────────────────────────────────────── */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 12px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-mid);
  border-radius: 2px;
  transition: transform var(--dur-2) var(--ease), opacity var(--dur-2) var(--ease), background var(--dur-1) var(--ease);
}

.hamburger:hover span { background: var(--text); }

/* Animate to X when open */
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav dropdown */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px 0 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}

.mobile-nav.open { display: flex; }

.mobile-nav .nav-link {
  padding: 10px 14px;
  border-radius: var(--r-md);
  font-size: var(--fs-body);
  display: block;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .page-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta { padding: 6px 12px; font-size: 0.75rem; margin-left: 8px; }
  .sector-bar-row { grid-template-columns: 90px 1fr 76px; gap: 10px; }
}

@media (max-width: 900px) {
  .hero-section {
    grid-template-columns: 1fr;
    padding: 40px 0 24px;
  }
  .hero-panel {
    justify-content: stretch;
  }
  .panel-card {
    min-width: unset;
  }
}

@media (max-width: 680px) {
  .page-shell {
    padding: 20px 18px 48px;
  }
  h1 {
    font-size: 2.2rem;
  }
  .waitlist-card {
    padding: 24px 20px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .button {
    justify-content: center;
  }
}
