/* ============================================================
   Daisy Initiative — Core Stylesheet
   Design tokens and shared component styles
   ============================================================ */

:root {
  /* Colors */
  --color-ink: #0B0B0C;
  --color-white: #FFFFFF;
  --color-cloud: #F5F5F7;
  --color-signal: #0055DA;
  --color-signal-dark: #0044AE;
  --color-slate: #6E6E73;
  --color-border: #E5E5EA;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Radius */
  --radius-card: 20px;
  --radius-button: 100px;
  --radius-input: 10px;

  /* Shadows: tight dark shadow + wide soft ambient shadow, layered */
  --shadow-card: 0 1px 2px rgba(11, 11, 12, 0.06), 0 20px 40px -12px rgba(11, 11, 12, 0.12);
  --shadow-card-hover: 0 2px 4px rgba(11, 11, 12, 0.08), 0 28px 56px -14px rgba(11, 11, 12, 0.16);
}

body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.font-display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: 3rem; line-height: 1.1; }
h2 { font-size: 2.25rem; line-height: 1.15; }
h3 { font-size: 1.5rem; line-height: 1.2; }

@media (max-width: 767.98px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

/* Section headline underline accent, used sparingly, not on every heading */
.headline-accent {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}
.headline-accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 4px;
  background-color: var(--color-signal);
  border-radius: 2px;
}

/* Section backgrounds */
.section-white { background-color: var(--color-white); }
.section-cloud { background-color: var(--color-cloud); }
.section-ink { background-color: var(--color-ink); color: var(--color-white); }

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

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

/* Elevated card, the signature depth treatment */
.elevated-card {
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  padding: 2rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.elevated-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

/* Buttons */
.btn-signal {
  background-color: var(--color-signal);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-button);
  font-family: var(--font-body);
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.btn-signal:hover {
  background-color: var(--color-signal-dark);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-outline-ink {
  background-color: transparent;
  color: var(--color-ink);
  border: 1.5px solid var(--color-ink);
  border-radius: var(--radius-button);
  font-family: var(--font-body);
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.btn-outline-ink:hover {
  background-color: var(--color-ink);
  color: var(--color-white);
}

/* Forms */
.form-control, .form-select {
  border-radius: var(--radius-input);
  border: 1.5px solid var(--color-border);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
}
.form-control:focus, .form-select:focus {
  border-color: var(--color-signal);
  box-shadow: 0 0 0 3px rgba(0, 85, 218, 0.15);
}

/* Accessibility: visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-signal);
  outline-offset: 2px;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* ============================================================
   Additions: Stats, Timeline Mockup, Step Connector
   ============================================================ */

/* Stats bar */
.stat-card {
  text-align: center;
  padding: 1.5rem 1rem;
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--color-ink);
  line-height: 1;
}
.stat-label {
  color: var(--color-slate);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

/* Hero dashboard mockup */
.mock-dashboard {
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  padding: 1.75rem;
}
.mock-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}
.mock-status-badge {
  background-color: rgba(0, 85, 218, 0.1);
  color: var(--color-signal);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}
.mock-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  position: relative;
  padding-bottom: 1.75rem;
}
.mock-timeline-item:last-child {
  padding-bottom: 0;
}
.mock-timeline-item::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 26px;
  width: 2px;
  height: calc(100% - 10px);
  background-color: var(--color-border);
}
.mock-timeline-item:last-child::before {
  display: none;
}
.mock-timeline-dot {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  z-index: 1;
}
.mock-timeline-dot.done {
  background-color: var(--color-signal);
  color: var(--color-white);
}
.mock-timeline-dot.active {
  background-color: var(--color-white);
  border: 2px solid var(--color-signal);
  color: var(--color-signal);
}
.mock-timeline-dot.upcoming {
  background-color: var(--color-cloud);
  color: var(--color-slate);
}
.mock-timeline-text .title {
  font-weight: 600;
  font-size: 0.95rem;
}
.mock-timeline-text .subtitle {
  font-size: 0.8rem;
  color: var(--color-slate);
}

/* How It Works: connected step number badges */
.step-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-ink);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.why-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: rgba(0, 85, 218, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Tighten spacing when a section sits right above the footer */
.section-tight-bottom {
  padding-bottom: 3rem;
}
/* ============================================================
   Rich Motion & Panel System (v2 upgrade)
   ============================================================ */

.font-mono { font-family: 'JetBrains Mono', monospace; letter-spacing: 0.02em; }

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-signal);
  display: block;
  margin-bottom: 0.75rem;
}
.eyebrow.on-dark { color: #8FAEFF; }

/* Sticky nav shadow on scroll */

header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.25s ease;
}

/* Push page content down by the header's height, since fixed elements
   are removed from normal document flow and would otherwise overlap it */
body {
  padding-top: 76px;
}

@media (max-width: 991.98px) {
  body {
    padding-top: 68px;
  }
}
header.site-header.scrolled {
  box-shadow: 0 1px 0 var(--color-border), 0 12px 24px -18px rgba(11,11,12,0.25);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Live status pulse */
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background-color: #22C55E;
  display: inline-block;
  animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
@media (prefers-reduced-motion: reduce) { .pulse-dot { animation: none; } }

/* Dark panel section (richer than plain .section-ink) */
.panel-dark {
  background-color: var(--color-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.panel-dark .text-muted-dark { color: #9A9BA3; }

/* Comparison bars (cost-of-waiting style visual) */
.compare-card {
  background-color: #17171B;
  border: 1px solid #232327;
  border-radius: var(--radius-card);
  padding: 2.5rem;
}
.compare-row { margin-bottom: 1.75rem; }
.compare-row:last-child { margin-bottom: 0; }
.compare-label { font-size: 0.85rem; color: #9A9BA3; margin-bottom: 0.5rem; display: flex; justify-content: space-between; }
.compare-track { background-color: #232327; border-radius: 100px; height: 14px; overflow: hidden; }
.compare-fill { height: 100%; border-radius: 100px; width: 0%; transition: width 1.4s cubic-bezier(.2,.7,.2,1); }
.compare-fill.fill-slate { background-color: #5C5D66; }
.compare-fill.fill-signal { background-color: var(--color-signal); }

/* Feature grid (bordered cells, like a spec sheet) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
}
@media (max-width: 991.98px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-cell {
  background-color: #fff;
  padding: 1.75rem 1.5rem;
  transition: background-color 0.2s ease;
}
.feature-cell:hover { background-color: var(--color-cloud); }
.feature-cell .feature-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background-color: var(--color-ink);
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: 1rem; font-size: 1.1rem;
}

/* Use-case dark cards, alternating tone */
.usecase-card {
  border-radius: var(--radius-card);
  padding: 2rem;
  color: #fff;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}
.usecase-card.tone-ink { background-color: var(--color-ink); }
.usecase-card.tone-signal { background-color: var(--color-signal); }
.usecase-card.tone-slate { background-color: #1B1B1F; }
.usecase-tag { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; opacity: 0.75; }
.usecase-card p.usecase-body { margin-top: auto; padding-top: 1.25rem; font-size: 0.95rem; opacity: 0.92; line-height: 1.6; }

/* Custom FAQ accordion (replaces Bootstrap accordion visuals) */
.faq-item-custom { border-bottom: 1px solid var(--color-border); }
.faq-q-custom {
  width: 100%; background: none; border: none; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0.25rem; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--color-ink);
}
.faq-q-custom .plus { position: relative; width: 18px; height: 18px; flex-shrink: 0; margin-left: 1.25rem; }
.faq-q-custom .plus::before, .faq-q-custom .plus::after {
  content: ""; position: absolute; background-color: var(--color-ink); border-radius: 2px;
}
.faq-q-custom .plus::before { width: 18px; height: 2px; top: 8px; left: 0; }
.faq-q-custom .plus::after { width: 2px; height: 18px; top: 0; left: 8px; transition: transform 0.25s ease; }
.faq-item-custom.open .plus::after { transform: rotate(90deg); }
.faq-a-custom { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-custom p { padding: 0 0.25rem 1.5rem; color: var(--color-slate); font-size: 0.95rem; line-height: 1.65; }

/* ============================================================
   Hero v2: animated path + count-up stats
   ============================================================ */

.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--color-slate);
}
.hero-trust-row span { display: flex; align-items: center; gap: 0.4rem; }

.hero-visual-card {
  background-color: var(--color-ink);
  border-radius: var(--radius-card);
  padding: 2.25rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-visual-card::before {
  content: "";
  position: absolute;
  top: -40%; right: -25%;
  width: 65%; height: 130%;
  background: radial-gradient(circle, rgba(0,85,218,0.35), transparent 65%);
  pointer-events: none;
}
.hero-visual-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-visual-status {
  font-size: 0.75rem;
  color: #8FAEFF;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'JetBrains Mono', monospace;
}

.hero-path-wrap {
  margin-top: 2.25rem;
  position: relative;
  z-index: 1;
  height: 130px;
}
.hero-path-wrap svg { width: 100%; height: 100%; overflow: visible; }
.hero-path-dot { fill: var(--color-signal); }
.hero-path-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #9A9BA3;
  font-family: 'JetBrains Mono', monospace;
}

.hero-stats-row {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.hero-stat b {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
  font-weight: 600;
}
.hero-stat span {
  font-size: 0.75rem;
  color: #9A9BA3;
}

@media (prefers-reduced-motion: reduce) {
  #heroPathDot { animation: none !important; }
}
/* ============================================================
   How It Works v2: connected animated steps
   ============================================================ */

.steps-wrap {
  position: relative;
  padding-top: 1rem;
}

.steps-line-track {
  position: absolute;
  top: 38px;
  left: 5%;
  right: 5%;
  height: 2px;
  background-color: var(--color-border);
  z-index: 0;
}
.steps-line-fill {
  position: absolute;
  top: 38px;
  left: 5%;
  height: 2px;
  width: 0%;
  background-color: var(--color-signal);
  z-index: 1;
  transition: width 1.6s cubic-bezier(.2,.7,.2,1);
}

.step-col { position: relative; z-index: 2; }

.step-badge-lg {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid var(--color-border);
  color: var(--color-slate);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}
.step-col.is-active .step-badge-lg {
  background-color: var(--color-signal);
  border-color: var(--color-signal);
  color: #fff;
}

.step-col h3 { font-size: 1.05rem; }
.step-col p { font-size: 0.9rem; }
/* ============================================================
   How It Works: ambient drifting background
   ============================================================ */

.steps-section {
  position: relative;
  overflow: hidden;
}

.ambient-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.orb-1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0,85,218,0.55), transparent 70%);
  top: -80px;
  left: -60px;
  animation: driftOne 16s ease-in-out infinite;
}

.orb-2 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0,85,218,0.4), transparent 70%);
  bottom: -100px;
  right: 5%;
  animation: driftTwo 20s ease-in-out infinite;
}

.orb-3 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(11,11,12,0.12), transparent 70%);
  top: 30%;
  right: 25%;
  animation: driftThree 14s ease-in-out infinite;
}

@keyframes driftOne {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 60px) scale(1.1); }
}
@keyframes driftTwo {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, -30px) scale(1.08); }
}
@keyframes driftThree {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 40px); }
}

/* Content needs to sit above the ambient background */
.steps-section .container {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .ambient-orb { animation: none; }
}

@media (max-width: 767.98px) {
  .ambient-orb { opacity: 0.22; }
}
/* ============================================================
   How It Works: dark panel + live network animation
   ============================================================ */

/* ============================================================
   How It Works: gradient panel + rising relief particles
   ============================================================ */

.steps-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #0B0B0C 0%, #081228 55%, #063a94 100%);
}

.steps-section .headline-accent { color: #fff; }
.steps-section .headline-accent::after { background-color: #fff; }

.steps-section .step-col h3 { color: #fff; }
.steps-section .step-col p { color: rgba(255, 255, 255, 0.62) !important; }

#riseCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.steps-section .container {
  position: relative;
  z-index: 1;
}

.steps-section .step-badge-lg {
  background-color: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
}
.steps-section .step-col.is-active .step-badge-lg {
  background-color: var(--color-signal);
  border-color: var(--color-signal);
  color: #fff;
  box-shadow: 0 0 0 8px rgba(0, 85, 218, 0.18), 0 0 24px rgba(0, 85, 218, 0.55);
}

.steps-section .steps-line-track { background-color: rgba(255, 255, 255, 0.14); }
.steps-section .steps-line-fill {
  background-color: #fff;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.7);
}

.steps-section .headline-accent {
  color: #fff;
}

.steps-section .step-col p {
  color: rgba(255, 255, 255, 0.6) !important;
}

.steps-section .step-col h3 {
  color: #fff;
}

#networkCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.steps-section .container {
  position: relative;
  z-index: 1;
}

/* Dark-mode step badges */
/* .steps-section .step-badge-lg {
  background-color: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.55);
} */
/* Dark-mode step badges */
.steps-section .step-badge-lg {
  background-color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.18);
  color: #000;
}
.steps-section .step-col.is-active .step-badge-lg {
  background-color: var(--color-signal);
  border-color: var(--color-signal);
  color: #fff;
  box-shadow: 0 0 0 8px rgba(0, 85, 218, 0.18), 0 0 24px rgba(0, 85, 218, 0.5);
}

/* Dark-mode connecting line */
.steps-section .steps-line-track {
  background-color: rgba(255, 255, 255, 0.12);
}
.steps-section .steps-line-fill {
  background-color: var(--color-signal);
  box-shadow: 0 0 16px rgba(0, 85, 218, 0.8);
}
/* ============================================================
   Programs section: distinct cards with hover reveal
   ============================================================ */

.program-card {
  position: relative;
  background-color: #fff;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  padding: 2rem;
  height: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.program-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.program-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-signal), #8FAEFF);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.program-card:hover::before { transform: scaleX(1); }

.program-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: rgba(0, 85, 218, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.program-card:hover .program-icon-wrap {
  background-color: var(--color-signal);
  transform: scale(1.06);
}
.program-icon-wrap i {
  font-size: 1.5rem;
  color: var(--color-signal);
  transition: color 0.3s ease;
}
.program-card:hover .program-icon-wrap i { color: #fff; }

.program-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--color-signal);
  text-decoration: none;
  margin-top: 0.5rem;
}
.program-link i {
  transition: transform 0.25s ease;
}
.program-link:hover i { transform: translateX(4px); }
.program-link:hover { color: var(--color-signal-dark); }

/* ============================================================
   Testimonials: rotating spotlight
   ============================================================ */

.spotlight-wrap {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.spotlight-slide {
  display: none;
  text-align: center;
}
.spotlight-slide.is-active {
  display: block;
  animation: spotlightFade 0.6s ease;
}
@keyframes spotlightFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.spotlight-quote-icon {
  font-size: 2rem;
  color: var(--color-signal);
  margin-bottom: 1rem;
}

.spotlight-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--color-ink);
  margin-bottom: 1.75rem;
}
@media (max-width: 767.98px) {
  .spotlight-text { font-size: 1.15rem; }
}

.spotlight-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--color-signal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 auto 0.75rem auto;
}

.spotlight-name { font-weight: 600; }
.spotlight-location { color: var(--color-slate); font-size: 0.85rem; }

.spotlight-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.spotlight-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.spotlight-dot.is-active {
  background-color: var(--color-signal);
  transform: scale(1.3);
}
/* ============================================================
   Apply Now: split layout (v2 — static, contained, responsive)
   ============================================================ */

.apply-split-row {
  min-height: calc(100vh - 76px);
}
@media (max-width: 991.98px) {
  .apply-split-row { min-height: auto; }
}

.apply-left-panel {
  background: linear-gradient(150deg, #0B0B0C 0%, #081228 55%, #063a94 100%);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 4rem 3rem;
  min-height: 100%;
  border-radius: 20px;
}
@media (max-width: 991.98px) {
  .apply-left-panel { padding: 3rem 1.5rem; }
}

.apply-left-content { max-width: 460px; margin: 0 auto; }

.apply-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.apply-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #8FAEFF;
}

.apply-right-panel {
  display: flex;
  align-items: center;
  padding: 4rem 3rem;
}
@media (max-width: 991.98px) {
  .apply-right-panel { padding: 2.5rem 1.25rem; }
}
.apply-form-wrap { max-width: 440px; margin: 0 auto; width: 100%; }

.testing-only-box {
  border: 1.5px dashed var(--color-signal);
  background-color: rgba(0, 85, 218, 0.05);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  margin-top: 1.5rem;
}
.testing-only-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-signal);
  display: block;
  margin-bottom: 0.5rem;
}

/* Password field with reveal toggle */
.password-input-wrap { position: relative; }
.password-input-wrap .form-control { padding-right: 3rem; }
.password-toggle-btn {
  position: absolute;
  top: 50%;
  right: 0.9rem;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0.25rem;
  color: var(--color-slate);
  display: flex;
  align-items: center;
}
.password-toggle-btn:hover { color: var(--color-ink); }

/* ============================================================
   Legal pages + cookie consent banner
   ============================================================ */

.legal-toc {
  position: sticky;
  top: 96px;
}
.legal-toc a {
  display: block;
  padding: 0.4rem 0;
  color: var(--color-slate);
  text-decoration: none;
  font-size: 0.9rem;
  border-left: 2px solid var(--color-border);
  padding-left: 1rem;
}
.legal-toc a:hover { color: var(--color-signal); border-left-color: var(--color-signal); }

.legal-body h2 { font-size: 1.3rem; margin-top: 2.5rem; margin-bottom: 1rem; }
.legal-body p, .legal-body li { color: var(--color-ink); line-height: 1.75; }
.legal-body ul { padding-left: 1.25rem; }

.legal-summary-box {
  background-color: rgba(0, 85, 218, 0.05);
  border: 1px solid rgba(0, 85, 218, 0.2);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}

/* Cookie consent banner */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background-color: var(--color-ink);
  color: #fff;
  padding: 1.25rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#cookieBanner.is-visible { transform: translateY(0); }
#cookieBanner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
#cookieBanner p { margin: 0; font-size: 0.9rem; color: rgba(255,255,255,0.8); max-width: 640px; }
#cookieBanner .cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }