:root {
  --green: #1dbb75;
  --green-light: #4ADE80;
  --green-dark: #16A34A;
  --bg-deep: #0d1e1a;
  --bg-mid: #102420;
  --surface: #152e26;
  --surface-elevated: #1c3830;
  --white: #FFFFFF;
  --text-secondary: rgba(255,255,255,0.65);
  --text-tertiary: rgba(255,255,255,0.40);
  --border: rgba(255,255,255,0.10);
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 80px; }
body {
  font-family: var(--font); background: var(--bg-deep); color: var(--white);
  line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; border-radius: 4px; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,30,26,0.85); backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo { height: 46px; display: flex; align-items: center; }
.nav-logo svg { height: 46px; width: auto; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--text-secondary); text-decoration: none; font-size: 14px; font-weight: 500;
  transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); font-weight: 600; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--white); border: none; border-radius: 12px;
  padding: 12px 24px; font-size: 14px; font-weight: 700; font-family: var(--font);
  cursor: pointer; text-decoration: none; transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(29,187,117,0.3);
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(29,187,117,0.4); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 12px 24px; font-size: 14px; font-weight: 600;
  font-family: var(--font); cursor: pointer; text-decoration: none; transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); }
.btn-sm { padding: 8px 18px; font-size: 13px; border-radius: 10px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu-btn svg { width: 24px; height: 24px; stroke: var(--white); }

/* ── HERO ── */
.hero {
  padding: 160px 0 0; text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(29,187,117,0.08) 0%, transparent 60%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(29,187,117,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(29,187,117,0.1); border: 1px solid rgba(29,187,117,0.2);
  border-radius: 100px; padding: 6px 16px 6px 10px; margin-bottom: 32px;
  font-size: 13px; font-weight: 600; color: var(--green-light);
}
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 {
  font-size: clamp(40px, 6vw, 72px); font-weight: 900; line-height: 1.08;
  letter-spacing: -0.03em; margin-bottom: 24px; position: relative;
  text-align: center;
}
.hero h1 .green { color: var(--green); }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px); color: var(--text-secondary); max-width: 640px;
  margin: 0 auto 40px; line-height: 1.7; font-weight: 400;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-visual { margin-top: 60px; position: relative; display: flex; justify-content: center; }
.hero-phone-img { width: 350px; max-width: 85vw; height: auto; display: block; filter: drop-shadow(0 32px 64px rgba(0,0,0,0.5)); -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%); mask-image: linear-gradient(to bottom, black 60%, transparent 100%); }

/* ── SECTION HELPERS ── */
.section-eyebrow {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--green);
  font-weight: 700; margin-bottom: 16px; text-align: center;
}
.section-title {
  font-size: clamp(32px, 4vw, 48px); font-weight: 900; text-align: center;
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 20px;
}
.section-sub { font-size: 18px; color: var(--text-secondary); text-align: center; max-width: 600px; margin: 0 auto 60px; }
.std-section { padding: 120px 0; }
.std-section + .std-section { padding-top: 0; }

/* ── FEATURE GRID ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 32px 28px; transition: all 0.3s;
}
.feature-card:hover { border-color: rgba(29,187,117,0.3); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px;
}
.fi-green { background: rgba(29,187,117,0.12); }
.fi-blue { background: rgba(59,130,246,0.12); }
.fi-purple { background: rgba(168,85,247,0.12); }
.fi-orange { background: rgba(249,115,22,0.12); }
.fi-cyan { background: rgba(6,182,212,0.12); }
.fi-pink { background: rgba(236,72,153,0.12); }
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ── DEEP DIVE ── */
.dd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.dd-grid.reversed .dd-text { order: 2; }
.dd-grid.reversed .dd-visual { order: 1; }
.dd-eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--green); font-weight: 700; margin-bottom: 12px; }
.dd-title { font-size: clamp(28px, 3vw, 40px); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 20px; }
.dd-desc { font-size: 16px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 28px; }
.dd-checklist { list-style: none; }
.dd-checklist li {
  display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; font-size: 15px;
  color: var(--text-secondary);
}
.dd-checklist li svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.dd-visual-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 20px;
  padding: 28px; display: flex; flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.dd-visual-card h4 { font-size: 14px; font-weight: 700; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px; }

/* ── TRUST BAR ── */
.trust { padding: 60px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.trust-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-tertiary); font-weight: 600; margin-bottom: 40px; }
.stats-row { display: flex; justify-content: center; gap: 80px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-number { font-size: 48px; font-weight: 900; letter-spacing: -0.03em; color: var(--white); line-height: 1; }
.stat-number .green { color: var(--green); }
.stat-label { font-size: 14px; color: var(--text-tertiary); margin-top: 8px; font-weight: 500; }

/* ── LEADERBOARD UI ── */
.leaderboard-row {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px;
  border-radius: 10px; margin-bottom: 8px;
}
.leaderboard-row:nth-child(2) { background: rgba(29,187,117,0.08); }
.lb-pos { font-size: 16px; font-weight: 800; width: 28px; color: var(--green); }
.lb-name { flex: 1; font-weight: 600; font-size: 14px; }
.lb-club { font-size: 12px; color: var(--text-tertiary); }
.lb-score { font-size: 14px; font-weight: 800; }
.lb-score.under { color: #60A5FA; }
.lb-score.over { color: #F87171; }
.lb-score.even { color: var(--green-light); }
.lb-thru { font-size: 12px; color: var(--text-tertiary); width: 40px; text-align: right; }

/* ── DASHBOARD STATS ── */
.dash-row { display: flex; gap: 16px; margin-bottom: 16px; }
.dash-stat-card {
  flex: 1; background: var(--bg-mid); border: 1px solid var(--border); border-radius: 12px; padding: 20px;
}
.dash-stat-label { font-size: 11px; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 6px; }
.dash-stat-value { font-size: 28px; font-weight: 800; }
.dash-stat-value.green { color: var(--green); }
.dash-bar { height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; margin-top: 10px; overflow: hidden; }
.dash-bar-fill { height: 100%; border-radius: 3px; }

/* ── AD/SPONSOR UI ── */
.ad-preview { background: var(--bg-mid); border: 1px solid var(--border); border-radius: 12px; padding: 20px; margin-bottom: 12px; }
.ad-label { font-size: 11px; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 10px; }
.ad-slot-row { display: flex; gap: 8px; margin-bottom: 8px; }
.ad-slot-pill {
  flex: 1; height: 36px; border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 11px; font-weight: 600;
}
.revenue-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; }
.revenue-bar-track { flex: 1; height: 8px; background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; }
.revenue-bar-fill { height: 100%; border-radius: 4px; }
.revenue-label { font-size: 12px; color: var(--text-secondary); width: 80px; }
.revenue-pct { font-size: 13px; font-weight: 700; width: 40px; text-align: right; }

/* ── PRICING ── */
.pricing { padding: 120px 0; background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(29,187,117,0.05) 0%, transparent 60%); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 800px; margin: 0 auto; }
.pricing-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 20px;
  padding: 40px 32px; position: relative; transition: all 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.pricing-card.featured { border-color: var(--green); }
.pricing-card.featured::before {
  content: 'MOST POPULAR'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: var(--white); padding: 4px 16px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
}
.pricing-tier { font-size: 14px; font-weight: 700; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.pricing-price { font-size: 48px; font-weight: 900; margin-bottom: 4px; line-height: 1; }
.pricing-price span { font-size: 16px; font-weight: 500; color: var(--text-tertiary); }
.pricing-desc { font-size: 14px; color: var(--text-secondary); margin-bottom: 32px; }
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li {
  display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px;
  color: var(--text-secondary);
}
.pricing-features li svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }
.pricing-btn-wrap { text-align: center; }
.pricing-btn-wrap .btn-primary, .pricing-btn-wrap .btn-secondary { width: 100%; justify-content: center; }

/* ── PRICING COMPARISON TABLE ── */
.pricing-compare { max-width: 800px; margin: 40px auto 0; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.pricing-compare-header {
  display: grid; grid-template-columns: 1fr 130px 130px;
  padding: 14px 24px; background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.pricing-compare-header-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-tertiary); }
.pricing-compare-header-plan { font-size: 12px; font-weight: 800; text-align: center; color: var(--text-secondary); }
.pricing-compare-header-plan.premiere { color: var(--green); }
.pricing-compare-row {
  display: grid; grid-template-columns: 1fr 130px 130px;
  padding: 13px 24px; border-bottom: 1px solid var(--border);
  align-items: center; transition: background 0.15s;
}
.pricing-compare-row:last-child { border-bottom: none; }
.pricing-compare-row:hover { background: rgba(255,255,255,0.03); }
.pricing-compare-name { font-size: 14px; color: var(--text-secondary); }
.pricing-compare-cell { display: flex; align-items: center; justify-content: center; }
.compare-check { width: 22px; height: 22px; border-radius: 50%; background: rgba(29,187,117,0.15); display: flex; align-items: center; justify-content: center; }
.compare-check svg { color: var(--green); }
.compare-dash { font-size: 18px; color: var(--text-tertiary); line-height: 1; }

/* ── LEGAL PAGES ── */
.legal-hero { padding: 100px 0 48px; text-align: center; border-bottom: 1px solid var(--border); }
.legal-hero h1 { font-size: clamp(28px, 4vw, 46px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 10px; }
.legal-hero p { font-size: 14px; color: var(--text-tertiary); }
.legal-body { max-width: 760px; margin: 0 auto; padding: 64px 24px 120px; }
.legal-body h2 { font-size: 18px; font-weight: 800; color: var(--text-primary); margin: 40px 0 12px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { font-size: 15px; line-height: 1.75; color: var(--text-secondary); }
.legal-body ul { list-style: none; padding: 0; margin: 0 0 12px; }
.legal-body ul li { padding: 4px 0 4px 20px; position: relative; }
.legal-body ul li::before { content: ""; position: absolute; left: 0; top: 12px; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.legal-body p { margin: 0 0 16px; }
.legal-callout { background: rgba(29,187,117,0.08); border: 1px solid rgba(29,187,117,0.2); border-radius: 10px; padding: 16px 20px; margin-bottom: 32px; font-size: 13px; font-weight: 600; color: var(--text-secondary); line-height: 1.5; }
.legal-contact { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 24px 28px; margin-top: 48px; }
.legal-contact h2 { margin-top: 0; }
.legal-contact p { margin: 0; }
.legal-contact a { color: var(--green); text-decoration: none; }
.legal-contact a:hover { text-decoration: underline; }

/* ── CTA SECTION ── */
.cta-section { padding: 120px 0; text-align: center; background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 100%); }
.cta-section h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 20px; }
.cta-section p { font-size: 18px; color: var(--text-secondary); max-width: 540px; margin: 0 auto 40px; }
.waitlist-form { max-width: 480px; margin: 0 auto 48px; }
.waitlist-row { display: flex; gap: 10px; }
.waitlist-input {
  flex: 1; background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 18px; font-size: 15px; color: var(--white);
  font-family: var(--font); outline: none; transition: border-color 0.2s; min-width: 0;
}
.waitlist-input:focus { border-color: rgba(29,187,117,0.5); }
.waitlist-input::placeholder { color: var(--text-tertiary); }
.waitlist-btn {
  background: var(--green); color: #fff; border: none; border-radius: 12px;
  padding: 14px 24px; font-size: 15px; font-weight: 700; font-family: var(--font);
  cursor: pointer; white-space: nowrap; transition: opacity 0.2s; flex-shrink: 0;
}
.waitlist-btn:hover { opacity: 0.85; }
.waitlist-btn:disabled { opacity: 0.5; cursor: default; }
.waitlist-note { font-size: 12px; color: var(--text-tertiary); margin-top: 10px; text-align: center; }
.waitlist-err { font-size: 13px; color: #F87171; margin-top: 10px; text-align: center; min-height: 20px; }
.waitlist-ok { font-size: 16px; color: var(--green-light); text-align: center; padding: 20px 0 0; font-weight: 600; }
.store-badges { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.store-badge {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  padding: 14px 20px; min-width: 190px; position: relative;
}
.store-badge-text { display: flex; flex-direction: column; text-align: left; }
.store-badge-sub { font-size: 10px; color: var(--text-tertiary); font-weight: 500; letter-spacing: 0.02em; }
.store-badge-name { font-size: 16px; font-weight: 800; color: var(--white); letter-spacing: -0.01em; }
.store-soon {
  position: absolute; top: -9px; right: 14px;
  background: var(--green); color: #fff; font-size: 10px; font-weight: 700;
  padding: 2px 9px; border-radius: 20px; letter-spacing: 0.06em; text-transform: uppercase;
}

/* ── FOOTER ── */
.footer { padding: 60px 0 40px; border-top: 1px solid var(--border); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-logo svg { height: 28px; width: auto; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-tertiary); text-decoration: none; font-size: 13px; font-weight: 500; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 12px; color: var(--text-tertiary); width: 100%; text-align: center; margin-top: 24px; }

/* ── GPS MAP CARD ── */
.gps-card { display: flex; flex-direction: column; gap: 0; }
.gps-hole-bar {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 0 0 16px 0;
}
.gps-hole-label { font-size: 14px; font-weight: 700; color: var(--white); }
.gps-hole-sub { font-size: 12px; color: var(--text-tertiary); margin-top: 3px; }
.gps-yardages { display: flex; gap: 8px; }
.gps-yd {
  text-align: center; background: var(--bg-mid); border: 1px solid var(--border);
  border-radius: 8px; padding: 6px 10px;
}
.gps-yd-val { font-size: 14px; font-weight: 800; color: var(--white); }
.gps-yd-lbl { font-size: 10px; color: var(--text-tertiary); margin-top: 2px; font-weight: 600; letter-spacing: 0.05em; }
.gps-map-area {
  border-radius: 10px; overflow: hidden; background: #071A0D;
  border: 1px solid rgba(29,187,117,0.15);
}
.gps-map-area svg { display: block; width: 100%; height: auto; }
.gps-hail-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0 0 0;
}
.gps-eta { font-size: 12px; color: var(--text-tertiary); line-height: 1.6; }
.gps-eta strong { color: #F97316; display: block; font-size: 13px; }
.gps-hail-btn {
  background: #F97316; color: #fff; border: none; border-radius: 10px;
  padding: 10px 20px; font-size: 13px; font-weight: 700; font-family: var(--font);
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  box-shadow: 0 4px 20px rgba(249,115,22,0.35);
}
.gps-hail-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
@keyframes gps-pulse {
  0%   { r: 14; opacity: 0.5; }
  100% { r: 26; opacity: 0; }
}

/* ── ATTEST CARD ── */
.attest-card {
  background: var(--bg-mid); border: 1px solid var(--border); border-radius: 14px;
  padding: 16px; margin-bottom: 12px;
}
.attest-hole-row {
  display: grid; grid-template-columns: 40px 1fr 40px 60px; align-items: center;
  padding: 10px 12px; border-radius: 10px; margin-bottom: 6px; font-size: 13px;
}
.attest-hole-row:nth-child(odd) { background: rgba(255,255,255,0.02); }
.attest-hole-num { font-weight: 700; color: var(--text-tertiary); }
.attest-hole-par { font-size: 11px; color: var(--text-tertiary); }
.attest-hole-score { font-weight: 800; text-align: center; }
.attest-status { text-align: right; display: flex; align-items: center; justify-content: flex-end; gap: 4px; }
.attest-check { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.attest-check.verified { background: rgba(29,187,117,0.15); }
.attest-check.verified svg { color: var(--green); }
.attest-check.pending { background: rgba(249,115,22,0.12); }
.attest-check.pending svg { color: #F97316; }

/* ── CHAT BUBBLE ── */
.chat-bubbles { padding: 8px 0; }
.chat-msg {
  display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-start;
}
.chat-msg.self { flex-direction: row-reverse; }
.chat-avatar {
  width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.chat-bubble {
  background: var(--bg-mid); border: 1px solid var(--border); border-radius: 14px 14px 14px 4px;
  padding: 10px 14px; max-width: 220px; font-size: 13px; line-height: 1.5;
  color: var(--text-secondary);
}
.chat-msg.self .chat-bubble {
  background: rgba(29,187,117,0.12); border-color: rgba(29,187,117,0.2);
  border-radius: 14px 14px 4px 14px; color: var(--white);
}
.chat-time { font-size: 10px; color: var(--text-tertiary); margin-top: 4px; }
.chat-msg.self .chat-time { text-align: right; }

/* ── GHIN SYNC ── */
.ghin-flow { display: flex; flex-direction: column; gap: 12px; }
.ghin-step {
  display: flex; align-items: center; gap: 14px; background: var(--bg-mid);
  border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px;
}
.ghin-step-num {
  width: 28px; height: 28px; border-radius: 50%; background: rgba(29,187,117,0.12);
  color: var(--green); display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; flex-shrink: 0;
}
.ghin-step-text { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.ghin-step-text strong { color: var(--white); }
.ghin-badge {
  display: inline-flex; align-items: center; gap: 6px; background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2); border-radius: 8px; padding: 6px 12px;
  font-size: 12px; font-weight: 600; color: #60A5FA; margin-top: 8px;
}

/* ── BROADCAST TV ── */
.broadcast-frame {
  background: #000; border-radius: 12px; padding: 8px; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.broadcast-frame::after {
  content: ''; position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 6px; background: #333; border-radius: 3px;
}
.broadcast-screen {
  background: var(--bg-deep); border-radius: 6px; overflow: hidden;
}
.broadcast-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; background: var(--bg-mid); border-bottom: 1px solid var(--border);
}
.broadcast-title { font-size: 14px; font-weight: 800; }
.broadcast-live-dot {
  display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700;
  color: #EF4444;
}
.broadcast-live-dot::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: #EF4444;
  animation: pulse 1.5s infinite;
}
.broadcast-body { padding: 12px 16px; }
.broadcast-row {
  display: grid; grid-template-columns: 32px 1fr 60px 44px; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px;
}
.broadcast-row:last-child { border-bottom: none; }
.broadcast-rank { font-weight: 800; color: var(--green); }
.broadcast-player { font-weight: 600; }
.broadcast-score { font-weight: 800; text-align: center; }
.broadcast-thru { font-size: 11px; color: var(--text-tertiary); text-align: right; }
.broadcast-sponsors {
  display: flex; gap: 6px; padding: 8px 16px; border-top: 1px solid var(--border);
}
.broadcast-sponsor-slot {
  flex: 1; height: 32px; border-radius: 6px; display: flex; align-items: center;
  justify-content: center; font-size: 10px; font-weight: 600;
}
.broadcast-where {
  display: flex; gap: 12px; margin-top: 20px; justify-content: center; flex-wrap: wrap;
}
.broadcast-where-tag {
  display: flex; align-items: center; gap: 6px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 10px; padding: 8px 14px;
  font-size: 12px; font-weight: 600; color: var(--text-secondary);
}
.broadcast-where-tag svg { width: 16px; height: 16px; color: var(--green); }

/* ── ADD-ONS CARD ── */
.addon-stack { display: flex; flex-direction: column; gap: 12px; }
.addon-item {
  display: flex; align-items: center; gap: 14px; background: var(--bg-mid);
  border: 1px solid var(--border); border-radius: 14px; padding: 16px 18px;
  transition: all 0.2s;
}
.addon-item:hover { border-color: rgba(29,187,117,0.25); }
.addon-icon {
  width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.addon-icon svg { width: 22px; height: 22px; }
.addon-info { flex: 1; }
.addon-name { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.addon-desc { font-size: 12px; color: var(--text-tertiary); line-height: 1.5; }
.addon-tag {
  padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 700;
  background: rgba(29,187,117,0.1); color: var(--green); white-space: nowrap;
}

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MOCKUP ── */
.hero-mockup {
  max-width: 1000px; width: 100%; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
}
.mockup-bar {
  display: flex; align-items: center; gap: 8px; padding: 14px 20px;
  background: var(--bg-mid); border-bottom: 1px solid var(--border);
}
.mockup-dot { width: 12px; height: 12px; border-radius: 50%; }
.mockup-dot:nth-child(1) { background: #EF4444; }
.mockup-dot:nth-child(2) { background: #F59E0B; }
.mockup-dot:nth-child(3) { background: #22C55E; }
.mockup-bar-title { flex: 1; text-align: center; font-size: 12px; color: var(--text-tertiary); font-weight: 500; }
.mockup-content { display: grid; grid-template-columns: 220px 1fr; min-height: 420px; }
.mockup-sidebar { background: var(--bg-mid); border-right: 1px solid var(--border); padding: 20px 16px; }
.mockup-sidebar-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border-radius: 8px; font-size: 13px; color: var(--text-secondary); margin-bottom: 4px; font-weight: 500;
}
.mockup-sidebar-item.active { background: rgba(29,187,117,0.12); color: var(--green-light); }
.mockup-sidebar-icon { width: 18px; height: 18px; opacity: 0.6; }
.mockup-sidebar-item.active .mockup-sidebar-icon { opacity: 1; }
.mockup-main { padding: 24px; }
.mockup-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.mockup-header h3 { font-size: 18px; font-weight: 700; }
.mockup-header .tag { background: rgba(29,187,117,0.15); color: var(--green); padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 700; }
.mockup-table { width: 100%; }
.mockup-table-row {
  display: grid; grid-template-columns: 40px 1.5fr 1fr 1fr 80px; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 13px;
}
.mockup-table-row.header { color: var(--text-tertiary); font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; }
.mockup-rank { font-weight: 800; color: var(--green); }
.mockup-player { font-weight: 600; }
.mockup-score-pill { display: inline-flex; padding: 3px 10px; border-radius: 6px; font-weight: 700; font-size: 12px; }
.mockup-score-neg { background: rgba(59,130,246,0.15); color: #60A5FA; }
.mockup-score-pos { background: rgba(239,68,68,0.15); color: #F87171; }
.mockup-score-par { background: rgba(29,187,117,0.15); color: var(--green-light); }
.mockup-thru { color: var(--text-tertiary); font-size: 12px; }

/* ── PHONE MOCKUP ── */
.phone-frame {
  width: 300px; margin: 0 auto; background: #000; border-radius: 40px;
  padding: 12px; box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 0 0 2px rgba(255,255,255,0.08);
  position: relative;
}
.phone-notch { width: 120px; height: 28px; background: #000; border-radius: 0 0 20px 20px; position: absolute; top: 12px; left: 50%; transform: translateX(-50%); z-index: 2; }
.phone-screen { background: var(--bg-deep); border-radius: 30px; overflow: hidden; min-height: 520px; position: relative; }
.phone-status-bar { display: flex; justify-content: space-between; padding: 14px 24px 8px; font-size: 12px; font-weight: 600; color: var(--white); }
.phone-screen-content { padding: 0 16px 20px; }
.phone-screen-title { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.phone-screen-sub { font-size: 12px; color: var(--text-tertiary); margin-bottom: 16px; }
.phone-score-row {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  background: var(--surface); border-radius: 12px; margin-bottom: 8px;
  border: 1px solid var(--border);
}
.phone-score-pos { font-weight: 800; color: var(--green); width: 22px; font-size: 14px; }
.phone-score-name { flex: 1; font-weight: 600; font-size: 13px; }
.phone-score-val { font-weight: 800; font-size: 14px; }
.phone-tab-bar {
  display: flex; justify-content: space-around; padding: 12px 0 8px;
  border-top: 1px solid var(--border); margin-top: 12px;
}
.phone-tab { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 10px; color: var(--text-tertiary); }
.phone-tab.active { color: var(--green); }
.phone-tab svg { width: 20px; height: 20px; }

/* ── MOBILE NAV ── */
.mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: rgba(13,30,26,0.97); backdrop-filter: blur(20px); z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 24px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--white); text-decoration: none; font-size: 20px; font-weight: 600; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .features-grid { grid-template-columns: 1fr; }
  .dd-grid { grid-template-columns: 1fr; gap: 40px; }
  .dd-grid.reversed .dd-text { order: 1; }
  .dd-grid.reversed .dd-visual { order: 2; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .stats-row { gap: 40px; }
  .mockup-content { grid-template-columns: 1fr; }
  .mockup-sidebar { display: none; }
  .hero { padding: 120px 0 60px; }
}
@media (max-width: 600px) {
  .stats-row { flex-direction: column; gap: 32px; }
  .stat-number { font-size: 36px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .dash-row { flex-direction: column; }
  .container { padding: 0 16px; }
}
