/* ============ v2 HERO ============ */
.hero {
  position: relative;
  padding: 160px 0 90px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fairway);
  margin-bottom: 32px;
  font-weight: 500;
}

.live-dot {
  position: relative;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 8px rgba(229, 32, 46, 0.7);
}
.live-dot::before, .live-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--live);
  animation: heartbeat 1.67s var(--ui-curve) infinite;
}
.live-dot::after { animation-delay: 0.18s; }
@keyframes heartbeat {
  0% { transform: scale(0.6); opacity: 0.9; }
  40% { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(48px, 7.4vw, 108px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--fairway);
  text-wrap: balance;
}
.hero h1 .word {
  display: inline-block;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s var(--ui-curve), transform 0.6s var(--ui-curve);
}
.hero h1 .word:nth-of-type(1) { transition-delay: 0.15s; }
.hero h1 em .word { transition-delay: 0.25s; }
.hero h1 .word:nth-of-type(2) { transition-delay: 0.35s; }
.hero h1 .word:nth-of-type(3) { transition-delay: 0.45s; }
html.preanim .hero h1 .word { opacity: 0; transform: translateY(20px); }
html.preanim .hero-sub { transition-delay: 0.55s; }
html.preanim .hero-cta { transition-delay: 0.7s; }
html.preanim .hero-stats { transition-delay: 0.85s; }
html.preanim .phone-stage { transition-delay: 0.3s; }
html.preanim .hero h1 em::after { transition-delay: 1.0s; }

.hero h1 em {
  font-style: italic;
  position: relative;
  display: inline-block;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.03em;
  height: 6px;
  background: var(--green-live);
  border-radius: 4px;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.9s var(--snap);
  opacity: 0.92;
}
html.preanim .hero h1 em::after { transform: scaleX(0); }

.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--fairway-dim);
  max-width: 54ch;
  margin-bottom: 36px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s var(--ui-curve), transform 0.7s var(--ui-curve);
}
html.preanim .hero-sub,
html.preanim .hero-cta,
html.preanim .hero-stats,
html.preanim .phone-stage { opacity: 0; transform: translateY(14px); }

.hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  opacity: 1;
  transition: opacity 0.7s var(--ui-curve), transform 0.7s var(--ui-curve);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  opacity: 1;
  transition: opacity 0.8s var(--ui-curve), transform 0.8s var(--ui-curve);
}
@media (max-width: 600px) { .hero-stats { grid-template-columns: 1fr; } }

.stat-card {
  position: relative;
  padding: 20px 22px 18px;
  background: var(--bone-2);
  border: 1px solid var(--hair);
  border-radius: 6px;
  transition: transform 0.4s var(--ui-curve), border-color 0.4s var(--ui-curve);
}
.stat-card::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid var(--hair);
  border-radius: 3px;
  pointer-events: none;
}
.stat-card:hover {
  transform: translateY(-2px);
  border-color: var(--fairway);
}
.stat-card .num {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--fairway);
  margin-bottom: 4px;
  line-height: 1;
}
.stat-card .lbl {
  font-size: 12.5px;
  color: var(--fairway-dim);
  font-family: var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============ HERO PHONE ============ */
.phone-stage {
  position: relative;
  perspective: 1400px;
  height: 660px;
  opacity: 1;
  transition: opacity 1s var(--ui-curve), transform 1s var(--ui-curve);
}

.phone {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotateY(-9deg) rotateX(5deg) rotateZ(-2deg);
  transform-style: preserve-3d;
  width: 340px;
  height: 700px;
  background: linear-gradient(140deg, #0E3D2A 0%, #061f15 60%, #04130c 100%);
  border-radius: 48px;
  padding: 14px;
  box-shadow:
    0 1px 0 rgba(124, 232, 176, 0.18) inset,
    0 0 0 1.5px rgba(14, 61, 42, 0.65),
    0 0 60px rgba(47, 182, 124, 0.12),
    0 50px 100px rgba(14, 61, 42, 0.28);
  transition: transform 1s var(--ui-curve);
  will-change: transform;
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--bone);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 9px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 26px;
  background: #061f15;
  border-radius: 16px;
  z-index: 5;
}

.phone-content {
  padding: 50px 16px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--fairway-dim);
  margin-bottom: 14px;
  padding: 0 6px;
}
.phone-status .live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--fairway);
  font-weight: 600;
}
.phone-status .live::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 6px var(--live);
  animation: dotPulse 1.4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.phone-title {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--fairway-faint);
  text-transform: uppercase;
  padding: 0 6px;
  margin-bottom: 4px;
}
.phone-course {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: -0.02em;
  padding: 0 6px;
  margin-bottom: 14px;
  color: var(--fairway);
}
.phone-course em { font-style: italic; color: var(--green-live); }

.mini-lb {
  background: var(--bone-2);
  border-radius: 10px;
  border: 1px solid var(--hair);
  overflow: hidden;
  flex: 1;
  position: relative;
}
.mini-lb::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid var(--hair);
  border-radius: 7px;
  pointer-events: none;
}
.mini-lb-head {
  display: grid;
  grid-template-columns: 24px 1fr 50px 36px;
  gap: 6px;
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--fairway-faint);
  border-bottom: 1px solid var(--hair);
  text-transform: uppercase;
}
.mini-lb-row {
  display: grid;
  grid-template-columns: 24px 1fr 50px 36px;
  gap: 6px;
  padding: 11px 14px;
  font-size: 12px;
  align-items: center;
  border-bottom: 1px solid var(--hair);
  position: relative;
  transition: background 0.6s var(--ui-curve);
}
.mini-lb-row:last-child { border-bottom: none; }
.mini-lb-row.you {
  background: rgba(47, 182, 124, 0.14);
}
.mini-lb-row.you::before {
  content: "";
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 3px;
  background: var(--green-live);
  box-shadow: 0 0 8px rgba(47, 182, 124, 0.6);
}
.mini-lb-row .pos {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fairway-faint);
  font-weight: 600;
}
.mini-lb-row .nm {
  font-size: 12.5px;
  color: var(--fairway);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.mini-lb-row .sc {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  font-weight: 600;
  color: var(--fairway);
  text-align: right;
}
.mini-lb-row.you .sc { color: var(--green-live); }
.mini-lb-row .th {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fairway-dim);
  text-align: right;
}

/* hero chyrons */
.chyron {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: var(--bone);
  border: 1px solid var(--fairway);
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fairway);
  font-weight: 600;
  box-shadow: 0 0 0 4px var(--bone), 0 18px 40px rgba(14, 61, 42, 0.18);
  z-index: 10;
  white-space: nowrap;
}
.chyron::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid var(--hair);
  border-radius: 3px;
  pointer-events: none;
}
.chyron .sep {
  width: 1px; height: 12px;
  background: var(--hair-strong);
}
.chyron .live-mini {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 6px var(--live);
  animation: dotPulse 1.2s ease-in-out infinite;
  flex-shrink: 0;
}
.chyron .green { color: var(--green-live); font-weight: 700; }
.chyron-1 { top: 8%; left: -6%; animation: float1 7s ease-in-out infinite; }
.chyron-2 { top: 48%; right: -8%; animation: float2 8s ease-in-out infinite; }
.chyron-3 { bottom: 10%; left: 2%; animation: float3 7.5s ease-in-out infinite; }
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }
@keyframes float3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.chyron-3 .hole-strip {
  display: inline-flex;
  gap: 6px;
  margin-left: 4px;
}
.chyron-3 .hole-strip span {
  display: inline-block;
  min-width: 12px;
  text-align: center;
  color: var(--fairway-faint);
}
.chyron-3 .hole-strip span.played { color: var(--green-live); }

/* hero shot tracer */
.hero-tracer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 6;
}
.hero-tracer svg { width: 100%; height: 100%; overflow: visible; }
.hero-tracer .arc {
  fill: none;
  stroke: var(--green-live);
  stroke-width: 2;
  stroke-dasharray: 4 7;
  stroke-linecap: round;
  stroke-dashoffset: 1200;
  filter: drop-shadow(0 0 6px rgba(47, 182, 124, 0.5));
}
.hero-tracer.play .arc { animation: heroArcDraw 1.6s var(--snap) forwards; }
@keyframes heroArcDraw {
  to { stroke-dashoffset: 0; }
}
.hero-tracer .ball {
  fill: #fff;
  filter: drop-shadow(0 0 6px rgba(124, 232, 176, 0.8));
  opacity: 0;
}
.hero-tracer.play .ball {
  animation: heroBallFly 1.6s var(--snap) forwards;
  offset-path: path("M -40 580 Q 240 -120 720 380");
  offset-rotate: auto;
}
@keyframes heroBallFly {
  0% { opacity: 0; offset-distance: 0%; }
  10% { opacity: 1; }
  100% { opacity: 1; offset-distance: 100%; }
}
.hero-tracer .puff {
  fill: var(--green-glow);
  opacity: 0;
}
.hero-tracer.play .puff {
  animation: puffOut 0.7s var(--ui-curve) 1.6s forwards;
}
@keyframes puffOut {
  0% { opacity: 0; transform: scale(0.5); }
  30% { opacity: 0.9; }
  100% { opacity: 0; transform: scale(2.5); }
}

@media (max-width: 1100px) {
  .phone-stage { height: 580px; }
  .phone { width: 300px; height: 620px; transform: translate(-50%, -50%) rotateY(-6deg); }
  .chyron-1 { left: 0; }
  .chyron-2 { right: 0; }
}
@media (max-width: 700px) {
  .hero { padding: 130px 0 70px; }
  .phone { width: 280px; height: 580px; }
  .phone-stage { height: 540px; }
  .chyron { font-size: 9.5px; padding: 7px 10px; }
}

/* ============ SECTION CHROME ============ */
section.block {
  padding: 130px 0;
  position: relative;
}
@media (max-width: 700px) { section.block { padding: 80px 0; } }
section.block.alt { background: var(--bone-2); }
section.block.alt::before, section.block.alt::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--hair);
}
section.block.alt::before { top: 0; }
section.block.alt::after { bottom: 0; }

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
@media (max-width: 1100px) {
  .section-grid { grid-template-columns: 1fr; gap: 60px; }
  .section-grid.reverse > :first-child { order: 2; }
}

.bullets {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}
.bullets li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--fairway);
}
.bullets li .chk {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 3px;
  display: grid;
  place-items: center;
  background: var(--green-live);
  border-radius: 50%;
  color: var(--fairway);
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 0 0 4px rgba(47, 182, 124, 0.12);
}

.section-head .display { margin-top: 24px; }
.section-head .body-lede { margin-top: 22px; }
