@font-face {
  font-family: 'Marony';
  src: url('../fonts/Marony.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'LL Replica';
  src: url('../fonts/ReplicaPro.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Body Grotesque Large';
  src: url('../fonts/BodyGrotesqueLarge-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #141414;
  --color-bg-surface: #1c1c1c;
  --color-bg-hover: #242424;
  --color-bg-light: #f2f2ee;
  --color-bg-light-2: #e8e8e3;
  --color-text: #f0efe9;
  --color-text-muted: #8a8a82;
  --color-text-dark: #141414;
  --color-text-muted-light: #9a9a92;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-light: rgba(0, 0, 0, 0.1);
  --color-highlight: #00F5A0;
  --color-highlight-dim: #00C47F;
  --color-highlight-glow: rgba(0, 245, 160, 0.18);
  --font-primary: 'LL Replica', system-ui, -apple-system, sans-serif;
  --font-display: 'Body Grotesque Large', system-ui, sans-serif;
  --text-hero: clamp(2.75rem, 7vw, 6.25rem);
  --text-heading: clamp(1.65rem, 3.5vw, 3rem);
  --text-subhead: clamp(1.05rem, 2vw, 1.45rem);
  --text-body: 1rem;
  --text-label: 0.7rem;
  --letter-tight: -0.03em;
  --letter-label: 0.16em;
  --line-body: 1.7;
  --line-heading: 1.05;
  --container: min(1440px, 100%);
  --pad-x: clamp(1.25rem, 5vw, 5rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: var(--line-body);
  background: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-highlight);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-bg-light);
  color: var(--color-text-dark);
  z-index: 1000;
}

.skip:focus {
  left: 0.5rem;
}

.label {
  display: block;
  font-family: var(--font-primary);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: var(--letter-label);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.section--light .label {
  color: var(--color-text-muted-light);
}

.container {
  width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section {
  border-top: 1px solid var(--color-border);
  padding-block: clamp(4rem, 10vw, 9rem);
}

.section--dark {
  background: var(--color-bg);
  color: var(--color-text);
  border-color: var(--color-border);
}

.section--light {
  background: var(--color-bg-light);
  color: var(--color-text-dark);
  border-color: var(--color-border-light);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: background 0.35s ease, border-color 0.35s ease;
}

.site-header.nav--light {
  background: rgba(242, 242, 238, 0.94);
  border-bottom-color: var(--color-border-light);
}

.site-header.nav--light .logo {
  color: var(--color-text-dark);
}

.site-header.nav--light .nav-desktop a {
  color: var(--color-text-muted-light);
}

.site-header.nav--light .nav-desktop a:hover,
.site-header.nav--light .nav-desktop a.is-active {
  color: var(--color-text-dark);
}

.site-header.nav--light .btn-ghost {
  color: var(--color-text-dark);
  border-color: var(--color-border-light);
}

.site-header.nav--light .burger-wrap {
  color: var(--color-text-dark);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
}

.logo {
  font-family: 'Marony', var(--font-primary);
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: 1.125rem;
  text-transform: uppercase;
  color: var(--color-text);
}

.logo .logo__dot {
  color: var(--color-highlight) !important;
  opacity: 1;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.25rem);
}

@media (min-width: 960px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: var(--letter-label);
  text-transform: uppercase;
  color: var(--color-text-muted);
  position: relative;
  padding-bottom: 0.2rem;
}

.nav-desktop a:hover {
  color: var(--color-text);
}

.nav-desktop a.is-active {
  color: var(--color-text);
}

.nav-desktop a.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--color-text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--color-highlight);
  color: var(--color-text-dark);
  box-shadow:
    0 0 24px var(--color-highlight-glow),
    0 0 60px rgba(0, 245, 160, 0.08);
}

.btn-primary:hover {
  box-shadow:
    0 0 36px rgba(0, 245, 160, 0.35),
    0 0 80px rgba(0, 245, 160, 0.15);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.section--light .btn-ghost {
  color: var(--color-text-dark);
  border-color: var(--color-border-light);
}

.section--light .btn-ghost:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.2);
}

.btn-small {
  padding: 0.45rem 0.9rem;
  font-size: 0.8125rem;
}

@media (max-width: 959px) {
  .hide-mobile {
    display: none !important;
  }
}

/* Burger */
.burger-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  padding: 0.25rem;
}

@media (min-width: 960px) {
  .burger-wrap {
    display: none;
  }
}

.burger-label {
  font-family: var(--font-primary);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: var(--letter-label);
  text-transform: uppercase;
}

.burger {
  width: 26px;
  height: 14px;
  position: relative;
}

.burger-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  position: absolute;
  left: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger-line:first-child {
  top: 2px;
}

.burger-line:last-child {
  bottom: 2px;
}

.nav-open .burger-line:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-open .burger-line:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 0.45s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad-x);
}

.nav-open .nav-overlay {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 0s;
}

.nav-overlay nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-overlay .nav-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  transition-delay: 0s;
}

.nav-open .nav-overlay .nav-item:nth-child(1) {
  transition-delay: 0.15s;
  opacity: 1;
  transform: none;
}

.nav-open .nav-overlay .nav-item:nth-child(2) {
  transition-delay: 0.22s;
  opacity: 1;
  transform: none;
}

.nav-open .nav-overlay .nav-item:nth-child(3) {
  transition-delay: 0.29s;
  opacity: 1;
  transform: none;
}

.nav-open .nav-overlay .nav-item:nth-child(4) {
  transition-delay: 0.36s;
  opacity: 1;
  transform: none;
}

.nav-open .nav-overlay .nav-item:nth-child(5) {
  transition-delay: 0.43s;
  opacity: 1;
  transform: none;
}

.nav-open .nav-overlay .nav-item:nth-child(6) {
  transition-delay: 0.5s;
  opacity: 1;
  transform: none;
}

.nav-overlay a {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 8vw, 3rem);
  font-weight: 400;
  letter-spacing: var(--letter-tight);
  line-height: 1.15;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-text);
}

.nav-close {
  position: absolute;
  top: 1.25rem;
  right: var(--pad-x);
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  padding: 0.25rem;
  line-height: 0;
  opacity: 0.7;
}
.nav-close:hover {
  opacity: 1;
}

.nav-overlay .nav-secondary {
  font-family: var(--font-primary);
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.nav-overlay .nav-secondary a {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  border: none;
  padding: 0.35rem 0;
  display: block;
}

body.nav-open {
  overflow: hidden;
}

/* Dot nav */
.dot-nav {
  display: none;
  position: fixed;
  right: clamp(0.75rem, 2vw, 1.5rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  flex-direction: column;
  gap: 0.65rem;
}

@media (min-width: 1100px) {
  .dot-nav {
    display: flex;
  }
}

.dot-nav button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.dot-nav button:hover {
  border-color: rgba(255, 255, 255, 0.45);
}

.dot-nav button.is-active {
  background: var(--color-highlight);
  border-color: var(--color-highlight);
  box-shadow: 0 0 10px var(--color-highlight-glow);
}

/* ---------- Hero ---------- */
.hero {
  padding-block: 0;
  border-top: none;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100svh - 60px);
}

@media (min-width: 1100px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 7rem) var(--pad-x);
}

.hero__right {
  position: relative;
  overflow: hidden;
  background: #090d0b;
  min-height: 480px;
}

@media (min-width: 1100px) {
  .hero__right {
    min-height: 0;
  }
}

.hero__right::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 30% 60%, rgba(0, 245, 160, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 55% 70% at 80% 25%, rgba(0, 245, 160, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 55% 90%, rgba(0, 245, 160, 0.12) 0%, transparent 55%);
  mix-blend-mode: screen;
  animation: hero-glow-drift 14s ease-in-out infinite alternate;
}

@keyframes hero-glow-drift {
  0%   { opacity: 0.7; transform: translate(0%, 0%); }
  50%  { opacity: 1;   transform: translate(3%, -4%); }
  100% { opacity: 0.8; transform: translate(-3%, 3%); }
}

.dither-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  image-rendering: pixelated;
  pointer-events: none;
}

@keyframes grain-anim {
  0%   { transform: translate(0, 0); }
  10%  { transform: translate(-3%, -2%); }
  20%  { transform: translate(2%, 3%); }
  30%  { transform: translate(-2%, 4%); }
  40%  { transform: translate(4%, -3%); }
  50%  { transform: translate(-3%, 2%); }
  60%  { transform: translate(3%, -4%); }
  70%  { transform: translate(-4%, 3%); }
  80%  { transform: translate(2%, -2%); }
  90%  { transform: translate(-2%, 4%); }
  100% { transform: translate(0, 0); }
}

/* Legacy grid kept for fallback */
.hero__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.heading-hero {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  line-height: var(--line-heading);
  letter-spacing: var(--letter-tight);
  margin: 0 0 1.25rem;
}

.heading-hero--stack .heading-hero__static {
  display: block;
}

.heading-hero__rotate-row {
  display: block;
  margin-top: 0.04em;
}

#hero-rotate {
  /* typewriter — no fade needed */
}

#hero-rotate.typing::after {
  content: '|';
  color: var(--color-highlight);
  animation: cursor-blink 0.6s steps(1) infinite;
  margin-left: 1px;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Single allowed glow word in hero */
.highlight-word {
  color: var(--color-highlight);
  text-shadow:
    0 0 20px var(--color-highlight-glow),
    0 0 60px rgba(0, 245, 160, 0.1);
}

.hero__sub {
  font-size: var(--text-subhead);
  font-weight: 400;
  color: var(--color-text-muted);
  max-width: 38ch;
  margin: 0 0 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero__meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  max-width: 36ch;
  line-height: 1.6;
}

.hero__aside {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

@media (min-width: 900px) {
  .hero__aside {
    border-top: none;
    padding-top: 0;
    text-align: right;
    justify-self: end;
    max-width: 28ch;
  }
}

/* ---------- Demo card ---------- */
.hero2 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  z-index: 2;
}

.hero2__cards {
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.demo-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border-radius: 16px;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.07);
  font-family: var(--font-primary);
  transition: box-shadow 0.2s ease;
}
.demo-card:hover {
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.35),
    0 0 0 2px var(--color-highlight);
}

.demo-card__visual {
  height: 148px;
  border-radius: 16px 16px 0 0;
  background: rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(11px) saturate(0.35);
  -webkit-backdrop-filter: blur(11px) saturate(0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  padding: 0 1.5rem;
}

.demo-card__visual::before {
  content: none;
}

.demo-card__signal-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-primary);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  z-index: 1;
}

.demo-card__signal-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.demo-card__signal-icon--missed {
  background: rgba(255, 75, 75, 0.12);
  border: 1px solid rgba(255, 75, 75, 0.22);
  color: #ff6b6b;
}

.demo-card__signal-icon--reply {
  background: rgba(0, 245, 160, 0.10);
  border: 1px solid rgba(0, 245, 160, 0.22);
  color: var(--color-highlight);
}

.demo-card__signal-icon svg {
  width: 13px;
  height: 13px;
  stroke-width: 1.8;
}

.demo-card__signal-text {
  line-height: 1.3;
}

.demo-card__signal-text strong {
  display: block;
  color: rgba(255, 255, 255, 1.0);
  font-weight: 500;
  font-size: 0.8rem;
}

.demo-card__body {
  padding: 1.25rem 1.5rem;
  background: #1a1a1a;
  border-radius: 0 0 16px 16px;
}

.demo-card__label {
  font-family: var(--font-primary);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-highlight);
  display: block;
  margin-bottom: 0.35rem;
}

.demo-card__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--color-text);
  margin: 0 0 0.25rem;
  line-height: 1.1;
}

.demo-card__sub {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
  line-height: 1.4;
}

.demo-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.demo-card__cta {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-highlight);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.demo-card__live {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.demo-card__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-highlight);
  box-shadow: 0 0 7px var(--color-highlight);
  animation: dot-pulse 2.4s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1;   box-shadow: 0 0 7px var(--color-highlight); }
  50%       { opacity: 0.5; box-shadow: 0 0 3px var(--color-highlight); }
}

/* ---------- Logo bar ---------- */
.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}

.logo-placeholder {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: var(--letter-label);
  text-transform: uppercase;
  color: var(--color-text-muted-light);
  border: 1px solid var(--color-border-light);
  padding: 0.5rem 0.85rem;
}

/* ---------- Pain ---------- */
.pain__head {
  font-family: var(--font-display);
  font-size: var(--text-heading);
  font-weight: 400;
  letter-spacing: var(--letter-tight);
  line-height: var(--line-heading);
  max-width: 20ch;
  margin: 0 0 1.5rem;
}

.pain__body {
  font-size: var(--text-subhead);
  font-weight: 400;
  color: var(--color-text-muted);
  max-width: 52ch;
  margin: 0;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid var(--color-border);
}

@media (min-width: 700px) {
  .stat-row {
    grid-template-columns: 1fr 1fr;
  }
}

.stat {
  margin: 0;
}

.stat__num {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: var(--letter-tight);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat__num--hi {
  color: var(--color-highlight);
  text-shadow: 0 0 24px var(--color-highlight-glow);
}

.stat__label {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin: 0;
  max-width: 28ch;
}

/* ---------- Product grid ---------- */
.feature-grid {
  display: grid;
  gap: 0;
  border: 1px solid var(--color-border-light);
}

@media (min-width: 720px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-cell {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid var(--color-border-light);
  border-right: 1px solid var(--color-border-light);
  margin-right: -1px;
  margin-bottom: -1px;
}

.feature-cell h3 {
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: var(--letter-label);
  text-transform: uppercase;
  margin: 0 0 0.65rem;
  color: var(--color-text-dark);
}

.feature-cell p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted-light);
  line-height: 1.65;
}

/* ---------- How ---------- */
.steps {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
}

@media (min-width: 880px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
  }
}

.step-num {
  font-family: var(--font-primary);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: var(--letter-label);
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.step h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}

.step p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* ---------- Industry marquee ---------- */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  padding-block: 1.25rem;
  margin-top: clamp(3rem, 8vw, 5rem);
}

.marquee {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee span {
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: var(--letter-label);
  text-transform: uppercase;
  color: var(--color-text-muted-light);
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Pattern 3 Legibility ---------- */
.legibility-section {
  position: relative;
  min-height: clamp(420px, 75vh, 720px);
  border-top: 1px solid var(--color-border);
  overflow: clip;
}

.legibility__image {
  position: absolute;
  top: 0;
  right: 0;
  width: min(52%, 760px);
  height: 100%;
  background-color: var(--color-bg-surface);
  background-image: url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=1600&q=70");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.legibility__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--color-bg) 40%, transparent 85%);
  z-index: 1;
  pointer-events: none;
}

.legibility__inner {
  position: relative;
  z-index: 2;
  min-height: clamp(420px, 75vh, 720px);
  display: flex;
  align-items: center;
  padding: clamp(3rem, 10vw, 7rem) var(--pad-x);
}

.legibility-copy {
  position: relative;
  max-width: 14ch;
}

.legibility-text-layer {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: var(--line-heading);
  letter-spacing: var(--letter-tight);
  margin: 0;
}

.legibility-text-layer.text-default {
  color: var(--color-text);
}

.legibility-text-layer.text-contrast {
  color: #e4e4dc;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  pointer-events: none;
}

.legibility-accessible {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 720px) {
  .legibility__image {
    width: 100%;
    height: 45%;
    top: auto;
    bottom: 0;
  }

  .legibility__shade {
    background: linear-gradient(180deg, var(--color-bg) 50%, transparent 100%);
  }

  .legibility-copy {
    max-width: none;
    padding-bottom: 40vh;
  }
}

/* ---------- Channels 50/50 ---------- */
.split-rows {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-border-light);
}

.split-row {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--color-border-light);
}

@media (min-width: 880px) {
  .split-row {
    grid-template-columns: 1fr 1fr;
  }
}

.split-row__text {
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.split-row__visual {
  font-family: var(--font-primary);
  min-height: 280px;
  background: var(--color-bg-light-2);
  border-left: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: var(--letter-label);
  text-transform: uppercase;
  color: var(--color-text-muted-light);
}

@media (max-width: 879px) {
  .split-row__visual {
    border-left: none;
    border-top: 1px solid var(--color-border-light);
    min-height: 220px;
  }
}

.split-row h3 {
  font-family: var(--font-display);
  margin: 0;
  font-size: var(--text-heading);
  font-weight: 400;
  letter-spacing: var(--letter-tight);
}

.split-row p {
  margin: 0;
  font-size: 1rem;
  color: var(--color-text-muted-light);
  max-width: 42ch;
}

/* ---------- Trust ---------- */
.trust-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 800px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust-block h3 {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: var(--letter-label);
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  color: var(--color-text-muted);
}

.trust-block p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  max-width: 44ch;
}

/* ---------- Feature deep dives ---------- */
.feature-split {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--color-border-light);
}

@media (min-width: 880px) {
  .feature-split {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-split__content {
  padding: clamp(2.5rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--color-border-light);
}

@media (min-width: 880px) {
  .feature-split__content {
    border-bottom: none;
    border-right: 1px solid var(--color-border-light);
  }
}

.feature-split:nth-child(even) .feature-split__content {
  order: 2;
  border-right: none;
  border-left: 1px solid var(--color-border-light);
}

@media (max-width: 879px) {
  .feature-split:nth-child(even) .feature-split__content {
    order: 0;
    border-left: none;
  }

  .feature-split:nth-child(even) .feature-split__visual {
    order: 1;
  }
}

.feature-split__visual {
  font-family: var(--font-primary);
  min-height: 260px;
  background: var(--color-bg-light-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: var(--letter-label);
  text-transform: uppercase;
  color: var(--color-text-muted-light);
}

.feature-split h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 400;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.feature-split p {
  margin: 0;
  color: var(--color-text-muted-light);
  max-width: 40ch;
}

/* ---------- Testimonials ---------- */
.quotes {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 900px) {
  .quotes {
    grid-template-columns: repeat(3, 1fr);
  }
}

blockquote {
  margin: 0;
  padding: 0;
  border: none;
}

.quote-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0 0 1.25rem;
}

.quote-by {
  font-size: 0.8125rem;
  color: var(--color-text);
}

.quote-role {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}

/* ---------- Integrations ---------- */
.int-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.int-pill {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: var(--letter-label);
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--color-border-light);
  color: var(--color-text-muted-light);
}

/* ---------- Pricing ---------- */
.pricing-head {
  text-align: center;
  max-width: 48ch;
  margin: 0 auto 3rem;
}

.pricing-head p {
  margin: 0.75rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.pricing-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  align-items: stretch;
  border: 1px solid var(--color-border);
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
}

@media (min-width: 900px) {
  .price-card {
    border-bottom: none;
    border-right: 1px solid var(--color-border);
    margin-right: -1px;
  }
}

.price-card--featured {
  position: relative;
  border: 1px solid var(--color-highlight);
  box-shadow:
    0 0 24px var(--color-highlight-glow),
    inset 0 0 0 1px rgba(0, 245, 160, 0.15);
  margin: -1px;
  z-index: 1;
}

.badge {
  font-family: var(--font-primary);
  display: inline-block;
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: var(--letter-label);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.price-card--featured .badge {
  color: var(--color-text);
}

.price-name {
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
}

.price-amount {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  letter-spacing: var(--letter-tight);
  margin: 0 0 1rem;
}

.price-card ul {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  flex: 1;
}

.price-card li {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding: 0.35rem 0;
  border-top: 1px solid var(--color-border);
}

.price-card li:first-child {
  border-top: none;
}

/* ---------- Bottom CTA ---------- */
.bottom-cta {
  text-align: center;
  padding-block: clamp(5rem, 14vw, 11rem);
}

.bottom-cta .heading-hero {
  margin-bottom: 1rem;
}

.bottom-cta .hero__sub {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Try it yourself ---------- */
.demo-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 600px;
}

@media (max-width: 600px) {
  .demo-links { grid-template-columns: 1fr; }
}

.demo-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 2rem 2rem 1.75rem;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  background: var(--color-bg-light-2);
  color: var(--color-text-dark);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.demo-link:hover {
  border-color: var(--color-highlight-dim);
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.demo-link__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 0.5rem;
  color: var(--color-highlight-dim);
}

.demo-link__type {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: var(--letter-tight);
  color: var(--color-text-dark);
}

.demo-link__sub {
  font-size: 0.875rem;
  color: var(--color-text-muted-light);
  line-height: 1.5;
}

.demo-link__cta {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: var(--letter-label);
  text-transform: uppercase;
  color: var(--color-highlight-dim);
}

/* ---------- Book a call ---------- */
.book-cta {
  text-align: center;
}

.book-cta .heading-hero {
  margin-bottom: 0.75rem;
}

/* ---------- Contact ---------- */
.contact-section {
  padding-block: clamp(2.5rem, 6vw, 4rem);
  border-top: 1px solid var(--color-border);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3.5rem;
  align-items: flex-start;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-item__label {
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: var(--letter-label);
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.contact-item__value {
  font-size: 1rem;
  color: var(--color-text);
}

.contact-item__value a {
  color: var(--color-text);
  transition: color 0.15s;
}

.contact-item__value a:hover {
  color: var(--color-highlight);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: clamp(2.5rem, 6vw, 4rem) var(--pad-x);
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

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

.footer-copy {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
}
