:root {
  --black: #0A0A0A;
  --graphite: #141414;
  --cream: #EDE9E0;
  --white: #F5F3EE;
  --border: #D8D4CB;
  --mid: #7A7670;
  --muted: #B0ADA6;
  --electric: #C8FF00;
  --copper: #D4724A;
  --ice: #5A8FA8;
  --surface: #F0EDE5;
  --font-d: 'Syne', sans-serif;
  --font-b: 'DM Mono', monospace;
  --font-e: 'Instrument Serif', serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--black);
  font-family: var(--font-b);
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===================== NAV ===================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(237,233,224,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 28px; height: 28px;
  background: var(--black);
  position: relative;
  flex-shrink: 0;
}
.logo-mark::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 9px; height: 9px;
  background: var(--cream);
}

.logo-text {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  color: var(--mid);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--black); }

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.15s;
}
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--black); }

.btn-primary {
  background: var(--black);
  color: var(--electric);
}
.btn-primary:hover { background: #222; }

.btn-electric {
  background: var(--electric);
  color: var(--black);
}
.btn-electric:hover { background: #AADD00; }

.btn-copper {
  background: var(--copper);
  color: var(--white);
}
.btn-copper:hover { background: #C06040; }

.btn-lg {
  padding: 14px 32px;
  font-size: 11px;
}

/* ===================== HERO ===================== */
.hero {
  padding-top: 64px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--cream);
  padding: 80px 48px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-right {
  background: var(--black);
  padding: 80px 80px 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Subtle grid bg on dark side */
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--mid);
}

.hero-eyebrow.light {
  color: #444;
}
.hero-eyebrow.light::before { background: #444; }

.hero-headline {
  font-family: var(--font-d);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 24px;
}

.hero-headline em {
  font-family: var(--font-e);
  font-style: italic;
  font-weight: 400;
}

.hero-headline.light { color: var(--white); }
.hero-headline.light em { color: var(--electric); }
.hero-headline.dark { color: var(--black); }
.hero-headline.dark em { color: var(--copper); }

.hero-sub {
  font-size: 13px;
  line-height: 1.75;
  max-width: 380px;
  margin-bottom: 40px;
}
.hero-sub.dark { color: var(--mid); }
.hero-sub.light { color: #555; }

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid;
}
.hero-left .hero-stats { border-color: var(--border); }
.hero-right .hero-stats { border-color: #1F1F1F; }

.h-stat-num {
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-left .h-stat-num { color: var(--black); }
.hero-right .h-stat-num { color: var(--white); }

.h-stat-num span { color: var(--electric); }
.hero-left .h-stat-num span { color: var(--copper); }

.h-stat-label {
  font-size: 11px;
  line-height: 1.5;
}
.hero-left .h-stat-label { color: var(--mid); }
.hero-right .h-stat-label { color: #444; }

/* Floating cards on hero right */
.hero-float-card {
  position: absolute;
  background: var(--graphite);
  border: 1px solid #1F1F1F;
  padding: 14px 18px;
  z-index: 2;
}

.hero-float-card.card-1 {
  top: 80px; right: 40px;
  width: 220px;
}
.hero-float-card.card-2 {
  bottom: 120px; right: 60px;
  width: 200px;
}

.float-card-label {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 6px;
}

.float-card-val {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--electric);
  line-height: 1;
  margin-bottom: 2px;
}

.float-card-sub {
  font-size: 10px;
  color: #555;
  line-height: 1.5;
}

.live-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--electric);
  animation: pulse 1.5s ease-in-out infinite;
  margin-right: 5px;
}
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.3} }

/* Hero divider handle */
.hero-divider {
  position: absolute;
  top: 64px; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--border);
  z-index: 10;
  transform: translateX(-50%);
}

/* ===================== TICKER ===================== */
.ticker-bar {
  background: var(--black);
  border-top: 1px solid #1A1A1A;
  border-bottom: 1px solid #1A1A1A;
  padding: 12px 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #333;
}
.ticker-item span { color: var(--electric); }
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: #2A2A2A; }

/* ===================== SPLIT DRAG SECTION ===================== */

/* Top: single centred panel */
.split-top {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 80px 72px;
  text-align: center;
}

.split-top-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.split-top-eyebrow::before,
.split-top-eyebrow::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--border);
  display: block;
}

.split-top-headline {
  font-family: var(--font-d);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.92;
  color: var(--black);
  margin-bottom: 20px;
}
.split-top-headline em {
  font-family: var(--font-e);
  font-style: italic;
  font-weight: 400;
  color: var(--copper);
}

.split-top-sub {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

/* Bottom: draggable reveal window */
/* ===== SPLIT DRAG WINDOW ===== */
.split-window {
  position: relative;
  height: 580px;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
}

/* Both panels are full-width, stacked on top of each other.
   clip-path is the ONLY thing that controls visibility. */
.split-panel-left,
.split-panel-right {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 10%;
}

.split-panel-left {
  background: var(--surface);
  clip-path: inset(0 50% 0 0);
}
.split-panel-right {
  background: var(--black);
  clip-path: inset(0 0 0 50%);
}
.split-panel-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Inner content: left side uses left 40% of page, right side uses right 40% */
.sp-inner {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.split-panel-left .sp-inner {
  margin-left: 0;
}
.split-panel-right .sp-inner {
  margin-left: 50%; /* pushes content into right half */
}

/* Drag handle */
.split-drag-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--electric);
  transform: translateX(-50%);
  z-index: 20;
  cursor: col-resize;
}
.split-drag-knob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: var(--electric);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
  box-shadow: 0 0 0 8px rgba(200,255,0,0.14);
  cursor: col-resize;
}

/* Drag hint */
.split-hint {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  background: var(--electric);
  color: var(--black);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  white-space: nowrap;
  z-index: 21;
  pointer-events: none;
  animation: hint-bounce 2s ease-in-out infinite;
}
@keyframes hint-bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-5px); }
}

/* Identical spacing for both sides — alignment is guaranteed */
.sp-eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.split-panel-left .sp-eyebrow { color: var(--copper); }
.split-panel-left .sp-eyebrow::before { content: ''; width: 16px; height: 2px; background: var(--copper); }
.split-panel-right .sp-eyebrow { color: var(--electric); }
.split-panel-right .sp-eyebrow::before { content: ''; width: 16px; height: 2px; background: var(--electric); }

.sp-headline {
  font-family: var(--font-d);
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 40px;
  flex-shrink: 0;
}
.split-panel-left .sp-headline { color: var(--black); }
.split-panel-right .sp-headline { color: var(--white); }
.sp-headline em { font-family: var(--font-e); font-style: italic; font-weight: 400; }
.split-panel-left .sp-headline em { color: var(--copper); }
.split-panel-right .sp-headline em { color: var(--electric); }

.sp-steps {
  display: flex;
  width: 100%;
  margin-bottom: 40px;
  flex-shrink: 0;
}
.sp-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.sp-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 19px;
  left: calc(50% + 22px);
  right: calc(-50% + 22px);
  height: 1px;
}
.split-panel-left .sp-step:not(:last-child)::after { background: var(--border); }
.split-panel-right .sp-step:not(:last-child)::after { background: #2A2A2A; }

.sp-bubble {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative; z-index: 1;
  flex-shrink: 0;
}
.split-panel-left .sp-bubble { background: var(--black); color: var(--electric); }
.split-panel-right .sp-bubble { background: #1A1A1A; color: var(--electric); border: 1px solid #2A2A2A; }

.sp-step-name {
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.split-panel-left .sp-step-name { color: var(--black); }
.split-panel-right .sp-step-name { color: var(--white); }

.sp-step-note { font-size: 10px; line-height: 1.55; max-width: 110px; }
.split-panel-left .sp-step-note { color: var(--mid); }
.split-panel-right .sp-step-note { color: #555; }

/* ===================== SECTION WRAPPER ===================== */
.section {
  padding: 100px 80px;
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--mid);
}

.section-headline {
  font-family: var(--font-d);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 16px;
}

.section-headline em {
  font-family: var(--font-e);
  font-style: italic;
  font-weight: 400;
  color: var(--copper);
}

.section-sub {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 56px;
}

/* ===================== HOW IT WORKS ===================== */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.how-card {
  background: var(--cream);
  padding: 48px 40px;
  position: relative;
}
.how-card:nth-child(odd) { background: var(--surface); }

.how-num {
  font-family: var(--font-d);
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}

.how-title {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.how-body {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.75;
  max-width: 340px;
}

.how-tag {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border);
  color: var(--mid);
}
.how-tag.agency { border-color: rgba(212,114,74,0.4); color: var(--copper); }
.how-tag.saas { border-color: rgba(200,255,0,0.3); background: rgba(200,255,0,0.06); color: #6A8A00; }

/* ===================== FEATURES BENTO ===================== */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.bento-card.span-2 { grid-column: span 2; }
.bento-card.dark {
  background: var(--black);
  border-color: #1A1A1A;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
}
.bento-card.dark::before {
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 1;
}

.bento-icon {
  font-size: 24px;
  margin-bottom: 16px;
}

.bento-title {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.bento-card.dark .bento-title { color: var(--white); }

.bento-body {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.7;
  max-width: 320px;
}
.bento-card.dark .bento-body { color: #555; }

.bento-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.bento-badge.agency {
  background: rgba(212,114,74,0.12);
  color: var(--copper);
  border: 1px solid rgba(212,114,74,0.3);
}
.bento-badge.saas {
  background: rgba(200,255,0,0.08);
  color: #6A8A00;
  border: 1px solid rgba(200,255,0,0.2);
}

/* Mock UI inside bento */
.bento-mock {
  margin-top: 20px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mock-pill {
  padding: 5px 12px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #2A2A2A;
  color: #444;
  border-radius: 2px;
}
.mock-pill.active {
  border-color: var(--electric);
  color: var(--electric);
  background: rgba(200,255,0,0.06);
}

.bento-stat {
  margin-top: 20px;
}
.bento-stat-num {
  font-family: var(--font-d);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--electric);
  line-height: 1;
}
.bento-stat-label {
  font-size: 11px;
  color: #555;
  margin-top: 4px;
}

/* ===================== PRICING ===================== */
.pricing-section {
  background: var(--black);
  padding: 100px 80px;
}

.pricing-section .section-label { color: #444; }
.pricing-section .section-label::before { background: #444; }
.pricing-section .section-headline { color: var(--white); }
.pricing-section .section-headline em { color: var(--electric); }
.pricing-section .section-sub { color: #555; }

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.toggle-track {
  width: 44px; height: 24px;
  background: #1F1F1F;
  border: 1px solid #2A2A2A;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
}
.toggle-track.active { background: var(--electric); border-color: var(--electric); }

.toggle-knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  background: var(--black);
  border-radius: 50%;
  transition: transform 0.2s;
}
.toggle-track.active .toggle-knob { transform: translateX(20px); }

.toggle-label { color: #555; }
.toggle-label.active { color: var(--white); }
.toggle-save {
  background: var(--electric);
  color: var(--black);
  font-size: 9px;
  letter-spacing: 0.12em;
  padding: 3px 8px;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #1A1A1A;
  border: 1px solid #1A1A1A;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--graphite);
  padding: 40px 32px;
  position: relative;
}

.pricing-card.featured {
  background: #0F0F0F;
  border: 1px solid #2A2A2A;
  margin: -1px;
  z-index: 1;
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--electric);
  color: var(--black);
  font-size: 9px;
  letter-spacing: 0.15em;
  font-weight: 700;
  padding: 4px 12px;
}

.pricing-type {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 16px;
}

.pricing-name {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 8px;
}

.pricing-price {
  margin-bottom: 8px;
}

.pricing-amount {
  font-family: var(--font-d);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
}
.pricing-card.featured .pricing-amount { color: var(--electric); }

.pricing-period {
  font-size: 12px;
  color: #444;
  margin-left: 4px;
}

.pricing-desc {
  font-size: 12px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #1F1F1F;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: #555;
  line-height: 1.5;
}

.pricing-feature::before {
  content: '✓';
  color: var(--electric);
  font-size: 10px;
  margin-top: 2px;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-feature { color: #888; }

/* Agency pricing card */
.agency-pricing {
  background: var(--graphite);
  border: 1px solid #2A2A2A;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.agency-pricing-left .pricing-amount { color: var(--copper); }
.agency-pricing-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid rgba(212,114,74,0.3);
  color: var(--copper);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ===================== SOCIAL PROOF ===================== */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.proof-card {
  background: var(--surface);
  padding: 40px;
}
.proof-card:nth-child(2) { background: var(--cream); }

.proof-quote {
  font-family: var(--font-e);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--black);
  margin-bottom: 24px;
}

.proof-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.proof-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 800;
}

.proof-name {
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

.proof-role {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}

.proof-type {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 3px 10px;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--mid);
  border-radius: 2px;
}
.proof-type.agency { border-color: rgba(212,114,74,0.4); color: var(--copper); }
.proof-type.saas { border-color: rgba(200,255,0,0.3); color: #6A8A00; }

/* ===================== CTA SECTION ===================== */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.cta-half {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-half.agency { background: var(--cream); border-top: 1px solid var(--border); }
.cta-half.saas { background: var(--black); }

.cta-eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-half.agency .cta-eyebrow { color: var(--copper); }
.cta-half.agency .cta-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--copper); }
.cta-half.saas .cta-eyebrow { color: var(--electric); }
.cta-half.saas .cta-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--electric); }

.cta-headline {
  font-family: var(--font-d);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.cta-half.agency .cta-headline { color: var(--black); }
.cta-half.saas .cta-headline { color: var(--white); }

.cta-sub {
  font-size: 12px;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 340px;
}
.cta-half.agency .cta-sub { color: var(--mid); }
.cta-half.saas .cta-sub { color: #555; }

.cta-form {
  display: flex;
  gap: 0;
  max-width: 380px;
}

.cta-input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-right: none;
  font-family: var(--font-b);
  font-size: 12px;
  padding: 12px 16px;
  color: var(--black);
  outline: none;
}
.cta-input::placeholder { color: var(--muted); }
.cta-input:focus { border-color: var(--black); }

.cta-half.saas .cta-input {
  background: #141414;
  border-color: #2A2A2A;
  border-right: none;
  color: var(--white);
}
.cta-half.saas .cta-input::placeholder { color: #444; }
.cta-half.saas .cta-input:focus { border-color: var(--electric); }

.form-btn {
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 500;
  transition: all 0.15s;
}
.cta-half.agency .form-btn { background: var(--black); color: var(--electric); }
.cta-half.agency .form-btn:hover { background: #222; }
.cta-half.saas .form-btn { background: var(--electric); color: var(--black); }
.cta-half.saas .form-btn:hover { background: #AADD00; }

.cta-trust {
  margin-top: 20px;
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cta-half.agency .cta-trust { color: var(--muted); }
.cta-half.saas .cta-trust { color: #444; }

/* ===================== FOOTER ===================== */
footer {
  background: var(--black);
  border-top: 1px solid #1A1A1A;
  padding: 64px 80px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #1A1A1A;
  margin-bottom: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-mark {
  width: 24px; height: 24px;
  background: var(--electric);
  position: relative;
}
.footer-logo-mark::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 8px; height: 8px;
  background: var(--black);
}

.footer-logo-text {
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
}

.footer-desc {
  font-size: 12px;
  color: #444;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 12px;
  color: #444;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #333;
}

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

.footer-badge {
  padding: 4px 10px;
  border: 1px solid #1F1F1F;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #333;
}

/* ===================== SCROLL ANIMATIONS ===================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===================== MISC ===================== */
.divider {
  height: 1px;
  background: var(--border);
}

.dark-divider {
  height: 1px;
  background: #1A1A1A;
}

.text-copper { color: var(--copper); }
.text-electric { color: var(--electric); }

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { min-height: 60vh; }
  .split-section { height: 560px; }
  .split-outer { padding: 64px 24px 0; }
  .section { padding: 64px 24px; }
  .bento { grid-template-columns: 1fr; }
  .bento-card.span-2 { grid-column: span 1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .cta-split { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}