/* ============================================
   Caddy — AI Golf Caddy
   Premium golf aesthetic CSS
   ============================================ */

:root {
  --green-deep: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #40916C;
  --green-pale: #74C69D;
  --gold: #D4A843;
  --gold-light: #E8C97A;
  --bg-white: #FAFAF5;
  --bg-sage: #F0F4F0;
  --bg-card: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #7A7A7A;
  --text-white: #FFFFFF;
  --shadow-green: 0 2px 12px rgba(27, 67, 50, 0.08);
  --shadow-card: 0 1px 8px rgba(27, 67, 50, 0.06);
  --shadow-lift: 0 4px 20px rgba(27, 67, 50, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --score-eagle: #D4A843;
  --score-birdie: #2D6A4F;
  --score-par: #1A1A1A;
  --score-bogey: #E07A5F;
  --score-double: #C1121F;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 44px;
  text-decoration: none;
}

.btn-primary {
  background: var(--green-deep);
  color: var(--text-white);
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lift);
}

.btn-gold {
  background: var(--gold);
  color: var(--green-deep);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--green-deep);
  border: 2px solid var(--green-deep);
}
.btn-outline:hover {
  background: var(--green-deep);
  color: var(--text-white);
}

.btn-outline-light {
  background: transparent;
  color: var(--text-white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ---- Loading & Empty ---- */
.loading, .empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  color: var(--text-light);
  font-size: 1rem;
}

/* ============================================
   LANDING PAGE
   ============================================ */

.landing {
  min-height: 100vh;
  background: var(--bg-white);
}

.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top, 0px);
  background: var(--green-deep);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.landing-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing-logo, .footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.logo-icon svg {
  width: 22px;
  height: 22px;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

/* Hero */
.hero {
  background: linear-gradient(165deg, var(--green-deep) 0%, #0B2619 100%);
  color: var(--text-white);
  padding: 120px 24px 80px;
  text-align: center;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero-mic-animation {
  margin: 32px auto;
}

.mic-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  color: var(--gold);
}

.mic-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(212, 168, 67, 0.4);
  animation: micPulse 2s ease-out infinite;
}
.mic-pulse-2 {
  animation-delay: 1s;
}

@keyframes micPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

.hero-email-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto 16px;
}

.hero-email-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  color: white;
  font-family: var(--font);
  font-size: 0.95rem;
  min-height: 44px;
}
.hero-email-input::placeholder {
  color: rgba(255,255,255,0.4);
}
.hero-email-input:focus {
  outline: none;
  border-color: var(--gold);
}

.hero-email-success {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-demo-btn {
  margin-top: 8px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
}
.hero-demo-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* Sections */
.section {
  padding: 72px 24px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  color: var(--green-deep);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

/* Demo Section */
.demo-section {
  background: var(--bg-sage);
}

.demo-box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-green);
}

.demo-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E0E8E0;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  resize: none;
  background: var(--bg-sage);
  color: var(--text-dark);
  line-height: 1.5;
}
.demo-textarea:focus {
  outline: none;
  border-color: var(--green-mid);
}

.demo-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.demo-mic-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--green-deep);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.demo-mic-btn:hover {
  background: var(--green-mid);
}

.demo-mic-listening {
  background: #dc2626;
  animation: mic-pulse-demo 1.5s ease-in-out infinite;
}

@keyframes mic-pulse-demo {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
}

.demo-parse-btn {
  flex: 1;
}

.demo-result {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #E0E8E0;
}

.demo-result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.demo-source-badge, .source-badge {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.demo-source-badge {
  background: rgba(45, 106, 79, 0.1);
  color: var(--green-mid);
}
.source-ai {
  background: rgba(212, 168, 67, 0.15);
  color: #B08C30;
}
.source-parser {
  background: rgba(45, 106, 79, 0.1);
  color: var(--green-mid);
}

.demo-confidence, .confidence-badge {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

.demo-fields, .voice-result-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.demo-field, .voice-field {
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
  background: var(--bg-sage);
  border-radius: var(--radius-sm);
}

.demo-field-label, .voice-field-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 2px;
}

.demo-field-value, .voice-field-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  border-bottom: 1px dashed transparent;
}

.voice-field-value:hover {
  border-bottom-color: var(--green-mid);
}

.voice-field {
  position: relative;
}

.voice-field-edit {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  border: 1px solid var(--green-mid);
  border-radius: 4px;
  padding: 2px 6px;
  width: 100%;
  background: var(--white);
  outline: none;
}

.voice-field-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.voice-field:hover .voice-field-remove {
  opacity: 1;
}

.voice-field-remove:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.voice-edit-hint {
  font-size: 0.7rem;
  color: var(--text-light);
  font-style: italic;
}

.demo-error {
  color: var(--score-double);
  text-align: center;
  padding: 20px;
}

.demo-examples {
  max-width: 640px;
  margin: 20px auto 0;
}

.demo-examples-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.demo-example-chips, .voice-example-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.demo-chip, .voice-example-chip {
  padding: 8px 14px;
  background: var(--bg-card);
  border: 1px solid #E0E8E0;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.8rem;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}
.demo-chip:hover, .voice-example-chip:hover {
  border-color: var(--green-mid);
  color: var(--green-deep);
  background: var(--bg-sage);
}

/* On-Course Preview */
.preview-section {
  background: var(--green-deep);
}

.preview-title,
.preview-subtitle {
  color: var(--text-white) !important;
}
.preview-subtitle {
  opacity: 0.8;
}

.preview-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

/* Phone Mockup */
.phone-mockup {
  position: relative;
  width: 300px;
  min-width: 280px;
  background: #111;
  border-radius: 32px;
  padding: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), inset 0 0 0 2px #333;
}

.phone-notch {
  width: 100px;
  height: 22px;
  background: #111;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 0;
  position: relative;
  z-index: 2;
}

.phone-screen {
  background: var(--green-deep);
  border-radius: 22px;
  padding: 8px 18px 14px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-hole-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 4px;
}

.phone-hole-label {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 0.04em;
}

.phone-hole-meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

.phone-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.phone-section-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.phone-yardage-main {
  display: flex;
  flex-direction: column;
}

.phone-yardage-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
}

.phone-yardage-unit {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.6;
}

.phone-yardage-detail {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.phone-conditions {
  display: flex;
  flex-direction: column;
}

.phone-conditions-row {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.phone-caddy {
  background: rgba(212, 168, 67, 0.12);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 10px 12px;
}

.phone-caddy .phone-section-label {
  color: var(--gold);
}

.phone-caddy-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  font-style: italic;
}

.phone-scorecard-row {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.phone-bottom-bar {
  display: flex;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.phone-bar-btn {
  flex: 1;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 8px 4px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}

.phone-bar-btn-primary {
  background: var(--green-light);
  color: var(--text-white);
}

.phone-bar-btn-gold {
  background: rgba(212, 168, 67, 0.2);
  color: var(--gold-light);
}

/* Watch Mockup */
.watch-mockup {
  position: relative;
  width: 180px;
  min-width: 170px;
  background: #111;
  border-radius: 42px;
  padding: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), inset 0 0 0 2px #333;
}

.watch-crown {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 24px;
  background: #333;
  border-radius: 0 3px 3px 0;
}

.watch-screen {
  background: #0a0a0a;
  border-radius: 30px;
  padding: 20px 16px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.watch-line-main {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-white);
  text-align: center;
}

.watch-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 2px 0;
}

.watch-line {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

.watch-line-small {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

.watch-line-gold {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
}

/* Preview responsive */
@media (max-width: 768px) {
  .preview-grid {
    flex-direction: column;
    gap: 40px;
  }

  .phone-mockup {
    width: 280px;
    min-width: 0;
  }

  .watch-mockup {
    width: 170px;
    min-width: 0;
  }
}

/* Pain Points */
.pain-section {
  background: var(--bg-white);
}

.pain-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.pain-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(27, 67, 50, 0.06);
}

.pain-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--green-mid);
}
.pain-icon svg {
  width: 28px;
  height: 28px;
}

.pain-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.4;
}

/* Features */
.features-section {
  background: var(--bg-sage);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(27, 67, 50, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(27, 67, 50, 0.06);
  margin-bottom: 14px;
  color: var(--green-deep);
}
.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--green-deep);
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* How It Works */
.how-section {
  background: var(--bg-white);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.how-step {
  text-align: center;
}

.how-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 16px;
}

.how-step h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--green-deep);
}

.how-step p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* Pricing */
.pricing-section {
  background: var(--bg-sage);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
  text-align: center;
  position: relative;
}

.pricing-card-pro {
  border-color: var(--gold);
  box-shadow: var(--shadow-lift);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--green-deep);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-tier {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.pricing-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-annual {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 20px 0;
}

.pricing-features li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  position: relative;
  padding-left: 24px;
}
.pricing-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-weight: 700;
}

.pricing-email-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-email-input {
  padding: 10px 14px;
  border: 2px solid #E0E8E0;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  text-align: center;
}
.pricing-email-input:focus {
  outline: none;
  border-color: var(--gold);
}

/* Credibility */
/* Platform Section */
.platform-section {
  background: var(--bg-sage);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.platform-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.8rem 1.2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(27, 67, 50, 0.06);
}

.platform-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(27, 67, 50, 0.06);
  margin: 0 auto 0.8rem;
  color: var(--green-deep);
}
.platform-icon svg {
  width: 28px;
  height: 28px;
}

.platform-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 0.4rem;
}

.platform-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.platform-coming-soon {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(212, 168, 67, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.platform-integrations {
  text-align: center;
}

.platform-integrations h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 1rem;
}

.integration-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.integration-badge {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-deep);
}

@media (max-width: 768px) {
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.credibility-section {
  background: var(--green-deep);
  padding: 56px 24px;
}

.credibility-text {
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Footer */
.landing-footer {
  background: #0B2619;
  padding: 40px 24px;
  text-align: center;
}

.landing-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-tagline {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-top: 8px;
}

.footer-copy {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  margin-top: 16px;
}

/* ============================================
   APP SHELL
   ============================================ */

.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-height: 100vh;
  background: var(--bg-sage);
}

.app-header {
  background: var(--green-deep);
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: env(safe-area-inset-top, 0px);
}

.app-header-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.exit-demo-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.15s;
}

.exit-demo-btn:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.logo-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.app-main {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  padding-bottom: 80px;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

/* Bottom tabs */
.bottom-tabs {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid rgba(27, 67, 50, 0.1);
  display: flex;
  justify-content: space-around;
  padding: 6px 0 env(safe-area-inset-bottom, 6px);
  z-index: 50;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.04);
}

.tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  min-width: 56px;
  min-height: 44px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.tab-btn.active {
  background: rgba(27, 67, 50, 0.08);
}

.tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}
.tab-icon svg {
  width: 20px;
  height: 20px;
}
.tab-btn.active .tab-icon {
  color: var(--green-deep);
}

.tab-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.tab-btn.active .tab-label {
  color: var(--green-deep);
}

/* Page titles */
.page-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.page-subtitle {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* ============================================
   SCORECARD
   ============================================ */

.scorecard-page {
  padding-bottom: 24px;
}

.scorecard-header-card {
  background: var(--green-deep);
  color: var(--text-white);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 20px;
}

.scorecard-course {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.scorecard-meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.meta-sep {
  margin: 0 6px;
  opacity: 0.4;
}

.scorecard-weather {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.scorecard-totals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.total-box {
  text-align: center;
}

.total-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
}

.total-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
}

.total-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
}

/* Scorecard Grid */
.scorecard-grid-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.scorecard-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  margin-top: 16px;
}

.scorecard-grid {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 8px;
  min-width: 100%;
}

.scorecard-row {
  display: grid;
  grid-template-columns: 44px repeat(9, 1fr) 44px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.scorecard-row:last-child {
  border-bottom: none;
}

.sc-cell {
  padding: 6px 2px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  min-width: 0;
}

.sc-label {
  font-weight: 700;
  color: var(--text-light);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: var(--bg-sage);
}

.sc-total {
  font-weight: 800;
  background: var(--bg-sage);
}

.sc-yardage {
  font-size: 0.65rem;
  color: var(--text-light);
}

.scorecard-row-header .sc-cell {
  font-weight: 700;
  color: var(--green-deep);
  background: rgba(27, 67, 50, 0.05);
}

.scorecard-row-par .sc-cell {
  color: var(--text-light);
}

.sc-score {
  cursor: pointer;
  font-weight: 800;
  border-radius: 4px;
  transition: background 0.15s;
}
.sc-score:hover {
  background: rgba(27, 67, 50, 0.08);
}

.score-eagle { color: var(--score-eagle); }
.score-birdie { color: var(--score-birdie); }
.score-par { color: var(--score-par); }
.score-bogey { color: var(--score-bogey); }
.score-double { color: var(--score-double); }

.sc-indicators {
  display: flex;
  gap: 2px;
  justify-content: center;
  font-size: 0.55rem;
}

.indicator {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.5rem;
}

.indicator-hit {
  background: var(--green-mid);
  color: white;
}

.indicator-miss {
  background: rgba(0,0,0,0.08);
  color: var(--text-light);
}

.scorecard-grand-total {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-top: 12px;
  font-size: 1.1rem;
}

.vs-par {
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
}
.vs-par.over {
  background: rgba(192, 18, 31, 0.1);
  color: var(--score-double);
}
.vs-par.under {
  background: rgba(45, 106, 79, 0.1);
  color: var(--green-mid);
}

/* Hole Detail Card */
.hole-detail-card {
  position: fixed;
  bottom: 68px;
  left: 16px;
  right: 16px;
  max-width: 568px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
  padding: 20px;
  z-index: 40;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.hole-detail-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.hole-detail-header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green-deep);
}

.hole-detail-par {
  font-size: 0.85rem;
  color: var(--text-light);
}

.hole-detail-close {
  margin-left: auto;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--bg-sage);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hole-detail-score {
  margin-bottom: 12px;
}

.score-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
}
.score-badge.score-eagle { background: rgba(212, 168, 67, 0.15); }
.score-badge.score-birdie { background: rgba(45, 106, 79, 0.1); }
.score-badge.score-par { background: rgba(0,0,0,0.05); }
.score-badge.score-bogey { background: rgba(224, 122, 95, 0.1); }
.score-badge.score-double { background: rgba(193, 18, 31, 0.1); }

.hole-detail-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.hd-stat {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--bg-sage);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

.hd-label {
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.8rem;
}

.hole-detail-journal, .hole-detail-notes {
  margin-top: 8px;
  padding: 10px 12px;
  background: var(--bg-sage);
  border-radius: var(--radius-sm);
}

.hole-detail-journal p, .hole-detail-notes p {
  margin-top: 4px;
  font-size: 0.9rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.4;
}

/* ============================================
   VOICE PAGE
   ============================================ */

.voice-page {
  text-align: center;
}

.voice-mic-area {
  margin: 24px 0;
}

.voice-mic-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-deep);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  transition: all 0.2s;
}
.voice-mic-btn:hover {
  background: var(--green-mid);
  transform: scale(1.05);
}
.voice-mic-btn.listening {
  background: var(--score-double);
  animation: micBreathe 1.5s ease-in-out infinite;
}

@keyframes micBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.mic-pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid var(--score-double);
  animation: micPulse 1.5s ease-out infinite;
}
.mic-pulse-ring-2 {
  animation-delay: 0.75s;
}

.voice-listening-text {
  margin-top: 12px;
  color: var(--score-double);
  font-weight: 600;
  font-size: 0.9rem;
}

.voice-no-speech {
  color: var(--text-light);
  font-size: 0.9rem;
  padding: 20px;
}

.voice-transcript {
  margin-top: 12px;
  font-style: italic;
  color: var(--text-mid);
  font-size: 0.95rem;
}

.voice-raw-transcript {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 8px;
  opacity: 0.6;
}

.voice-text-area {
  margin: 20px 0;
}

.voice-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E0E8E0;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  resize: none;
  background: var(--bg-card);
  color: var(--text-dark);
  text-align: left;
}
.voice-textarea:focus {
  outline: none;
  border-color: var(--green-mid);
}

.voice-parse-btn {
  width: 100%;
  margin-top: 10px;
}

.voice-result-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-green);
  margin: 20px 0;
  text-align: left;
}

.voice-result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.voice-ai-note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
}

.voice-add-btn {
  width: 100%;
  margin-top: 16px;
}

.voice-added {
  text-align: center;
  color: var(--green-mid);
  font-weight: 700;
  margin-top: 16px;
  padding: 12px;
  background: rgba(45, 106, 79, 0.08);
  border-radius: var(--radius);
}

.voice-examples {
  margin-top: 32px;
  text-align: left;
}

.voice-examples-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 12px;
}

/* ============================================
   STATS PAGE
   ============================================ */

.stats-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.stat-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-top: 2px;
}

.stats-section {
  margin-bottom: 24px;
}

.stats-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 12px;
}

/* Scoring Distribution */
.scoring-dist {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-card);
}

.scoring-dist-row {
  display: grid;
  grid-template-columns: 70px 1fr 30px 40px;
  gap: 8px;
  align-items: center;
  padding: 6px 0;
}

.scoring-dist-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
}

.scoring-dist-bar-bg {
  height: 12px;
  background: var(--bg-sage);
  border-radius: 6px;
  overflow: hidden;
}

.scoring-dist-bar {
  height: 100%;
  border-radius: 6px;
  min-width: 4px;
  transition: width 0.5s ease;
}

.scoring-bar-eagle { background: var(--score-eagle); }
.scoring-bar-birdie { background: var(--score-birdie); }
.scoring-bar-par { background: var(--text-dark); }
.scoring-bar-bogey { background: var(--score-bogey); }
.scoring-bar-double { background: var(--score-double); }

.scoring-dist-count {
  font-size: 0.8rem;
  font-weight: 700;
  text-align: right;
}

.scoring-dist-pct {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: right;
}

/* Club Table */
.club-table {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.club-table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 60px;
  padding: 10px 16px;
  background: var(--bg-sage);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
}

.club-table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 60px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 0.9rem;
}
.club-table-row:last-child { border-bottom: none; }

.club-col-name { font-weight: 600; }
.club-col-dist { color: var(--text-mid); }
.club-col-shots { color: var(--text-light); text-align: right; }

/* Recent Rounds */
.recent-round-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow-card);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recent-round-course {
  font-weight: 600;
  font-size: 0.95rem;
}

.recent-round-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.recent-round-score {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--green-deep);
}

/* ============================================
   BETS PAGE
   ============================================ */

.bets-page {
  padding-bottom: 24px;
}

.bet-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-green);
  padding: 20px;
  margin-bottom: 16px;
}

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

.bet-type-badge {
  padding: 4px 12px;
  background: var(--green-deep);
  color: var(--text-white);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.bet-unit {
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 600;
}

.bet-status-badge {
  margin-left: auto;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.bet-status-badge.active {
  background: rgba(45, 106, 79, 0.1);
  color: var(--green-mid);
}
.bet-status-badge.settled {
  background: rgba(212, 168, 67, 0.15);
  color: #B08C30;
}

.bet-teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.team-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-deep);
}

.bet-vs {
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Nassau breakdown */
.nassau-breakdown {
  margin-bottom: 16px;
}

.nassau-row {
  display: grid;
  grid-template-columns: 80px 1fr 50px;
  align-items: center;
  padding: 10px 12px;
  background: var(--bg-sage);
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
}

.nassau-overall {
  background: rgba(27, 67, 50, 0.08);
  border: 1px solid rgba(27, 67, 50, 0.15);
}

.nassau-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
}

.nassau-status {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.nassau-unit {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-align: right;
}

/* Presses */
.presses-section {
  margin-bottom: 16px;
}

.presses-title, .bet-results-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.press-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  background: rgba(212, 168, 67, 0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
}

.press-team {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.press-detail {
  font-size: 0.8rem;
  color: var(--text-mid);
}

.press-unit {
  font-weight: 700;
  color: var(--gold);
}

/* Bet Results Grid */
.bet-results-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 4px;
}

.bet-hole-result {
  text-align: center;
  padding: 6px 2px;
  border-radius: 4px;
  font-size: 0.7rem;
}

.bet-hole-result.team1 { background: rgba(45, 106, 79, 0.1); }
.bet-hole-result.team2 { background: rgba(224, 122, 95, 0.1); }
.bet-hole-result.halved { background: var(--bg-sage); }

.bet-hole-num {
  display: block;
  font-weight: 700;
  font-size: 0.65rem;
  color: var(--text-light);
}

.bet-hole-scores {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
}

.bet-hole-winner {
  display: block;
  font-weight: 800;
  font-size: 0.65rem;
}
.team1 .bet-hole-winner { color: var(--green-mid); }
.team2 .bet-hole-winner { color: var(--score-bogey); }
.halved .bet-hole-winner { color: var(--text-light); }

/* Settlement */
.bet-settlement {
  margin-top: 16px;
  padding: 16px;
  background: linear-gradient(135deg, var(--green-deep), #0B2619);
  border-radius: var(--radius);
  text-align: center;
  color: var(--text-white);
}

.settlement-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}

.settlement-amount {
  font-size: 1rem;
}
.settlement-amount strong {
  color: var(--gold);
  font-size: 1.3rem;
}

/* ============================================
   SETTINGS PAGE
   ============================================ */

.settings-page {
  padding-bottom: 24px;
}

.settings-section {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
  margin-bottom: 16px;
}

.settings-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 16px;
}

.settings-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-input, .form-select {
  padding: 10px 14px;
  border: 2px solid #E0E8E0;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  background: var(--bg-sage);
  color: var(--text-dark);
  min-height: 44px;
}
.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--green-mid);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237A7A7A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.settings-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.club-bag {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.club-bag-item {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
  padding: 10px 12px;
  background: var(--bg-sage);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.club-bag-name {
  font-weight: 600;
}

.club-bag-dist {
  color: var(--text-mid);
}

.club-bag-shots {
  color: var(--text-light);
  font-size: 0.8rem;
}

.settings-about {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 480px) {
  .hero-email-form {
    flex-direction: column;
  }

  .pain-cards {
    grid-template-columns: 1fr 1fr;
  }

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

  .bet-results-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (min-width: 768px) {
  .app-main {
    max-width: 640px;
  }

  .scorecard-row {
    font-size: 0.85rem;
  }

  .sc-cell {
    padding: 8px 4px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.8rem;
  }

  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
