/* ─────────────────────────────────────────────────────────────────────
   Kerrigan Landing Page — Design System
   Palette: void (navy) · cerulean (blue) · amber (gold) · sage (green)
───────────────────────────────────────────────────────────────────── */

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

:root {
  --void:            #011627;
  --void-mid:        #021e3a;
  --void-light:      #032d5a;
  --cerulean:        #0097c4;
  --cerulean-dim:    rgba(0, 151, 196, 0.15);
  --cerulean-border: rgba(0, 151, 196, 0.30);
  --amber:           #ff9f1c;
  --amber-dim:       rgba(255, 159, 28, 0.12);
  --amber-border:    rgba(255, 159, 28, 0.35);
  --sage:            #4caf82;
  --sage-dim:        rgba(76, 175, 130, 0.12);
  --caution:         #e05252;
  --caution-dim:     rgba(224, 82, 82, 0.12);
  --light:           #f5f9ff;
  --muted:           #8ab4c8;
  --glass:           rgba(255, 255, 255, 0.03);
  --glass-border:    rgba(255, 255, 255, 0.08);
  --surface:         rgba(2, 30, 58, 0.72);
  --radius:          12px;
  --radius-sm:       8px;
  --radius-lg:       20px;
}

html {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--void);
  color: var(--light);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Ambient Scroll Spotlight ────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(
    ellipse at 50% 66%, 
    rgba(var(--spot-r, 0), var(--spot-g, 151), var(--spot-b, 196), 0.12) 0%, 
    rgba(var(--spot-r, 0), var(--spot-g, 151), var(--spot-b, 196), 0.04) 40%,
    transparent 70%
  );
  mix-blend-mode: screen;
  transition: background 0.1s linear;
}

/* ── Specular overlay ────────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(0,151,196,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 110%, rgba(255,159,28,0.04) 0%, transparent 60%);
  z-index: 0;
}

/* ── Layout helpers ──────────────────────────────────────────────── */
.section-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-pad-sm {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.card-grid-pain {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card-grid-steps {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card-grid-features {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.two-col-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
}

.two-col-grid-center {
  align-items: center;
}

.two-col-grid-start {
  align-items: start;
}

.text-cerulean {
  color: var(--cerulean);
}

.text-amber {
  color: var(--amber);
}

.text-link {
  color: var(--cerulean);
  text-decoration: underline;
}

.eyebrow-sage {
  color: var(--sage);
}

.eyebrow-amber {
  color: var(--amber);
}

/* ── Section headers ─────────────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cerulean);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--light);
}

.section-sub {
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 620px;
}

/* ── Sacred card (glassmorphic) ──────────────────────────────────── */
.sacred-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.sacred-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 28px rgba(0, 151, 196, 0.15);
}

.card-glow-wrapper {
  position: relative;
}

.card-glow-wrapper::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius) + 1px);
  background: radial-gradient(ellipse at 50% 0%, rgba(0,151,196,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Pain cards (cerulean + caution variant) ─────────────────────── */
.pain-card {
  position: relative;
  border-left: 3px solid var(--caution);
  background: var(--glass);
  border-top: 1px solid var(--glass-border);
  border-right: 1px solid var(--glass-border);
  border-bottom: 2px solid rgba(224, 82, 82, 0.4);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 -30px 40px -20px rgba(224, 82, 82, 0.15);
  transition: transform 0.2s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pain-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.15);
  border-left-color: var(--amber);
  border-bottom-color: var(--amber);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), inset 0 -30px 40px -20px rgba(255, 159, 28, 0.3), 0 10px 20px -10px rgba(255, 159, 28, 0.2);
}

/* ── Feature cards ───────────────────────────────────────────────── */
.feature-card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-bottom: 2px solid rgba(0, 151, 196, 0.5);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 -30px 40px -20px rgba(0, 151, 196, 0.25);
  transition: transform 0.2s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.15);
  border-bottom-color: var(--cerulean);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), inset 0 -30px 40px -20px rgba(0, 151, 196, 0.4), 0 10px 20px -10px rgba(0, 151, 196, 0.3);
}

.feature-card.glow-amber {
  border-bottom: 2px solid rgba(255, 159, 28, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 -30px 40px -20px rgba(255, 159, 28, 0.25);
}
.feature-card.glow-amber:hover {
  border-bottom-color: var(--amber);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), inset 0 -30px 40px -20px rgba(255, 159, 28, 0.4), 0 10px 20px -10px rgba(255, 159, 28, 0.3);
}

.feature-card.glow-sage {
  border-bottom: 2px solid rgba(76, 175, 130, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 -30px 40px -20px rgba(76, 175, 130, 0.25);
}
.feature-card.glow-sage:hover {
  border-bottom-color: var(--sage);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), inset 0 -30px 40px -20px rgba(76, 175, 130, 0.4), 0 10px 20px -10px rgba(76, 175, 130, 0.3);
}

/* ── Step cards (how it works) ───────────────────────────────────── */
.step-card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-bottom: 2px solid rgba(0, 151, 196, 0.5);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 2rem 1.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 -30px 40px -20px rgba(0, 151, 196, 0.25);
  transition: transform 0.2s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.15);
  border-bottom-color: var(--cerulean);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), inset 0 -30px 40px -20px rgba(0, 151, 196, 0.4), 0 10px 20px -10px rgba(0, 151, 196, 0.3);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--cerulean-dim);
  border: 1px solid var(--cerulean-border);
  color: var(--cerulean);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* ── Glow text ───────────────────────────────────────────────────── */
.glow-text {
  color: var(--cerulean);
  text-shadow: 0 0 22px rgba(0, 151, 196, 0.35);
}

.amber-text {
  color: var(--amber);
}

/* ── Badges / trust strip ────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.25rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid;
  text-align: center;
}

.badge-sage {
  color: var(--sage);
  border-color: rgba(76, 175, 130, 0.3);
  background: var(--sage-dim);
}

.badge-cerulean {
  color: var(--cerulean);
  border-color: var(--cerulean-border);
  background: var(--cerulean-dim);
}

.badge-amber {
  color: var(--amber);
  border-color: var(--amber-border);
  background: var(--amber-dim);
}

.badge-muted {
  color: var(--muted);
  border-color: var(--glass-border);
  background: rgba(255, 255, 255, 0.05);
}

/* ── CTA buttons ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #000;
  background: var(--amber);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255, 159, 28, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--light);
  background: transparent;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--cerulean-border);
  background: var(--cerulean-dim);
}

/* ── Navigation ──────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.5rem;
  background: rgba(1, 22, 39, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 151, 196, 0.12);
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--light);
  text-decoration: none;
}

.nav-logo span {
  color: var(--cerulean);
}

.nav-cta {
  padding: 0.6rem 1.4rem;
  font-size: 0.875rem;
}

/* ── Hero ────────────────────────────────────────────────────────── */
.hero-shell {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 65px);
  display: flex;
  align-items: center;
  padding: 5rem 1.5rem 4rem;
}

.hero-copy {
  max-width: 760px;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--light);
}

.hero-title .highlight {
  color: var(--cerulean);
  text-shadow: 0 0 30px rgba(0, 151, 196, 0.3);
}

.hero-highlight {
  display: block;
}

.hero-sub {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
  color: var(--muted);
  max-width: 580px;
}

.hero-cta-row {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero-badges {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.compare-table-shell {
  overflow-x: auto;
  margin-top: 2.5rem;
}

/* ── Comparison table ────────────────────────────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.compare-table thead th {
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--glass-border);
}

.compare-table thead th:first-child {
  text-align: left;
}

.compare-table thead th.kerrigan-col {
  color: var(--cerulean);
  background: var(--cerulean-dim);
}

.compare-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid rgba(0, 151, 196, 0.08);
}

.compare-table tbody td {
  padding: 0.9rem 1.25rem;
  font-size: 0.9rem;
  text-align: center;
  color: var(--muted);
}

.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--light);
}

.compare-table tbody td.kerrigan-col {
  background: rgba(0, 151, 196, 0.06);
  color: var(--light);
}

.check { color: var(--sage); font-weight: 700; }
.cross { color: var(--caution); }

.compare-mobile {
  display: none;
  margin-top: 2rem;
  gap: 1rem;
}

.compare-mobile-card {
  padding: 1.15rem;
}

.compare-mobile-title {
  margin: 0 0 0.9rem;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--light);
}

.compare-mobile-grid {
  display: grid;
  gap: 0.45rem;
}

.compare-mobile-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0.8rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.85rem;
}

.compare-mobile-item-kerrigan {
  border-color: var(--cerulean-border);
  background: rgba(0, 151, 196, 0.08);
}

.compare-mobile-competitor {
  font-weight: 600;
  color: var(--light);
}

/* ── Divider band ────────────────────────────────────────────────── */
.band {
  background: linear-gradient(135deg, rgba(0,151,196,0.07) 0%, rgba(0,151,196,0.03) 100%);
  border-top: 1px solid rgba(0, 151, 196, 0.12);
  border-bottom: 1px solid rgba(0, 151, 196, 0.12);
}

/* ── Local-only differentiator block ────────────────────────────── */
.local-only-block {
  background: linear-gradient(135deg, rgba(0,151,196,0.08) 0%, rgba(0,151,196,0.02) 100%);
  border: 1px solid var(--cerulean-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
}

.local-only-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.local-only-bullet .bullet-icon {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--sage);
  font-size: 1.1rem;
}

.local-only-bullet .bullet-text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

.local-only-bullet .bullet-text strong {
  color: var(--light);
}

.local-only-bullet:last-child {
  margin-bottom: 0;
}

.deployment-primary {
  margin-top: 2.5rem;
  padding: 2rem 2.5rem;
  border: 1px solid var(--cerulean);
}

.deployment-primary-body {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.deployment-primary-icon {
  flex-shrink: 0;
  font-size: 2.25rem;
  line-height: 1;
}

.deployment-primary-copy {
  flex: 1;
}

.deployment-primary-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.deployment-primary-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--light);
}

.deployment-badge {
  font-size: 0.7rem;
}

.deployment-primary-text {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
}

.deployment-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.6rem;
}

.deployment-feature-item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.deployment-check {
  flex-shrink: 0;
  color: var(--sage);
  font-weight: 700;
}

.deployment-feature-text {
  font-size: 0.825rem;
  color: var(--muted);
  line-height: 1.5;
}

.deployment-alternatives {
  margin-top: 2rem;
}

.deployment-alt-label {
  margin-bottom: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.deployment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.deployment-option-card {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  background: var(--surface);
}

.deployment-option-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.deployment-option-header-wrap {
  flex-wrap: wrap;
}

.deployment-option-icon {
  font-size: 1.1rem;
}

.deployment-option-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--light);
}

.deployment-badge-small {
  min-height: 1.85rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.65rem;
}

.deployment-option-text {
  margin: 0 0 0.75rem;
  font-size: 0.825rem;
  line-height: 1.6;
  color: var(--muted);
}

.deployment-option-note {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--muted);
  background: rgba(255,255,255,0.03);
  border-radius: 4px;
  border-left: 2px solid var(--glass-border);
}

/* ── Waitlist form ───────────────────────────────────────────────── */
.waitlist-intro {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.waitlist-sub {
  margin: 0 auto 2rem;
}

.waitlist-form-shell {
  max-width: 600px;
  margin: 0 auto;
}

.waitlist-form-wrap {
  background: var(--glass);
  border: 1px solid var(--amber-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.form-input, .form-select {
  flex: 1 1 200px;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(2, 30, 58, 0.8);
  border: 1px solid var(--glass-border);
  color: var(--light);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-input::placeholder {
  color: rgba(138, 180, 200, 0.5);
}

.form-input:focus, .form-select:focus {
  border-color: var(--cerulean-border);
  box-shadow: 0 0 0 3px rgba(0, 151, 196, 0.1);
}

.form-select option {
  background: var(--void-mid);
  color: var(--light);
}

.form-submit {
  width: 100%;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  background: var(--amber);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
  margin-top: 0.25rem;
}

.form-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.form-privacy {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: rgba(138, 180, 200, 0.6);
  text-align: center;
  line-height: 1.5;
}

/* ── Director block ──────────────────────────────────────────────── */
@keyframes centerRipple {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.6;
  }
}

.director-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
  overflow: hidden;
}

.director-stat::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle at center, rgba(0, 151, 196, 0.15) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  animation: centerRipple 4s ease-in-out infinite alternate;
}

/* Modifiers for different quadrants */
.director-stat.glow-sage::before {
  background: radial-gradient(circle at center, rgba(76, 175, 130, 0.15) 0%, transparent 60%);
}
.director-stat.glow-sage .director-stat-number {
  text-shadow: 0 0 15px rgba(76, 175, 130, 0.5);
  color: var(--light);
}

.director-stat.glow-amber::before {
  background: radial-gradient(circle at center, rgba(255, 159, 28, 0.12) 0%, transparent 60%);
}
.director-stat.glow-amber .director-stat-number {
  text-shadow: 0 0 15px rgba(255, 159, 28, 0.5);
  color: var(--light);
}

.director-stat.glow-purple::before {
  background: radial-gradient(circle at center, rgba(168, 85, 247, 0.15) 0%, transparent 60%);
}
.director-stat.glow-purple .director-stat-number {
  text-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
  color: var(--light);
}

.director-stat-number, .director-stat-label {
  position: relative;
  z-index: 1;
}

.director-stat-number {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--light);
  margin-bottom: 0.35rem;
  text-shadow: 0 0 15px rgba(0, 151, 196, 0.5);
  transition: text-shadow 0.3s ease, color 0.3s ease;
}

.director-stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}

.directors-cta {
  margin-top: 1.75rem;
}

.director-card {
  padding: 1.5rem;
}

.director-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.director-stats-grid .director-stat:nth-child(1),
.director-stats-grid .director-stat:nth-child(3) {
  border-right: 1px solid var(--glass-border);
}

.director-stats-grid .director-stat:nth-child(-n + 2) {
  border-bottom: 1px solid var(--glass-border);
}

.director-note {
  margin-top: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: var(--amber-dim);
  border: 1px solid var(--amber-border);
}

.director-note-text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--light);
}

/* ── Specialty pills ─────────────────────────────────────────────── */
.specialties-section {
  text-align: center;
}

.specialties-title {
  margin: 0 auto 0.75rem;
}

.specialties-sub {
  margin: 0 auto 2rem;
}

.specialty-pill-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.specialty-callout {
  max-width: 680px;
  margin: 1.5rem auto 0;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--amber-dim);
  border: 1px solid var(--amber-border);
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--amber);
  text-align: left;
}

.specialty-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.specialty-pill:hover {
  transform: translateY(-2px);
  color: var(--light);
  border-color: var(--cerulean);
  box-shadow: 0 0 20px -5px var(--cerulean), inset 0 0 10px rgba(0, 151, 196, 0.2);
}

.specialty-pill.glow-amber:hover {
  border-color: var(--amber);
  box-shadow: 0 0 20px -5px var(--amber), inset 0 0 10px rgba(255, 159, 28, 0.2);
}

.specialty-pill.glow-sage:hover {
  border-color: var(--sage);
  box-shadow: 0 0 20px -5px var(--sage), inset 0 0 10px rgba(76, 175, 130, 0.2);
}

.specialty-pill.glow-caution:hover {
  border-color: var(--caution);
  box-shadow: 0 0 20px -5px var(--caution), inset 0 0 10px rgba(224, 82, 82, 0.2);
}

.specialty-pill.glow-purple:hover {
  border-color: #a855f7;
  box-shadow: 0 0 20px -5px #a855f7, inset 0 0 10px rgba(168, 85, 247, 0.2);
}

.specialty-pill.glow-pink:hover {
  border-color: #ec4899;
  box-shadow: 0 0 20px -5px #ec4899, inset 0 0 10px rgba(236, 72, 153, 0.2);
}

/* ── Icon circles ────────────────────────────────────────────────── */
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.icon-cerulean { 
  background: var(--cerulean-dim); 
  color: var(--cerulean); 
  border: 1px solid rgba(0, 151, 196, 0.4);
  box-shadow: 0 5px 15px rgba(0, 151, 196, 0.3), inset 0 0 10px rgba(0, 151, 196, 0.2);
}
.icon-sage { 
  background: var(--sage-dim); 
  color: var(--sage); 
  border: 1px solid rgba(76, 175, 130, 0.4);
  box-shadow: 0 5px 15px rgba(76, 175, 130, 0.3), inset 0 0 10px rgba(76, 175, 130, 0.2);
}
.icon-amber { 
  background: var(--amber-dim); 
  color: var(--amber); 
  border: 1px solid rgba(255, 159, 28, 0.4);
  box-shadow: 0 5px 15px rgba(255, 159, 28, 0.3), inset 0 0 10px rgba(255, 159, 28, 0.2);
}
.icon-caution { 
  background: var(--caution-dim); 
  color: var(--caution); 
  border: 1px solid rgba(224, 82, 82, 0.4);
  box-shadow: 0 5px 15px rgba(224, 82, 82, 0.3), inset 0 0 10px rgba(224, 82, 82, 0.2);
}

/* ── Footer ──────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid rgba(0, 151, 196, 0.12);
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-brand-copy {
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.footer-badge {
  font-size: 0.7rem;
}

.footer-logo {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--light);
}

.footer-logo span { color: var(--cerulean); }

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--cerulean); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(138, 180, 200, 0.45);
}

/* ── Legal / content pages ─────────────────────────────────────── */
.legal-shell {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem;
}

.legal-card {
  padding: 2rem;
}

.legal-content {
  color: var(--muted);
  line-height: 1.75;
}

.legal-intro {
  margin-bottom: 1.5rem;
}

.legal-intro strong {
  color: var(--light);
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4 {
  color: var(--light);
  letter-spacing: -0.01em;
  margin-top: 1.75rem;
  margin-bottom: 0.85rem;
}

.legal-content h1 {
  font-size: clamp(1.8rem, 3.8vw, 2.5rem);
  line-height: 1.2;
}

.legal-content h2 {
  font-size: clamp(1.25rem, 2.8vw, 1.6rem);
  line-height: 1.3;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(0, 151, 196, 0.14);
}

.legal-content h3 {
  font-size: 1.05rem;
  line-height: 1.35;
}

.legal-content ul,
.legal-content ol {
  margin: 0.25rem 0 1.1rem 1.25rem;
  padding-left: 0.25rem;
}

.legal-content li {
  margin-bottom: 0.45rem;
}

.legal-content a {
  color: var(--cerulean);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content strong {
  color: var(--light);
}

.legal-content hr {
  border: 0;
  border-top: 1px solid rgba(0, 151, 196, 0.14);
  margin: 1.4rem 0;
}

.legal-section-card {
  padding: 1.35rem 1.5rem;
  margin-bottom: 1rem;
  border-color: rgba(0, 151, 196, 0.26);
  background: linear-gradient(135deg, rgba(2, 30, 58, 0.78) 0%, rgba(2, 30, 58, 0.58) 100%);
}

.legal-card-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.35;
  font-weight: 800;
  color: var(--light);
  letter-spacing: -0.01em;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(0, 151, 196, 0.18);
}

.legal-card-body {
  color: var(--muted);
}

.legal-card-body p:last-child,
.legal-card-body ul:last-child,
.legal-card-body ol:last-child {
  margin-bottom: 0;
}

.legal-card-body ul,
.legal-card-body ol {
  margin: 0.2rem 0 0.9rem 1.15rem;
  padding-left: 0.2rem;
}

.legal-card-body li {
  margin-bottom: 0.4rem;
}

.legal-card-body strong {
  color: var(--light);
}

/* ── Draft product demo page ───────────────────────────────────── */
.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.demo-shot {
  padding: 1rem;
}

.demo-shot h2 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--light);
}

.demo-shot p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.demo-shot img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.02);
}

.product-carousel {
  padding: 1rem;
  margin-top: 1rem;
}

.product-carousel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.product-carousel__title {
  margin: 0;
  font-size: clamp(1rem, 2.3vw, 1.3rem);
  color: var(--light);
}

.product-carousel__controls {
  display: flex;
  gap: 0.45rem;
}

.pc-btn {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--light);
  border-radius: 8px;
  cursor: pointer;
}

.pc-btn:hover {
  border-color: var(--cerulean-border);
  background: var(--cerulean-dim);
}

.product-carousel__slide {
  display: none;
  margin: 0;
}

.product-carousel__slide.is-active {
  display: block;
}

.product-carousel__slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.02);
}

.product-carousel__slide figcaption {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.product-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.pc-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(138, 180, 200, 0.45);
  cursor: pointer;
}

.pc-dot.is-active {
  background: var(--cerulean);
}

.product-carousel__empty {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px dashed var(--glass-border);
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .section-pad {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }

  .section-pad-sm {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .card-grid-pain,
  .card-grid-features,
  .card-grid-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }
}

@media (max-width: 768px) {
  .section-container {
    padding: 0 1.25rem;
  }

  .hero {
    padding: 3.5rem 1.25rem 3rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-secondary {
    width: 100%;
  }

  .card-grid-pain,
  .card-grid-steps,
  .card-grid-features,
  .deployment-options {
    grid-template-columns: 1fr;
  }

  .deployment-primary {
    padding: 1.5rem;
  }

  .deployment-primary-body {
    flex-direction: column;
  }

  .deployment-feature-grid {
    grid-template-columns: 1fr;
  }

  .local-only-block {
    padding: 2rem 1.5rem;
  }

  .compare-desktop {
    display: none;
  }

  .compare-mobile {
    display: grid;
  }

  .waitlist-form-wrap {
    padding: 1.75rem 1.25rem;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-badges {
    justify-content: center;
  }

  .legal-shell { padding: 3rem 1rem; }
  .legal-card { padding: 1.35rem; }
  .legal-section-card { padding: 1.1rem 1rem; }
  .demo-shot { padding: 0.9rem; }
  .product-carousel { padding: 0.8rem; }
}

@media (max-width: 560px) {
  .section-pad {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .section-pad-sm {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .section-title {
    font-size: clamp(1.6rem, 7vw, 2.15rem);
  }

  .section-sub {
    font-size: 0.98rem;
  }

  .site-nav {
    justify-content: center;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    padding: 3rem 1rem 2.5rem;
  }

  .hero-title {
    font-size: clamp(1.85rem, 8.5vw, 2.6rem);
    line-height: 1.05;
  }

  .hero-badges {
    gap: 0.5rem;
  }

  .badge {
    width: 100%;
  }

  .pain-card,
  .feature-card,
  .step-card,
  .compare-mobile-card {
    padding: 1.25rem;
  }

  .director-card {
    padding: 1rem;
  }

  .director-stats-grid {
    grid-template-columns: 1fr;
  }

  .director-stats-grid .director-stat {
    border-right: 0;
    border-bottom: 1px solid var(--glass-border);
  }

  .director-stats-grid .director-stat:last-child {
    border-bottom: 0;
  }

  .form-row {
    flex-direction: column;
  }

  .form-input,
  .form-select {
    flex-basis: 100%;
  }

  .specialty-pill {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .section-container {
    padding: 0 1rem;
  }

  .section-eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }

  .compare-mobile-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .waitlist-form-wrap,
  .deployment-primary,
  .deployment-option-card,
  .director-note,
  .local-only-block {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.landing {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}

.container {
  max-width: 600px;
}

.logo {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.tagline {
  margin-top: 1rem;
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0.75rem 2rem;
  background: var(--accent);
  color: var(--fg);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: opacity 0.2s;
}

.cta:hover { opacity: 0.85; }
