:root {
  --bg: #000000;
  --bg-soft: #0a0d12;
  --surface: #0f1419;
  --ink: #f5f7fa;
  --ink-soft: #a7b0bd;
  --ink-dim: #6c7584;
  --teal-300: #6fd3d5;
  --teal-400: #4cc5c8;
  --teal-500: #2bb3b8;
  --teal-600: #1e959a;
  --navy-600: #2a5ca8;
  --navy-700: #1b3b6f;
  --navy-800: #12355a;
  --accent: #6fd3d5;
  --hairline: rgba(255, 255, 255, 0.1);
  --hairline-strong: rgba(255, 255, 255, 0.18);
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display",
    system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--teal-300);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================================
   Typography
   ======================================================== */
h1, h2, h3, h4 {
  font-family: inherit;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--ink);
}

.title-xl {
  font-size: clamp(44px, 7vw, 104px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.title-lg {
  font-size: clamp(40px, 6.2vw, 88px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.title-md {
  font-size: clamp(32px, 4.6vw, 64px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.lede {
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 680px;
  margin-top: 28px;
  font-weight: 400;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-300);
  margin-bottom: 28px;
}

.kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--teal-400);
}

.gradient-text {
  background: linear-gradient(
    100deg,
    var(--teal-300) 0%,
    var(--teal-500) 45%,
    var(--navy-600) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.05em;
}

/* ========================================================
   Buttons & CTAs
   ======================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 30px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.25s, color 0.25s, border-color 0.25s;
  border: 1px solid transparent;
  cursor: pointer;
  letter-spacing: -0.01em;
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--teal-300);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline-strong);
}

.btn-ghost:hover {
  border-color: var(--teal-300);
  color: var(--teal-300);
}

.btn .arrow {
  transition: transform 0.25s;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ========================================================
   Nav
   ======================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 32px;
  transition: padding 0.25s ease, background 0.25s ease,
    backdrop-filter 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.nav--scrolled {
  padding: 10px 32px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.nav-brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.nav-brand-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--teal-300);
}

.nav-links .nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  transition: background 0.2s, transform 0.2s;
}

.nav-links .nav-cta:hover {
  background: var(--teal-300);
  transform: translateY(-1px);
  color: var(--bg);
}

@media (max-width: 820px) {
  .nav,
  .nav--scrolled {
    padding-left: 20px;
    padding-right: 20px;
  }
  .nav-links a:not(.nav-cta) {
    display: none;
  }
}

/* ========================================================
   Section shell
   ======================================================== */
.section {
  padding: clamp(80px, 10vw, 160px) 32px;
  position: relative;
  scroll-margin-top: 80px;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section--problem {
  background: var(--bg);
}

.section--solution {
  background: var(--bg-soft);
}

.section--method {
  background: var(--bg);
  overflow: hidden;
}

.section--method::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(43, 179, 184, 0.08),
    transparent 60%
  );
  pointer-events: none;
}

.section--mission {
  background: var(--bg);
  overflow: hidden;
  text-align: center;
}

.section--mission .kicker {
  justify-content: center;
}

.section--mission .mission-para {
  text-align: left;
}

.section--mission::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 80% 30%,
    rgba(43, 179, 184, 0.08),
    transparent 55%
  );
  pointer-events: none;
}

.mission-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 56px auto 0;
  max-width: 820px;
}

.mission-para {
  margin: 0;
  padding: clamp(28px, 3.2vw, 40px);
  border-radius: 20px;
  border: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 400;
  transition: border-color 0.25s, transform 0.25s;
}

.mission-para:hover {
  border-color: rgba(111, 211, 213, 0.32);
  transform: translateY(-2px);
}

.mission-para strong {
  color: var(--teal-300);
  font-weight: 600;
}

.section--results {
  background: var(--bg-soft);
}

.section--social {
  background: var(--bg);
}

.section--cta {
  background:
    radial-gradient(
      ellipse at 30% 20%,
      rgba(43, 179, 184, 0.35),
      transparent 55%
    ),
    radial-gradient(
      ellipse at 75% 80%,
      rgba(27, 59, 111, 0.4),
      transparent 55%
    ),
    var(--bg);
  text-align: center;
}

.cta-inner {
  max-width: 900px;
  text-align: center;
}

.section--cta .kicker,
.section--cta .cta-row,
.section--cta .cta-bullets {
  justify-content: center;
}

.section--cta .lede {
  margin-left: auto;
  margin-right: auto;
}

/* ========================================================
   Hero — centered keynote-style
   ======================================================== */
.hero {
  position: relative;
  min-height: min(86vh, 820px);
  padding: clamp(104px, 11vw, 144px) 24px clamp(48px, 6vw, 80px);
  background:
    radial-gradient(
      ellipse at 50% 40%,
      rgba(43, 179, 184, 0.2),
      transparent 55%
    ),
    radial-gradient(
      ellipse at 50% 85%,
      rgba(27, 59, 111, 0.3),
      transparent 60%
    ),
    var(--bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(92vmin, 880px);
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: conic-gradient(
    from 90deg,
    rgba(111, 211, 213, 0.55),
    rgba(43, 179, 184, 0.2),
    rgba(27, 59, 111, 0.6),
    rgba(111, 211, 213, 0.55)
  );
  filter: blur(110px);
  opacity: 0.45;
}

.hero-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(80vmin, 760px);
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-ring-2 {
  width: min(64vmin, 600px);
  border-style: dashed;
  border-width: 1px;
  border-color: rgba(111, 211, 213, 0.18);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1440px;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 40px;
  will-change: transform, opacity;
}

.hero-tag .live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-400);
  box-shadow: 0 0 10px var(--teal-400);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.55; }
}

.hero-mark {
  position: relative;
  width: clamp(88px, 11vw, 148px);
  aspect-ratio: 1 / 1;
  margin-bottom: clamp(-28px, -2.4vw, -12px);
  will-change: transform, opacity, filter;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mark img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 80px rgba(43, 179, 184, 0.5));
}

.wordmark {
  font-size: clamp(56px, 12vw, 180px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.04em;
  max-width: 100%;
}

.wave-band {
  position: relative;
  width: min(96%, 1440px);
  height: clamp(72px, 12vw, 180px);
  margin: clamp(28px, 3.4vw, 48px) auto clamp(28px, 3.4vw, 48px);
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
  opacity: 0.85;
  will-change: opacity, transform;
}

.wave-band svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  animation: wave-slide 14s linear infinite;
  will-change: transform;
}

.wave-band .w2 {
  animation-duration: 20s;
  animation-direction: reverse;
  opacity: 0.55;
}

@keyframes wave-slide {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .wave-band svg { animation: none; }
}

.wordmark-word {
  display: inline-flex;
  white-space: nowrap;
}

.wordmark .l {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  will-change: transform, opacity, filter;
}

.wordmark-accent .l {
  background: linear-gradient(
    100deg,
    var(--teal-300) 0%,
    var(--teal-500) 45%,
    var(--navy-600) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.02em;
}

.hero-tagline {
  font-size: clamp(16px, 1.4vw, 22px);
  color: var(--ink-soft);
  font-weight: 400;
  line-height: 1.45;
  margin-top: 0;
  max-width: 620px;
  letter-spacing: -0.015em;
  will-change: transform, opacity;
}

.hero-ctas {
  margin-top: clamp(24px, 3vw, 40px);
  justify-content: center;
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  .wordmark .l { opacity: 1; transform: none; }
  .hero-tag .live { animation: none; }
}

/* ========================================================
   Problem stats
   ======================================================== */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid var(--hairline);
}

.stat {
  padding: 40px 24px 32px 0;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.stat:last-child {
  border-right: none;
  padding-right: 0;
}

.stat-number {
  font-size: clamp(54px, 6.5vw, 104px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.stat-number .unit {
  font-size: 0.34em;
  font-weight: 500;
  color: var(--ink-soft);
  margin-left: 6px;
  letter-spacing: -0.02em;
}

.stat-label {
  margin-top: 20px;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 400;
  padding-right: 16px;
  line-height: 1.5;
}

.stat-label strong {
  color: var(--ink);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 560px) {
  .stat-grid {
    grid-template-columns: 1fr;
  }
  .stat {
    border-right: none;
    padding: 32px 0 24px;
  }
}

/* ========================================================
   Solution pillars
   ======================================================== */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.pillar {
  padding: 40px 36px;
  border-radius: 20px;
  border: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}

.pillar:hover {
  border-color: rgba(111, 211, 213, 0.32);
  background: rgba(111, 211, 213, 0.04);
  transform: translateY(-3px);
}

.pillar-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(111, 211, 213, 0.12);
  color: var(--teal-300);
  flex-shrink: 0;
}

.pillar h3 {
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0;
  line-height: 1.1;
}

.pillar p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}

@media (max-width: 960px) {
  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .pillar-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================================
   Method steps
   ======================================================== */
.method-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 72px;
  position: relative;
}

.method-line {
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(111, 211, 213, 0.4) 20%,
    rgba(111, 211, 213, 0.4) 80%,
    transparent
  );
}

.step {
  position: relative;
  padding: 0 24px 0 0;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--hairline-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--teal-300);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  position: relative;
}

.step-num::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(111, 211, 213, 0.2),
    transparent 70%
  );
  z-index: -1;
}

.step h3 {
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 280px;
}

@media (max-width: 960px) {
  .method-row {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }
  .method-line {
    display: none;
  }
}

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

/* ========================================================
   Results
   ======================================================== */
.results-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.result {
  padding: 32px 28px 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  transition: border-color 0.25s, transform 0.25s;
}

.result:hover {
  border-color: rgba(111, 211, 213, 0.32);
  transform: translateY(-3px);
}

.result-n {
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.result-n .unit {
  color: var(--teal-300);
  font-size: 0.42em;
  margin-left: 4px;
  font-weight: 500;
}

.result h4 {
  font-size: 16px;
  margin-top: 28px;
  margin-bottom: 6px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.result p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .results-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .results-row {
    grid-template-columns: 1fr;
  }
}

/* ========================================================
   Social proof
   ======================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.testimonial {
  padding: 32px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color 0.25s, transform 0.25s;
}

.testimonial:hover {
  border-color: rgba(111, 211, 213, 0.32);
  transform: translateY(-3px);
}

.testimonial blockquote {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 400;
}

.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  font-style: normal;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(111, 211, 213, 0.28),
    rgba(27, 59, 111, 0.45)
  );
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.who {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.who strong {
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 600;
}

.who span {
  font-size: 13px;
  color: var(--ink-dim);
}

@media (max-width: 960px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}

.logo-row-label {
  margin-top: 80px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.logo-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 48px;
  margin-top: 28px;
  padding: 0;
  opacity: 0.7;
}

.logo-slot {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color 0.2s;
}

.logo-slot:hover {
  color: var(--ink-soft);
}

/* ========================================================
   CTA form
   ======================================================== */
.cta-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 44px auto 16px;
  max-width: 520px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  transition: border-color 0.2s;
}

.cta-form:focus-within {
  border-color: var(--teal-300);
}

.cta-form input {
  flex: 1 1 220px;
  min-width: 0;
  background: transparent;
  border: none;
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  padding: 14px 18px;
  border-radius: 999px;
}

.cta-form input::placeholder {
  color: var(--ink-dim);
}

.cta-form input:focus {
  outline: none;
}

.cta-form .btn-primary {
  padding: 14px 26px;
  font-size: 15px;
}

.cta-hint {
  font-size: 14px;
  color: var(--ink-dim);
  margin-top: 4px;
}

.cta-hint a {
  color: var(--teal-300);
  text-decoration: none;
  border-bottom: 1px solid rgba(111, 211, 213, 0.35);
  transition: border-color 0.2s, color 0.2s;
}

.cta-hint a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.cta-bullets {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 44px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--ink-soft);
}

.cta-bullets span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-bullets span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-400);
  box-shadow: 0 0 8px var(--teal-400);
}

@media (max-width: 560px) {
  .cta-form {
    border-radius: 20px;
    padding: 8px;
    flex-direction: column;
  }
  .cta-form input {
    text-align: center;
  }
  .cta-form .btn-primary {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================================
   Footer
   ======================================================== */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--hairline);
  padding: 56px 32px 40px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.footer-brand img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 6px;
}

.footer-col a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--teal-300);
}

.footer-copy {
  grid-column: 1 / -1;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-size: 12.5px;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
}

@media (max-width: 760px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .footer-nav {
    grid-template-columns: 1fr;
  }
}

/* ========================================================
   About page — Values grid
   ======================================================== */
.section--about-hero {
  padding-top: clamp(140px, 14vw, 200px);
  background:
    radial-gradient(ellipse at 50% 30%, rgba(43, 179, 184, 0.18), transparent 55%),
    radial-gradient(ellipse at 50% 90%, rgba(27, 59, 111, 0.22), transparent 60%),
    var(--bg);
}

.about-hero-inner {
  text-align: center;
}

.about-hero-inner .kicker {
  justify-content: center;
}

.about-lede {
  margin-left: auto;
  margin-right: auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.value-card {
  padding: 32px 28px;
  border-radius: 18px;
  border: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 280px;
}

.value-card:hover {
  border-color: rgba(111, 211, 213, 0.32);
  transform: translateY(-3px);
}

.value-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--bar, var(--teal-400));
}

.value-name {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--bar, var(--ink));
  margin-top: 14px;
  line-height: 1.1;
}

.value-phrase {
  font-size: 15px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
}

.value-body {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
}

@media (max-width: 1100px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 780px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ========================================================
   Legal pages (privacy.html, terms.html)
   ======================================================== */
.section--legal {
  padding-top: clamp(140px, 14vw, 200px);
  background: var(--bg);
}

.legal-inner {
  max-width: 780px;
}

.legal-inner h1 {
  margin-bottom: 16px;
}

.legal-inner .legal-meta {
  font-size: 14px;
  color: var(--ink-dim);
  margin-top: 8px;
  margin-bottom: 32px;
}

.legal-disclaimer {
  padding: 18px 22px;
  border-radius: 12px;
  border: 1px solid rgba(111, 211, 213, 0.28);
  background: rgba(111, 211, 213, 0.06);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 48px;
}

.legal-disclaimer strong {
  color: var(--teal-300);
}

.legal-disclaimer code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12.5px;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--ink);
}

.legal-inner h2 {
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--ink);
}

.legal-inner p,
.legal-inner li {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.legal-inner p {
  margin-bottom: 16px;
}

.legal-inner ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-inner li {
  margin-bottom: 10px;
}

.legal-inner strong {
  color: var(--ink);
  font-weight: 600;
}

.legal-inner a {
  color: var(--teal-300);
  text-decoration: none;
  border-bottom: 1px solid rgba(111, 211, 213, 0.35);
  transition: border-color 0.2s;
}

.legal-inner a:hover {
  border-bottom-color: var(--teal-300);
}

/* ========================================================
   Section padding tighten on small screens
   ======================================================== */
@media (max-width: 760px) {
  .section {
    padding: 72px 20px;
  }
  .hero {
    padding: 120px 20px 72px;
  }
  .footer {
    padding: 48px 20px 32px;
  }
}

/* ========================================================
   Reveals
   ======================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================================
   Reduced motion
   ======================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
