/* ─── HERO: SPLIT SCREEN ─── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 42vh;
  padding-top: 64px;
}
.hero-left {
  background: var(--primary);
  padding: 64px 60px;
  display: flex; flex-direction: column; justify-content: flex-start;
  position: relative; overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 0% 100%, rgba(60,224,0,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-left::after {
  content: 'VS';
  position: absolute; right: -28px; top: 50%; transform: translateY(-50%);
  font-size: 72px; font-weight: 900; color: rgba(255,255,255,0.04);
  letter-spacing: -0.04em; line-height: 1; pointer-events: none;
  z-index: 0;
}
.hero-right {
  background: var(--soft);
  padding: 64px 60px;
  display: flex; flex-direction: column; justify-content: flex-start;
  position: relative; overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 100% 0%, rgba(60,224,0,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px; margin-bottom: 20px;
  width: fit-content;
}
.hero-eyebrow-op {
  background: rgba(60,224,0,0.15); border: 1px solid rgba(60,224,0,0.3);
  color: #7ebe2a;
}
.hero-eyebrow-op::before { content: ''; width: 6px; height: 6px; background: var(--highlight); border-radius: 50%; }
.hero-eyebrow-them {
  background: rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.12);
  color: #888;
}
.hero-eyebrow-them::before { content: ''; width: 6px; height: 6px; background: #bbb; border-radius: 50%; }
.hero-left h1 {
  font-size: clamp(32px, 4vw, 58px); font-weight: 900; line-height: 1.08;
  letter-spacing: -0.03em; color: #fff; margin-bottom: 16px; position: relative; z-index: 1;
}
.hero-left h1 em { font-style: normal; color: var(--highlight); }
.hero-left p {
  font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.55);
  position: relative; z-index: 1;
}
.hero-right h2 {
  font-size: clamp(26px, 3vw, 42px); font-weight: 800; line-height: 1.12;
  letter-spacing: -0.025em; color: var(--primary); margin-bottom: 14px;
}
.hero-right p {
  font-size: 15px; line-height: 1.7; color: #666;
}
.hero-them-list {
  list-style: none;
  margin-top: 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.hero-them-list li {
  font-size: 13px; font-weight: 500; color: #bbb;
  display: flex; align-items: center; gap: 10px;
  text-decoration: line-through;
  text-decoration-color: rgba(200,40,40,0.6);
  text-decoration-thickness: 1.5px;
}
.hero-them-list li::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: #ccc;
  flex-shrink: 0;
}
.vs-badge {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  width: 56px; height: 56px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18), 0 0 0 3px rgba(60,224,0,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; color: var(--primary);
  letter-spacing: 0.02em;
}

/* ─── TRUST STRIP ─── */
.trust {
  background: #fff;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 14px 24px;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 24px;
}
.trust span { font-size: 13px; font-weight: 500; color: #555; display: flex; align-items: center; gap: 7px; }
.trust svg { width: 16px; height: 16px; fill: var(--highlight); }

/* ─── INTRO KICKER ─── */
.intro-kicker {
  max-width: 780px; margin: 0 auto;
  padding: 72px 24px 48px;
  text-align: center;
}
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(60,224,0,0.1); border: 1px solid rgba(60,224,0,0.22);
  color: var(--primary); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 22px;
}
.section-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--highlight); border-radius: 50%; }
.intro-kicker h2 {
  font-size: clamp(28px, 3.5vw, 46px); font-weight: 800; line-height: 1.12;
  letter-spacing: -0.025em; color: var(--primary); margin-bottom: 16px;
}
.intro-kicker h2 em { font-style: normal; color: var(--highlight); }
.intro-kicker p {
  font-size: 17px; line-height: 1.72; color: #555; max-width: 620px; margin: 0 auto;
}

/* ─── BATTLE CARDS ─── */
.battle-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px 100px;
}
.battle-number-label {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 0;
  padding: 48px 0 20px;
}
.battle-number-label:first-child { padding-top: 0; }
.battle-num {
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(0,0,0,0.18); user-select: none;
}
.battle-num-line {
  flex: 1; height: 1px; background: var(--divider);
}
.battle-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-auto-rows: 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(0,0,0,0.07), 0 0 0 1px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.battle-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.11), 0 0 0 1px rgba(60,224,0,0.18);
  transform: translateY(-2px);
}
.card-op {
  background: var(--primary);
  padding: 40px 44px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  height: 100%;
}
.card-op::before {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(60,224,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.card-them {
  background: #fff;
  padding: 40px 44px;
  border-left: 1px solid var(--divider);
  display: flex; flex-direction: column;
  height: 100%;
}
.card-content {
  flex: 1;
}
.card-divider {
  background: #f0f0f0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 0 2px;
  position: relative;
  min-width: 48px;
}
.card-divider::before {
  content: '';
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 1px; background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.1) 20%, rgba(0,0,0,0.1) 80%, transparent);
  transform: translateX(-50%);
}
.vs-pill {
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: 50px;
  padding: 6px 10px;
  font-size: 10px; font-weight: 800; color: #aaa;
  letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  position: relative; z-index: 1;
}
.card-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 10px;
}
.label-op { color: var(--highlight); }
.label-them { color: #bbb; }
.card-op .card-label { color: rgba(60,224,0,0.7); }
.card-heading {
  font-size: clamp(18px, 2vw, 22px); font-weight: 700; line-height: 1.2;
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.card-op .card-heading { color: #fff; }
.card-them .card-heading { color: var(--primary); }
.card-op p { font-size: 15px; line-height: 1.72; color: rgba(255,255,255,0.6); }
.card-them p { font-size: 15px; line-height: 1.72; color: #666; }
.card-op p strong { color: rgba(255,255,255,0.85); font-weight: 600; }
.card-them p strong { color: var(--primary); font-weight: 600; }
.win-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(60,224,0,0.15); border: 1px solid rgba(60,224,0,0.25);
  color: #2baa00; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px; margin-top: 20px; align-self: flex-start;
}
.win-badge::before { content: '✓'; font-size: 11px; }
.card-them .warn-note {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(220,50,50,0.07); border: 1px solid rgba(220,50,50,0.15);
  color: #c03030; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px; margin-top: 20px; align-self: flex-start;
}

/* ─── VIDEO CTA STRIP ─── */
.video-strip {
  background: var(--soft);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 40px 24px;
  text-align: center;
}
.video-strip p { font-size: 15px; color: #666; margin-bottom: 18px; }
.btn-video {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: #fff;
  font-size: 15px; font-weight: 600;
  padding: 14px 30px; border-radius: 50px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
}
.btn-video:hover { background: #000; box-shadow: 0 6px 20px rgba(0,0,0,0.22); }
.play-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--highlight);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.play-icon svg { width: 12px; height: 12px; fill: #0a0a0b; margin-left: 2px; }

/* ─── SUMMARY SCOREBOARD ─── */
.scoreboard-wrap {
  background: var(--primary);
  padding: 80px 24px 100px;
  position: relative; overflow: hidden;
}
.scoreboard-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(60,224,0,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.scoreboard-inner {
  max-width: 900px; margin: 0 auto;
  position: relative; z-index: 1;
}
.scoreboard-inner .section-eyebrow {
  background: rgba(60,224,0,0.12); border-color: rgba(60,224,0,0.25);
  color: rgba(60,224,0,0.8);
}
.scoreboard-inner h2 {
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; line-height: 1.1;
  letter-spacing: -0.025em; color: #fff; margin-bottom: 12px;
}
.scoreboard-inner h2 em { font-style: normal; color: var(--highlight); }
.scoreboard-inner > p {
  font-size: 16px; color: rgba(255,255,255,0.5); margin-bottom: 48px; max-width: 560px;
}
.score-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.score-col-head {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding-bottom: 16px;
}
.score-col-head-op { color: var(--highlight); }
.score-col-head-them { color: #555; }
.score-row-op, .score-row-them {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 18px; border-radius: 10px;
  font-size: 14px; line-height: 1.5;
  margin: 4px 4px 4px 0;
}
.score-row-them {
  margin: 4px 0 4px 4px;
}
.score-row-op {
  background: rgba(60,224,0,0.08);
  border: 1px solid rgba(60,224,0,0.15);
  color: rgba(255,255,255,0.85);
}
.score-row-them {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.35);
}
.check-op {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--highlight); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.check-op svg { width: 10px; height: 10px; fill: #0a0a0b; }
.cross-them {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(255,255,255,0.08); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px; font-size: 11px; color: #666;
}

/* ─── CTA ─── */
.demo-section {
  background: var(--soft);
  text-align: center;
  padding: 100px 24px;
  position: relative; overflow: hidden;
}
.demo-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(60,224,0,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.demo-section .section-eyebrow {
  margin: 0 auto 20px;
}
.demo-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px); font-weight: 800;
  color: var(--primary); letter-spacing: -0.025em; margin-bottom: 16px;
}
.demo-section p {
  font-size: 17px; color: #666; margin-bottom: 36px;
  max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.65;
}
.demo-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.btn-highlight {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff; font-weight: 700; font-size: 15px;
  padding: 15px 32px; border-radius: 50px; text-decoration: none;
  transition: background var(--transition), box-shadow var(--transition);
}
.btn-highlight:hover { background: #000; box-shadow: 0 6px 24px rgba(0,0,0,0.22); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--divider); color: var(--primary); font-weight: 600; font-size: 15px;
  padding: 13px 28px; border-radius: 50px; text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
}
.btn-secondary:hover { border-color: #999; background: rgba(0,0,0,0.03); }

.battle-wrap,.scoreboard-wrap,.demo-section{
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  will-change: auto;
}
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #111; border-radius: 16px;
  max-width: 860px; width: 100%;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  overflow: hidden; position: relative;
}
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px 0;
}
.modal-header span { font-size: 13px; color: #666; font-weight: 500; }
.modal-close {
  background: rgba(255,255,255,0.08); border: none; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; line-height: 1; transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.15); }
.modal-body { padding: 16px 22px 22px; }
.modal-body video { width: 100%; border-radius: 8px; display: block; }
@media (max-width: 742px) {

  .hero-split {
    grid-template-columns: 1fr;
  }
  .hero-left {
    padding: 80px 28px 56px;
  }
  .hero-right {
    padding: 48px 28px 72px;
  }
  .hero-left::after { display: none; }
  .vs-badge { display: none; }
  .battle-card {
    grid-template-columns: 1fr;
  }
  .card-divider { display: none; }
  .card-them { border-left: none; border-top: 1px solid var(--divider); }
  .score-grid { grid-template-columns: 1fr; }
  /* Column heads make no sense once stacked; each row self-labels instead */
  .score-col-head-op, .score-col-head-them { display: none; }
  .score-row-them { margin: 4px 0; }
  /* Per-row side labels: a full-width first line above the icon + text */
  .score-row-op, .score-row-them { flex-wrap: wrap; }
  .score-row-op::before, .score-row-them::before {
    flex-basis: 100%;
    font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; line-height: 1; margin-bottom: 2px;
  }
  .score-row-op::before  { content: "OwnersPath"; color: var(--highlight); }
  .score-row-them::before { content: "The Competition"; color: #8a8a8a; }
}
@media (max-width: 860px) {
  .hero-left, .hero-right { padding: 72px 32px 60px; }
  .card-op, .card-them { padding: 32px 28px; }
}
