/* ── Reset & Base ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Design tokens — dark (default) ─────────────────────────────────────── */
:root {
  /* Brand */
  --green-400: #7BC344;
  --green-500: #5A9E1F;
  --green-600: #3D6B14;
  --green-900: #1A3A08;
  --purple-400: #818CF8;
  --purple-500: #6366F1;
  --gold:       #F59E0B;

  /* Surface tokens (overridden in light mode) */
  --bg:         #050E02;
  --bg-2:       #0A1A05;
  --bg-3:       #0F2408;
  --bg-card:    rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.06);
  --bg-glass:   rgba(255,255,255,0.06);
  --bg-strip:   rgba(255,255,255,0.05);

  /* Text tokens */
  --text:       rgba(255,255,255,0.90);
  --text-70:    rgba(255,255,255,0.70);
  --text-40:    rgba(255,255,255,0.40);

  /* Border tokens */
  --border:     rgba(255,255,255,0.15);
  --border-sm:  rgba(255,255,255,0.08);
  --border-xs:  rgba(255,255,255,0.05);

  /* Nav scrolled */
  --nav-scrolled-bg: rgba(5,14,2,0.85);
  --nav-mobile-bg:   rgba(5,14,2,0.95);

  /* Misc */
  --phone-bg:   #0F1A0A;
  --phone-screen-bg: #0A1A05;
  --phone-notch-bg:  #050E02;

  /* Legacy aliases (keep card / component rules working) */
  --dark-900:   var(--bg);
  --dark-800:   var(--bg-2);
  --dark-700:   var(--bg-3);
  --dark-600:   #162E0A;
  --white:      var(--text);
  --white-90:   var(--text);
  --white-70:   var(--text-70);
  --white-40:   var(--text-40);
  --white-15:   var(--border);
  --white-08:   var(--border-sm);
  --white-05:   var(--border-xs);

  /* Shape */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  36px;
  --radius-full: 9999px;
  --font: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Design tokens — light ───────────────────────────────────────────────── */
[data-theme="light"] {
  --bg:         #F3F7EE;
  --bg-2:       #E8F1DF;
  --bg-3:       #DCEACD;
  --bg-card:    rgba(255,255,255,0.75);
  --bg-card-hover: rgba(255,255,255,0.95);
  --bg-glass:   rgba(255,255,255,0.65);
  --bg-strip:   rgba(90,158,31,0.06);

  --text:       rgba(10,30,5,0.92);
  --text-70:    rgba(10,30,5,0.60);
  --text-40:    rgba(10,30,5,0.38);

  --border:     rgba(90,158,31,0.22);
  --border-sm:  rgba(90,158,31,0.13);
  --border-xs:  rgba(90,158,31,0.07);

  --nav-scrolled-bg: rgba(243,247,238,0.88);
  --nav-mobile-bg:   rgba(243,247,238,0.97);

  --phone-bg:   #dceacd;
  --phone-screen-bg: #e8f1df;
  --phone-notch-bg:  #c9ddb8;

  /* Legacy re-map */
  --dark-900:   var(--bg);
  --dark-800:   var(--bg-2);
  --dark-700:   var(--bg-3);
  --dark-600:   #DCEACD;
  --white:      var(--text);
  --white-90:   var(--text);
  --white-70:   var(--text-70);
  --white-40:   var(--text-40);
  --white-15:   var(--border);
  --white-08:   var(--border-sm);
  --white-05:   var(--border-xs);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background 0.35s ease, color 0.35s ease;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--green-400), var(--green-500));
  color: #fff;
  box-shadow: 0 8px 24px rgba(90,158,31,0.35);
}
.btn-primary:hover { box-shadow: 0 12px 32px rgba(90,158,31,0.5); }

.btn-secondary {
  background: var(--white-08);
  color: var(--white-90);
  border: 1px solid var(--white-15);
  backdrop-filter: blur(12px);
}
.btn-secondary:hover { background: var(--white-15); }

.btn-purple {
  background: linear-gradient(135deg, var(--purple-400), var(--purple-500));
  box-shadow: 0 8px 24px rgba(99,102,241,0.35);
}
.btn-purple:hover { box-shadow: 0 12px 32px rgba(99,102,241,0.5); }

.btn-green {
  background: linear-gradient(135deg, #34D399, #10B981);
  box-shadow: 0 8px 24px rgba(16,185,129,0.35);
}
.btn-green:hover { box-shadow: 0 12px 32px rgba(16,185,129,0.5); }

.btn-blue {
  background: linear-gradient(135deg, #38BDF8, #0EA5E9);
  box-shadow: 0 8px 24px rgba(14,165,233,0.35);
}
.btn-blue:hover { box-shadow: 0 12px 32px rgba(14,165,233,0.5); }

.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ── Animations ──────────────────────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="700"] { transition-delay: 0.7s; }
[data-delay="900"] { transition-delay: 0.9s; }

/* ── Text utilities ──────────────────────────────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, var(--green-400) 0%, #B8F07A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-purple {
  background: linear-gradient(135deg, var(--purple-400) 0%, #C4B5FD 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-green {
  background: linear-gradient(135deg, #34D399 0%, #6EE7B7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-blue {
  background: linear-gradient(135deg, #38BDF8 0%, #7DD3FC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Section shared ──────────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  display: inline-block;
  color: var(--green-400);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--white-70);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Navigation ──────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: var(--nav-scrolled-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-sm);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-icon { font-size: 24px; }
.nav-logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--white-70);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav .btn { margin-left: 8px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
/* Animate to X when open */
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--nav-mobile-bg);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-sm);
}
.nav-mobile a {
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--white-70);
  border-bottom: 1px solid var(--white-05);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--white); }
.nav-mobile.open { display: flex; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 72px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 600px; height: 600px;
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(90,158,31,0.22) 0%, transparent 70%);
}
.hero-orb-2 {
  width: 500px; height: 500px;
  top: 50px; right: -150px;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
}
.hero-orb-3 {
  width: 400px; height: 400px;
  bottom: -100px; left: 30%;
  background: radial-gradient(circle, rgba(123,195,68,0.10) 0%, transparent 70%);
}

.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-top: 60px;
  padding-bottom: 40px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(90,158,31,0.12);
  border: 1px solid rgba(90,158,31,0.25);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-400);
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green-400);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green-400);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.hero-title {
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--white-70);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 12px;
  color: var(--white-40);
  font-weight: 500;
  margin-top: 2px;
}
.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--white-15);
  flex-shrink: 0;
}

/* Phone mockup — single centered */
.hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 680px;
}
.phone-wrap {
  position: relative;
  bottom: 0;
  animation: phoneFloat 5s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.phone-wrap-back  { display: none; }
.phone-wrap-front { display: none; }
.phone-frame {
  position: relative;
  width: 300px;
  height: 640px;
  background: var(--phone-bg);
  border-radius: 52px;
  border: 2px solid rgba(123,195,68,0.35);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.08),
    0 48px 96px rgba(0,0,0,0.28),
    0 0 60px rgba(90,158,31,0.15),
    inset 0 0 40px rgba(90,158,31,0.05);
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.phone-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 28px;
  background: var(--phone-notch-bg);
  border-radius: 20px;
  z-index: 10;
}
.phone-screen {
  position: absolute;
  inset: 0;
  border-radius: 44px;
  overflow: hidden;
  background: var(--phone-screen-bg);
}
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  /* Maximum image quality on retina / 4K displays */
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}
.phone-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 8px;
  text-align: center;
  padding: 20px;
  color: var(--white-40);
}
.phone-placeholder span { font-size: 48px; }
.phone-placeholder p { font-size: 14px; font-weight: 600; color: var(--white-70); }
.phone-placeholder small { font-size: 11px; }
.phone-glow {
  position: absolute;
  inset: -1px;
  border-radius: 44px;
  background: linear-gradient(180deg, rgba(123,195,68,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.phone-shadow-duo {
  position: absolute;
  bottom: -28px; left: 50%;
  transform: translateX(-50%);
  width: 340px; height: 36px;
  background: rgba(90,158,31,0.2);
  filter: blur(28px);
  border-radius: 50%;
}

/* Floating cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  white-space: nowrap;
  z-index: 3;
}
.float-card-icon { font-size: 22px; }
.float-card-title { font-size: 13px; font-weight: 700; color: var(--white); }
.float-card-sub { font-size: 11px; color: var(--white-40); }
.float-card-1 { top: 60px; right: -50px; animation: float1 4s ease-in-out infinite; }
.float-card-2 { bottom: 180px; left: -60px; animation: float2 4.5s ease-in-out infinite; }
.float-card-3 { bottom: 70px; right: -50px; animation: float3 3.8s ease-in-out infinite; }
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
@keyframes float3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* Scroll hint */
.hero-scroll-hint {
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white-40);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--white-40);
  border-bottom: 2px solid var(--white-40);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(4px)} }

/* ── Trust bar ───────────────────────────────────────────────────────────── */
.trust-bar {
  border-top: 1px solid var(--white-08);
  border-bottom: 1px solid var(--white-08);
  background: var(--white-05);
  padding: 20px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white-40);
  flex-shrink: 0;
}
.trust-items {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.trust-item {
  font-size: 13px;
  font-weight: 600;
  color: var(--white-70);
  background: var(--white-08);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-full);
  padding: 6px 14px;
}

/* ── Features grid ───────────────────────────────────────────────────────── */
.features {
  padding: 100px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.feature-card-large { grid-column: span 2; }
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sm);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}
.feature-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}
.feature-card-large { padding: 40px; }
.feature-card-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: rgba(var(--clr-rgb, 90,158,31), 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  border: 1px solid rgba(var(--clr-rgb, 90,158,31), 0.2);
  background-color: color-mix(in srgb, var(--clr) 12%, transparent);
  border-color: color-mix(in srgb, var(--clr) 25%, transparent);
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-card-large h3 { font-size: 22px; }
.feature-card p {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.65;
}
.feature-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-400);
  transition: gap var(--transition);
}
.feature-link:hover { opacity: 0.8; }

/* ── Spotlight ───────────────────────────────────────────────────────────── */
.spotlight {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(90,158,31,0.04) 50%, transparent);
  pointer-events: none;
}
.spotlight-flip .spotlight-inner { direction: rtl; }
.spotlight-flip .spotlight-inner > * { direction: ltr; }

.spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.spotlight-content .section-sub { max-width: 100%; }
.spotlight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}
.spotlight-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.spotlight-list-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(90,158,31,0.12);
  border: 1px solid rgba(90,158,31,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--green-400);
}
.spotlight-list strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.spotlight-list span {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.55;
}

/* Play Along phones */
.spotlight-visual { position: relative; display: flex; justify-content: center; }
.spotlight-phones {
  position: relative;
  width: 320px;
  height: 420px;
}
.spotlight-phone {
  position: absolute;
  width: 200px;
  border-radius: 28px;
  border: 1.5px solid var(--white-15);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.spotlight-phone-back {
  top: 30px; left: 0;
  transform: rotate(-4deg);
  z-index: 1;
}
.spotlight-phone-front {
  bottom: 0; right: 0;
  transform: rotate(3deg);
  z-index: 2;
  border-color: rgba(123,195,68,0.3);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 30px rgba(90,158,31,0.15);
}
.sp-screen {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-height: 220px;
}
.sp-screen-green { background: linear-gradient(160deg, #162E0A, #0A1A05); }
.sp-screen-dark  { background: linear-gradient(160deg, #1A1A2E, #0D0D1A); }
.sp-header {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white-70);
  align-self: flex-start;
}
.sp-dot { width: 8px; height: 8px; border-radius: 50%; }
.sp-dot-green { background: var(--green-400); box-shadow: 0 0 8px var(--green-400); }
.sp-dot-gold  { background: var(--gold);       box-shadow: 0 0 8px var(--gold); }
.sp-score {
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
}
.sp-score-gold { color: var(--gold); }
.sp-holes { font-size: 12px; color: var(--white-40); font-weight: 500; }
.sp-pill {
  margin-top: 8px;
  background: rgba(123,195,68,0.15);
  border: 1px solid rgba(123,195,68,0.3);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-400);
}
.spotlight-invite-card {
  position: absolute;
  bottom: -20px; left: -30px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  z-index: 5;
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

/* AI section */
.ai-visual { position: relative; }
.ai-card {
  background: linear-gradient(135deg, #1E1A3A, #0F0D2E);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 40px rgba(99,102,241,0.08);
  position: relative;
  z-index: 2;
}
.ai-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.gemini-badge {
  margin-left: auto;
  font-size: 11px;
  font-weight: 500;
  color: var(--white-40);
  letter-spacing: 0.5px;
}
.ai-divider {
  height: 1px;
  background: rgba(99,102,241,0.15);
  margin-bottom: 16px;
}
.ai-headline {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.ai-body {
  font-size: 13px;
  color: var(--white-70);
  line-height: 1.65;
  margin-bottom: 20px;
}
.ai-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.ai-chip {
  border-radius: var(--radius-md);
  padding: 12px;
}
.ai-chip-green { background: rgba(90,158,31,0.1); border: 1px solid rgba(90,158,31,0.2); }
.ai-chip-purple { background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.2); }
.ai-chip-full { background: var(--bg-card); border: 1px solid var(--border-sm); }
.ai-chip-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--white-40);
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}
.ai-chip-value { font-size: 13px; font-weight: 600; color: var(--white-90); line-height: 1.4; }
.ai-calorie {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white-40);
  text-align: center;
  padding-top: 14px;
  border-top: 1px solid var(--white-05);
}
.ai-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
  z-index: 1;
}

/* ── Stats section ───────────────────────────────────────────────────────── */
.stats-section {
  padding: 80px 0;
  border-top: 1px solid var(--white-08);
  border-bottom: 1px solid var(--white-08);
  background: linear-gradient(180deg, rgba(90,158,31,0.03) 0%, transparent 100%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: var(--white-40);
  font-weight: 500;
}
.stat-suffix {
  font-size: 13px;
  color: var(--green-400);
  font-weight: 600;
  margin-top: 2px;
}
.stat-stars {
  font-size: 18px;
  color: var(--gold);
  margin-top: 4px;
  letter-spacing: 2px;
}

/* ── Download ────────────────────────────────────────────────────────────── */
.download {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.download-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.download-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.download-orb-1 {
  width: 600px; height: 600px;
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(90,158,31,0.18) 0%, transparent 70%);
}
.download-orb-2 {
  width: 400px; height: 400px;
  bottom: -150px; right: -100px;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
}
.download-inner { position: relative; z-index: 2; }
.download-badge {
  display: inline-block;
  background: rgba(90,158,31,0.12);
  border: 1px solid rgba(90,158,31,0.25);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-400);
  margin-bottom: 24px;
}
.download-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.download-sub {
  font-size: 18px;
  color: var(--white-70);
  margin-bottom: 48px;
}
.download-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
  min-width: 200px;
}
.store-btn-apple {
  background: var(--bg-glass);
  color: var(--text);
}
.store-btn-google {
  background: var(--bg-glass);
  color: var(--text);
}
.store-btn:hover {
  transform: translateY(-3px);
  border-color: var(--green-500);
  background: var(--bg-card-hover);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}
.store-btn-sub {
  font-size: 11px;
  color: var(--white-40);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 4px;
}
.store-btn-main {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.download-note {
  font-size: 14px;
  color: var(--white-40);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--white-08);
  padding-top: 60px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  padding-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--white-40);
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 60px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: var(--white-70);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--white-08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--white-40);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card-large { grid-column: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav .btn { display: none; }
  .nav-hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
    gap: 40px;
  }
  .hero-sub { margin: 0 auto 36px; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-mockup {
    order: -1;
    margin-bottom: 20px;
    height: 520px;
  }
  .phone-frame { width: 240px; height: 510px; border-radius: 44px; }
  .float-card-1 { right: -20px; top: 30px; }
  .float-card-2 { left: -20px; bottom: 140px; }
  .float-card-3 { right: -20px; bottom: 40px; }

  .spotlight-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .spotlight-flip .spotlight-inner { direction: ltr; }
  .spotlight-visual { order: -1; }
  .spotlight-phones { width: 260px; height: 340px; }
  .spotlight-phone { width: 160px; }

  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-card-large { grid-column: span 1; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }

  .trust-inner { flex-direction: column; gap: 12px; }
  .trust-label { display: none; }

  .download-title { letter-spacing: -1px; }

  .spotlight-invite-card { left: 0; bottom: -10px; font-size: 12px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-stats { gap: 16px; }
  .hero-stat-divider { display: none; }
  .phone-frame { width: 200px; height: 425px; border-radius: 38px; }
  .float-card { padding: 8px 10px; gap: 8px; }
  .float-card-icon { font-size: 18px; }
  .float-card-title { font-size: 12px; }
  .float-card-sub { font-size: 10px; }
  .store-btn { min-width: 160px; padding: 14px 20px; }
}

/* ── Theme toggle button ─────────────────────────────────────────────────── */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-sm);
  background: var(--bg-glass);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  flex-shrink: 0;
  padding: 0;
  color: var(--text-70);
}
.theme-toggle:hover {
  background: var(--border-sm);
  border-color: var(--border);
  transform: rotate(20deg);
  color: var(--text);
}
.theme-toggle svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: opacity 0.2s ease;
}
/* Show sun in dark mode, moon in light mode */
.theme-toggle .icon-sun  { display: block; }
.theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun  { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }

/* AI card title + invite card text (theme-aware) */
.ai-card-title { color: var(--text); }
.invite-card-title { color: var(--text); }
.invite-card-sub   { color: var(--text-70); }

/* ── Light-mode hero orbs (brighter, green-tinted) ───────────────────────── */
[data-theme="light"] .hero-orb-1 {
  background: radial-gradient(circle, rgba(90,158,31,0.18) 0%, transparent 70%);
}
[data-theme="light"] .hero-orb-2 {
  background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 70%);
}
[data-theme="light"] .hero-orb-3 {
  background: radial-gradient(circle, rgba(123,195,68,0.12) 0%, transparent 70%);
}

/* ── Light-mode AI card ───────────────────────────────────────────────────── */
[data-theme="light"] .ai-card {
  background: linear-gradient(135deg, #EEF0FF, #F5F4FF);
  border-color: rgba(99,102,241,0.25);
  box-shadow: 0 24px 60px rgba(99,102,241,0.12), 0 4px 16px rgba(0,0,0,0.06);
}
[data-theme="light"] .ai-headline { color: #1E1B40; }
[data-theme="light"] .ai-body     { color: rgba(30,27,64,0.65); }
[data-theme="light"] .ai-chip-label { color: rgba(30,27,64,0.45); }
[data-theme="light"] .ai-chip-value { color: #1E1B40; }
[data-theme="light"] .ai-chip-full { background: rgba(30,27,64,0.05); border-color: rgba(30,27,64,0.12); }
[data-theme="light"] .ai-calorie  { color: rgba(30,27,64,0.45); border-top-color: rgba(30,27,64,0.1); }
[data-theme="light"] .ai-divider  { background: rgba(99,102,241,0.18); }
[data-theme="light"] .gemini-badge { color: rgba(30,27,64,0.4); }

/* ── Light-mode spotlight phones ─────────────────────────────────────────── */
[data-theme="light"] .sp-screen-green {
  background: linear-gradient(160deg, #C8DDAF, #D8EAC4);
}
[data-theme="light"] .sp-screen-dark {
  background: linear-gradient(160deg, #CDD0E8, #D8DAF0);
}
[data-theme="light"] .sp-score    { color: #1E1B40; }
[data-theme="light"] .sp-score-gold { color: #B45309; }
[data-theme="light"] .sp-header   { color: rgba(30,27,64,0.6); }
[data-theme="light"] .sp-holes    { color: rgba(30,27,64,0.4); }
[data-theme="light"] .spotlight-invite-card .float-card-title,
[data-theme="light"] .spotlight-invite-card div[style*="color:#fff"] { color: #1E1B40 !important; }

/* ── Light-mode btn-secondary ────────────────────────────────────────────── */
[data-theme="light"] .btn-secondary {
  background: rgba(90,158,31,0.08);
  color: var(--text);
  border-color: rgba(90,158,31,0.2);
}
[data-theme="light"] .btn-secondary:hover {
  background: rgba(90,158,31,0.14);
}

/* ── Light-mode trust bar ────────────────────────────────────────────────── */
[data-theme="light"] .trust-bar {
  background: var(--bg-strip);
  border-color: var(--border-sm);
}

/* ── Light-mode stats section ────────────────────────────────────────────── */
[data-theme="light"] .stats-section {
  background: linear-gradient(180deg, rgba(90,158,31,0.05) 0%, transparent 100%);
  border-color: var(--border-sm);
}

/* ── Light-mode footer ───────────────────────────────────────────────────── */
[data-theme="light"] .footer {
  border-top-color: var(--border-sm);
}
[data-theme="light"] .footer-bottom {
  border-top-color: var(--border-sm);
}

/* ── Light-mode nav hamburger bars ───────────────────────────────────────── */
[data-theme="light"] .nav-hamburger span {
  background: var(--text);
}

/* ── Ripple effect (store buttons) ───────────────────────────────────────── */
.store-btn { position: relative; overflow: hidden; }
.ripple {
  position: absolute;
  border-radius: 50%;
  width: 6px; height: 6px;
  background: rgba(123,195,68,0.4);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple-anim 0.55s ease-out forwards;
  pointer-events: none;
}
@keyframes ripple-anim {
  to { transform: translate(-50%, -50%) scale(28); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Contact Modal
   ═══════════════════════════════════════════════════════════════════════════ */

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--bg-2);
  border: 1px solid var(--border-sm);
  border-radius: var(--radius-xl);
  padding: 40px;
  width: 100%;
  max-width: 520px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
}
.modal-backdrop.open .modal {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border-sm);
  background: var(--bg-glass);
  color: var(--text-70);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.modal-close:hover { background: var(--border-sm); color: var(--text); }
.modal-close svg { width: 16px; height: 16px; }

.modal-icon { font-size: 32px; margin-bottom: 12px; }
.modal-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.4px;
}
.modal-sub {
  font-size: 14px;
  color: var(--text-70);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ── Form ─────────────────────────────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; position: relative; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-70);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border-sm);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237BC344' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-40); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-400);
  box-shadow: 0 0 0 3px rgba(123,195,68,0.15);
}
.form-group.invalid input,
.form-group.invalid textarea {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.12);
}
.form-error {
  font-size: 12px;
  color: #EF4444;
  display: none;
}
.form-group.invalid .form-error { display: block; }

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
  margin-top: 4px;
}
.form-submit.sending { opacity: 0.7; pointer-events: none; }

.modal-note {
  font-size: 12px;
  color: var(--text-40);
  text-align: center;
  margin-top: 14px;
}
.modal-note strong { color: var(--text-70); }

/* Success state */
.modal-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  gap: 12px;
}
.modal-success.show { display: flex; }
.modal-success-icon {
  font-size: 48px;
  animation: successPop 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes successPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.modal-success h3 { font-size: 20px; font-weight: 800; color: var(--text); }
.modal-success p  { font-size: 14px; color: var(--text-70); max-width: 300px; line-height: 1.6; }

@media (max-width: 480px) {
  .modal { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Golf Course Illustrations
   ═══════════════════════════════════════════════════════════════════════════ */

.golf-scene {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

/* ── Sky backgrounds ──────────────────────────────────────────────────────── */
.golf-scene-dawn .gs-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    #1B3A6B 0%,
    #2E6EA6 25%,
    #6AADD5 50%,
    #A8D8EA 70%,
    #C8EAF5 100%);
}
.golf-scene-golden .gs-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    #1A1035 0%,
    #3D2060 15%,
    #C2410C 40%,
    #F97316 60%,
    #FCD34D 80%,
    #FEF3C7 100%);
}

/* ── Sun ──────────────────────────────────────────────────────────────────── */
.gs-sun {
  position: absolute;
  border-radius: 50%;
}
.golf-scene-dawn .gs-sun {
  width: 60px; height: 60px;
  top: 18%; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, #FFF9C4 0%, #FDE68A 40%, #FCD34D 70%, transparent 100%);
  box-shadow: 0 0 40px 20px rgba(253,230,138,0.4), 0 0 80px 40px rgba(253,230,138,0.15);
  animation: sunPulse 4s ease-in-out infinite;
}
.golf-scene-golden .gs-sun {
  width: 80px; height: 80px;
  top: 28%; right: 18%;
  background: radial-gradient(circle, #FFF 0%, #FDE68A 30%, #F97316 65%, transparent 100%);
  box-shadow: 0 0 60px 30px rgba(249,115,22,0.5), 0 0 120px 60px rgba(249,115,22,0.2);
  animation: sunPulse 5s ease-in-out infinite;
}
@keyframes sunPulse {
  0%,100% { box-shadow: 0 0 40px 20px rgba(253,230,138,0.4), 0 0 80px 40px rgba(253,230,138,0.15); }
  50%      { box-shadow: 0 0 55px 28px rgba(253,230,138,0.55), 0 0 100px 50px rgba(253,230,138,0.22); }
}

/* ── Sun rays (golden scene) ─────────────────────────────────────────────── */
.gs-sun-rays {
  position: absolute;
  top: 0; right: 0;
  width: 100%; height: 60%;
  background: repeating-conic-gradient(
    from 0deg at 90% 65%,
    rgba(253,230,138,0.12) 0deg 6deg,
    transparent 6deg 18deg
  );
  animation: rayRotate 30s linear infinite;
  transform-origin: 90% 65%;
}
@keyframes rayRotate { to { transform: rotate(360deg); } }

/* ── Clouds ───────────────────────────────────────────────────────────────── */
.gs-clouds { position: absolute; inset: 0; pointer-events: none; }
.gs-cloud {
  position: absolute;
  border-radius: 50px;
  animation: cloudDrift linear infinite;
}
.golf-scene-dawn .gs-cloud {
  background: rgba(255,255,255,0.75);
  box-shadow: 0 2px 12px rgba(255,255,255,0.3);
}
.golf-scene-golden .gs-cloud {
  background: rgba(253,186,116,0.65);
  box-shadow: 0 2px 12px rgba(249,115,22,0.2);
}
.gs-cloud-1 { width: 70px; height: 22px; top: 14%; left: 8%; animation-duration: 40s; }
.gs-cloud-2 { width: 50px; height: 16px; top: 22%; right: 12%; animation-duration: 55s; }
.gs-cloud-3 { width: 60px; height: 18px; top: 18%; left: 20%; animation-duration: 50s; }
.gs-cloud::before, .gs-cloud::after {
  content: '';
  position: absolute;
  background: inherit;
  border-radius: 50%;
}
.gs-cloud::before { width: 35px; height: 28px; top: -12px; left: 12px; }
.gs-cloud::after  { width: 25px; height: 22px; top: -8px; right: 14px; }
@keyframes cloudDrift {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(14px); }
  100% { transform: translateX(0); }
}

/* ── Far hills ────────────────────────────────────────────────────────────── */
.gs-hills {
  position: absolute;
  left: 0; right: 0;
  border-radius: 50% 60% 0 0 / 40% 40% 0 0;
}
.golf-scene-dawn .gs-hills-far {
  height: 28%;
  bottom: 42%;
  background: linear-gradient(180deg, #1B4D2E, #2D6A4F);
  border-radius: 55% 45% 0 0 / 35% 35% 0 0;
}
.golf-scene-dawn .gs-hills-mid {
  height: 22%;
  bottom: 38%;
  background: linear-gradient(180deg, #2D6A4F, #40916C);
  border-radius: 45% 55% 0 0 / 40% 40% 0 0;
  left: -5%; right: -5%;
}
.golf-scene-golden .gs-hills-far {
  height: 30%;
  bottom: 40%;
  background: linear-gradient(180deg, #7C3D0A, #9A4B12);
  border-radius: 55% 45% 0 0 / 35% 35% 0 0;
}
.golf-scene-golden .gs-hills-mid {
  height: 24%;
  bottom: 36%;
  background: linear-gradient(180deg, #2D4A1E, #3D6B2A);
  border-radius: 45% 55% 0 0 / 40% 40% 0 0;
  left: -5%; right: -5%;
}

/* ── Water (golden scene only) ────────────────────────────────────────────── */
.gs-water {
  position: absolute;
  width: 55%; height: 8%;
  bottom: 44%; left: 5%;
  background: linear-gradient(135deg, #1E40AF, #3B82F6, #60A5FA);
  border-radius: 50% 50% 40% 40%;
  opacity: 0.85;
}
.gs-water-shimmer {
  position: absolute;
  width: 55%; height: 8%;
  bottom: 44%; left: 5%;
  border-radius: 50% 50% 40% 40%;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    rgba(255,255,255,0.15) 4px,
    transparent 8px
  );
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%,100% { opacity: 0.4; transform: scaleX(1); }
  50%      { opacity: 0.8; transform: scaleX(1.02); }
}

/* ── Fairway ──────────────────────────────────────────────────────────────── */
.golf-scene-dawn .gs-fairway {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 42%;
  background: linear-gradient(180deg, #52B788 0%, #40916C 30%, #2D6A4F 100%);
}
.golf-scene-golden .gs-fairway {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 44%;
  background: linear-gradient(180deg, #6AAF4A 0%, #4A8B2A 30%, #3D7324 100%);
}
/* Mowing stripe effect */
.gs-fairway::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    rgba(255,255,255,0.04) 0px,
    rgba(255,255,255,0.04) 12px,
    transparent 12px,
    transparent 24px
  );
}

/* ── Bunkers ──────────────────────────────────────────────────────────────── */
.gs-bunker {
  position: absolute;
  background: radial-gradient(ellipse, #E8C97A 0%, #D4A843 60%, #B8922A 100%);
  border-radius: 50%;
}
.gs-bunker-1 { width: 50px; height: 20px; bottom: 32%; left: 12%; }
.gs-bunker-2 { width: 35px; height: 14px; bottom: 28%; right: 20%; }

/* ── Green ────────────────────────────────────────────────────────────────── */
.golf-scene-dawn .gs-green {
  position: absolute;
  width: 100px; height: 55px;
  bottom: 34%; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, #74C69D 0%, #52B788 50%, #40916C 100%);
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
}
.golf-scene-golden .gs-green {
  position: absolute;
  width: 110px; height: 60px;
  bottom: 36%; left: 55%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, #86CF5E 0%, #6AAF4A 50%, #4A8B2A 100%);
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.12);
}

/* ── Flag ─────────────────────────────────────────────────────────────────── */
.gs-flag-pole {
  position: absolute;
  width: 3px;
  background: linear-gradient(180deg, #E8E8E8, #BCBCBC);
  border-radius: 2px;
  transform-origin: bottom center;
}
.golf-scene-dawn .gs-flag-pole {
  height: 60px;
  bottom: 54%;
  left: calc(50% + 6px);
}
.golf-scene-golden .gs-flag-pole {
  height: 65px;
  bottom: 56%;
  left: calc(55% + 8px);
}
.gs-flag {
  position: absolute;
  top: 2px; left: 3px;
  width: 22px; height: 14px;
  background: linear-gradient(135deg, #EF4444, #DC2626);
  clip-path: polygon(0 0, 100% 25%, 100% 75%, 0 100%);
  animation: flagWave 2.5s ease-in-out infinite;
  transform-origin: left center;
}
@keyframes flagWave {
  0%,100% { transform: skewY(0deg) scaleX(1); }
  25%      { transform: skewY(-4deg) scaleX(0.95); }
  75%      { transform: skewY(3deg) scaleX(1.04); }
}

/* ── Trees ────────────────────────────────────────────────────────────────── */
.gs-trees { position: absolute; inset: 0; pointer-events: none; }
.gs-tree {
  position: absolute;
  bottom: 38%;
}
/* Trunk */
.gs-tree::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 6px;
  border-radius: 2px;
  background: #6B3F1E;
}
/* Canopy */
.gs-tree::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50% 50% 40% 40%;
}
.golf-scene-dawn .gs-tree::after { background: radial-gradient(circle, #1B4D2E, #0F3320); }
.golf-scene-golden .gs-tree::after { background: radial-gradient(circle, #2D5A1B, #1A3A0A); }

.gs-tree-1 { left: 5%;  }
.gs-tree-1::before { height: 30px; }
.gs-tree-1::after  { width: 36px; height: 50px; bottom: 22px; }

.gs-tree-2 { left: 16%; bottom: 40%; }
.gs-tree-2::before { height: 22px; }
.gs-tree-2::after  { width: 28px; height: 38px; bottom: 16px; }

.gs-tree-3 { right: 6%; }
.gs-tree-3::before { height: 28px; }
.gs-tree-3::after  { width: 34px; height: 46px; bottom: 20px; }

.gs-tree-4 { right: 8%; bottom: 39%; }
.gs-tree-4::before { height: 24px; }
.gs-tree-4::after  { width: 30px; height: 42px; bottom: 18px; }

/* ── Text overlay (dawn phone) ────────────────────────────────────────────── */
.gs-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 24px;
  background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 70%, transparent 100%);
}
.gs-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.gs-title {
  font-family: var(--font);
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.gs-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  margin-top: 4px;
}

/* ── Scorecard overlay (golden phone) ────────────────────────────────────── */
.gs-scorecard {
  position: absolute;
  bottom: 20px; left: 12px; right: 12px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 16px;
  padding: 12px 14px;
}
.gs-sc-title {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.gs-sc-score {
  font-size: 22px;
  font-weight: 900;
  color: #7BC344;
  letter-spacing: -0.5px;
  line-height: 1;
}
.gs-sc-score span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-left: 4px;
}
.gs-sc-dots {
  display: flex;
  gap: 5px;
  margin-top: 8px;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.dot-birdie { background: #7BC344; border-color: #7BC344; }
.dot-par    { background: rgba(255,255,255,0.5); }
.dot-bogey  { background: #EF4444; border-color: #EF4444; }
.dot-active {
  background: transparent;
  border: 2px solid #FCD34D;
  box-shadow: 0 0 6px rgba(252,211,77,0.6);
  animation: dotPulse 1.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 6px rgba(252,211,77,0.6); }
  50%      { box-shadow: 0 0 12px rgba(252,211,77,0.9); }
}

/* ═══════════════════════════════════════════════════════════════
   SCORECARD OCR SECTION
   ═══════════════════════════════════════════════════════════════ */
.ocr-visual { position: relative; display: flex; justify-content: center; align-items: flex-start; }

.ocr-demo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  width: 320px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.ocr-demo-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.ocr-demo-tag {
  font-size: 13px;
  font-weight: 600;
  color: #10B981;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: var(--radius-full);
  padding: 5px 12px;
}

.ocr-image-placeholder {
  position: relative;
  background: var(--bg-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-sm);
  overflow: hidden;
  padding: 12px;
  margin-bottom: 14px;
}

.ocr-scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #10B981, transparent);
  animation: scanMove 2s ease-in-out infinite;
  top: 0;
}
@keyframes scanMove {
  0%   { top: 0%;   opacity: 1; }
  80%  { top: 100%; opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.ocr-grid-preview { font-family: monospace; font-size: 12px; }

.ocr-grid-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 4px;
  padding: 6px 8px;
  background: rgba(16,185,129,0.1);
  border-radius: 6px;
  margin-bottom: 4px;
  font-weight: 700;
  color: #10B981;
  font-size: 11px;
}

.ocr-grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 4px;
  padding: 5px 8px;
  border-radius: 6px;
  color: var(--text-70);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: var(--d, 0ms);
}
.ocr-image-placeholder:hover .ocr-grid-row,
.ocr-demo-card:hover .ocr-grid-row,
.ocr-row-reveal { opacity: 1; transform: none; }

.ocr-demo-footer {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ocr-pill {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  background: var(--bg-2);
  border: 1px solid var(--border-sm);
  color: var(--text-70);
}
.ocr-pill-green { background: rgba(16,185,129,0.12); border-color: rgba(16,185,129,0.3); color: #10B981; }

.ocr-badge-float {
  position: absolute;
  bottom: -18px;
  right: -12px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  font-size: 22px;
}
.ocr-badge-title { font-size: 13px; font-weight: 700; color: var(--text); }
.ocr-badge-sub   { font-size: 11px; color: var(--text-70); margin-top: 1px; }

/* ═══════════════════════════════════════════════════════════════
   COURSE FINDER SECTION
   ═══════════════════════════════════════════════════════════════ */
.course-finder-visual { position: relative; display: flex; justify-content: center; }

.cf-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  width: 320px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cf-search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  margin-bottom: 14px;
  color: var(--text-70);
  font-size: 14px;
}
.cf-search-text { flex: 1; color: var(--text); font-weight: 500; }
.cf-cursor {
  display: inline-block;
  width: 2px; height: 16px;
  background: #0EA5E9;
  border-radius: 1px;
  animation: blink 1s step-start infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

.cf-result-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

.cf-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.cf-result:hover { background: var(--bg-2); border-color: var(--border-sm); }
.cf-result-active {
  background: rgba(14,165,233,0.08);
  border-color: rgba(14,165,233,0.3);
}

.cf-result-icon { font-size: 20px; flex-shrink: 0; }
.cf-result-info { flex: 1; min-width: 0; }
.cf-result-name { font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cf-result-sub  { font-size: 11px; color: var(--text-70); margin-top: 1px; }
.cf-result-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: rgba(14,165,233,0.15);
  color: #0EA5E9;
  border: 1px solid rgba(14,165,233,0.3);
  flex-shrink: 0;
}

.cf-tee-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.cf-tee-label { font-size: 11px; font-weight: 700; color: var(--text-40); letter-spacing: 0.8px; text-transform: uppercase; flex-shrink: 0; }
.cf-tee-chips { display: flex; gap: 6px; flex-wrap: wrap; }

.cf-tee-chip {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-sm);
  color: var(--text-70);
  cursor: pointer;
  transition: all var(--transition);
}
.cf-tee-black { background: rgba(0,0,0,0.35); }
.cf-tee-blue  { background: rgba(14,165,233,0.1); }
.cf-tee-white { background: rgba(255,255,255,0.08); }
.cf-tee-red   { background: rgba(239,68,68,0.1); }
.cf-tee-selected {
  background: #0EA5E9;
  border-color: #0EA5E9;
  color: #fff;
  box-shadow: 0 4px 12px rgba(14,165,233,0.4);
}

.cf-start-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green-400), var(--green-500));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(90,158,31,0.35);
  transition: box-shadow var(--transition), transform var(--transition);
}
.cf-start-btn:hover { box-shadow: 0 10px 28px rgba(90,158,31,0.5); transform: translateY(-1px); }

.cf-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* ═══════════════════════════════════════════════════════════════
   START ROUND SECTION
   ═══════════════════════════════════════════════════════════════ */
.start-round-visual { position: relative; display: flex; justify-content: center; align-items: flex-start; }

.sr-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  width: 300px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.sr-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.sr-back { font-size: 16px; color: var(--green-400); cursor: pointer; font-weight: 700; }
.sr-title { font-size: 16px; font-weight: 700; color: var(--text); }

.sr-course-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(90,158,31,0.08);
  border: 1px solid rgba(90,158,31,0.2);
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 16px;
}
.sr-course-icon { font-size: 22px; flex-shrink: 0; }
.sr-course-info { flex: 1; min-width: 0; }
.sr-course-name { font-size: 13px; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sr-course-sub  { font-size: 11px; color: var(--text-70); margin-top: 1px; }
.sr-course-check { font-size: 16px; color: var(--green-400); flex-shrink: 0; }

.sr-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--green-400);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sr-tee-section { margin-bottom: 16px; }
.sr-tee-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.sr-chip {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: var(--bg-2);
  border: 1px solid var(--border-sm);
  color: var(--text-70);
  cursor: pointer;
  transition: all var(--transition);
}
.sr-chip-active {
  background: var(--green-500);
  border-color: var(--green-500);
  color: #fff;
  box-shadow: 0 4px 12px rgba(90,158,31,0.4);
}

.sr-holes-preview { margin-bottom: 16px; }
.sr-hole-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 4px;
  padding: 5px 0;
  font-size: 12px;
  color: var(--text-70);
  border-bottom: 1px solid var(--border-xs);
}
.sr-hole-header {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-40);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sr-hole-faded { opacity: 0.4; }

.sr-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green-400), var(--green-500));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(90,158,31,0.35);
  transition: box-shadow var(--transition), transform var(--transition);
}
.sr-cta-btn:hover { box-shadow: 0 10px 28px rgba(90,158,31,0.5); transform: translateY(-1px); }

.sr-upload-nudge {
  position: absolute;
  bottom: -20px;
  right: -16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  font-size: 20px;
  max-width: 220px;
}
.sr-nudge-title { font-size: 13px; font-weight: 700; color: var(--text); }
.sr-nudge-sub   { font-size: 11px; color: var(--text-70); margin-top: 1px; }

/* ── Responsive tweaks for new sections ──────────────────── */
@media (max-width: 768px) {
  .ocr-demo-card,
  .cf-card,
  .sr-card { width: 100%; max-width: 340px; }

  .ocr-badge-float,
  .sr-upload-nudge { position: static; margin-top: 16px; }

  .cf-glow { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   APP SCREENSHOTS CAROUSEL
   ═══════════════════════════════════════════════════════════════ */
.screenshots {
  padding: 100px 0;
  background: var(--bg);
}

.carousel-wrap { position: relative; }

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  padding: 48px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.carousel-phone { flex-shrink: 0; }

.carousel-phone-frame {
  position: relative;
  width: 200px;
  background: var(--phone-bg);
  border-radius: 36px;
  padding: 14px;
  border: 1.5px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.carousel-phone-notch {
  width: 70px; height: 18px;
  background: var(--phone-notch-bg);
  border-radius: 0 0 14px 14px;
  margin: 0 auto 10px;
}

.carousel-phone-screen {
  border-radius: 20px;
  overflow: hidden;
  background: var(--phone-screen-bg);
  aspect-ratio: 9/19.5;
}
.carousel-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-caption {
  max-width: 360px;
  flex: 1;
}

.carousel-caption-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-400);
  background: rgba(90,158,31,0.12);
  border: 1px solid rgba(90,158,31,0.25);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  margin-bottom: 16px;
}

.carousel-caption-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 12px;
}

.carousel-caption-sub {
  font-size: 15px;
  color: var(--text-70);
  line-height: 1.65;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  z-index: 2;
}
.carousel-btn:hover { background: var(--bg-card-hover); transform: translateY(-50%) scale(1.1); }
.carousel-prev { left: 14px; }
.carousel-next { right: 14px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), width var(--transition);
}
.carousel-dot.active {
  background: var(--green-400);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .carousel-slide { flex-direction: column; gap: 28px; padding: 32px 20px; }
  .carousel-phone-frame { width: 160px; }
  .carousel-btn { display: none; }
  .carousel-caption { text-align: center; }
}


/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════ */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-2);
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.step-icon-wrap {
  width: 72px; height: 72px;
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--clr, #5A9E1F) 15%, transparent);
  border: 1.5px solid color-mix(in srgb, var(--clr, #5A9E1F) 30%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step:hover .step-icon-wrap {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--clr, #5A9E1F) 30%, transparent);
}

.step-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-40);
  margin-bottom: 8px;
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.step-desc {
  font-size: 14px;
  color: var(--text-70);
  line-height: 1.6;
}

.step-connector {
  flex: 0 0 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--border-sm), var(--border), var(--border-sm));
  margin-top: 36px;
  position: relative;
}
.step-connector::after {
  content: '›';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-40);
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 768px) {
  .steps-row { flex-direction: column; align-items: center; gap: 8px; }
  .step { max-width: 280px; }
  .step-connector { width: 2px; height: 32px; flex: 0 0 32px; margin: 0; background: linear-gradient(180deg, var(--border-sm), var(--border)); }
  .step-connector::after { content: '↓'; right: auto; left: 50%; top: auto; bottom: -12px; transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS + GOLF SCENE
   ═══════════════════════════════════════════════════════════════ */
.testimonials {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Make the golf scene a background layer */
.testimonials .golf-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
[data-theme="light"] .testimonials .golf-scene { opacity: 0.28; }

/* Gradient overlay so text stays readable */
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg) 0%,
    transparent 20%,
    transparent 80%,
    var(--bg) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.testi-inner { position: relative; z-index: 2; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.28);
}

.testi-stars {
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 2px;
}

.testi-quote {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-70);
  flex: 1;
  font-style: italic;
}
.testi-quote::before { content: '"'; }
.testi-quote::after  { content: '"'; }

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--av-clr, #5A9E1F) 20%, transparent);
  border: 1.5px solid color-mix(in srgb, var(--av-clr, #5A9E1F) 40%, transparent);
  color: var(--av-clr, #5A9E1F);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-name { font-size: 14px; font-weight: 700; color: var(--text); }
.testi-meta { font-size: 12px; color: var(--text-40); margin-top: 1px; }

@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 56px auto 0; } }


/* ═══════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════ */
.faq-section {
  padding: 100px 0;
  background: var(--bg-2);
}

.faq-list {
  max-width: 760px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:hover,
.faq-item.open {
  border-color: rgba(90,158,31,0.4);
}
.faq-item.open {
  box-shadow: 0 4px 24px rgba(90,158,31,0.1);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--green-400); }
.faq-item.open .faq-q { color: var(--green-400); }

.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--border-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-70);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  line-height: 1;
}
.faq-item.open .faq-icon {
  background: rgba(90,158,31,0.15);
  border-color: rgba(90,158,31,0.3);
  color: var(--green-400);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-a p {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-70);
}
