/* ===================================================
   SYNCLETICS — Design System
   Typography-driven · Split layouts · No cards
   =================================================== */

:root {
  --bg: #09090b;
  --bg-elevated: #111113;
  --bg-subtle: #18181b;
  --text: #fafafa;
  --text-secondary: #a1a1aa;
  --text-dim: #71717a;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.14);
  --accent: #2dd4bf;
  --accent-dim: rgba(45, 212, 191, 0.10);
  --radius: 12px;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-brand: var(--font-body);
  --font-wordmark: "Outfit", system-ui, -apple-system, sans-serif;
  --brand-icon-size: 1.8rem;
  --brand-wordmark-size: 0.9375rem;
  --brand-track: 0.28;
  --max-w: 1080px;
  --transition: 0.2s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; height: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  padding: 12px 16px;
  background: var(--accent); color: var(--bg);
  font-weight: 600; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

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

/* Layout */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================================================
   Header
   =================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-inner > nav { margin-left: auto; }

.brand {
  display: flex; align-items: center;
  gap: calc(var(--brand-track) * var(--brand-wordmark-size));
  text-decoration: none; color: inherit;
  margin-left: -8px;
}
.brand:hover { text-decoration: none; }
.brand-icon { display: flex; align-items: center; flex-shrink: 0; }
.brand-icon__img {
  height: var(--brand-icon-size);
  width: auto;
  filter: invert(1);
  transition: opacity var(--transition);
}
.brand:hover .brand-icon__img { opacity: 0.8; }

.brand-wordmark {
  font-family: var(--font-wordmark);
  font-size: var(--brand-wordmark-size);
  font-weight: 500;
  letter-spacing: calc(var(--brand-track) * 1em);
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
  opacity: 0.92;
  transition: opacity var(--transition);
}
.brand:hover .brand-wordmark {
  opacity: 1;
}

.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--text-secondary);
  font-size: 0.875rem; font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--text); }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: auto;
}
.nav-toggle-bar {
  display: block; width: 20px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ===================================================
   Buttons
   =================================================== */
.btn {
  display: inline-flex; align-items: center;
  justify-content: center; gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600; font-size: 0.875rem;
  border: none; cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn:hover { text-decoration: none; }

.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { background: #5eead4; }

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--border-hover); color: var(--text); }

.inline-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}
.inline-link:hover { text-decoration: underline; }

/* ===================================================
   Eyebrow
   =================================================== */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ===================================================
   Hero — left-aligned, generous height
   =================================================== */
.hero {
  position: relative;
  padding: 100px 0 80px;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__content {
  max-width: 620px;
}

.hero__badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(45, 212, 191, 0.2);
  margin-bottom: 20px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero h1 {
  margin: 0 0 24px;
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.hero__sub {
  margin: 0 0 36px;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 520px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
  animation: gentle-bounce 2.5s ease-in-out infinite;
}

@keyframes gentle-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===================================================
   Social proof strip
   =================================================== */
.proof-strip {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.proof-stat {
  text-align: center;
}

.proof-stat__num {
  display: block;
  font-family: var(--font-brand);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.proof-stat__label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.45;
}

/* ===================================================
   Scenario prose
   =================================================== */
.scenario-prose {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 16px;
}

.scenario-prose--accent {
  color: var(--text);
  font-weight: 500;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  margin-top: 20px;
}

/* ===================================================
   Final CTA
   =================================================== */
.cta-final {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-final h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.cta-final__sub {
  margin: 0 0 32px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
}

.cta-final__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 14px 36px;
  font-size: 0.95rem;
}

/* ===================================================
   Product preview mockup on homepage
   =================================================== */
.mockup--homepage-preview {
  max-width: 280px;
  width: 100%;
}

/* ===================================================
   Sections
   =================================================== */
.section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.section--no-border { border-top: none; }
.section--flush-top { padding-top: 40px; }
.section--muted { background: var(--bg-elevated); }

.section h2 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.section-intro {
  margin: 0 0 48px;
  color: var(--text-secondary);
  max-width: 44em;
  font-size: 1rem;
}

/* ===================================================
   Split — two-column, flexible
   =================================================== */
.split {
  display: grid;
  gap: 40px;
  align-items: start;
}

/* Let grid columns shrink below intrinsic content (e.g. fixed-width Lottie) */
.split > * {
  min-width: 0;
}

@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.split__text h2 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.split__text p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 12px;
}
.split__text p:last-of-type { margin-bottom: 0; }

/* ===================================================
   CTA split — text + button side by side
   =================================================== */
.cta-split {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .cta-split { grid-template-columns: 1fr auto; gap: 64px; }
}

.cta-split h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.cta-split p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 44em;
}

.cta-split__action {
  flex-shrink: 0;
}

/* ===================================================
   Page header
   =================================================== */
.page-header {
  padding: 56px 24px 8px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-header h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.page-lead {
  margin: 0;
  max-width: 36em;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.65;
}
.page-header--lead-gap .page-lead { margin-bottom: 1.5em; }

/* ===================================================
   Mockup
   =================================================== */
.mockup {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.mockup-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
}

.mockup-dot { width: 10px; height: 10px; border-radius: 50%; background: #333; }
.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }

.mockup-title {
  margin-left: auto; font-size: 0.7rem;
  color: var(--text-secondary); font-weight: 500;
}

.mockup-body { padding: 14px; display: grid; gap: 10px; }

.mock-card {
  border-radius: 10px; padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  display: grid; gap: 6px;
}

.mock-card-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 12px;
}
.mock-card h3 { margin: 0; font-size: 0.85rem; font-weight: 600; }

.mock-badge {
  font-size: 0.6rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 3px 8px; border-radius: 999px;
  background: var(--accent-dim); color: var(--accent);
  white-space: nowrap;
}
.mock-badge--dim { background: rgba(255, 255, 255, 0.06); color: var(--text-secondary); }

.mock-meta { margin: 0; font-size: 0.75rem; color: var(--text-secondary); }
.mock-stats { display: flex; gap: 14px; font-size: 0.75rem; color: var(--text-secondary); }
.mock-stats b { color: var(--text); font-weight: 600; }

/* Screenshot variant */
.mockup--screenshot {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}
.mockup--screenshot .mockup-bar {
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  border-bottom: 1px solid #e2e8f0;
}
.mockup--screenshot .mockup-title { color: #64748b; }

.mockup-body--screenshot {
  flex: 1; display: flex;
  align-items: center; justify-content: center;
  padding: 10px; line-height: 0; overflow: hidden;
  background: linear-gradient(160deg, #1c2230, #0e1118);
}
.mockup--screenshot .mockup-body--screenshot {
  border-bottom-left-radius: 11px;
  border-bottom-right-radius: 11px;
}
.mockup-body--screenshot img {
  width: 100%; height: auto; border-radius: 6px;
}

/* ===================================================
   Screenshot showcase (courtlive page)
   =================================================== */
.screenshot-showcase { position: relative; overflow: hidden; }
.screenshot-showcase__glow { display: none; }
.screenshot-showcase__inner { position: relative; z-index: 1; }
.wrap--shots { max-width: var(--max-w); }

.screenshot-showcase__split {
  display: grid; gap: 36px; align-items: start;
}
@media (min-width: 960px) {
  .screenshot-showcase__split {
    grid-template-columns: minmax(260px, 1fr) minmax(300px, 1.2fr);
    gap: 48px;
  }
}

.screenshot-showcase__copy { max-width: 34rem; }
.screenshot-showcase__copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; letter-spacing: -0.025em;
}
.screenshot-showcase__label {
  margin: 0 0 8px; font-size: 0.7rem;
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--accent);
}
.screenshot-showcase__lead {
  margin: 0 0 24px; font-size: 1rem;
  color: var(--text-secondary); line-height: 1.6;
}

.screenshot-showcase__notes {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.screenshot-showcase__note {
  display: flex; align-items: flex-start;
  gap: 10px; margin: 0;
}
.screenshot-showcase__note-text {
  font-size: 0.875rem; color: var(--text-secondary); line-height: 1.55;
}
.screenshot-showcase__note-text strong { color: var(--text); font-weight: 600; }

.product-shot-badge {
  flex-shrink: 0; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.1em; color: var(--bg);
  background: var(--accent); padding: 3px 7px;
  border-radius: 5px; line-height: 1;
}

.screenshot-showcase__media { min-width: 0; }

.product-shots {
  display: grid; grid-template-columns: 1fr;
  gap: 20px; margin: 0; width: 100%;
}
@media (min-width: 640px) {
  .product-shots { grid-template-columns: 1fr 1fr; gap: 14px; }
}

.product-shot {
  margin: 0; min-width: 0;
  display: flex; flex-direction: column; height: 100%;
}
.product-shot .mockup--screenshot {
  flex: 1; display: flex; flex-direction: column; min-height: 0;
}
.screenshot-showcase__media .mockup--screenshot {
  width: calc(100% * 2 / 3);
  max-width: calc(100% * 2 / 3);
  margin-inline: auto;
}
@media (min-width: 640px) {
  .screenshot-showcase__media .mockup--screenshot {
    width: 100%; max-width: 100%; margin-inline: 0;
  }
}

/* ===================================================
   Feature rows — stacked full-width (courtlive page)
   =================================================== */
.feature-rows { display: flex; flex-direction: column; }

.feature-row {
  display: grid;
  gap: 8px 40px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.feature-row:last-child { border-bottom: none; }

@media (min-width: 640px) {
  .feature-row { grid-template-columns: 40px 180px 1fr; }
}

.feature-row__icon { font-size: 1.2rem; color: var(--text-dim); line-height: 1; }
.feature-row h3 { margin: 0; font-size: 1rem; font-weight: 600; }
.feature-row p { margin: 0; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }

/* ===================================================
   Mission quote
   =================================================== */
.mission-quote {
  margin: 0; padding: 0; border: none;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 500; line-height: 1.5;
  letter-spacing: -0.015em;
  color: var(--text); max-width: 32em;
}

/* ===================================================
   Tech flow
   =================================================== */
.tech-flow {
  display: flex; align-items: center;
  justify-content: center; gap: 20px;
  flex-wrap: wrap; padding: 40px 0;
}
.tech-step { text-align: center; flex: 0 1 120px; }
.tech-step-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-dim); border-radius: 10px;
  font-size: 1.1rem; margin: 0 auto 8px;
}
.tech-step-label { margin: 0 0 2px; font-size: 0.82rem; font-weight: 600; color: var(--text); }
.tech-step-desc { margin: 0; font-size: 0.72rem; color: var(--text-secondary); }
.tech-arrow { font-size: 1.1rem; color: rgba(255, 255, 255, 0.12); }

/* ===================================================
   Privacy callout
   =================================================== */
.privacy-callout {
  margin-top: 32px; padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-subtle);
  display: flex; align-items: flex-start; gap: 14px;
}
.privacy-callout-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.privacy-callout-title { margin: 0 0 4px; font-size: 0.92rem; font-weight: 600; }
.privacy-callout-text { margin: 0; font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ===================================================
   Team showcase
   =================================================== */
.team-showcase { margin: 0; padding: 20px 0; text-align: center; }
.team-showcase__title {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700; letter-spacing: -0.025em;
}
.team-showcase__subtitle {
  margin: 0 auto 36px; max-width: 30em;
  color: var(--text-secondary); font-size: 0.95rem;
}
.team-showcase__subtitle strong { color: var(--text); font-weight: 600; }

.team-leadership {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 28px;
  max-width: 960px;
  text-align: left;
}

@media (min-width: 768px) {
  .team-leadership {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
  }
}

.team-leadership__item {
  margin: 0;
  padding: 24px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-subtle);
}

.team-leadership__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.team-leadership__icon {
  flex-shrink: 0;
  line-height: 0;
  opacity: 0.7;
}

.team-leadership__name {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.team-leadership__role {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.team-leadership__bio {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ===================================================
   CTA band
   =================================================== */
.cta-band {
  margin: 48px 0 0; padding: 56px 32px;
  border-radius: var(--radius);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  text-align: center;
}
.cta-band h2 { margin: 0 0 10px; }
.cta-band p { margin: 0 0 28px; color: var(--text-secondary); }

/* ===================================================
   Contact — simple info layout, no form
   =================================================== */
.contact-globe-row {
  display: flex;
  justify-content: center;
  margin-top: clamp(-160px, -15vw, -40px);
  margin-bottom: clamp(-160px, -15vw, -40px);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  gap: 48px;
  align-items: start;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-item { padding: 0; background: none; border: none; }
.contact-item h3 {
  margin: 0 0 6px; font-size: 0.75rem;
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-dim);
}
.contact-item p { margin: 0 0 4px; font-size: 0.95rem; }
.contact-item p:last-child { margin-bottom: 0; }

.contact-address {
  margin: 4px 0 0 !important;
  color: var(--text-secondary);
  line-height: 1.55; font-size: 0.9rem;
}

/* Social links */
.social-links { display: flex; gap: 8px; margin-top: 4px; }
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--border); border-radius: 10px;
  color: var(--text-secondary);
  font-size: 0.75rem; font-weight: 700;
  text-decoration: none;
  transition: color var(--transition), border-color var(--transition);
}
.social-link:hover {
  color: var(--accent); border-color: var(--border-hover);
  text-decoration: none;
}
.social-link__icon {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

/* ===================================================
   Footer — single clean row
   =================================================== */
.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.82rem;
}

.footer-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand { flex-shrink: 0; }

.footer-brand .brand {
  margin-bottom: 8px;
}

.footer-nav { margin-left: auto; }
.footer-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 24px;
}
.footer-nav a {
  color: var(--text-dim); font-weight: 500;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--accent); text-decoration: none; }
.footer-nav a[aria-current="page"] { color: var(--text-secondary); }

.footer-tagline-small {
  margin: 4px 0 0;
  font-size: 0.72rem;
  color: var(--text-dim);
  opacity: 0.7;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-copy {
  margin: 0;
  color: var(--text-dim);
  opacity: 0.7;
}

/* Keep old footer-grid for about/courtlive pages */
.footer-grid { display: grid; gap: 28px; align-items: start; }
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; gap: 40px; }
}
.footer-tagline { margin: 0; line-height: 1.5; max-width: 18em; }

/* ===================================================
   Status chips — animated dots
   =================================================== */
.status-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-chip--dead .status-dot { background: #52525b; }
.status-chip--warming .status-dot { background: #fbbf24; animation: pulse-dot 2s ease-in-out infinite; }
.status-chip--live .status-dot { background: #22c55e; animation: pulse-dot 1.2s ease-in-out infinite; }
.status-chip--full .status-dot { background: #ef4444; animation: pulse-dot 1.8s ease-in-out infinite; }

.status-chip--dead { color: var(--text-dim); }
.status-chip--warming { color: #fbbf24; }
.status-chip--live { color: #22c55e; }
.status-chip--full { color: #ef4444; }

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

/* ===================================================
   Pain list
   =================================================== */
.problem-lottie-wrap {
  margin-top: 32px;
  opacity: 0.8;
}

.pain-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pain-list li {
  position: relative;
  padding: 16px 20px 16px 48px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.pain-list li:hover {
  border-color: #ef4444;
  color: var(--text);
  transform: translateX(4px);
}

.pain-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='15' y1='9' x2='9' y2='15'%3E%3C/line%3E%3Cline x1='9' y1='9' x2='15' y2='15'%3E%3C/line%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ===================================================
   Check list
   =================================================== */
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.check-list li strong {
  color: var(--text);
  font-weight: 600;
}

/* ===================================================
   Steps — inline horizontal
   =================================================== */
.steps-inline {
  display: grid;
  gap: 0;
}

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

.step-inline {
  display: flex;
  gap: 16px;
  padding: 32px 24px 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

@media (min-width: 768px) {
  .step-inline {
    border-bottom: none;
    border-right: 1px solid var(--border);
    padding: 0 32px;
  }
  .step-inline:first-child { padding-left: 0; }
  .step-inline:last-child { border-right: none; padding-right: 0; }
}

.step-inline__num {
  font-family: var(--font-brand);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.6;
}

.step-inline h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}

.step-inline p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ===================================================
   Pull quote
   =================================================== */
.pull-quote {
  margin: 0;
  padding: 0;
  border: none;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.65;
  color: var(--text-secondary);
  font-style: italic;
}

/* ===================================================
   Vision statement
   =================================================== */
.vision-statement {
  margin: 32px 0 0;
  font-size: clamp(1.3rem, 2.8vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
}

/* ===================================================
   Split visual center
   =================================================== */
.split__visual--center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===================================================
   CTA split actions
   =================================================== */
.cta-split__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ===================================================
   Lottie / dotLottie player overrides
   =================================================== */
lottie-player,
dotlottie-player {
  background: transparent !important;
}


.step-inline__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-step-icon--lottie {
  background: none;
  font-size: inherit;
}

.feature-row__icon--lottie {
  font-size: inherit;
  line-height: 1;
  display: flex;
  align-items: center;
}

.vision-visual {
  display: flex;
  justify-content: center;
  margin: 32px 0 8px;
}

.lottie-blend-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  width: min(100%, 480px);
  margin-inline: auto;
  aspect-ratio: 1;
}

dotlottie-player.lottie-dark {
  filter: invert(1) hue-rotate(180deg);
  mix-blend-mode: screen;
  width: 100% !important;
  height: 100% !important;
}

.contact-lottie-wrap {
  margin-bottom: 16px;
}

.facility-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.facility-block__text {
  max-width: 560px;
}

.facility-block__text h2 {
  margin-bottom: 16px;
}

.facility-block__text p {
  color: var(--muted);
}

/* ===================================================
   Scroll reveal
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Proof strip: stack on narrow viewports (avoids cramped title | body columns) */
@media (max-width: 767px) {
  .proof-strip__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }
  .proof-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    text-align: left;
  }
  .proof-stat__num {
    margin-bottom: 0;
    line-height: 1.2;
    max-width: 100%;
  }
  .proof-stat__label {
    max-width: 100%;
  }
}

/* ===================================================
   Responsive — comprehensive mobile handling
   =================================================== */
@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .header-inner > nav { display: none; }
  .header-inner > nav.nav--open {
    display: block; flex-basis: 100%;
    padding-top: 12px;
    border-top: 1px solid var(--border);
  }
  .nav--open .nav-links {
    flex-direction: column;
    align-items: flex-start; gap: 12px;
  }
  .header-inner { flex-wrap: wrap; }

  :root {
    --brand-wordmark-size: 0.8125rem;
    --brand-track: 0.2;
  }

  .hero { padding: 64px 0 48px; min-height: auto; }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .hero__sub { font-size: 1rem; }
  .hero__scroll { display: none; }
  .hero__ctas { flex-direction: column; width: 100%; }
  .hero__ctas .btn { width: 100%; }

  .lottie-blend-wrapper {
    width: min(100%, 300px);
  }

  .cta-final__actions { flex-direction: column; width: 100%; }
  .cta-final__actions .btn { width: 100%; }

  .section { padding: 56px 0; }

  .split { gap: 32px; }

  .cta-split { text-align: center; }
  .cta-split__action { margin-top: 8px; }

  .page-header { padding: 40px 24px 8px; }
  .page-header h1 { font-size: clamp(1.8rem, 8vw, 2.2rem); }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-nav { margin-left: 0; }
  .footer-nav ul { flex-wrap: wrap; gap: 16px; }

  .tech-flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center; gap: 20px;
  }
  .tech-arrow { display: none; }

  .privacy-callout { flex-direction: column; }

  .team-leadership__item { padding: 20px 18px; }

  .feature-row { gap: 6px; padding: 24px 0; }


  .status-row { gap: 8px; }
  .status-chip { padding: 6px 12px; font-size: 0.75rem; }

  .step-inline { padding: 20px 0; }

  .cta-split__actions { flex-direction: column; width: 100%; }
  .cta-split__actions .btn { width: 100%; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .header-inner { padding: 14px 16px; }

  :root {
    --brand-wordmark-size: 0.75rem;
    --brand-track: 0.14;
  }

  .hero h1 { font-size: 1.75rem; }
  .hero { padding: 48px 0 40px; min-height: auto; }
  .hero__sub { font-size: 0.95rem; max-width: 100%; }
  .hero__scroll { display: none; }

  .section { padding: 48px 0; }
  .section h2 { font-size: 1.3rem; }

  .split__text p { font-size: 0.95rem; }

  .mockup-body { padding: 10px; }
  .mock-card { padding: 10px 12px; }
  .mock-card h3 { font-size: 0.8rem; }

  .cta-band { padding: 40px 20px; }

  .footer-row { gap: 12px; }
  .footer-nav ul { gap: 12px; }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .hero { padding: 80px 0 60px; }
  .split { gap: 48px; }
}
