/* ============================================================
   CLEMA — Design System
   Barlow Condensed (display) · Archivo (body) · JetBrains Mono (data)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Archivo:ital,wght@0,400;0,500;0,600;1,400&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Tokens ── */
:root {
  --bg:        #0A0F1A;
  --bg-2:      #0E1421;
  --bg-3:      #141B2D;
  --cobalt:    #1E5FE8;
  --cobalt-h:  #1852D4;
  --ice:       #5BA8FF;
  --ember:     #F25C1C;
  --ember-l:   #FF8A3D;
  --fg:        #F5F6F7;
  --fg-2:      rgba(245,246,247,0.62);
  --fg-3:      rgba(245,246,247,0.36);
  --border:    rgba(245,246,247,0.08);
  --border-2:  rgba(245,246,247,0.16);
  --f-display: 'Barlow Condensed', sans-serif;
  --f-body:    'Archivo', sans-serif;
  --f-mono:    'JetBrains Mono', monospace;
  --radius:    4px;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }
::selection { background: var(--cobalt); color: #fff; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.section {
  padding: 128px 0;
}
.section-alt {
  background: var(--bg-2);
}
.section-header {
  margin-bottom: 64px;
  max-width: 880px;
}
.section-header h2 {
  margin-top: 14px;
}

/* Visual divider strip: full-width image band between text-heavy sections */
.divider-strip {
  position: relative;
  height: 280px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.divider-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,15,26,0.55) 0%, rgba(10,15,26,0.65) 100%);
}
.section-header.tight h2 {
  font-size: clamp(26px, 2.8vw, 38px);
}

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.98;
  color: var(--fg);
}
h1 { font-size: clamp(48px, 6.4vw, 96px); line-height: 0.96; }
h2 { font-size: clamp(30px, 3.6vw, 52px); }
h3 { font-size: clamp(20px, 2.2vw, 28px); font-weight: 700; }

.eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ice);
}
.eyebrow.ember { color: var(--ember-l); }

.text-ember { color: var(--ember-l); }
.text-cobalt { color: var(--ice); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 180ms var(--ease), border-color 180ms var(--ease), transform 120ms var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--cobalt);
  color: #fff;
  padding: 16px 28px;
  border-color: var(--cobalt);
}
.btn-primary:hover { background: var(--cobalt-h); border-color: var(--cobalt-h); }

.btn-ghost {
  background: transparent;
  color: var(--fg);
  padding: 16px 28px;
  border-color: var(--border-2);
}
.btn-ghost:hover { border-color: rgba(245,246,247,0.38); }

.btn-lg { padding: 20px 36px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Link ── */
.link-cobalt { color: var(--ice); text-decoration: underline; text-underline-offset: 3px; }
.link-cobalt:hover { color: var(--fg); }

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 220ms var(--ease), border-color 220ms var(--ease), padding 220ms var(--ease);
}
#nav.scrolled {
  background: rgba(10,15,26,0.90);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--border);
  padding-top: 12px;
  padding-bottom: 12px;
}
.nav-logo img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  display: block;
}
.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-2);
  transition: color 150ms;
}
.nav-links a:hover { color: var(--fg); }
.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-ghost {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--fg-2);
  padding: 10px 14px;
  transition: color 150ms;
}
.nav-ghost:hover { color: var(--fg); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  transition: transform 0.22s var(--ease), opacity 0.22s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: rgba(10,15,26,0.97);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  padding: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg);
  opacity: 0.85;
  transition: opacity 150ms, color 150ms;
}
.mobile-menu a:hover { opacity: 1; color: var(--ice); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.9) contrast(1.1) brightness(0.85);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,15,26,0.72) 0%,
      rgba(10,15,26,0.55) 35%,
      rgba(10,15,26,0.78) 75%,
      rgba(10,15,26,0.98) 100%
    );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
  padding-top: 160px;
}
.hero-content .eyebrow {
  margin-bottom: 24px;
}
.hero-content h1 {
  max-width: 1100px;
  text-shadow: 0 2px 32px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: 19px;
  line-height: 1.5;
  color: var(--fg-2);
  max-width: 520px;
  margin-top: 24px;
  font-weight: 400;
}
.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-stats {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  background: rgba(10,15,26,0.70);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
}
.hero-stat {
  padding: 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-number {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--fg);
  text-transform: uppercase;
}
.hero-stat-unit {
  font-size: 20px;
  color: var(--fg-2);
}
.hero-stat-label {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 80px;
  border: 1px solid var(--border);
}
.step {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  background: var(--bg-2);
}
.step:last-child { border-right: none; }
.step-number {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--cobalt);
  display: block;
  margin-bottom: 24px;
}
.step h3 {
  margin-bottom: 14px;
  font-size: 28px;
}
.step p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-2);
}

/* ── PRODUCT SHOWCASE ── */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--bg-2);
  overflow: hidden;
}
.product-image-wrap {
  background: #1C1F25;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 48px;
  min-height: 560px;
}
.product-img {
  max-height: 480px;
  width: auto;
  object-fit: contain;
}
.product-specs-wrap {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  border-left: 1px solid var(--border);
}
.product-specs-wrap h2 {
  font-size: clamp(26px, 3vw, 40px);
  margin-top: 14px;
}
.product-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 440px;
}
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 8px 0;
}
.spec-item {
  background: var(--bg-3);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spec-value {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--fg);
}
.spec-label {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* ── APPLICATIONS ── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.industry-tile {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 300ms var(--ease);
}
.industry-tile:hover { transform: translateY(-2px); }
.industry-tile::after {
  content: '\2192';
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(10,15,26,0.6);
  border: 1px solid var(--border-2);
  color: var(--fg);
  font-size: 16px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 220ms, transform 220ms;
}
.industry-tile:hover::after { opacity: 1; transform: translateY(0); }
.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,15,26,0.10) 0%,
    rgba(10,15,26,0.30) 50%,
    rgba(10,15,26,0.85) 100%
  );
  transition: background 300ms;
}
.industry-tile:hover .industry-overlay {
  background: linear-gradient(180deg,
    rgba(10,15,26,0.20) 0%,
    rgba(10,15,26,0.50) 50%,
    rgba(10,15,26,0.90) 100%
  );
}
.industry-content {
  position: relative;
  z-index: 1;
  padding: 32px 36px;
}
.industry-content h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.industry-content p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 380px;
}

/* ── COMPARISON / WHY OTHER TOOLS FAIL ── */
.comparison-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
}
.comparison-item {
  background: var(--bg-2);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-right: 1px solid var(--border);
  position: relative;
}
.comparison-item:last-child { border-right: none; }
.comparison-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.comparison-headline {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--fg);
}
.comparison-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-2);
}

/* ── ROI ── */
.roi-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.roi-headline h2 {
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: clamp(36px, 4.5vw, 60px);
}
.roi-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-2);
  margin-bottom: 36px;
}
.roi-stats-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.roi-stat {
  padding: 36px 40px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.roi-number {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(56px, 6vw, 80px);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--ember-l);
  text-transform: uppercase;
}
.roi-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
  line-height: 1.4;
}
.roi-source {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--fg-3);
  margin-top: 4px;
}

/* ── VIDEO SECTION ── */
.video-header {
  margin-bottom: 48px;
}
.video-header h2 {
  font-size: clamp(28px, 3.2vw, 44px);
}
.video-poster {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--bg-2);
}
.video-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  transition: filter 300ms var(--ease), transform 400ms var(--ease);
}
.video-poster:hover .video-poster-img {
  filter: saturate(1.0) contrast(1.08);
  transform: scale(1.02);
}
.video-poster-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 70% at 50% 50%, rgba(10,15,26,0.15), rgba(10,15,26,0.55) 100%);
}
.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 88px;
  height: 88px;
  background: rgba(245,246,247,0.95);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  box-shadow: 0 8px 48px rgba(0,0,0,0.5);
  transition: transform 220ms var(--ease), background 180ms;
}
.play-btn:hover { transform: scale(1.08); background: #fff; }
.play-btn svg { margin-left: 4px; }
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}
.video-modal.open { display: block; }
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,15,26,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.video-modal-content {
  position: absolute;
  inset: 40px;
  max-width: 1200px;
  max-height: calc(100vh - 80px);
  margin: auto;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.video-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(245,246,247,0.08);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--fg);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 150ms;
}
.video-modal-close:hover { background: rgba(245,246,247,0.18); }

/* ── TEAM ── */
.team-section .section-header h2 {
  font-size: clamp(26px, 3vw, 40px);
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.team-member {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: var(--radius);
}
.team-photo-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-3);
  width: 100%;
  display: block;
  position: relative;
  cursor: pointer;
}
a.team-photo-wrap::after {
  content: 'in';
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cobalt);
  color: #fff;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 200ms;
  text-transform: lowercase;
}
a.team-photo-wrap:hover::after { opacity: 1; }
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: saturate(0.80) contrast(1.05);
  transition: filter 400ms, transform 400ms var(--ease);
}
.team-member:hover .team-photo {
  filter: saturate(0.90) contrast(1.05);
  transform: scale(1.03);
}
.team-info {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--border);
}
.team-info h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.team-title {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.10em;
  color: var(--ice);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.team-bio {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-2);
}
.team-edu {
  font-size: 12px;
  line-height: 1.5;
  color: var(--fg-3);
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.team-edu span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ice);
  margin-right: 8px;
}

/* ── FINAL CTA STRIP ── */
.final-cta {
  background: var(--bg);
  padding: 72px 0;
  border-top: 1px solid var(--border);
}
.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.final-cta-text h2 {
  margin-top: 14px;
  font-size: clamp(28px, 3.2vw, 44px);
  max-width: 640px;
}
.final-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── EARLY ACCESS / FORM ── */
.section-cta {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 96px 0;
}

/* Standalone /early-access page */
.ea-hero { padding: 64px 0 96px; }
.ea-hero h1 { font-size: clamp(40px, 5vw, 76px); line-height: 0.98; }
.ea-form-section { padding: 96px 0 120px; border-top: none; }
.ea-grid { grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.ea-points {
  position: sticky;
  top: 100px;
}
.ea-points-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.ea-points-list li {
  padding: 24px 28px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ea-points-list li:last-child { border-bottom: none; }
.ea-num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ice);
  line-height: 1;
}
.ea-txt {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-2);
}
.ea-callout {
  margin-top: 28px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 1024px) {
  .ea-grid { grid-template-columns: 1fr; gap: 48px; }
  .ea-points { position: static; }
}

/* Split hero (text left, image right) */
.hero-split { padding: 56px 0 64px; }
.hero-split-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-split-img {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--border);
  aspect-ratio: 1 / 1;
}
.hero-split-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-split h1 { font-size: clamp(36px, 4.5vw, 64px); line-height: 0.98; }
.hero-tldr {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-top: 18px;
}
.hero-tldr span { color: var(--ice); }
@media (max-width: 768px) {
  .hero-split-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-split-img { aspect-ratio: 4 / 3; max-height: 320px; }
}

/* Runtime bar chart (the visual answer) */
.runtime-chart {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 32px;
}
.runtime-row {
  display: grid;
  grid-template-columns: 160px 1fr 92px;
  gap: 16px;
  align-items: center;
}
.runtime-label {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg);
}
.runtime-bar {
  height: 24px;
  background: rgba(245,246,247,0.04);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.runtime-bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--ember-l);
  border-radius: 2px;
}
.runtime-row.is-clema .runtime-bar-fill {
  background: linear-gradient(90deg, var(--cobalt), var(--ice));
}
.runtime-row.is-clema .runtime-label { color: var(--ice); }
.runtime-time {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--fg-2);
  text-align: right;
}
.runtime-row.is-clema .runtime-time { color: var(--fg); }
@media (max-width: 640px) {
  .runtime-row { grid-template-columns: 110px 1fr 70px; gap: 10px; }
  .runtime-label { font-size: 12px; }
  .runtime-chart { padding: 20px; }
}

/* Comparison data table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--f-body);
  font-size: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
}
.data-table thead { background: var(--bg-3); }
.data-table th {
  text-align: left;
  padding: 18px 20px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--fg);
  border-bottom: 1px solid var(--border);
}
.data-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--fg-2);
  vertical-align: top;
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: rgba(245,246,247,0.02); }
.data-table tr.is-clema td { background: rgba(30,95,232,0.06); color: var(--fg); }
.data-table tr.is-clema td:first-child {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--ice);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.data-table .num {
  font-family: var(--f-mono);
  color: var(--fg);
  white-space: nowrap;
}
.data-table .yes { color: var(--ice); font-weight: 600; }
.data-table .no { color: var(--ember-l); font-weight: 600; }
@media (max-width: 768px) {
  .data-table-wrap { overflow-x: auto; }
  .data-table { min-width: 600px; }
}

/* ============================================================
   ROI CALCULATOR
   ============================================================ */
.calc-section { padding: 56px 0 96px; }
.calc-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 1024px) {
  .calc-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Inputs panel */
.calc-panel-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 16px;
}
.calc-fieldset {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-2);
  padding: 18px 22px 14px;
  margin-bottom: 16px;
}
.calc-fieldset legend {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ice);
  padding: 0 8px;
}
.calc-field {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 16px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.calc-field:last-child { border-bottom: none; }
.calc-field label {
  font-size: 13px;
  line-height: 1.35;
  color: var(--fg);
}
.calc-field .calc-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.calc-field .calc-prefix,
.calc-field .calc-suffix {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--fg-3);
  pointer-events: none;
}
.calc-field .calc-prefix { left: 10px; }
.calc-field .calc-suffix { right: 10px; }
.calc-field input[type="number"] {
  width: 100%;
  background: rgba(245,246,247,0.04);
  border: 1px solid var(--border-2);
  border-radius: 3px;
  color: var(--fg);
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 500;
  padding: 9px 12px;
  text-align: right;
  outline: none;
  transition: border-color 150ms, background 150ms;
  -moz-appearance: textfield;
}
.calc-field input[type="number"]:focus {
  border-color: var(--cobalt);
  background: rgba(30,95,232,0.06);
}
.calc-field input[type="number"]::-webkit-outer-spin-button,
.calc-field input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc-field.with-prefix input { padding-left: 24px; }
.calc-field.with-suffix input { padding-right: 26px; }

.calc-toggles {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calc-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-2);
  cursor: pointer;
  font-size: 13px;
  color: var(--fg);
  transition: border-color 150ms, background 150ms;
}
.calc-toggle:hover { border-color: var(--border-2); }
.calc-toggle input { accent-color: var(--cobalt); }
.calc-toggle.is-off { color: var(--fg-3); background: transparent; }

/* Outputs panel */
.calc-output {
  position: sticky;
  top: 100px;
}
.calc-headline-line {
  font-family: var(--f-body);
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 8px;
}
.calc-headline-quote {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.25;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.calc-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}
.calc-hero-stat {
  background: var(--bg-2);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.calc-hero-stat:nth-child(3n) { border-right: none; }
.calc-hero-stat:nth-last-child(-n+3) { border-bottom: none; }
.calc-hero-stat.is-primary { background: var(--bg-3); }
.calc-hero-stat.is-primary .calc-stat-num { color: var(--ice); }
.calc-stat-num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--fg);
}
.calc-stat-label {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* Breakdown table */
.calc-breakdown {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.calc-breakdown-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 14px;
}
.calc-breakdown-title + .calc-breakdown-title { margin-top: 24px; }
.calc-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--fg-2);
}
.calc-breakdown-row:last-child { border-bottom: none; }
.calc-breakdown-row .calc-amount {
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
}
.calc-breakdown-row.is-off { opacity: 0.35; }
.calc-breakdown-row.is-off .calc-amount { text-decoration: line-through; }
.calc-breakdown-row.is-total {
  border-top: 2px solid var(--border-2);
  border-bottom: none;
  margin-top: 8px;
  padding-top: 14px;
}
.calc-breakdown-row.is-total .calc-amount,
.calc-breakdown-row.is-total .calc-label-text {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.calc-breakdown-row.is-total .calc-amount { color: var(--ice); }

@media (max-width: 768px) {
  .calc-output { position: static; }
  .calc-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .calc-hero-stat:nth-child(3n) { border-right: 1px solid var(--border); }
  .calc-hero-stat:nth-child(2n) { border-right: none; }
  .calc-field { grid-template-columns: 1fr 120px; gap: 10px; }
}

/* === ROI calculator: industry presets === */
.calc-presets-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.calc-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.preset-chip {
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--fg-2);
  padding: 7px 14px;
  border-radius: 999px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 150ms, border-color 150ms, color 150ms;
  font-family: inherit;
}
.preset-chip:hover { color: var(--fg); border-color: var(--border-2); }
.preset-chip.is-active {
  background: var(--cobalt);
  color: #fff;
  border-color: var(--cobalt);
}
.calc-reset {
  background: transparent;
  border: 1px solid var(--border-2);
  color: var(--fg-3);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
  cursor: pointer;
  transition: color 150ms, border-color 150ms;
}
.calc-reset:hover { color: var(--fg); border-color: var(--fg-3); }

/* === ROI calculator: sliders === */
.calc-slider-wrap {
  display: grid;
  grid-template-columns: 1fr 64px;
  gap: 14px;
  align-items: center;
}
.calc-slider-wrap input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(245,246,247,0.10);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.calc-slider-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: var(--cobalt);
  border: 2px solid var(--fg);
  border-radius: 50%;
  cursor: grab;
  transition: transform 100ms;
}
.calc-slider-wrap input[type="range"]:active::-webkit-slider-thumb { cursor: grabbing; transform: scale(1.15); }
.calc-slider-wrap input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px;
  background: var(--cobalt);
  border: 2px solid var(--fg);
  border-radius: 50%;
  cursor: grab;
}
.calc-slider-display {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--ice);
  text-align: right;
  white-space: nowrap;
}

/* === ROI calculator: tooltips === */
.calc-tip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(245,246,247,0.08);
  color: var(--fg-3);
  font-size: 9px;
  font-family: var(--f-mono);
  font-weight: 700;
  cursor: help;
  margin-left: 6px;
  vertical-align: middle;
  transition: background 150ms, color 150ms;
}
.calc-tip:hover { background: var(--cobalt); color: #fff; }

/* === ROI calculator: sticky top strip === */
.calc-sticky-strip {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(10,15,26,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  transform: translateY(-110%);
  transition: transform 220ms var(--ease);
  pointer-events: none;
}
.calc-sticky-strip.is-visible { transform: translateY(0); pointer-events: auto; }
.calc-sticky-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0 24px;
}
.calc-sticky-item { display: flex; flex-direction: column; gap: 2px; align-items: center; }
.calc-sticky-num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--ice);
  line-height: 1;
}
.calc-sticky-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* === ROI calculator: pulse on hero stat update === */
@keyframes calc-pulse {
  0% { box-shadow: inset 0 0 0 2px rgba(91,168,255,0); background: var(--bg-3); }
  30% { box-shadow: inset 0 0 0 2px rgba(91,168,255,0.6); background: rgba(91,168,255,0.10); }
  100% { box-shadow: inset 0 0 0 2px rgba(91,168,255,0); }
}
.calc-hero-stat.is-pulsing { animation: calc-pulse 600ms ease-out; }

/* === ROI calculator: low-ROI re-coloring === */
.calc-hero-stat.is-primary.is-low-roi .calc-stat-num { color: var(--ember-l); }

/* === ROI calculator: savings chart === */
.calc-chart-wrap {
  margin-top: 28px;
  margin-bottom: 28px;
  padding: 22px 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.calc-chart-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 14px;
}
.calc-chart-bar {
  display: flex;
  height: 38px;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(245,246,247,0.05);
  margin-bottom: 16px;
}
.calc-chart-seg {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.95);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  transition: width 250ms var(--ease), opacity 200ms;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  border-right: 1px solid rgba(10,15,26,0.4);
}
.calc-chart-seg:last-child { border-right: none; }
.calc-chart-seg.is-tiny { font-size: 0; }
.calc-chart-seg.is-off { width: 0 !important; padding: 0; }
.calc-chart-legend {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}
.calc-chart-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-2);
  transition: opacity 200ms;
}
.calc-chart-legend-item.is-off { opacity: 0.35; text-decoration: line-through; }
.calc-chart-swatch {
  width: 14px; height: 14px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* === ROI calculator: email export === */
.calc-export {
  margin-top: 18px;
  padding: 18px 22px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.calc-export-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 12px;
}
.calc-export-form { display: flex; gap: 8px; flex-wrap: wrap; }
.calc-export-form input[type=email] {
  flex: 1;
  min-width: 200px;
  background: rgba(245,246,247,0.04);
  border: 1px solid var(--border-2);
  border-radius: 3px;
  color: var(--fg);
  font-family: var(--f-body);
  font-size: 14px;
  padding: 10px 14px;
}
.calc-export-form input[type=email]:focus {
  border-color: var(--cobalt);
  background: rgba(30,95,232,0.06);
  outline: none;
}
.calc-export-form button {
  background: var(--cobalt);
  color: #fff;
  border: 1px solid var(--cobalt);
  border-radius: 3px;
  padding: 10px 18px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
.calc-export-form button:hover { background: var(--cobalt-h); }
.calc-export-print {
  background: transparent;
  border: 1px solid var(--border-2);
  color: var(--fg-2);
  border-radius: 3px;
  padding: 10px 18px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
.calc-export-print:hover { color: var(--fg); border-color: var(--fg-3); }
.calc-export-msg {
  font-size: 12px;
  color: var(--ice);
  margin-top: 10px;
  display: none;
}
.calc-export-msg.is-visible { display: block; }
.calc-export-note { font-size: 11px; color: var(--fg-3); margin-top: 8px; }

/* === Price strip + Guarantee strip === */
.value-strip {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.value-strip-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(91,168,255,0.12);
  border: 1px solid var(--ice);
  color: var(--ice);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.value-strip-text { flex: 1; min-width: 200px; }
.value-strip-headline {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--fg);
  line-height: 1.2;
}
.value-strip-headline strong { color: var(--ice); }
.value-strip-sub {
  font-size: 13px;
  color: var(--fg-2);
  margin-top: 4px;
}
.value-strip.is-guarantee .value-strip-icon { background: rgba(109,206,158,0.12); border-color: #6DCE9E; color: #6DCE9E; }

/* === Mobile sticky CTA bar === */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(10,15,26,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-2);
  padding: 10px 12px env(safe-area-inset-bottom);
  display: none;
}
.mobile-cta-bar-inner {
  display: flex;
  gap: 8px;
  max-width: 600px;
  margin: 0 auto;
}
.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
  border-radius: 4px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
}
.mobile-cta-bar a.btn-primary { background: var(--cobalt); color: #fff; border-color: var(--cobalt); }
.mobile-cta-bar a.btn-ghost { background: transparent; color: var(--fg); border-color: var(--border-2); }
@media (max-width: 768px) {
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 72px; }
}
@media print { .mobile-cta-bar { display: none !important; } }

/* === ROI calculator email prompt modal === */
.calc-prompt {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 360px;
  background: var(--bg-2);
  border: 1px solid var(--cobalt);
  border-radius: var(--radius);
  padding: 18px 22px;
  z-index: 55;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 320ms var(--ease), opacity 280ms;
  pointer-events: none;
}
.calc-prompt.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.calc-prompt-close {
  position: absolute;
  top: 8px; right: 10px;
  background: transparent;
  border: none;
  color: var(--fg-3);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
}
.calc-prompt-close:hover { color: var(--fg); }
.calc-prompt-headline {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ice);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.calc-prompt p { font-size: 13px; line-height: 1.45; color: var(--fg-2); margin: 0 0 12px; }
.calc-prompt .btn { padding: 8px 16px; font-size: 11px; }
@media (max-width: 768px) {
  .calc-prompt { left: 16px; right: 16px; bottom: 80px; max-width: none; }
}

/* === ROI calculator: print stylesheet === */
@media print {
  nav, .calc-sticky-strip, .nav-hamburger, .mobile-menu, .footer, .final-cta,
  .calc-inputs, .industry-hero-cta, .calc-export, .breadcrumb, .calc-presets-wrap { display: none !important; }
  body { background: #fff !important; color: #0a0f1a !important; }
  .calc-output { position: static !important; }
  .calc-grid { grid-template-columns: 1fr !important; }
  .calc-hero-stat { background: #fafafa !important; border-color: #ddd !important; }
  .calc-hero-stat.is-primary { background: #e8f0ff !important; }
  .calc-stat-num, .calc-amount, .calc-label-text { color: #0a0f1a !important; }
  .calc-chart-wrap, .calc-breakdown { background: #fafafa !important; border-color: #ddd !important; }
  .industry-hero { background: #fff !important; }
  h1, h2, h3, .calc-headline-quote, .calc-headline-line, .calc-breakdown-title, .calc-chart-title, .calc-stat-label { color: #0a0f1a !important; }
}

/* Schedule / Calendly */
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.schedule-points { position: sticky; top: 100px; }
.calendly-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .schedule-grid { grid-template-columns: 1fr; gap: 36px; }
  .schedule-points { position: static; }
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.cta-left .eyebrow { margin-bottom: 18px; }
.cta-left h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-2);
  margin-bottom: 40px;
}
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
  border: 1px solid var(--border);
}
.benefits-list li {
  padding: 18px 24px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-2);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: baseline;
}
.benefits-list li:last-child { border-bottom: none; }
.benefit-label {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ice);
  white-space: nowrap;
  min-width: 60px;
  padding-top: 2px;
}
.cta-footnote {
  font-size: 14px;
  color: var(--fg-3);
}

/* Form */
.lead-form {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.lead-form h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(245,246,247,0.04);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  color: var(--fg);
  font-family: var(--f-body);
  font-size: 15px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 150ms, background 150ms;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cobalt);
  background: rgba(30,95,232,0.06);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--fg-3); }
.form-group select option { background: #1A2332; color: var(--fg); }
.form-note {
  font-size: 12px;
  color: var(--fg-3);
  text-align: center;
  margin-top: -4px;
}
.form-success {
  background: var(--bg-2);
  border: 1px solid rgba(91,168,255,0.3);
  padding: 64px 44px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(91,168,255,0.12);
  border: 1px solid var(--ice);
  color: var(--ice);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success h3 { font-size: 28px; }
.form-success p { color: var(--fg-2); font-size: 16px; }

/* ── FOOTER ── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 80px 0 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo span {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg);
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg-3);
  line-height: 1.6;
}
.footer-col-title {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--fg-3);
  transition: color 150ms;
}
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--fg-3);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--fg-3); transition: color 150ms; }
.footer-legal a:hover { color: var(--fg); }

/* Footer newsletter signup */
.newsletter {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  max-width: 360px;
}
.newsletter input[type=email] {
  flex: 1;
  background: rgba(245,246,247,0.04);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  color: var(--fg);
  font-family: var(--f-body);
  font-size: 14px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 150ms, background 150ms;
}
.newsletter input[type=email]:focus {
  border-color: var(--cobalt);
  background: rgba(30,95,232,0.06);
}
.newsletter input[type=email]::placeholder { color: var(--fg-3); }
.newsletter button {
  background: var(--cobalt);
  color: #fff;
  border: 1px solid var(--cobalt);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms;
}
.newsletter button:hover { background: var(--cobalt-h); }
.newsletter-note {
  font-size: 11px;
  color: var(--fg-3);
  margin-top: 10px;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.step:nth-child(2).reveal { transition-delay: 0.10s; }
.step:nth-child(3).reveal { transition-delay: 0.20s; }
.roi-stat:nth-child(2).reveal { transition-delay: 0.10s; }
.roi-stat:nth-child(3).reveal { transition-delay: 0.20s; }
.team-member:nth-child(2).reveal { transition-delay: 0.10s; }
.industry-tile:nth-child(2).reveal { transition-delay: 0.05s; }
.industry-tile:nth-child(3).reveal { transition-delay: 0.10s; }
.industry-tile:nth-child(4).reveal { transition-delay: 0.15s; }
.industry-tile:nth-child(5).reveal { transition-delay: 0.20s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .roi-grid { grid-template-columns: 1fr; gap: 56px; }
  .cta-grid { grid-template-columns: 1fr; gap: 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-showcase { grid-template-columns: 1fr; }
  .product-specs-wrap { border-left: none; border-top: 1px solid var(--border); }
}

@media (max-width: 1024px) {
  .comparison-grid { grid-template-columns: 1fr 1fr; }
  .comparison-item:nth-child(2) { border-right: none; }
  .comparison-item:nth-child(1), .comparison-item:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 768px) {
  h1 { font-size: clamp(56px, 12vw, 96px); }
  h2 { font-size: clamp(34px, 8vw, 56px); }
  .section { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }

  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  .comparison-item:last-child { border-bottom: none; }

  #nav { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding-bottom: 60px; padding-top: 100px; }
  .hero-sub { font-size: 17px; }
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stat { padding: 20px 24px; }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(3) { border-right: 1px solid var(--border); }
  .hero-stat:nth-child(4) { border-right: none; }
  .hero-stat-number { font-size: 28px; }

  .steps-grid { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }

  .industries-grid { grid-template-columns: 1fr; }
  .industry-tile:first-child { grid-column: span 1; min-height: 320px; }

  .team-grid { grid-template-columns: 1fr; gap: 24px; }
  .final-cta { padding: 64px 0; }
  .final-cta-inner { flex-direction: column; align-items: flex-start; gap: 28px; }

  .lead-form { padding: 32px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .video-modal-content { inset: 20px; }
  .video-modal-close { top: -44px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-cta { flex-direction: column; }
}

/* ============================================================
   INDUSTRY / SEO PAGES
   ============================================================ */
.breadcrumb {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.10em;
  color: var(--fg-3);
  padding: 96px 0 0;
}
.breadcrumb a {
  color: var(--fg-3);
  transition: color 150ms;
}
.breadcrumb a:hover { color: var(--fg); }
.breadcrumb-sep { margin: 0 10px; color: var(--fg-3); }
.breadcrumb-current { color: var(--fg); }

.industry-hero {
  position: relative;
  padding: 56px 0 88px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.industry-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.30;
  filter: saturate(0.7) contrast(1.1);
  z-index: 0;
}
.industry-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,15,26,0.5) 0%, rgba(10,15,26,0.95) 100%);
}
.industry-hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}
.industry-hero h1 {
  font-size: clamp(40px, 5vw, 76px);
  line-height: 0.98;
  margin-top: 18px;
}
.industry-hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 640px;
  margin-top: 24px;
}
.industry-hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.author-byline {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--fg-3);
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  max-width: 640px;
}
.author-byline strong { color: var(--ice); font-weight: 500; }
.author-byline a { color: var(--ice); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 32px 28px;
  text-decoration: none;
  color: inherit;
  transition: border-color 200ms, transform 200ms var(--ease);
}
.blog-card:hover { border-color: var(--border-2); transform: translateY(-2px); }
.blog-card-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  color: var(--fg-3);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.blog-card-meta strong { color: var(--ice); font-weight: 500; }
.blog-card h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.05;
  margin-bottom: 14px;
}
.blog-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-2);
  flex: 1;
}
.blog-card-cta {
  margin-top: 18px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ice);
}
.blog-article {
  max-width: 760px;
  margin: 0 auto;
  padding-top: 32px;
  padding-bottom: 32px;
}
.blog-article h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin-top: 48px;
  margin-bottom: 16px;
}
.blog-article h3 {
  font-size: clamp(18px, 2vw, 22px);
  margin-top: 32px;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.blog-article p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg);
  margin-bottom: 16px;
}
.blog-article p + p { margin-top: 0; }
.blog-article ul, .blog-article ol {
  margin: 0 0 24px 24px;
  padding: 0;
  color: var(--fg);
  font-size: 16px;
  line-height: 1.65;
}
.blog-article ul li, .blog-article ol li {
  margin-bottom: 10px;
  list-style: disc outside;
}
.blog-article ol li { list-style: decimal outside; }
.blog-article ul li::marker, .blog-article ol li::marker { color: var(--ice); }
.blog-article strong { color: var(--fg); font-weight: 600; }
.blog-article a { color: var(--ice); text-decoration: underline; text-underline-offset: 3px; }
.blog-article a:hover { color: var(--fg); }
.blog-article-meta {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.10em;
  color: var(--fg-3);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.blog-article-meta strong { color: var(--ice); font-weight: 500; }
.blog-article-meta a { color: var(--ice); }

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; gap: 18px; }
  .blog-card { padding: 24px 22px; }
}

/* Pain grid */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
}
.pain-item {
  background: var(--bg-2);
  padding: 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pain-item:nth-child(2n) { border-right: none; }
.pain-item:nth-last-child(-n+2) { border-bottom: none; }
.pain-stat {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--ember-l);
  text-transform: uppercase;
}
.pain-headline {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg);
  margin-top: 4px;
}
.pain-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-2);
}

/* Solution split */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.solution-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
}
.solution-list li {
  padding: 18px 24px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-2);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: baseline;
}
.solution-list li:last-child { border-bottom: none; }
.solution-list .check {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ice);
  white-space: nowrap;
  min-width: 50px;
  padding-top: 2px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  padding: 22px 28px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--fg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  transition: background 150ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--f-mono);
  font-size: 22px;
  font-weight: 400;
  color: var(--fg-3);
  transition: transform 200ms, color 200ms;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--ice); }
.faq-item summary:hover { background: var(--bg-3); }
.faq-item-body {
  padding: 0 28px 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-2);
  max-width: 780px;
}

@media (max-width: 768px) {
  .pain-grid { grid-template-columns: 1fr; }
  .pain-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  .pain-item:last-child { border-bottom: none; }
  .solution-grid { grid-template-columns: 1fr; gap: 32px; }
  .industry-hero { padding: 32px 0 56px; }
  .breadcrumb { padding-top: 80px; }
}

/* ============================================================
   V2 — PREMIUM POLISH + MOBILE FIX  (2026-05-18)
   ============================================================ */

/* --- Smoother base type rendering --- */
body { text-rendering: optimizeLegibility; -moz-osx-font-smoothing: grayscale; }
h1, h2, h3 { letter-spacing: 0.005em; }

/* --- Button micro-interaction (arrow translate, subtle lift) --- */
.btn { position: relative; transition: background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease), box-shadow 200ms var(--ease); }
.btn-primary { box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 8px 22px -10px rgba(30,95,232,0.55); }
.btn-primary:hover { box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, 0 14px 32px -10px rgba(30,95,232,0.7); transform: translateY(-1px); }
.btn-ghost:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--ice); outline-offset: 3px; }

/* --- Animated underline for inline cobalt links --- */
.link-cobalt { background-image: linear-gradient(currentColor, currentColor); background-size: 0% 1px; background-repeat: no-repeat; background-position: 0 100%; text-decoration: none; transition: background-size 280ms var(--ease), color 180ms; padding-bottom: 2px; }
.link-cobalt:hover { background-size: 100% 1px; color: var(--fg); }

/* --- Premium image treatment: shared duotone overlay --- */
.industry-tile, .blog-hero-img-wrap, .post-hero-img-wrap { position: relative; }
.industry-tile::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 70% at 30% 20%, rgba(30,95,232,0.18), transparent 70%); mix-blend-mode: screen; pointer-events: none; z-index: 1; }
.industry-tile .industry-content { position: relative; z-index: 2; }
.industry-tile { transition: transform 350ms var(--ease), box-shadow 350ms var(--ease); }
.industry-tile:hover { transform: translateY(-2px); box-shadow: 0 24px 60px -28px rgba(0,0,0,0.55); }

/* --- Trust strip (homepage social proof) --- */
.trust-strip { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; }
.trust-strip-grid { display: grid; grid-template-columns: 1.2fr 2fr; gap: 32px; align-items: center; }
.trust-strip-label { font-family: var(--f-display); font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3); }
.trust-strip-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border: 1px solid var(--border); border-radius: 999px; background: rgba(245,246,247,0.02); font-family: var(--f-body); font-size: 12px; color: var(--fg-2); letter-spacing: 0.02em; }
.trust-pill strong { color: var(--fg); font-weight: 600; }
.trust-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ice); display: inline-block; }
.trust-pill.ember .dot { background: var(--ember-l); }

/* --- Blog featured images --- */
.blog-card { overflow: hidden; padding: 0 !important; display: flex; flex-direction: column; }
.blog-card-img-wrap { aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-3); position: relative; }
.blog-card-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,15,26,0) 40%, rgba(10,15,26,0.45) 100%), linear-gradient(120deg, rgba(30,95,232,0.18), rgba(255,138,61,0.08)); mix-blend-mode: multiply; opacity: 0.55; pointer-events: none; }
.blog-card-img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) contrast(1.05); transition: transform 600ms var(--ease), filter 400ms; }
.blog-card:hover .blog-card-img { transform: scale(1.04); filter: saturate(0.95) contrast(1.08); }
.blog-card-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.blog-card-body .blog-card-cta { margin-top: auto; padding-top: 14px; }

/* --- Post hero image (inside articles) --- */
.post-hero-img-wrap { aspect-ratio: 21 / 9; border-radius: var(--radius); overflow: hidden; margin: 24px 0 40px; border: 1px solid var(--border); background: var(--bg-3); }
.post-hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) contrast(1.05); }

/* --- Section padding rhythm: tighter on smaller screens --- */
@media (max-width: 1024px) {
  .section { padding: 96px 0; }
  .container { padding: 0 28px; }
  .hero-stat { padding: 22px 24px; }
  .hero-stat-number { font-size: 30px; }
}

/* === MOBILE (≤768px): comprehensive cleanup === */
@media (max-width: 768px) {
  /* Layout rhythm */
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }
  h1 { font-size: clamp(36px, 9vw, 56px) !important; }
  h2 { font-size: clamp(26px, 6.5vw, 36px) !important; }
  h3 { font-size: clamp(19px, 5vw, 24px) !important; }
  body { font-size: 16px; }

  /* Nav */
  #nav { padding: 12px 20px; gap: 12px; }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo img { height: 34px; width: 34px; }

  /* Hero */
  .hero { min-height: auto; }
  .hero-content { padding-top: 120px; padding-bottom: 56px; }
  .hero-content h1 { text-shadow: 0 2px 24px rgba(0,0,0,0.5); }
  .hero-sub { font-size: 17px; margin-top: 18px; }
  .hero-cta { margin-top: 28px; gap: 10px; }
  .hero-cta .btn { flex: 1 1 100%; justify-content: center; }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { padding: 18px 18px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .hero-stat:nth-child(2n) { border-right: none; }
  .hero-stat:nth-last-child(-n+2) { border-bottom: none; }
  .hero-stat-number { font-size: 26px; }
  .hero-stat-unit { font-size: 16px; }
  .hero-stat-label { font-size: 11px; }

  /* Buttons full-width on mobile in major CTAs */
  .btn-lg { padding: 16px 22px; font-size: 14px; }
  .final-cta-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .final-cta-actions .btn { width: 100%; justify-content: center; }

  /* Steps grid → single column */
  .steps-grid { grid-template-columns: 1fr; }
  .step { padding: 32px 24px; border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }

  /* Industries grid */
  .industries-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .industry-tile { min-height: 200px; }

  /* Product showcase, ROI grid, comparison grid -> single col */
  .product-showcase, .roi-grid, .comparison-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .spec-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Team */
  .team-grid { grid-template-columns: 1fr !important; gap: 20px; }
  .team-info { padding: 22px 22px 26px; }

  /* Final CTA */
  .final-cta-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .final-cta { padding: 56px 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr !important; gap: 36px; }

  /* Trust strip */
  .trust-strip-grid { grid-template-columns: 1fr; gap: 14px; }
  .trust-pill { font-size: 11px; padding: 7px 12px; }

  /* Blog cards */
  .blog-card-body { padding: 20px 20px 22px; }
  .blog-card h2 { font-size: clamp(20px, 5.2vw, 26px) !important; }

  /* Tap targets */
  .nav-hamburger { padding: 10px; }
  .mobile-menu a { font-size: 28px; }
  .mobile-cta-bar a { padding: 14px 12px; font-size: 12px; }

  /* Final CTA tighter */
  .final-cta h2 { font-size: clamp(24px, 6vw, 32px); }

  /* Section dividers / strip */
  .divider-strip { height: 180px; }
}

/* Tiny phones */
@media (max-width: 380px) {
  .hero-stats-grid { grid-template-columns: 1fr; }
  .hero-stat { border-right: none !important; }
  .hero-stat:last-child { border-bottom: none; }
  .spec-grid { grid-template-columns: 1fr !important; }
}

/* Lock body scroll when mobile menu open */
body.menu-open { overflow: hidden; }

/* Premium focus rings everywhere */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--ice);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Subtle grain texture on hero & dividers (no extra HTTP) */
.hero::after, .divider-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.18'/></svg>");
  opacity: 0.16;
  mix-blend-mode: overlay;
  z-index: 1;
}
.divider-strip::before { z-index: 2; }
.hero-content, .hero-stats { z-index: 3; }

/* ============================================================
   V3 — STORY BEAT + PRODUCT BEAT (homepage hierarchy)
   ============================================================ */

/* Quiet typographic moment between hero and how-it-works */
.story-beat {
  padding: 140px 0 140px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.story-beat .eyebrow {
  margin-bottom: 36px;
  display: block;
}
.story-line {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: 0.005em;
  color: var(--fg);
  text-transform: none;
  margin: 0 0 14px;
  max-width: 980px;
}
.story-line .text-muted { color: var(--fg-3); }
.story-line-lead {
  margin-top: 28px;
  color: var(--fg);
}
@media (max-width: 768px) {
  .story-beat { padding: 80px 0 80px; }
  .story-line { font-size: clamp(24px, 7vw, 36px); }
}

/* Product beat: single quiet image moment, lots of white space */
.product-beat { padding-top: 96px; padding-bottom: 96px; background: var(--bg); }
.product-beat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.product-beat-img-wrap {
  aspect-ratio: 1 / 1;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
}
.product-beat-img { max-width: 88%; max-height: 88%; object-fit: contain; filter: drop-shadow(0 24px 60px rgba(0,0,0,0.45)); }
.product-beat-copy h2 { margin-top: 14px; }
.product-beat-sub {
  font-size: 20px;
  line-height: 1.5;
  color: var(--fg-2);
  margin: 22px 0 32px;
  max-width: 440px;
}
@media (max-width: 1024px) {
  .product-beat-grid { gap: 48px; }
}
@media (max-width: 768px) {
  .product-beat { padding-top: 56px; padding-bottom: 56px; }
  .product-beat-grid { grid-template-columns: 1fr; gap: 28px; }
  .product-beat-img-wrap { aspect-ratio: 4 / 3; padding: 24px; }
  .product-beat-sub { font-size: 17px; margin: 16px 0 24px; }
}

/* About-link section (replaces team on homepage) */
.about-link { padding-top: 96px; padding-bottom: 96px; }
@media (max-width: 768px) { .about-link { padding: 56px 0; } }

/* Slightly more breathing room on alt-bg sections */
.section-alt { padding-top: 112px; padding-bottom: 112px; }
@media (max-width: 768px) { .section-alt { padding: 64px 0; } }

/* ============================================================
   PROOF BEAT — real prototype + real crew, sits above story
   ============================================================ */
.proof-beat {
  padding: 88px 0 96px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.proof-beat .eyebrow { margin-bottom: 28px; display: block; }
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 32px;
  align-items: stretch;
}
.proof-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 350ms var(--ease), box-shadow 350ms var(--ease), border-color 350ms;
}
.proof-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px -28px rgba(0,0,0,0.55);
  border-color: var(--border-2);
}
.proof-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-3);
  position: relative;
}
.proof-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 700ms var(--ease), filter 400ms;
}
.proof-card:hover .proof-img-wrap img {
  transform: scale(1.03);
  filter: saturate(1) contrast(1.06);
}
.proof-cap {
  padding: 22px 26px 26px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-2);
  border-top: 1px solid var(--border);
}
.proof-cap-tag {
  display: block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 8px;
}

@media (max-width: 1024px) {
  .proof-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 768px) {
  .proof-beat { padding: 56px 0 64px; }
  .proof-grid { grid-template-columns: 1fr; gap: 16px; }
  .proof-img-wrap { aspect-ratio: 16 / 10; }
  .proof-cap { padding: 18px 20px 22px; font-size: 14px; }
}

/* Inline full-bleed-ish photo between sections (industry pages) */
.inline-photo {
  margin: 0;
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.inline-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  display: block;
}
@media (max-width: 768px) {
  .inline-photo { aspect-ratio: 16 / 10; }
}
