/* ============================================================
   MarketPulse Intelligence — marketing site
   Dark sophisticated theme · Teal + Gold accents · DM Sans
   ============================================================ */

:root {
  /* Brand colors */
  --navy-950: #070b10;
  --navy-900: #0a1117;
  --navy-850: #0e1620;
  --navy-800: #121c28;
  --navy-700: #1a2636;
  --navy-600: #253347;
  --line: #1b2736;
  --line-strong: #2c3b52;

  --ink: #e7ecf2;
  --ink-muted: #98a3b3;
  --ink-faint: #62707f;
  --ink-disabled: #3e4a5c;

  --teal: #22c6ce;
  --teal-hi: #4fe0e7;
  --teal-lo: #01696f;
  --teal-glow: rgba(34, 198, 206, 0.18);

  --gold: #d4a843;
  --gold-hi: #ecc46b;
  --gold-lo: #8d6e23;
  --gold-glow: rgba(212, 168, 67, 0.18);

  /* Type */
  --font-body: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'DM Serif Display', 'Iowan Old Style', Georgia, serif;

  --text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.82rem + 0.25vw, 0.9375rem);
  --text-base: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1.02rem + 0.5vw, 1.3125rem);
  --text-xl: clamp(1.375rem, 1.15rem + 1vw, 1.875rem);
  --text-2xl: clamp(1.875rem, 1.4rem + 2vw, 2.875rem);
  --text-hero: clamp(2.375rem, 1.2rem + 4.75vw, 5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 22px;

  /* Easings */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Container */
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

/* ============ Reset & base ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--navy-900);
  min-height: 100dvh;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
  max-width: 68ch;
}

::selection {
  background: var(--teal);
  color: var(--navy-900);
}

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

/* ============ Layout ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(var(--space-20), 10vw, var(--space-32));
  position: relative;
}

.section__header {
  max-width: 820px;
  margin-bottom: clamp(var(--space-12), 6vw, var(--space-20));
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: var(--space-6);
}

.section__lede {
  font-size: var(--text-lg);
  color: var(--ink-muted);
  max-width: 62ch;
}

.text-teal {
  color: var(--teal);
}
.text-gold {
  color: var(--gold);
}
.text-muted {
  color: var(--ink-muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--space-5);
}
.eyebrow--teal {
  color: var(--teal);
}
.eyebrow--gold {
  color: var(--gold);
}
.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px color-mix(in srgb, currentColor 18%, transparent);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 200ms var(--ease-out);
  white-space: nowrap;
  line-height: 1;
}
.btn--sm {
  padding: 10px 16px;
  font-size: var(--text-xs);
  letter-spacing: 0.02em;
}
.btn--lg {
  padding: 18px 28px;
  font-size: var(--text-base);
}

.btn--primary {
  background: var(--teal);
  color: var(--navy-900);
  font-weight: 600;
  box-shadow: 0 0 0 0 var(--teal-glow);
}
.btn--primary:hover {
  background: var(--teal-hi);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -10px var(--teal-glow), 0 0 0 6px rgba(34, 198, 206, 0.08);
}

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

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
  font-weight: 500;
}
.btn--outline:hover {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
}

.btn--gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  font-weight: 600;
}
.btn--gold:hover {
  background: var(--gold);
  color: var(--navy-900);
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 300ms var(--ease-out);
  padding-block: var(--space-5);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 17, 23, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
  padding-block: var(--space-3);
}
.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--ink);
}
.logo__mark {
  color: var(--teal);
  flex-shrink: 0;
}
.logo__word {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo__word-primary {
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}
.logo__word-sub {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 2px;
}
.nav__links {
  display: flex;
  gap: var(--space-8);
  font-size: var(--text-sm);
}
.nav__links a {
  color: var(--ink-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 180ms var(--ease-out);
}
.nav__links a:hover {
  color: var(--ink);
}

@media (max-width: 860px) {
  .nav__links {
    display: none;
  }
}
@media (max-width: 420px) {
  .logo__word-sub {
    display: none;
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding-top: clamp(var(--space-24), 14vw, 11rem);
  padding-bottom: clamp(var(--space-20), 10vw, var(--space-32));
  overflow: hidden;
  isolation: isolate;
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 70%);
}

.hero__glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(34, 198, 206, 0.12), transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 30%, rgba(212, 168, 67, 0.06), transparent 60%);
  pointer-events: none;
}

.hero__heading {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.02;
  max-width: 18ch;
  margin-bottom: var(--space-8);
}

.hero__sub {
  font-size: var(--text-lg);
  color: var(--ink-muted);
  max-width: 56ch;
  margin-bottom: var(--space-10);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-20);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  padding-top: var(--space-10);
  border-top: 1px solid var(--line);
  max-width: 780px;
}
.hero__stats div {
  display: flex;
  flex-direction: column-reverse;
  gap: var(--space-2);
}
.hero__stats dt {
  font-size: var(--text-xs);
  color: var(--ink-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero__stats dd {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 2vw, 2.25rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}

@media (max-width: 680px) {
  .hero__stats {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

/* ============ TRUST / MARQUEE ============ */
.trust {
  padding-block: var(--space-12) var(--space-16);
  border-block: 1px solid var(--line);
  overflow: hidden;
}
.trust__label {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: var(--space-8);
  text-align: center;
}
.trust__track {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
.trust__row {
  display: inline-flex;
  gap: var(--space-16);
  white-space: nowrap;
  animation: marquee 58s linear infinite;
  padding-inline: var(--space-8);
}
.trust__row span {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  letter-spacing: 0.05em;
  font-weight: 500;
  flex-shrink: 0;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .trust__row {
    animation: none;
    flex-wrap: wrap;
    white-space: normal;
    justify-content: center;
  }
}

/* ============ PROBLEM ============ */
.section--problem {
  background: var(--navy-850);
  border-block: 1px solid var(--line);
}
.problems {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.problem {
  background: var(--navy-850);
  padding: clamp(var(--space-8), 4vw, var(--space-12));
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.problem__stat {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--line);
}
.problem__value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1rem + 2vw, 2.5rem);
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}
.problem__unit {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.problem h3 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: -0.005em;
}
.problem p {
  color: var(--ink-muted);
  font-size: var(--text-base);
}
@media (max-width: 760px) {
  .problems {
    grid-template-columns: 1fr;
  }
}

/* ============ APPROACH ============ */
.section--approach {
  background: var(--navy-900);
}
.phases {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  counter-reset: phase;
}
.phase {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--space-10);
  padding: clamp(var(--space-8), 4vw, var(--space-12));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--navy-850), var(--navy-900));
  transition: border-color 240ms var(--ease-out), transform 240ms var(--ease-out);
}
.phase:hover {
  border-color: var(--line-strong);
}
.phase__index {
  font-family: var(--font-display);
  font-size: clamp(3rem, 2rem + 2vw, 4rem);
  color: var(--teal);
  letter-spacing: -0.03em;
  line-height: 0.9;
  opacity: 0.9;
}
.phase__body h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  margin-bottom: var(--space-4);
  letter-spacing: -0.015em;
}
.phase__body p {
  color: var(--ink-muted);
  margin-bottom: var(--space-5);
}
.phase__bullets {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.phase__bullets li {
  position: relative;
  padding-left: var(--space-5);
  color: var(--ink);
  font-size: var(--text-sm);
}
.phase__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 1px;
  background: var(--teal);
}
@media (max-width: 760px) {
  .phase {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
}

/* ============ DIFFERENTIATORS ============ */
.section--different {
  background: var(--navy-850);
  border-block: 1px solid var(--line);
}
.differentiators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.diff {
  padding: clamp(var(--space-6), 3vw, var(--space-8));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--navy-900);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: border-color 240ms var(--ease-out), transform 240ms var(--ease-out);
  min-height: 260px;
}
.diff:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}
.diff__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--teal);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  background: rgba(34, 198, 206, 0.06);
}
.diff__icon svg {
  width: 22px;
  height: 22px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.diff h3 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.diff p {
  color: var(--ink-muted);
  font-size: var(--text-base);
}
@media (max-width: 960px) {
  .differentiators {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .differentiators {
    grid-template-columns: 1fr;
  }
}

/* ============ TIERS ============ */
.section--tiers {
  background: var(--navy-900);
}
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  align-items: stretch;
}
.tier {
  position: relative;
  background: var(--navy-850);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(var(--space-8), 3.5vw, var(--space-10));
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  transition: border-color 240ms var(--ease-out);
}
.tier:hover {
  border-color: var(--line-strong);
}
.tier--featured {
  background: linear-gradient(180deg, #0f2128 0%, var(--navy-850) 70%);
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal), 0 20px 60px -30px rgba(34, 198, 206, 0.4);
  transform: translateY(-6px);
}
@media (max-width: 960px) {
  .tier--featured {
    transform: none;
  }
}
.tier__badge {
  position: absolute;
  top: -12px;
  left: clamp(var(--space-8), 3.5vw, var(--space-10));
  background: var(--teal);
  color: var(--navy-900);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--r-sm);
}
.tier__head {
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--line);
}
.tier__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-2);
}
.tier__desc {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  max-width: 36ch;
}
.tier__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
}
.tier__amount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.25rem + 2vw, 2.75rem);
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
}
.tier--featured .tier__amount {
  color: var(--teal);
}
.tier__unit {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}
.tier__terms {
  font-size: var(--text-xs);
  color: var(--ink-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: -4px;
}
.tier__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}
.tier__features li {
  position: relative;
  padding-left: var(--space-6);
  font-size: var(--text-sm);
  color: var(--ink);
  line-height: 1.5;
}
.tier__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 8px;
  border-left: 1.5px solid var(--teal);
  border-bottom: 1.5px solid var(--teal);
  transform: rotate(-45deg);
}
.tier__cta {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 960px) {
  .tiers {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
}

/* ============ GUARANTEE ============ */
.section--guarantee {
  padding-block: 0;
}
.guarantee {
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(212, 168, 67, 0.1), transparent 60%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900));
  padding-block: clamp(var(--space-20), 10vw, var(--space-32));
  border-block: 1px solid rgba(212, 168, 67, 0.25);
  position: relative;
}
.guarantee::before,
.guarantee::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.guarantee::before {
  top: 0;
}
.guarantee::after {
  bottom: 0;
}
.guarantee__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: start;
  max-width: 1100px;
}
.guarantee__seal {
  flex-shrink: 0;
  filter: drop-shadow(0 0 24px rgba(212, 168, 67, 0.25));
}
.guarantee__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: var(--space-6);
}
.guarantee__lede {
  font-size: var(--text-lg);
  color: var(--ink-muted);
  margin-bottom: var(--space-8);
  max-width: 58ch;
}
.guarantee__points {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
  padding: var(--space-6) var(--space-8);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: var(--r-lg);
  background: rgba(212, 168, 67, 0.03);
}
.guarantee__points li {
  font-size: var(--text-base);
  color: var(--ink);
  padding-left: var(--space-6);
  position: relative;
  line-height: 1.55;
}
.guarantee__points li strong {
  color: var(--gold);
  font-weight: 600;
}
.guarantee__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}
@media (max-width: 720px) {
  .guarantee__inner {
    grid-template-columns: 1fr;
  }
  .guarantee__seal svg {
    width: 88px;
    height: 88px;
  }
}

/* ============ COMPARISON ============ */
.section--comparison {
  background: var(--navy-900);
  border-top: 1px solid var(--line);
}
.comparison {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: start;
}
.bar-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}
.bar-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: var(--space-6);
}
.bar-row__label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.01em;
}
.bar-row--ours .bar-row__label {
  color: var(--teal);
  font-weight: 600;
}
.bar {
  position: relative;
  height: 44px;
  background: var(--navy-850);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.bar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--pct);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.08));
  border-right: 2px solid var(--line-strong);
  transition: width 900ms var(--ease-out);
}
.bar--ours {
  border-color: var(--teal);
  background: rgba(34, 198, 206, 0.05);
}
.bar--ours::before {
  background: linear-gradient(90deg, rgba(34, 198, 206, 0.35), rgba(34, 198, 206, 0.6));
  border-right: 2px solid var(--teal);
}
.bar__value {
  position: relative;
  z-index: 1;
  padding-left: var(--space-4);
  font-family: var(--font-display);
  font-size: var(--text-base);
  letter-spacing: -0.005em;
  color: var(--ink);
}
.bar--ours .bar__value {
  color: var(--ink);
  font-weight: 500;
}
.comparison__note {
  padding: var(--space-6);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--navy-850);
}
.comparison__note-label {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: var(--space-3);
}
.comparison__note p:last-child {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  line-height: 1.55;
}
@media (max-width: 960px) {
  .comparison {
    grid-template-columns: 1fr;
  }
  .bar-row {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }
}

/* ============ FOUNDER ============ */
.section--founder {
  background: var(--navy-850);
  border-top: 1px solid var(--line);
}
.founder {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: center;
  max-width: 980px;
}
.founder__portrait {
  position: relative;
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
}
.founder__initials {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--teal);
  letter-spacing: -0.03em;
  line-height: 1;
  z-index: 2;
  position: relative;
}
.founder__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: radial-gradient(circle at 30% 30%, rgba(34, 198, 206, 0.12), transparent 60%);
}
.founder__ring::before,
.founder__ring::after {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px solid var(--line);
}
.founder__ring::after {
  inset: 28px;
  border-color: rgba(34, 198, 206, 0.22);
}
.founder__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: var(--space-2);
}
.founder__role {
  font-size: var(--text-sm);
  color: var(--teal);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-6);
}
.founder__body p {
  color: var(--ink-muted);
  margin-bottom: var(--space-4);
  max-width: 58ch;
}
@media (max-width: 720px) {
  .founder {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .founder__portrait {
    width: 160px;
    height: 160px;
  }
  .founder__initials {
    font-size: 3.25rem;
  }
}

/* ============ CTA ============ */
.section--cta {
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(34, 198, 206, 0.14), transparent 60%),
    var(--navy-900);
  border-top: 1px solid var(--line);
}
.cta {
  max-width: 820px;
  text-align: center;
  margin-inline: auto;
}
.cta .eyebrow {
  justify-content: center;
}
.cta__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: var(--space-6);
}
.cta__lede {
  font-size: var(--text-lg);
  color: var(--ink-muted);
  margin-inline: auto;
  margin-bottom: var(--space-10);
}
.cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}
.cta__email {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--ink-muted);
  letter-spacing: 0.01em;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
}
.cta__email:hover {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-950);
  padding-block: var(--space-10);
  border-top: 1px solid var(--line);
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--ink);
}
.footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  font-size: var(--text-xs);
  color: var(--ink-faint);
  letter-spacing: 0.03em;
}
.footer__meta a:hover {
  color: var(--teal);
}

/* ============ Reveal animations ============ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}
