/* =========================================================
   Pelagic Platforms
   Light editorial system for Pelagic Platforms.
   Brand palette: platform purple, dark, and gray.
   ========================================================= */

:root {
  /* light base */
  --bg:          #ffffff;
  --bg-soft:     #f7f5fb;
  --bg-tint:     #f1edf9;
  --ink:         #111111;
  --ink-2:       #24212c;
  --muted:       #5f5f5f;
  --faint:       #8a8692;
  --line:        rgba(17,17,17,0.10);
  --line-soft:   rgba(17,17,17,0.06);

  --brand:       #7b3ff2;
  --brand-2:     #9b70ff;
  --brand-3:     #d8cbff;
  --signal:      #bca8ff;
  --gradient:    linear-gradient(120deg, #7b3ff2 0%, #9b70ff 55%, #d8cbff 100%);

  /* dark surfaces (footer, hero overlays) */
  --dark:        #111111;
  --dark-2:      #1c1824;
  --dark-line:   rgba(255,255,255,0.12);
  --dark-muted:  rgba(255,255,255,0.62);

  --col:         1240px;
  --col-narrow:  720px;
  --nav-h:       66px;
  --radius:      20px;

  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:        'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

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

html {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
body {
  background: #fff;
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 17px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, a {
  overflow-wrap: anywhere;
}
img { display: block; max-width: 100%; }
::selection { background: rgba(123,63,242,0.18); }

/* ── Entrance ─────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
body:not(.ready) .announce,
body:not(.ready) .navbar,
body:not(.ready) .hero { opacity: 0; }
body.ready .announce  { animation: fadeInUp 0.6s ease-out both; }
body.ready .navbar    { animation: fadeInUp 0.7s ease-out 0.05s both; }
body.ready .hero      { animation: fadeInUp 0.8s ease-out 0.12s both; }

/* ── Column wrapper ───────────────────────────────────── */
.page-col {
  position: relative;
  max-width: var(--col);
  margin: 0 auto;
  padding: 0 36px;
}

/* ═════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ═════════════════════════════════════════════════════ */
.announce {
  background: var(--dark);
  color: #fff;
  text-align: center;
  font-size: 0.84rem;
  letter-spacing: -0.01em;
  padding: 9px 44px;
  position: relative;
}
.announce a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 6px;
  font-weight: 500;
}
.announce .announce-close {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1;
  background: none; border: 0; cursor: pointer;
}
.announce .announce-close:hover { color: #fff; }

/* ═════════════════════════════════════════════════════
   NAVBAR
   ═════════════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--line-soft);
}
.navbar__inner {
  max-width: var(--col);
  height: 100%;
  margin: 0 auto;
  padding: 0 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  justify-self: start;
}
.nav-brand img { width: 30px; height: 30px; object-fit: contain; }
.nav-brand span {
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.nav-center { display: flex; align-items: center; gap: 30px; justify-self: center; }
.nav-center a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.18s ease;
}
.nav-center a:hover, .nav-center a.active { color: var(--brand); }

.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown > a {
  cursor: pointer;
  display: flex;
  align-items: center;
  line-height: 1;
}
.nav-dropdown > a::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid var(--ink-2);
  transition: transform 0.2s ease, border-top-color 0.2s ease;
}
.nav-dropdown:hover > a::after {
  transform: rotate(180deg);
  border-top-color: var(--brand);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 20px 50px -20px rgba(17,17,17,0.25);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(12px);
}
.nav-center .nav-dropdown-menu a,
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--ink-2);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-center .nav-dropdown-menu a:hover,
.nav-dropdown-menu a:hover {
  background: rgba(123,63,242,0.06);
  color: var(--brand);
}

.nav-right { display: flex; align-items: center; gap: 18px; justify-self: end; }
.nav-signin {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.18s ease;
}
.nav-signin:hover { color: var(--brand); }
.nav-cta {
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff !important;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--brand); transform: translateY(-1px); }

.nav-toggle { display: none; }

@media (max-width: 900px) {
  .navbar__inner { grid-template-columns: 1fr auto; }
  .nav-center { display: none; }
  .nav-signin { display: none; }
}

/* ═════════════════════════════════════════════════════
   BUTTONS
   ═════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-arrow { transition: transform 0.2s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--brand); transform: translateY(-2px); }

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -12px rgba(0,0,0,0.35); }

.btn-light--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: none;
}
.btn-light--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: none;
}

.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { color: var(--brand); }

/* underlined text link (Cohere "Explore products") */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.text-link:hover { color: var(--brand); border-color: var(--brand); }

/* on-dark buttons */
.on-dark .btn-light { background: #fff; color: var(--ink); }
.on-dark .text-link { color: #fff; border-color: rgba(255,255,255,0.6); }
.on-dark .text-link:hover { color: #fff; border-color: #fff; }

/* ═════════════════════════════════════════════════════
   HERO (Cohere-style centered)
   ═════════════════════════════════════════════════════ */
.hero {
  text-align: center;
  padding: 96px 0 64px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 26px;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin: 0 auto 24px;
  max-width: 14ch;
  color: var(--ink);
}
.hero-sub {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ═════════════════════════════════════════════════════
   HOME HERO (with system visual)
   ═════════════════════════════════════════════════════ */
.home-hero {
  position: relative;
  padding: 130px 0 120px;
  overflow: hidden;
  isolation: isolate;
}
.hero-tri {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 80%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 80%, transparent 100%);
}
.hero-band {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-band .hero-copy {
  position: relative;
  text-align: center;
}
.hero-band .hero-copy::before {
  content: "";
  position: absolute;
  inset: -40px -8% -30px;
  z-index: -1;
  background: radial-gradient(60% 70% at 50% 45%, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.72) 45%, rgba(255,255,255,0) 78%);
  pointer-events: none;
}
.hero-band .hero-copy .hero-title {
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.hero-band .hero-copy .hero-sub {
  margin-left: auto;
  margin-right: auto;
}
.hero-band .hero-copy .hero-actions {
  justify-content: center;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.hero-copy {
  text-align: left;
  min-width: 0;
}
.hero-copy .eyebrow {
  margin-bottom: 20px;
}
.hero-copy .hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  max-width: 18ch;
  margin: 0 0 20px;
}
.hero-copy .hero-sub {
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 0 32px;
}
.hero-copy .hero-actions {
  justify-content: flex-start;
}

/* Release review visual */
.release-visual {
  background: #111111;
  border: 1px solid rgba(17,17,17,0.12);
  border-radius: 16px;
  padding: 20px;
  color: #fff;
  min-width: 0;
  overflow: hidden;
  box-shadow: 0 28px 80px -48px rgba(17,17,17,0.8);
}
.release-visual__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.release-visual__top span { color: rgba(255,255,255,0.68); }
.release-visual__top strong {
  color: #ffd6df;
  background: rgba(255,91,122,0.16);
  border: 1px solid rgba(255,91,122,0.28);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 0.66rem;
}
.release-summary {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.release-summary div,
.version-card,
.review-row {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
}
.release-summary div {
  padding: 14px;
}
.release-summary span,
.version-card span,
.review-row span {
  display: block;
  color: rgba(255,255,255,0.48);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.release-summary strong {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.28;
}
.release-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.version-card {
  position: relative;
  padding: 15px;
  overflow: hidden;
}
.version-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: rgba(255,255,255,0.22);
}
.version-card--old::before { background: var(--brand-3); }
.version-card--new::before {
  background: #ff6b8a;
  animation: releaseAlert 2.4s ease-in-out infinite;
}
.version-card strong {
  display: block;
  margin: 9px 0 6px;
  font-size: 1.02rem;
  line-height: 1.2;
}
.version-card p {
  color: rgba(255,255,255,0.58);
  font-size: 0.86rem;
  line-height: 1.45;
}
.review-table {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}
.review-row {
  display: grid;
  grid-template-columns: 82px minmax(0,1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
}
.review-row p {
  color: rgba(255,255,255,0.72);
  font-size: 0.86rem;
  line-height: 1.35;
}
.review-row strong {
  color: #ffd6df;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.review-row--pass strong { color: var(--brand-3); }
.release-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.release-path::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 13px;
  height: 1px;
  background: rgba(255,255,255,0.16);
}
.release-path span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.52);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.release-path span::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: #111;
  animation: releaseStep 4.8s ease-in-out infinite;
}
.release-path span:nth-child(2)::before { animation-delay: 0.7s; }
.release-path span:nth-child(3)::before { animation-delay: 1.4s; }
.release-path span:nth-child(4)::before { animation-delay: 2.1s; }

@keyframes releaseAlert {
  0%, 100% { box-shadow: 0 0 0 rgba(255,107,138,0); }
  50% { box-shadow: 0 0 24px rgba(255,107,138,0.34); }
}

@keyframes releaseStep {
  0%, 100% { border-color: rgba(255,255,255,0.22); background: #111; }
  35%, 55% { border-color: var(--brand-3); background: var(--brand); box-shadow: 0 0 18px rgba(123,63,242,0.56); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .hero-copy { text-align: center; }
  .hero-copy .hero-title { margin-left: auto; margin-right: auto; }
  .hero-copy .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-copy .hero-actions { justify-content: center; }
  .release-summary,
  .release-compare { grid-template-columns: 1fr; }
}

/* ═════════════════════════════════════════════════════
   FLUID MEDIA (animated iridescent bands & cards)
   ═════════════════════════════════════════════════════ */
.fluid {
  display: block;
  width: 100%;
  height: 100%;
}
.world-sim {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #111111;
}
.warehouse-sim {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #1a1a2e;
}
.media-band--hero:has(.demo-animation) {
  aspect-ratio: auto;
  min-height: 0;
}
.demo-animation {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 460px;
  background: #111111;
}
@media (max-width: 720px) {
  .demo-animation { height: 360px; }
}
/* CSS fallback if WebGL unavailable */
.fluid--fallback {
  background:
    radial-gradient(60% 80% at 20% 30%, #7b3ff2 0%, transparent 60%),
    radial-gradient(70% 90% at 80% 60%, #9b70ff 0%, transparent 55%),
    radial-gradient(60% 70% at 60% 20%, #d8cbff 0%, transparent 50%),
    #111111;
  background-size: 200% 200%;
  animation: fluidShift 18s ease-in-out infinite;
}
@keyframes fluidShift {
  0%,100% { background-position: 0% 50%, 100% 50%, 50% 0%; }
  50%     { background-position: 100% 50%, 0% 50%, 50% 100%; }
}

/* Full-bleed media band (Cohere image 1 / Runway hero) */
.media-band {
  position: relative;
  max-width: var(--col);
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
}
.media-band--tall { aspect-ratio: 16 / 9; min-height: 400px; }
.media-band--hero { aspect-ratio: 16 / 8; min-height: 420px; }
.media-band canvas, .media-band .fluid {
  position: absolute; inset: 0; z-index: 0;
}
.media-band canvas.demo-animation {
  position: relative; inset: auto;
}
.media-band__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
}
.media-band__overlay--center {
  justify-content: center;
  align-items: center;
  text-align: center;
}
.media-band__title {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 18ch;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.media-band__sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-top: 14px;
  max-width: 46ch;
}
.media-band__cta { margin-top: 26px; display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

/* floating glass UI card (Cohere financial-agent card) */
.float-card {
  position: absolute;
  z-index: 2;
  left: 48px;
  bottom: 48px;
  width: min(420px, 70%);
  background: rgba(12,10,20,0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 22px 24px;
  color: #fff;
}
.float-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.float-card__icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.12);
  font-family: var(--mono); font-weight: 600; font-size: 0.9rem;
}
.float-card__title { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em; }
.float-card__rows { display: flex; flex-direction: column; gap: 10px; }
.float-row {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 0.78rem;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 12px;
}
.float-row .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--brand); box-shadow: 0 0 8px rgba(123,63,242,0.55); }
.float-row .dot--warn { background: var(--brand-3); box-shadow: 0 0 8px rgba(216,203,255,0.5); }
.float-row .dot--alt { background: var(--signal); box-shadow: 0 0 8px rgba(188,168,255,0.5); }

@media (max-width: 720px) {
  .media-band__overlay, .float-card { padding: 24px; left: 20px; bottom: 20px; width: calc(100% - 40px); }
  .media-band--hero, .media-band--tall { min-height: 320px; }
}

/* ═════════════════════════════════════════════════════
   SECTIONS
   ═════════════════════════════════════════════════════ */
.section { padding: 88px 0; }
.section--tight { padding-top: 120px; }
.section--soft { background: var(--bg-soft); }
.section--rule { border-top: 1px solid var(--line); }
.section--dark { background: var(--dark); color: #fff; }
.section--dark .section-title { color: #fff; }
.section--dark .section-lede { color: var(--dark-muted); }

.eyebrow--ink {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
}
.eyebrow--light {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-3);
  margin-bottom: 18px;
}
.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title {
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--ink);
}
.section-lede {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--muted);
  max-width: 620px;
}
.section-head--center .section-lede { margin-left: auto; margin-right: auto; }

/* ═════════════════════════════════════════════════════
   MEDIA CARD GRID (Runway image 5)
   ═════════════════════════════════════════════════════ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 26px;
}
.media-card { display: flex; flex-direction: column; }
.media-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-tint);
  isolation: isolate;
}
.media-card__media canvas, .media-card__media .fluid { position: absolute; inset: 0; }
.media-card__badge {
  position: absolute;
  z-index: 2;
  top: 14px; left: 14px;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(12,10,20,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.media-card__title {
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 20px 0 8px;
  color: var(--ink);
}
.media-card__desc {
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 18px;
  flex: 1;
}
.media-card__actions { display: flex; gap: 14px; align-items: center; }
.media-card__actions .btn { padding: 9px 16px; font-size: 0.85rem; }

/* ═════════════════════════════════════════════════════
   PRODUCT LIST (feature rows)
   ═════════════════════════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 12px;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
  background: var(--bg-soft);
  border-color: rgba(123, 63, 242, 0.25);
  box-shadow: 0 16px 40px -30px rgba(17, 17, 17, 0.1);
}
.feature-card__k {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--brand);
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--ink);
}
.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 20px;
}
.feature-card ul { list-style: none; }
.feature-card li {
  position: relative;
  padding-left: 22px;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 10px;
}
.feature-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 7px; height: 7px;
  border-radius: 2px;
  background: var(--gradient);
}

/* ═════════════════════════════════════════════════════
   SPLIT STATEMENT (logo strip / pull quote)
   ═════════════════════════════════════════════════════ */
.statement {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.03em;
  max-width: 22ch;
  color: var(--ink);
}
.statement em { font-style: normal; color: var(--brand); }

/* Split intro */
.split-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
.split-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
}

/* Metric strip */
.metric-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 12px;
}
.metric-strip > div {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.metric-strip span {
  display: block;
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--brand);
  margin-bottom: 12px;
}
.metric-strip strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--ink);
}
.metric-strip p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 760px) {
  .split-intro { grid-template-columns: 1fr; gap: 24px; }
  .metric-strip { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .uses { grid-template-columns: 1fr; }
}

/* use-case list */
.uses {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 12px;
}
.use {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.use:hover {
  background: var(--bg-soft);
  border-color: rgba(123, 63, 242, 0.25);
  box-shadow: 0 16px 40px -30px rgba(17, 17, 17, 0.1);
}
.use h3 { font-size: 1.1rem; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 10px; }
.use p { font-size: 0.95rem; line-height: 1.55; color: var(--muted); }

/* ═════════════════════════════════════════════════════
   CTA BAND (Cohere image 3 — "Ready to put AI to work?")
   ═════════════════════════════════════════════════════ */
.cta-band {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta-band canvas, .cta-band .fluid { position: absolute; inset: 0; z-index: 0; }
.cta-band__inner { position: relative; z-index: 1; padding: 64px 24px; }
.cta-band__title {
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.proof-band {
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}
.proof-band__inner {
  max-width: var(--col);
  margin: 0 auto;
  padding: 72px 36px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: 48px;
  align-items: center;
}
.proof-band h2 {
  max-width: 11ch;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 28px;
}
.proof-card {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  padding: 18px;
}
.proof-card__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}
.proof-steps {
  display: grid;
  gap: 10px;
}
.proof-step {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  background: rgba(17,17,17,0.32);
  padding: 12px;
}
.proof-step::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
  animation: proofPulse 4.2s ease-in-out infinite;
}
.proof-step:nth-child(2)::before { animation-delay: 0.7s; }
.proof-step:nth-child(3)::before { animation-delay: 1.4s; }
.proof-step strong {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 500;
}
.proof-step span {
  color: rgba(255,255,255,0.56);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes proofPulse {
  0%, 100% { background: rgba(255,255,255,0.22); box-shadow: none; }
  42%, 58% { background: var(--brand-3); box-shadow: 0 0 18px rgba(216,203,255,0.55); }
}

@media (max-width: 820px) {
  .proof-band__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .proof-band h2 {
    margin-left: auto;
    margin-right: auto;
  }
  .proof-card {
    text-align: left;
  }
}

/* CTA panel (simple centered) */
.cta-panel {
  background: var(--dark);
  color: #fff;
  text-align: center;
}
.cta-panel__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px;
}
.cta-panel h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

/* ═════════════════════════════════════════════════════
   FOOTER (Cohere dark multi-column)
   ═════════════════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 72px 0 40px;
}
.footer-grid {
  max-width: var(--col);
  margin: 0 auto;
  padding: 0 36px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
}
.footer-intro .footer-eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-3);
  margin-bottom: 14px;
}
.footer-intro h3 { font-size: 1.2rem; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 8px; }
.footer-intro p { font-size: 0.9rem; color: var(--dark-muted); max-width: 32ch; margin-bottom: 20px; }
.footer-subscribe { display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--dark-line); padding-bottom: 8px; max-width: 320px; }
.footer-subscribe input {
  flex: 1; background: transparent; border: 0; color: #fff;
  font-family: var(--font); font-size: 0.9rem; padding: 6px 0;
}
.footer-subscribe input::placeholder { color: var(--dark-muted); }
.footer-subscribe input:focus { outline: none; }
.footer-subscribe button { background: none; border: 0; color: #fff; cursor: pointer; font-size: 1.1rem; }
.footer-subscribe button:hover { color: var(--brand-3); }

.footer-col h4 {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--dark-muted);
  margin-bottom: 11px;
  transition: color 0.18s ease;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  max-width: var(--col);
  margin: 56px auto 0;
  padding: 24px 36px 0;
  border-top: 1px solid var(--dark-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -0.02em; }
.footer-brand img { width: 24px; height: 24px; }
.footer-copy { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.08em; color: var(--dark-muted); }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-intro { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ═════════════════════════════════════════════════════
   BLOG
   ═════════════════════════════════════════════════════ */
.post-list { border-top: 1px solid var(--line); }
.post-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 4px;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.22s ease, background 0.22s ease;
}
.post-item:hover { padding-left: 14px; background: var(--bg-soft); }
.post-item__main { max-width: 78%; }
.post-item__title { font-size: 1.3rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 6px; }
.post-item__excerpt { font-size: 0.96rem; color: var(--muted); }
.post-item__date {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--faint); white-space: nowrap;
}

/* article */
.article { max-width: var(--col-narrow); margin: 0 auto; }
.article__meta { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand); margin-bottom: 16px; }
.article__title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 300; letter-spacing: -0.035em; line-height: 1.08; margin-bottom: 18px; }
.article__byline { font-size: 0.95rem; color: var(--muted); margin-bottom: 40px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.article__body h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 600; letter-spacing: -0.025em; margin: 44px 0 16px; }
.article__body p { font-size: 1.1rem; line-height: 1.75; color: var(--ink-2); margin-bottom: 22px; }
.article__body em { font-style: italic; }
.article__body strong { font-weight: 600; color: var(--ink); }
.back-link { display: inline-block; margin-bottom: 30px; font-size: 0.9rem; color: var(--muted); transition: color 0.18s ease; }
.back-link:hover { color: var(--brand); }

/* about prose */
.prose { max-width: var(--col-narrow); }
.prose p { font-size: 1.14rem; line-height: 1.75; color: var(--ink-2); margin-bottom: 22px; }
.prose p strong { color: var(--ink); font-weight: 600; }

/* Research grid */
.research-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.research-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.research-list a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.research-list a:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.research-list span {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--brand-3);
  white-space: nowrap;
}
.research-list strong {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

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

/* study list */
.study-list { margin-top: 8px; border-top: 1px solid var(--line); }
.study-item { display: grid; grid-template-columns: 56px 1fr; gap: 26px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.study-item__k { font-family: var(--mono); font-size: 0.82rem; color: var(--brand); padding-top: 4px; }
.study-item__body h3 { font-size: 1.2rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; }
.study-item__body p { font-size: 1rem; line-height: 1.6; color: var(--muted); max-width: 640px; }
@media (max-width: 600px){ .study-item { grid-template-columns: 1fr; gap: 6px; } }

/* ═════════════════════════════════════════════════════
   WAITLIST
   ═════════════════════════════════════════════════════ */
.demo-wrap { max-width: 720px; margin: 0 auto; padding: 80px 36px; }
.demo-title { font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 300; letter-spacing: -0.035em; margin-bottom: 10px; }
.demo-sub { font-size: 1.05rem; color: var(--muted); }
.demo-sub a { color: var(--brand); }
.glass-panel { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 12px; margin-top: 30px; }
.glass-panel iframe { border-radius: 12px; display: block; width: 100%; background: #fff; }

/* ── Scroll reveal ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .version-card--new::before,
  .release-path span::before,
  .proof-step::before {
    animation: none;
  }
}

/* ═════════════════════════════════════════════════════
   RESPONSIVE
   ═════════════════════════════════════════════════════ */
@media (max-width: 760px) {
  body { font-size: 16px; }
  .page-col, .navbar__inner {
    width: 100%;
    max-width: 100%;
    padding-left: 22px;
    padding-right: 22px;
  }
  .navbar__inner {
    display: flex;
    justify-content: flex-start;
  }
  .nav-right {
    display: none;
  }
  .section { padding: 56px 0; }
  .section--tight { padding-top: 84px; }
  .post-item { flex-direction: column; gap: 6px; }
  .post-item__main { max-width: 100%; }
  .media-band { border-radius: 14px; }
  .home-hero { padding: 64px 0 48px; }
  .hero-grid,
  .hero-copy {
    width: 100%;
    max-width: min(320px, calc(100vw - 44px));
  }
  .article,
  .article__body,
  .article__body p {
    width: 100%;
    max-width: 100%;
  }
  .hero-copy {
    justify-self: center;
    margin-left: auto;
    margin-right: auto;
  }
  .eyebrow {
    max-width: 30ch;
    line-height: 1.5;
  }
  .hero-title,
  .article__title {
    max-width: 100%;
    letter-spacing: 0;
  }
  .hero-copy .hero-title {
    max-width: 12ch;
    font-size: clamp(2.05rem, 9vw, 2.5rem);
    line-height: 1.08;
  }
  .hero-copy .hero-sub {
    max-width: 27ch;
    font-size: 1rem;
  }
  .hero-copy .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .btn {
    max-width: min(300px, calc(100vw - 44px));
    white-space: normal;
    justify-content: center;
    text-align: center;
  }
  .btn-primary {
    padding-left: 18px;
    padding-right: 18px;
    font-size: 0.9rem;
  }
  .release-visual {
    width: min(100%, 320px, calc(100vw - 44px));
    max-width: min(320px, calc(100vw - 44px));
    margin-left: auto;
    margin-right: auto;
    padding: 16px;
    border-radius: 14px;
  }
  .review-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .release-path {
    grid-template-columns: 1fr 1fr;
    row-gap: 12px;
  }
  .release-path::before {
    display: none;
  }
}

/* ═════════════════════════════════════════════════════
   PRICING PAGE
   ═════════════════════════════════════════════════════ */
.pricing-hero {
  padding: 96px 0 56px;
  text-align: center;
}
.pricing-hero .hero-title {
  max-width: 18ch;
  margin: 0 auto 22px;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
}
.pricing-hero .hero-sub {
  max-width: 640px;
  margin: 0 auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  margin-top: 48px;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  padding: 34px 30px;
  box-shadow: 0 16px 40px -30px rgba(17, 17, 17, 0.12);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 63, 242, 0.35);
  box-shadow: 0 34px 74px -52px rgba(123, 63, 242, 0.45);
}
.price-card--featured {
  border-color: rgba(123, 63, 242, 0.45);
  background:
    linear-gradient(180deg, #fff 0%, #faf8ff 100%);
  box-shadow: 0 24px 60px -40px rgba(123, 63, 242, 0.35);
}
.price-card--featured::before {
  content: "Most popular";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--brand);
  border-radius: 999px;
  padding: 6px 12px;
}
.price-card__tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  margin-bottom: 20px;
  border: 1px solid rgba(123, 63, 242, 0.2);
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--brand);
  background: rgba(123, 63, 242, 0.06);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.price-card h3 {
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
  color: var(--ink);
}
.price-card > p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 24px;
  min-height: 3.2em;
}
.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.price-card__price strong {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.price-card__price small {
  font-size: 1rem;
  color: var(--muted);
}
.price-card__features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
  flex: 1 0 auto;
  align-content: start;
}
.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-2);
}
.price-card__features li::before {
  content: "";
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background: var(--brand);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center / contain;
  border-radius: 4px;
}
.price-card .btn {
  margin-top: auto;
  align-self: stretch;
  justify-content: center;
}
.price-card .btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.price-card .btn-secondary:hover {
  border-color: rgba(123, 63, 242, 0.45);
  color: var(--brand);
}

.pricing-proof {
  padding: 70px 0;
  background: var(--dark);
  color: #fff;
}
.pricing-proof__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  max-width: var(--col);
  margin: 0 auto;
  padding: 0 36px;
}
.pricing-proof__copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  max-width: 18ch;
}
.pricing-proof__copy p {
  color: var(--dark-muted);
  max-width: 48ch;
  margin-bottom: 28px;
}
.pricing-proof__list {
  display: grid;
  gap: 14px;
}
.pricing-proof__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}
.pricing-proof__item span {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-2);
  box-shadow: 0 0 14px rgba(155, 112, 255, 0.55);
}

@media (max-width: 980px) {
  .uses { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-proof__inner {
    grid-template-columns: 1fr;
  }
  .pricing-hero {
    padding: 72px 0 40px;
  }
}
