@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── TOKENS ── */
:root {
  --bg:           #F9F8F6;
  --surface:      #FFFFFF;
  --orange:       #F6821F;
  --orange-d:     #E07318;
  --orange-light: #FEF3E8;
  --dark:         #1A1A18;
  --text:         #3A3A37;
  --muted:        #78786E;
  --border:       rgba(0,0,0,0.08);
  --border-md:    rgba(0,0,0,0.12);
  --radius:       10px;
  --radius-lg:    18px;
  --radius-xl:    28px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.06);
  --shadow:       0 4px 20px rgba(0,0,0,0.07);
  --shadow-lg:    0 16px 56px rgba(0,0,0,0.10);
  --nav-h:        64px;
  --max:          1200px;
  --font-head:    'Sora', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(249,248,246,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 40px;
  gap: 40px;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo span { color: var(--orange); }
.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--dark); }
.nav-cta {
  margin-left: auto;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 100px;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--orange-d); transform: translateY(-1px); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px;
  margin: 4px 0; transition: .25s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  flex-direction: column;
  padding: 80px 40px 40px;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--dark); }
.mobile-nav-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; cursor: pointer;
  font-size: 28px; color: var(--dark);
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  text-align: center;
  padding: 100px 40px 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(246,130,31,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.04em;
  line-height: 1;
  max-width: 900px;
  margin: 0 auto 24px;
}
.hero-title em { color: var(--orange); font-style: normal; }
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 12px;
  line-height: 1.65;
}
.hero-sub2 {
  font-size: 15px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  transition: background .2s, transform .15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--orange-d); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--dark);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid var(--border-md);
  transition: border-color .2s, transform .15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--dark); transform: translateY(-1px); }
.btn-white {
  background: #fff;
  color: var(--dark);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  transition: transform .15s;
}
.btn-white:hover { transform: translateY(-1px); }

/* Hero Illustration */
.hero-visual {
  margin: 56px auto 0;
  max-width: 880px;
  position: relative;
}
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-card-bar {
  background: #F0EFED;
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hcb-dot { width: 10px; height: 10px; border-radius: 50%; }
.hcb-dot:nth-child(1) { background: #FF5F56; }
.hcb-dot:nth-child(2) { background: #FFBD2E; }
.hcb-dot:nth-child(3) { background: #27C93F; }
.hcb-url {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  color: var(--muted);
  padding: 4px 12px;
  text-align: center;
}
.hero-card-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 300px;
}
.hcb-left {
  padding: 32px;
  background: #F9F9F7;
  border-right: 1px solid var(--border);
}
.hcb-right {
  padding: 32px;
  background: var(--orange);
}
.mock-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.mock-status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.mock-heading {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.mock-heading-white {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.mock-code {
  font-family: 'SFMono-Regular', 'Consolas', monospace;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  background: #EDECE9;
  border-radius: 6px;
  padding: 12px 14px;
}
.mock-code .c-orange { color: var(--orange); }
.mock-code .c-dark   { color: var(--dark); }
.mock-code .c-green  { color: #2DA44E; }
.mock-check {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.mock-check svg { flex-shrink: 0; }
.mock-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}
.mock-metric {
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}
.mock-metric-val { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: #fff; }
.mock-metric-label { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 2px; }

/* ── SECTION WRAPPER ── */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 40px;
}
.section-sm { padding: 64px 40px; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.section-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--muted);
  max-width: 520px;
  margin-top: 16px;
  line-height: 1.65;
}

/* ── COMPARE PANELS (Section 1) ── */
.compare-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-md);
  box-shadow: var(--shadow-lg);
  margin-top: 56px;
}
.compare-panel {
  padding: 40px 36px;
  position: relative;
}
.compare-panel-left { background: #F4F3F0; border-right: 1px solid var(--border-md); }
.compare-panel-right { background: var(--orange); }
.compare-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.compare-tag-gray { background: rgba(0,0,0,0.08); color: var(--muted); }
.compare-tag-white { background: rgba(255,255,255,0.25); color: #fff; }
.compare-tag-dot { width: 6px; height: 6px; border-radius: 50%; }
.problem-dot { background: #E07318; }
.solution-dot { background: #fff; }

.mock-issue-card {
  background: var(--surface);
  border: 1px solid var(--border-md);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 10px;
}
.mic-label { font-size: 11px; font-weight: 700; color: var(--muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .06em; }
.mic-text { font-size: 13px; color: var(--dark); line-height: 1.5; }
.mic-meta { font-size: 11px; color: #E07318; margin-top: 6px; }

.solution-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.solution-check:last-child { border-bottom: none; }
.solution-check-ico {
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── TWO COL ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col-rev { direction: rtl; }
.two-col-rev > * { direction: ltr; }

/* ── WHAT WE BUILD CARDS ── */
.build-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-md);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
}
.build-card {
  background: var(--surface);
  padding: 36px 32px;
  transition: background .2s;
}
.build-card:hover { background: var(--orange-light); }
.build-num {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 16px;
}
.build-icon {
  width: 48px; height: 48px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.build-icon svg { color: var(--orange); }
.build-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.build-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── PROCESS STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
}
.process-step {
  background: var(--surface);
  padding: 32px 24px;
  position: relative;
  transition: background .2s;
}
.process-step:hover { background: var(--orange-light); }
.process-step-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: rgba(0,0,0,0.06);
  line-height: 1;
  margin-bottom: 12px;
}
.process-step-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.process-step-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── DNA GRID ── */
.dna-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 56px;
}
.dna-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dna-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow .2s;
}
.dna-feature:hover { box-shadow: var(--shadow); }
.dna-feature-ico {
  width: 40px; height: 40px;
  background: var(--orange-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.dna-feature-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.dna-feature-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* DNA Visual */
.dna-visual {
  position: sticky;
  top: 80px;
}
.dna-card {
  background: var(--surface);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.dna-card-header {
  background: var(--dark);
  padding: 16px 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.dna-card-header-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.6); }
.dna-card-body { padding: 24px; }
.dna-metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.dna-metric-row:last-child { border-bottom: none; }
.dna-metric-key { color: var(--muted); }
.dna-metric-val { font-weight: 700; color: var(--dark); }
.dna-metric-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 12px;
  overflow: hidden;
}
.dna-metric-fill { height: 100%; background: var(--orange); border-radius: 2px; }

/* ── USE CASES ── */
.use-cases-bg {
  background: var(--dark);
  padding: 96px 40px;
}
.use-cases-wrap {
  max-width: var(--max);
  margin: 0 auto;
}
.use-cases-wrap .section-title { color: #fff; }
.use-cases-wrap .section-label { color: rgba(255,255,255,.4); }
.use-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}
.use-tag {
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  transition: border-color .2s, color .2s, background .2s;
  cursor: default;
}
.use-tag:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(246,130,31,.08);
}

/* ── WHY DIFFERENT ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow .2s, transform .2s;
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.why-card-ico {
  width: 48px; height: 48px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
}
.why-card-title { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.why-card-sub { font-size: 14px; color: var(--orange); font-weight: 600; margin-bottom: 10px; }
.why-card-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── PROOF ── */
.proof-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.proof-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.proof-ico {
  width: 32px; height: 32px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.proof-statement {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.proof-statement em { color: var(--orange); font-style: normal; }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--orange);
  position: relative;
  overflow: hidden;
  padding: 96px 40px;
  text-align: center;
}
.cta-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.cta-glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,255,255,.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-ico {
  position: absolute;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.08);
}
.cta-label { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 20px;
}
.cta-sub { font-size: 16px; color: rgba(255,255,255,.75); max-width: 480px; margin: 0 auto 36px; line-height: 1.65; }

/* ── MARQUEE ── */
.marquee-wrap {
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: 72px;
  padding-top: 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  padding: 20px 0;
  will-change: transform;
}
@keyframes marquee-px {
  0%   { transform: translateX(0); }
  100% { transform: translateX(var(--mq-shift, -50%)); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  padding-right: 56px;
  flex-shrink: 0;
}
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.4); flex-shrink: 0; }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  padding: 72px 40px 40px;
}
.footer-top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.footer-brand span { color: var(--orange); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.6; max-width: 260px; }
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max);
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.3); }

/* ── FULL-WIDTH STRIP ── */
.full-strip { background: var(--bg); overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 0; }
.full-strip-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  padding: 28px 0;
  will-change: transform;
}
@keyframes marquee-slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(var(--mq-shift, -50%)); }
}
.strip-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-head);
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  white-space: nowrap;
  padding-right: 72px;
  flex-shrink: 0;
}
.strip-sep { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--dark);
  padding: 100px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(246,130,31,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .hero-eyebrow { background: rgba(246,130,31,.15); }
.page-hero .hero-title { color: #fff; }
.page-hero .hero-sub { color: rgba(255,255,255,.55); }
.page-hero .hero-sub2 { color: rgba(255,255,255,.4); }

/* ── FEATURE ROWS (studio page) ── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 72px 40px;
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: none; }
.feature-row-rev { direction: rtl; }
.feature-row-rev > * { direction: ltr; }
.feature-label { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.feature-title { font-family: var(--font-head); font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: var(--dark); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px; }
.feature-desc { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.feature-list { display: flex; flex-direction: column; gap: 12px; }
.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.feature-list-ico { color: var(--orange); flex-shrink: 0; margin-top: 2px; }

/* Visual mockups */
.visual-card {
  background: var(--surface);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.visual-card-dark {
  background: var(--dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.visual-header {
  background: #EEECEA;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.vh-dot { width: 9px; height: 9px; border-radius: 50%; }
.visual-body { padding: 24px; }
.visual-body-dark { padding: 20px; }

.code-line { font-family: 'SFMono-Regular', 'Consolas', monospace; font-size: 12px; line-height: 2; }
.cl-comment { color: rgba(255,255,255,.3); }
.cl-key     { color: #79B8FF; }
.cl-str     { color: #85E89D; }
.cl-fn      { color: #B392F0; }
.cl-orange  { color: #FFAB70; }
.cl-gray    { color: rgba(255,255,255,.55); }

.flow-row {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.flow-row:last-child { border-bottom: none; }
.flow-num { font-size: 11px; color: var(--muted); width: 28px; flex-shrink: 0; }
.flow-name { font-size: 13px; font-weight: 500; color: var(--dark); flex: 1; }
.flow-status {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  display: flex; align-items: center; gap: 5px;
}
.fs-done { background: #DCFCE7; color: #16A34A; }
.fs-build { background: #FEF3C7; color: #D97706; }
.fs-queue { background: #F0F0EF; color: var(--muted); }
.fs-dot { width: 5px; height: 5px; border-radius: 50%; }
.fs-done .fs-dot { background: #16A34A; }
.fs-build .fs-dot { background: #D97706; }

/* ── LEGAL ── */
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 40px;
}
.legal-wrap h2 { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--dark); margin: 36px 0 14px; letter-spacing: -0.02em; }
.legal-wrap h2:first-child { margin-top: 0; }
.legal-wrap p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.legal-wrap ul { margin: 14px 0 14px 20px; }
.legal-wrap ul li { font-size: 15px; color: var(--muted); line-height: 1.75; list-style: disc; margin-bottom: 6px; }

/* ── PHOTO STRIP ── */
.photo-strip {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}
.photo-strip:hover img { transform: scale(1.03); }

.photo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 52px 64px;
}
.photo-overlay-left  { background: linear-gradient(to right, rgba(26,26,24,.72) 0%, transparent 60%); }
.photo-overlay-right { background: linear-gradient(to left,  rgba(26,26,24,.72) 0%, transparent 60%); justify-content: flex-end; text-align: right; }
.photo-overlay-center { background: linear-gradient(to top, rgba(26,26,24,.75) 0%, transparent 65%); justify-content: center; text-align: center; }

.photo-quote {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 52px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  max-width: 600px;
}
.photo-quote em { color: var(--orange); font-style: normal; }
.photo-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .photo-strip { height: 320px; }
  .photo-overlay { padding: 32px 28px; }
  .photo-overlay-right { justify-content: flex-start; text-align: left; background: linear-gradient(to right, rgba(26,26,24,.72) 0%, transparent 60%); }
}

/* ── ILLUSTRATION ANIMATIONS ── */

/* Hero card: slow float */
.hero-card {
  animation: illus-float 7s ease-in-out infinite;
  animation-delay: .6s;
}
@keyframes illus-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* Status dot pulse */
.mock-status-dot {
  animation: status-pulse 2.4s ease-in-out infinite;
}
@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(246,130,31,.5); opacity: 1; }
  50%       { box-shadow: 0 0 0 7px rgba(246,130,31,0); opacity: .7; }
}

/* Bar fill on scroll */
@keyframes bar-fill { from { width: 0 !important; } }
.dna-metric-fill {
  animation: bar-fill 1.5s cubic-bezier(.22,1,.36,1) both;
  animation-play-state: paused;
}
.in-view .dna-metric-fill { animation-play-state: running; }

/* DNA card: slow float */
.dna-card {
  animation: illus-float 8s ease-in-out infinite;
  animation-delay: -2s;
  transition: transform 0s; /* let animation own transform */
}

/* Visual card hover */
.visual-card {
  transition: box-shadow .3s ease;
}
.visual-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,.13); }

/* Visual card dark float */
.visual-card-dark {
  animation: illus-float 6.5s ease-in-out infinite;
  animation-delay: -1.2s;
}

/* Flow rows stagger */
.flow-row { animation: fade-slide-in .5s ease both; }
.flow-row:nth-child(1) { animation-delay: .8s; }
.flow-row:nth-child(2) { animation-delay: 1.1s; }
.flow-row:nth-child(3) { animation-delay: 1.4s; }
@keyframes fade-slide-in {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Compare panels slide */
.compare-panel-left  { animation: slide-from-left  .7s cubic-bezier(.22,1,.36,1) both; animation-delay: .3s; }
.compare-panel-right { animation: slide-from-right .7s cubic-bezier(.22,1,.36,1) both; animation-delay: .5s; }
@keyframes slide-from-left  { from { opacity:0; transform: translateX(-24px); } }
@keyframes slide-from-right { from { opacity:0; transform: translateX( 24px); } }

/* Solution checks float */
.solution-check { transition: transform .2s ease; }
.solution-check:hover { transform: translateX(4px); }

/* Process step hover — no transform to keep arrow z-index stable */
.process-step { transition: background .2s; }
.process-step:hover { background: var(--orange-light); }

/* Build card hover */
.build-card { transition: background .2s, transform .2s; }
.build-card:hover { transform: translateY(-2px); }

/* DNA feature hover */
.dna-feature { transition: box-shadow .2s, transform .2s; }
.dna-feature:hover { transform: translateX(5px); box-shadow: var(--shadow); }

/* Why card */
.why-card { transition: box-shadow .25s, transform .25s; }
.why-card:hover { transform: translateY(-4px); box-shadow: 0 14px 44px rgba(0,0,0,.10); }

/* Use tag */
.use-tag { transition: all .2s; }
.use-tag:hover { transform: translateY(-2px); }

/* Proof item */
.proof-item { transition: transform .2s; }
.proof-item:hover { transform: translateX(4px); }

/* CTA icons float */
.cta-ico:nth-child(1) { animation: illus-float 5s ease-in-out infinite; }
.cta-ico:nth-child(2) { animation: illus-float 6s ease-in-out infinite; animation-delay: -1s; }
.cta-ico:nth-child(3) { animation: illus-float 7s ease-in-out infinite; animation-delay: -2s; }
.cta-ico:nth-child(4) { animation: illus-float 5.5s ease-in-out infinite; animation-delay: -0.5s; }

/* Badge float (floating overlay badges in studio) */
@keyframes badge-bob {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: block; margin-left: auto; }
  .nav-cta { display: none; }
  .compare-wrap { grid-template-columns: 1fr; }
  .compare-panel-left { border-right: none; border-bottom: 1px solid var(--border-md); }
  .build-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }

  .dna-grid { grid-template-columns: 1fr; }
  .dna-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .proof-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-card-body { grid-template-columns: 1fr; }
  .hcb-left { border-right: none; border-bottom: 1px solid var(--border); }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row-rev { direction: ltr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .section, .section-sm { padding: 64px 24px; }
  .use-cases-bg { padding: 64px 24px; }
  .cta-section { padding: 72px 24px; }
  .full-strip-inner, .marquee-inner { gap: 24px; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero { padding: 72px 24px 60px; }
}
