/* ============================================================
   MY GOLF INSIGHTS — Shared Stylesheet
   Design: Golf club premium | Dark green + gold + cream
   Fonts: Playfair Display (headings) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────── */
:root {
  --green-darkest:  #080F08;
  --green-dark:     #0D1A0D;
  --green-deep:     #1A3A1A;
  --green-mid:      #254D25;
  --green-light:    #2D6A4F;
  --gold:           #C9A84C;
  --gold-light:     #E2C97A;
  --gold-dark:      #A07830;
  --cream:          #FAF7EE;
  --cream-dim:      #E8E0CC;
  --text-muted:     #9A8F72;
  --border:         rgba(201,168,76,0.2);
  --border-light:   rgba(201,168,76,0.08);
  --shadow-card:    0 4px 24px rgba(0,0,0,0.4);
  --radius:         12px;
  --radius-sm:      8px;
  --max-width:      1160px;
  --nav-height:     72px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--green-dark);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Typography ────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--cream);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--cream-dim); line-height: 1.75; }

.text-gold    { color: var(--gold); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.text-serif   { font-family: 'Playfair Display', serif; }

/* ── Layout ────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }
section:nth-child(even) { background: var(--green-darkest); }
.help-main section:nth-child(even) { background: transparent; }
.help-main section:nth-child(odd)  { background: transparent; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-header p {
  margin-top: 16px;
  font-size: 1.1rem;
}

/* ── Navigation ────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 100;
  border-bottom: 1px solid var(--border-light);
  background: rgba(13, 26, 13, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s, border-color 0.3s;
}

.nav.scrolled {
  background: rgba(8, 15, 8, 0.98);
  border-color: var(--border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cream-dim);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--green-darkest);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.08);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
  border-radius: var(--radius);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.8rem;
}

/* ── Hero (home page) ───────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(45,106,79,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 100% 50%, rgba(201,168,76,0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--green-darkest) 0%, var(--green-dark) 100%);
  z-index: 0;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.4;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-logo {
  display: block;
  width: 220px;
  height: auto;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .hero-logo { width: 170px; margin-left: auto; margin-right: auto; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.hero-text h1 {
  margin-bottom: 24px;
}

.hero-text h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-text p {
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-waitlist {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-waitlist input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.hero-waitlist input[type="email"]::placeholder { color: var(--text-muted); }
.hero-waitlist input[type="email"]:focus { border-color: var(--gold); }

.hero-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup {
  width: 280px;
  background: var(--green-deep);
  border: 1.5px solid var(--border);
  border-radius: 36px;
  padding: 20px 14px;
  box-shadow:
    0 0 0 8px rgba(0,0,0,0.4),
    0 40px 80px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
}

.phone-notch {
  width: 80px;
  height: 22px;
  background: var(--green-darkest);
  border-radius: 0 0 14px 14px;
  margin: 0 auto 16px;
}

.phone-screen {
  background: var(--green-darkest);
  border-radius: 20px;
  overflow: hidden;
  min-height: 460px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone-screen-img {
  padding: 0;
  min-height: unset;
}

.phone-screen-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}

.mock-hole-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.mock-score-badge {
  background: var(--gold);
  color: var(--green-darkest);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: 20px;
}

.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}

.mock-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mock-value {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--cream);
}

.mock-btn-row {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}

.mock-btn {
  flex: 1;
  padding: 7px 4px;
  border-radius: 6px;
  font-size: 0.6rem;
  font-weight: 600;
  text-align: center;
}

.mock-btn-active {
  background: var(--green-light);
  color: var(--cream);
  border: 1.5px solid var(--gold);
}

.mock-btn-inactive {
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
}

.mock-coach-card {
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  margin-top: 8px;
}

.mock-coach-title {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.mock-coach-text {
  font-size: 0.6rem;
  color: var(--cream-dim);
  line-height: 1.5;
}

.phone-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(45,106,79,0.3) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ── Cards ──────────────────────────────────────────── */
.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--green-deep);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.card h3 { margin-bottom: 12px; color: var(--cream); }
.card p { font-size: 0.9rem; }

/* ── Steps / How it works ───────────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-light);
}

.step:last-child { border-bottom: none; }

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.step-content h3 { margin-bottom: 8px; }
.step-content p { font-size: 0.95rem; }

/* ── Pricing ────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-explainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border-light);
}

.pricing-explainer-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pricing-explainer-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-explainer-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--cream);
  margin-bottom: 6px;
}

.pricing-explainer-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 700px) {
  .pricing-grid-2col { grid-template-columns: 1fr; max-width: 420px; }
  .pricing-explainer { grid-template-columns: 1fr; gap: 24px; }
}

.pricing-card {
  background: var(--green-deep);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: border-color 0.2s;
}

.pricing-card.featured {
  border-color: var(--gold);
  position: relative;
  background: var(--green-mid);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--green-darkest);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price sup { font-size: 1.2rem; vertical-align: top; margin-top: 8px; }
.pricing-price sub { font-size: 0.9rem; font-family: 'Inter', sans-serif; color: var(--text-muted); }

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

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

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--cream-dim);
}

.pricing-feature::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-feature.muted { color: var(--text-muted); }
.pricing-feature.muted::before { content: '–'; color: var(--text-muted); }

.pricing-cta { width: 100%; text-align: center; }

/* ── Divider ────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 24px auto;
  border-radius: 2px;
}

.divider-left {
  margin: 16px 0;
}

/* ── Quote / Testimonial ────────────────────────────── */
/* ── Founder pull quote ─────────────────────────────── */
.founder-quote {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.founder-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 0.4;
  margin-bottom: 24px;
}

.founder-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.55;
  margin-bottom: 0;
}

.founder-quote-attr {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.founder-quote-link {
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
}

.founder-quote-link:hover { color: var(--gold-light); text-decoration: underline; }

/* ── User testimonial quote block ───────────────────── */
.quote-block {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.5;
  margin-bottom: 16px;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 24px;
}

.quote-author {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Banner / CTA Section ───────────────────────────── */
.cta-banner {
  text-align: center;
  padding: 96px 24px;
}

.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { margin-bottom: 40px; font-size: 1.05rem; max-width: 480px; margin-left: auto; margin-right: auto; }

.cta-waitlist {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}

.cta-waitlist input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.cta-waitlist input[type="email"]:focus { border-color: var(--gold); }
.cta-waitlist input[type="email"]::placeholder { color: var(--text-muted); }

/* ── Footer ─────────────────────────────────────────── */
.footer {
  background: var(--green-darkest);
  border-top: 1px solid var(--border-light);
  padding: 64px 0 40px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.875rem;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--cream); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 24px 0;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--gold); }

/* ── Mode indicator (features page) ─────────────────── */
.mode-tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
  max-width: 480px;
}

.mode-tab {
  flex: 1;
  padding: 14px;
  text-align: center;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--green-deep);
  border: none;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.mode-tab.active {
  background: var(--gold);
  color: var(--green-darkest);
}

.mode-tab:not(:last-child) { border-right: 1px solid var(--border); }

/* ── Inline badge ───────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.badge-gold { background: rgba(201,168,76,0.15); color: var(--gold); border: 1px solid var(--border); }
.badge-green { background: rgba(45,106,79,0.3); color: #6FCF97; border: 1px solid rgba(111,207,151,0.2); }

/* ── Page hero (inner pages) ─────────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(45,106,79,0.2) 0%, transparent 60%);
  z-index: 0;
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero p { font-size: 1.1rem; margin-top: 16px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── Prose (privacy, etc.) ──────────────────────────── */
.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px;
}

.prose h2 {
  font-size: 1.4rem;
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.prose h2:first-child { margin-top: 0; }

.prose p {
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.prose ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.prose ul li {
  font-size: 0.95rem;
  color: var(--cream-dim);
  margin-bottom: 8px;
}

.prose a { color: var(--gold); text-decoration: underline; }
.prose a:hover { color: var(--gold-light); }

/* ── Coaching Report Mock ───────────────────────────── */
.coaching-section { background: var(--green-darkest); }

.coaching-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.coaching-intro .section-label { margin-bottom: 12px; }
.coaching-intro h2 { margin-bottom: 16px; }
.coaching-intro > p { margin-bottom: 24px; }

.coaching-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.coaching-points li {
  display: flex;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--cream-dim);
  line-height: 1.5;
}

.coaching-points li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
}

.coaching-report-mock {
  background: var(--green-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.crm-focus {
  background: rgba(201,168,76,0.1);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 4px;
}

.crm-focus-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.crm-focus-text {
  font-size: 0.9rem;
  color: var(--cream);
  line-height: 1.55;
  margin-bottom: 10px;
}

.crm-focus-drill {
  font-size: 0.78rem;
  color: var(--gold-light);
  font-style: italic;
}

.crm-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.crm-finding {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.crm-finding:last-of-type { border-bottom: none; }

.crm-finding-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}

.crm-finding-detail {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.crm-impact {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.crm-impact-high { background: rgba(235,87,87,0.15); color: #EB5757; border: 1px solid rgba(235,87,87,0.25); }
.crm-impact-mid  { background: rgba(242,153,74,0.15); color: #F2994A; border: 1px solid rgba(242,153,74,0.25); }
.crm-impact-low  { background: rgba(201,168,76,0.15); color: var(--gold); border: 1px solid var(--border); }

.crm-par-breakdown {
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.crm-par-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.crm-par-item {
  text-align: center;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
}

.crm-par-type {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.crm-par-avg {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.crm-par-good { color: #6FCF97; }
.crm-par-ok   { color: var(--gold); }
.crm-par-bad  { color: #EB5757; }

.crm-par-holes {
  font-size: 0.62rem;
  color: var(--text-muted);
}

/* ── Stats Preview Table ────────────────────────────── */
.stats-preview {
  background: var(--green-deep);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}

.stats-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr 2.5fr;
  gap: 0;
  border-bottom: 1px solid var(--border-light);
  align-items: center;
}

.stats-row:last-child { border-bottom: none; }

.stats-row-header {
  background: rgba(0,0,0,0.3);
}

.stats-cell {
  padding: 14px 16px;
  font-size: 0.85rem;
  color: var(--cream-dim);
}

.stats-cell-label {
  font-weight: 600;
  color: var(--cream);
}

.stats-row-header .stats-cell {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 16px;
}

.stats-cell-value { text-align: center; }

.stats-cell-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

.stats-up   { color: #6FCF97; font-weight: 600; }
.stats-down { color: #EB5757; font-weight: 600; }
.stats-flat { color: var(--gold); font-weight: 600; }

.stats-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* ── How It Works coaching grid ─────────────────────── */
.hiw-coaching-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hiw-coaching-item {
  background: var(--green-deep);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.2s;
}

.hiw-coaching-item:hover { border-color: var(--border); }

.hiw-coaching-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}

.hiw-coaching-item h3 { margin-bottom: 12px; font-size: 1.05rem; }
.hiw-coaching-item > p { font-size: 0.875rem; margin-bottom: 16px; }

.hiw-coaching-example {
  background: rgba(0,0,0,0.2);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 10px 14px;
}

.hiw-example-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.hiw-coaching-example p {
  font-size: 0.78rem;
  color: var(--cream-dim);
  font-style: italic;
  margin: 0;
}

/* ── Stat cards (how-it-works) ──────────────────────── */
.stat-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.stat-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
}

.stat-card-benchmark {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 900px) {
  .coaching-layout { grid-template-columns: 1fr; }
  .hiw-coaching-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 2fr 1fr 1fr; }
  .stats-cell-value:last-of-type,
  .stats-cell-note { display: none; }
}

@media (max-width: 640px) {
  .hiw-coaching-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stats-cell:nth-child(3) { display: none; }
}

/* ── App Showcase ───────────────────────────────────── */
.showcase-section {
  background: var(--green-darkest);
  overflow: hidden;
}

.showcase-phones {
  display: flex;
  gap: 32px;
  align-items: flex-end;
  justify-content: center;
}

.showcase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  flex: 1;
  max-width: 280px;
}

.showcase-item-featured {
  position: relative;
  margin-bottom: -12px;
}

.showcase-badge-above {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-darkest);
  background: var(--gold);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: -8px;
  position: relative;
  z-index: 1;
}

.showcase-phone {
  width: 100%;
  background: var(--green-deep);
  border: 1.5px solid var(--border);
  border-radius: 32px;
  padding: 14px 10px;
  box-shadow:
    0 0 0 6px rgba(0,0,0,0.35),
    0 32px 64px rgba(0,0,0,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.showcase-phone:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 6px rgba(0,0,0,0.35),
    0 48px 80px rgba(0,0,0,0.6),
    0 0 40px rgba(201,168,76,0.1);
}

.showcase-phone-featured {
  border-color: var(--gold);
  box-shadow:
    0 0 0 6px rgba(0,0,0,0.4),
    0 40px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(201,168,76,0.12);
}

.showcase-notch {
  width: 60px;
  height: 16px;
  background: var(--green-darkest);
  border-radius: 0 0 10px 10px;
  margin: 0 auto 10px;
}

.showcase-screen {
  border-radius: 18px;
  overflow: hidden;
  background: var(--green-darkest);
}

.showcase-screen img {
  width: 100%;
  height: auto;
  display: block;
}

.showcase-caption {
  text-align: center;
  padding: 0 8px;
}

.showcase-caption-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.showcase-caption h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.showcase-caption p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (max-width: 860px) {
  .showcase-phones {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  .showcase-item {
    max-width: 320px;
    width: 100%;
  }

  .showcase-item-featured {
    margin-bottom: 0;
  }
}

/* ── Animations ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }

/* ── About page ─────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.about-chapter {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-light);
}

.about-chapter:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.about-chapter-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.about-chapter h2 {
  margin-bottom: 20px;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.about-chapter p {
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-chapter p:last-child { margin-bottom: 0; }

.about-chapter em { font-style: italic; color: var(--cream); }

.about-values-card {
  background: var(--green-deep);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.about-value {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

.about-value:last-child { border-bottom: none; padding-bottom: 0; }
.about-value:first-child { padding-top: 0; }

.about-value-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }

.about-value strong {
  display: block;
  font-size: 0.875rem;
  color: var(--cream);
  margin-bottom: 4px;
}

.about-value p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.about-contact-card {
  background: var(--green-deep);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
}

@media (max-width: 960px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-values-card { position: static; }
  .about-sidebar { order: -1; }
}

/* ── Competitor context (pricing page) ─────────────── */
.competitor-context {
  max-width: 860px;
  margin: 0 auto;
}

.competitor-context-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.competitor-context h2 { margin-bottom: 16px; }

.competitor-context > p {
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 620px;
}

.competitor-context > p em {
  font-style: italic;
  color: var(--gold);
}

.competitor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.competitor-col {
  padding: 32px;
}

.competitor-col-them {
  background: var(--green-deep);
  border-right: 1px solid var(--border);
}

.competitor-col-us {
  background: var(--green-mid);
  border: 2px solid var(--gold);
  margin: -1px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.competitor-col-header {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.competitor-col-us .competitor-col-header {
  color: var(--gold);
}

.competitor-col-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.competitor-col-price span {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gold);
}

.competitor-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.competitor-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--cream-dim);
}

.competitor-has::before {
  content: '✓';
  color: #6FCF97;
  font-weight: 700;
  flex-shrink: 0;
  width: 16px;
}

.competitor-missing::before {
  content: '–';
  color: var(--text-muted);
  flex-shrink: 0;
  width: 16px;
}

.competitor-partial::before {
  content: '◐';
  color: #F2994A;
  flex-shrink: 0;
  width: 16px;
  font-size: 0.75rem;
}

.competitor-partial { color: var(--cream-dim); }
.competitor-partial em { color: #F2994A; font-style: normal; font-size: 0.8em; }

.competitor-col-us .competitor-has::before {
  color: var(--gold);
}

.competitor-col-us .competitor-missing { color: var(--text-muted); }

.competitor-footer {
  margin-top: 28px;
  padding: 16px 20px;
  background: rgba(201,168,76,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--cream-dim);
  font-style: italic;
}

@media (max-width: 600px) {
  .competitor-grid { grid-template-columns: 1fr; }
  .competitor-col-them { border-right: none; border-bottom: 1px solid var(--border); }
  .competitor-col-us { border-radius: 0 0 var(--radius) var(--radius); }
}

/* ── Help page nav bar ──────────────────────────────── */
/* ── Help page layout (sidebar + content) ───────────── */
.help-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 48px 0;
  gap: 0;
  align-items: start;
}

.help-main {
  min-width: 0;
  border-left: 1px solid var(--border-light);
  padding-left: 56px;
}

.help-main .container {
  max-width: none;
  margin: 0;
}

.help-main section {
  border-bottom: 1px solid var(--border-light);
}

.help-main section:last-child {
  border-bottom: none;
}

/* ── Sidebar — clean nav rail, not a card ───────────── */
.help-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 32px);
  padding-right: 32px;
}

.help-sidebar-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 0 16px 4px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--border-light);
}

.help-sidebar-nav {
  padding: 8px 0;
}

.help-sidebar-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 4px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  border-left: none;
  border-right: none;
  transition: color 0.15s;
}

.help-sidebar-link:hover {
  color: var(--cream);
}

.help-sidebar-link.active {
  color: var(--gold);
  font-weight: 600;
}

.help-sidebar-icon {
  font-size: 1rem;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}

.help-sidebar-footer {
  padding: 16px 0 0 4px;
  margin-top: 8px;
  border-top: 1px solid var(--border-light);
}

.help-sidebar-footer p {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.help-sidebar-footer a {
  font-size: 0.78rem;
  color: var(--gold);
}

.help-sidebar-footer a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* Mobile: sidebar collapses to horizontal tab bar */
@media (max-width: 900px) {
  .help-layout {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 0;
  }

  .help-main {
    border-left: none;
    padding-left: 0;
  }

  .help-sidebar {
    position: sticky;
    top: var(--nav-height);
    z-index: 90;
    background: var(--green-dark);
    border-bottom: 1px solid var(--border-light);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-right: 0;
  }

  .help-sidebar-label,
  .help-sidebar-footer { display: none; }

  .help-sidebar-nav {
    display: flex;
    padding: 0;
    white-space: nowrap;
  }

  .help-sidebar-link {
    padding: 13px 18px;
    border-bottom: 2px solid transparent;
    gap: 6px;
    font-size: 0.78rem;
  }

  .help-sidebar-link.active {
    border-bottom-color: var(--gold);
    color: var(--gold);
  }

  .help-sidebar-icon { display: none; }

  .help-main .container { padding: 0 24px; }
}

/* ── Install section ────────────────────────────────── */
.install-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 220px;
  gap: 24px;
  align-items: start;
}

.install-device-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.install-steps-list {
  list-style: decimal;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.install-steps-list li {
  font-size: 0.875rem;
  color: var(--cream-dim);
  line-height: 1.5;
}

.install-steps-list li strong { color: var(--cream); }

.install-note {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.key-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 0.8rem;
}

/* ── QR codes ───────────────────────────────────────── */
.install-qr-col { display: flex; flex-direction: column; gap: 0; }

.qr-card {
  background: var(--green-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.qr-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.qr-code-box {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.qr-code-box canvas, .qr-code-box img {
  border-radius: 8px;
  border: 4px solid var(--green-dark);
}

.qr-url {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 6px;
}

.qr-hint {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── Course methods ─────────────────────────────────── */
.course-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.course-method-header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.course-method-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.course-method-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.3;
}

.help-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.help-list li {
  font-size: 0.85rem;
  color: var(--cream-dim);
  display: flex;
  gap: 8px;
  line-height: 1.4;
}

.help-list li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 2px;
}

.help-list li strong { color: var(--cream); }

.help-coming-soon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 10px 14px;
  background: rgba(201,168,76,0.06);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Shot cards ─────────────────────────────────────── */
.shotcard-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.shotcard-category {
  background: var(--green-deep);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s;
}

.shotcard-category:hover { border-color: var(--border); }

.shotcard-cat-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}

.shotcard-cat-icon { font-size: 1.6rem; }

.shotcard-cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
}

.shotcard-cat-count {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.shotcard-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shotcard-list li {
  font-size: 0.82rem;
  color: var(--cream-dim);
  padding-left: 12px;
  position: relative;
}

.shotcard-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.shotcard-how {
  background: var(--green-deep);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px;
}

.shotcard-how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.shotcard-how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.shotcard-how-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

.shotcard-how-step p {
  font-size: 0.82rem;
  text-align: center;
}

/* ── Practice log ───────────────────────────────────── */
.practice-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}

.focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.focus-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  border: 1px solid var(--border);
}

.practice-mock { padding: 28px; }

.pmock-session {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

.pmock-session:last-of-type { border-bottom: none; }

.pmock-session-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.pmock-session-header strong {
  font-size: 0.85rem;
  color: var(--cream);
}

.pmock-session-notes {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
}

.pmock-total {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  text-align: right;
}

/* ── Warmup tracker ─────────────────────────────────── */
.warmup-section {
  background: var(--green-deep);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px;
}

.warmup-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.warmup-item {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  border: 1px solid var(--border-light);
  background: rgba(0,0,0,0.15);
  color: var(--text-muted);
}

.warmup-done {
  background: rgba(111,207,151,0.08);
  border-color: rgba(111,207,151,0.2);
  color: #6FCF97;
  text-decoration: line-through;
  text-decoration-color: rgba(111,207,151,0.4);
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1000px) {
  .install-grid { grid-template-columns: 1fr 1fr; }
  .install-qr-col { grid-column: span 2; flex-direction: row; gap: 20px; }
  .qr-card { flex: 1; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-text p { max-width: 100%; }
  .hero-visual { order: -1; }
  .hero-waitlist { justify-content: center; }
  .hero-stats { justify-content: center; }

  .card-grid-3 { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .install-grid { grid-template-columns: 1fr; }
  .install-qr-col { grid-column: span 1; flex-direction: column; }
  .course-methods { grid-template-columns: 1fr; }
  .shotcard-categories { grid-template-columns: 1fr 1fr; }
  .shotcard-how-steps { grid-template-columns: 1fr 1fr; }
  .practice-layout { grid-template-columns: 1fr; }
  .warmup-items { grid-template-columns: 1fr 1fr; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--green-darkest);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
  }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .phone-mockup { width: 220px; }
}
