:root {
  --bg: #0b1030;      /* CF dark hero navy */
  --bg-2: #0b1030;
  --ink: #0b1b36;     /* dark ink for light surfaces */
  --text: #f5f7fb;
  --muted: #c7cede;   /* muted text on dark bg */
  --muted-ink: #4b5870; /* muted text on light bg */
  --accent: #fbb03b;   /* CF yellow CTA */
  --accent-2: #8ac0e8; /* CF light blue text */
  --accent-3: #092f65; /* CF deep navy */
  --card: #ffffff;
  --stroke: rgba(9, 47, 101, 0.16);
  --glow: rgba(9, 47, 101, 0.22);
}

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

/* Accessibility helpers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 10px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(9, 47, 101, 0.18);
  color: var(--ink);
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.15s ease;
}
.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(251, 176, 59, 0.85);
  outline-offset: 3px;
}

body {
  font-family: "Inter", "Space Grotesk", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

.urgency-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  background: #ffffff;
  border-bottom: 1px solid rgba(31, 124, 242, 0.12);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.urgency-bar .bar-left {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #000;
  font-weight: 600;
}

.bar-note {
  color: #000;
  font-weight: 500;
}

.bar-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-ghost {
  border: 1px dashed rgba(15, 40, 80, 0.2);
  color: #000 !important;
  background: #ffffff;
}

body::before,
body::after {
  content: none;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(56, 157, 215, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 157, 215, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  /* Subtle only; heavy grids read as DIY and can reduce legibility. */
  opacity: 0.10;
}

/* Subtle reveal animation for interaction / polish (respects reduced motion). */
.reveal { opacity: 0; transform: translateY(10px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.reveal-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 80px;
  position: relative;
  z-index: 1;
}

/* Mobile quick actions (reduces friction). */
.sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom));
  z-index: 50;
  display: none;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 40, 80, 0.12);
  box-shadow: 0 24px 50px rgba(15, 40, 80, 0.18);
  backdrop-filter: blur(14px);
}

.sticky-item {
  display: grid;
  place-items: center;
  text-decoration: none;
  font-weight: 800;
  padding: 12px 10px;
  border-radius: 14px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(15, 40, 80, 0.12);
}

.sticky-item.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  border-color: rgba(15, 40, 80, 0.06);
  color: #041318;
}

@media (max-width: 920px) {
  .sticky-cta { display: grid; }
  .shell { padding-bottom: 120px; }
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  animation: fadeUp 0.9s ease forwards;
}

.topbar {
  background: #ffffff;
  border: 1px solid rgba(15, 40, 80, 0.08);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(15, 40, 80, 0.08);
  position: sticky;
  top: 54px; /* sits under the sticky urgency bar */
  z-index: 15;
}
.topbar { color: var(--ink); }

.slimbar {
  top: 14px;
  padding: 12px 14px;
}

.slimbar-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.slimbar .btn-sm { padding: 10px 14px; }

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 12px;
  border-radius: 16px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.logo img {
  width: 240px;
  height: auto;
  filter: none;
}

.nav {
  display: flex;
  gap: 14px;
  font-size: 15px;
  color: var(--muted);
  align-items: center;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 12px;
  background: rgba(9, 47, 101, 0.06);
  border: 1px solid rgba(9, 47, 101, 0.14);
}

.nav-toggle-label span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: var(--accent-3);
  border-radius: 2px;
}

/* Keep sr-only from affecting hamburger layout */
.nav-toggle-label .sr-only {
  position: absolute;
}

.nav a {
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav a:hover {
  color: #000000;
}

.nav a.is-active {
  background: rgba(15, 40, 80, 0.10);
  box-shadow: inset 0 0 0 1px rgba(15, 40, 80, 0.14);
}

.nav .nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #000000 !important;
  font-weight: 700;
  border: 1px solid transparent;
}

.nav .nav-cta:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  padding: 30px 0 40px;
}

.hero-panel {
  background: #0b1030;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  padding: 36px;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(520px 360px at 70% 20%, rgba(138, 192, 232, 0.20), transparent 70%),
    radial-gradient(520px 360px at 20% 80%, rgba(9, 47, 101, 0.25), transparent 70%);
  pointer-events: none;
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.hero-copy {
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 0.05s;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(56, 157, 215, 0.14);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 12px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
  margin: 18px 0 16px;
  color: #f7fbff;
}

.accent-text {
  background: linear-gradient(120deg, #f5f7fb, #8ac0e8);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-copy p {
  color: #0b1b36;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 540px;
}

.hero-panel,
.hero-panel p,
.hero-panel li,
.hero-panel span,
.hero-panel strong {
  color: #f5f7fb;
}
.hero-panel .btn,
.hero-panel .btn-primary,
.hero-panel .btn-secondary {
  color: #000 !important;
}
.hero-panel .btn-ghost { color: #000 !important; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  align-items: center;
  justify-content: flex-start;
}

.hero-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(56, 157, 215, 0.28);
  background: rgba(56, 157, 215, 0.12);
  font-size: 0.85rem;
  color: #0b1b36;
}

.ticker {
  margin-top: 24px;
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(9, 47, 101, 0.08);
  border: 1px dashed rgba(9, 47, 101, 0.24);
  color: #000;
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.ticker, .ticker * { color: #000 !important; }

.ticker.urgency {
  background: rgba(216, 50, 29, 0.12);
  border-color: rgba(216, 50, 29, 0.35);
  color: #0e1524;
  font-weight: 600;
}

.live-stats {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 18px;
}

.stat-pill {
  padding: 12px 14px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(56, 157, 215, 0.24);
  color: var(--ink);
  display: flex;
  gap: 8px;
  align-items: center;
}
/* Ensure high contrast inside stat pills on white */
.stat-pill * { color: var(--ink); }

.btn {
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  background: none;
}

.btn-primary {
  background: var(--accent);
  color: #0b1030;
  box-shadow: 0 14px 30px rgba(251, 176, 59, 0.32);
}

.btn-secondary {
  border-color: rgba(0, 0, 0, 0.35);
  color: #000000;
  background: transparent;
}
.btn-ghost {
  border: 1px dashed rgba(15, 40, 80, 0.2);
  color: #000000;
  background: #ffffff;
}

/* Hero CTA trio – force white text */
.hero-panel .cta-row .btn-secondary,
.hero-panel .cta-row .btn-ghost {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 30px 60px rgba(5, 10, 20, 0.35);
  backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite;
}

.hero-visual {
  position: relative;
  min-height: 360px;
}

.stack-card {
  position: relative;
  width: 100%;
  padding: 20px 22px;
  border-radius: 18px;
  background: #0f1638;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.35);
  color: #f5f7fb;
  margin-bottom: 16px;
}

.stack-card h4 {
  margin-bottom: 8px;
}

.stack-card small {
  color: var(--muted);
}

.stack-card.primary {
  margin-top: 0;
}

.stack-card.secondary {
  background: #324860;
  color: #ffffff;
  border: 1px solid rgba(50, 72, 96, 0.4);
  box-shadow: 0 18px 32px rgba(50, 72, 96, 0.28);
}

.stack-card.tertiary {
  background: #eb4c34;
  color: #ffffff;
  border: 1px solid rgba(235, 76, 52, 0.4);
  box-shadow: 0 18px 32px rgba(235, 76, 52, 0.28);
}

.stack-card.quaternary {
  background: #0c7a5b;
  color: #ffffff;
  border: 1px solid rgba(12, 122, 91, 0.45);
  box-shadow: 0 18px 32px rgba(12, 122, 91, 0.28);
}

.hero-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.hero-card li::before {
  content: "✓";
  color: var(--accent);
  margin-right: 10px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(63, 135, 255, 0.12);
  color: #cdd9ee;
  font-size: 0.85rem;
  border: 1px solid rgba(63, 135, 255, 0.2);
}

section {
  margin-top: 64px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 14px;
  color: #f5f7fb;
}

/* Live-feed block uses a light surface; keep headings readable */
.live-feed-real .section-title { color: var(--ink); }
.live-feed-real .section-sub { color: var(--muted-ink); }

.section-title::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  border-radius: 999px;
  margin-top: 12px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
}

.section-sub {
  color: var(--muted);
  line-height: 1.7;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(33, 217, 199, 0.18);
  border: 1px solid rgba(33, 217, 199, 0.3);
  color: #b9fff2;
  font-weight: 700;
  margin-bottom: 12px;
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 24px;
}

.card {
  background: #ffffff;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 22px;
  min-height: 180px;
  color: var(--ink);
  transition: transform 0.2s ease, border 0.2s ease;
  box-shadow: 0 18px 34px rgba(9, 47, 101, 0.14);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(9, 47, 101, 0.45);
}

.card h4 {
  margin-bottom: 12px;
}

.card p {
  color: var(--muted-ink);
  line-height: 1.6;
}

.stats {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 24px;
}

.stats * { color: #ffffff !important; }
.stat { color: #ffffff !important; }
.stat strong { color: #ffffff !important; }
.stat p { color: #ffffff !important; }

.testimonial-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 24px;
}

.testimonial {
  padding: 22px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--stroke);
  box-shadow: 0 18px 32px rgba(56, 157, 215, 0.16);
}

.testimonial strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
}

.faq {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.faq details {
  border-radius: 16px;
  border: 1px solid rgba(56, 157, 215, 0.24);
  background: #ffffff;
  padding: 16px 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin-top: 10px;
  color: var(--muted-ink);
}

.proof-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 20px;
}

.proof-panel {
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(56, 157, 215, 0.24);
  box-shadow: 0 18px 34px rgba(56, 157, 215, 0.18);
  display: grid;
  gap: 12px;
}

.proof-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
  font-weight: 700;
}

.proof-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted-ink);
}

.proof-list li strong {
  color: var(--ink);
  margin-right: 6px;
}

.proof-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted-ink);
}

.proof-card {
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(56, 157, 215, 0.24);
  box-shadow: 0 18px 32px rgba(56, 157, 215, 0.16);
  display: grid;
  gap: 10px;
}

.shot-row {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.shot {
  height: 100px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(56, 157, 215, 0.16), rgba(235, 76, 52, 0.18));
  border: 1px dashed rgba(56, 157, 215, 0.32);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
}

.availability-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 16px;
}

.live-feed-real {
  margin-top: 48px;
  padding: 22px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(56, 157, 215, 0.24);
  box-shadow: 0 20px 40px rgba(56, 157, 215, 0.16);
  color: var(--ink);
}

.live-feed-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.live-feed-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 16px;
}

.feed-card {
  padding: 16px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(56, 157, 215, 0.24);
  display: grid;
  gap: 10px;
  box-shadow: 0 16px 30px rgba(56, 157, 215, 0.14);
}

.feed-top {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--ink);
  font-weight: 600;
}

.feed-time {
  color: var(--muted-ink);
}

.shot.wide {
  height: 140px;
  display: grid;
  place-items: center;
}

.feed-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted-ink);
}

.avail-card {
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(9, 47, 101, 0.22);
  box-shadow: 0 16px 32px rgba(9, 47, 101, 0.12);
  display: grid;
  gap: 8px;
  color: var(--ink);
}

/* Light-surface components: keep text dark + readable without global * overrides */
.testimonial,
.faq details,
.proof-panel,
.proof-card,
.feed-card,
.avail-card {
  color: var(--ink);
}
.testimonial p,
.proof-panel p,
.proof-card p,
.feed-card p {
  color: var(--muted-ink);
}
.testimonial strong { color: var(--ink); }
.proof-head,
.proof-list,
.avail-top { color: var(--ink); }
.proof-list,
.proof-list li strong { color: var(--ink); }
.proof-list li strong { font-weight: 700; }
.avail-top .count { color: var(--ink); }

/* Hero stays white-on-navy */
.hero-panel * { color: #f5f7fb; }
.hero-panel h1 { color: #f5f7fb; }
.hero-panel p { color: #f5f7fb; }

.avail-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
  font-weight: 700;
}

.avail-top .state {
  font-size: 1.05rem;
}

.avail-top .count {
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(33, 217, 199, 0.16);
  border: 1px solid rgba(33, 217, 199, 0.32);
  color: var(--ink);
}

.kpi-row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 18px;
}

.kpi-card {
  background: rgba(14, 24, 44, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 18px;
  display: grid;
  gap: 6px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
  color: #f5f7fb;
}

.kpi-card strong {
  font-size: 1.5rem;
  color: #ffffff;
}

.kpi-card span {
  color: rgba(245, 247, 251, 0.86);
}

.deal-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 20px;
  align-items: start;
}

.deal-card {
  padding: 18px;
  border-radius: 18px;
  background: #f9fbff;
  border: 1px solid rgba(9, 47, 101, 0.18);
  box-shadow: 0 18px 34px rgba(9, 47, 101, 0.14);
  display: grid;
  gap: 10px;
  color: #0b1b36;
}
.deal-card * { color: #0b1b36 !important; }

.deal-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #0b1b36;
}

.deal-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(9, 47, 101, 0.12);
  border: 1px solid rgba(9, 47, 101, 0.24);
  color: #0b1b36;
  font-weight: 700;
  font-size: 0.9rem;
}

.deal-tag.alt {
  background: rgba(216, 50, 29, 0.12);
  border: 1px solid rgba(216, 50, 29, 0.24);
  color: #0b1b36;
}

.deal-time {
  color: #0b1b36;
}

.btn-sm {
  padding: 10px 16px;
  font-size: 0.95rem;
}

.steps {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
  margin-top: 18px;
}

.step {
  background: #ffffff;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 34px rgba(9, 47, 101, 0.12);
  color: var(--ink);

  /* Layout: [badge] [copy] without needing extra wrapper markup */
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 14px;
  row-gap: 6px;
  align-content: start;
  align-items: start;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #041318;
  display: grid;
  place-items: center;
  font-weight: 800;
  /* Ensure the badge never overlaps text (even if DOM order changes). */
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
}

.step h4 {
  margin: 0;
  grid-column: 2;
}

.step p {
  margin: 0;
  color: var(--muted-ink);
  line-height: 1.6;
  grid-column: 2;
}
.stat {
  border-radius: 16px;
  background: rgba(63, 135, 255, 0.12);
  padding: 16px;
  border: 1px solid rgba(63, 135, 255, 0.24);
}

.stat strong {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 6px;
}

.cta-block {
  margin-top: 60px;
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(130deg, rgba(33, 217, 199, 0.2), rgba(63, 135, 255, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  gap: 18px;
}

form {
  display: grid;
  gap: 14px;
}

label.field-label {
  font-weight: 750;
  color: var(--text);
  letter-spacing: 0.2px;
  font-size: 0.95rem;
  margin-top: 8px;
}

.pickers {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 20, 36, 0.55);
  border-radius: 14px;
  padding: 14px;
  display: grid;
  gap: 10px;
}

.pickers legend { padding: 0 6px; }

.picker {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(245, 247, 251, 0.92);
  font-weight: 650;
}

.picker input { width: 18px; height: 18px; }

.two-step .two-step-open { display: none; }
.two-step:target .two-step-open { display: block; }
.two-step:target .two-step-closed { display: none; }

.value-stack {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.value-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.value-item strong { color: var(--text); }
.value-item span { color: rgba(245, 247, 251, 0.86); }

@media (max-width: 560px) {
  .value-item { grid-template-columns: 1fr; }
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.consent input[type="checkbox"] { margin-top: 4px; }

.consent-text {
  color: rgba(245, 247, 251, 0.92);
  font-size: 0.95rem;
  line-height: 1.5;
}

.consent-text a { color: var(--accent-2); }

input, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(10, 20, 36, 0.8);
  color: var(--text);
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

footer {
  margin-top: 60px;
  color: var(--muted);
  font-size: 0.95rem;
  display: grid;
  gap: 16px;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 40px 0 20px;
}

.footer {
  /* Solid background avoids any "blurry" look from background blending on some displays. */
  background: #0a1424;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 26px rgba(4, 10, 20, 0.28);
  display: grid;
  gap: 18px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 10px;
  max-width: 320px;
}

.footer-brand img {
  width: 180px;
  max-width: 100%;
  height: auto;
  display: block;
  /* Avoid image filters here; they can cause the logo to render slightly blurry at small sizes. */
  filter: none;
}

.meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(63, 135, 255, 0.14);
  border: 1px solid rgba(63, 135, 255, 0.3);
  color: #e5eeff;
  font-weight: 600;
}

.meta-badge img {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.muted { color: var(--muted); }

.footer-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(240px, 340px) repeat(3, minmax(160px, 1fr));
  align-items: start;
}

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.footer-col h4 {
  margin-bottom: 10px;
  color: #e9f3ff;
}

.footer-col a {
  display: block;
  padding: 6px 0;
}

.footer-contact .muted {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-more {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 14px;
}

.footer-more summary {
  cursor: pointer;
  font-weight: 700;
  color: #e9f3ff;
  list-style: none;
}
.footer-more summary::-webkit-details-marker { display: none; }

.footer-more-grid {
  margin-top: 12px;
  display: grid;
  gap: 10px 16px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.footer-more-grid a {
  display: block;
  padding: 6px 0;
  color: rgba(245, 247, 251, 0.92);
}
.footer-columns {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  align-items: start;
}

.footer-columns h4 {
  margin-bottom: 8px;
  color: #e9f3ff;
}

.footer a {
  color: var(--text);
  text-decoration: none;
}

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

.footer-bottom {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer .btn {
  margin-top: 8px;
}

.page-hero {
  padding: 20px 0 10px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
}

.notice {
  padding: 16px;
  border-radius: 14px;
  background: rgba(33, 217, 199, 0.12);
  color: #c9f7f1;
  border: 1px solid rgba(33, 217, 199, 0.3);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(63, 135, 255, 0.25);
  background: rgba(63, 135, 255, 0.1);
  color: #d7e3ff;
  font-size: 0.9rem;
}

.callout {
  padding: 18px;
  border-radius: 16px;
  background: rgba(18, 30, 52, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
}

.price-call {
  font-size: 1.2rem;
  /* Used inside white cards on pricing pages. */
  color: var(--muted-ink);
  margin-top: 10px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 720px) {
  .urgency-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  header {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    text-align: left;
  }
  .logo {
    flex: 1 1 auto;
    justify-content: center;
  }
  .nav-toggle-label {
    margin-left: auto;
  }
  .nav-toggle-label {
    display: block;
  }
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 4px;
    flex-basis: 100%;
  }
  .nav a {
    width: 100%;
    text-align: center;
  }
  .nav .nav-cta {
    width: 100%;
    justify-content: center;
  }
  .nav-toggle:checked ~ .nav {
    display: flex;
  }
  .logo img {
    width: 200px;
    display: block;
    margin: 0;
  }
  .shell {
    padding: 24px 18px 70px;
  }
  .hero {
    gap: 22px;
    text-align: center;
  }
  .hero-panel {
    padding: 24px;
  }
  h1 {
    font-size: clamp(2.1rem, 7vw, 2.8rem);
    text-align: center;
  }
  .hero-copy p {
    font-size: 0.98rem;
    margin: 0 auto;
  }
  .hero-visual {
    min-height: auto;
  }
  .stack-card {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    margin-bottom: 14px;
  }
  .cta-row {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }
  .btn {
    justify-content: center;
  }
  .footer {
    text-align: left;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .logo img {
    width: 180px;
  }
  .pill-row {
    gap: 8px;
  }
  .pill {
    font-size: 0.78rem;
  }
}
