*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }

:root {
  --forest: #42592C;
  --forest-dark: #334621;
  --forest-pastel: #EAEFE5;
  --forest-mid: #CDD8C4;
  
  --gold: #C4880C;
  --gold-dark: #9A6B08;
  --gold-pastel: #FDF3E0;
  --gold-mid: #F5DFB3;
  
  --orange: #D4781E;
  --orange-dark: #B5621A;
  --orange-pastel: #FDF0E6;
  --orange-mid: #F8D9BE;
  
  --cream: #FAF7F2;
  --cream-dark: #F0EBE3;
  --text-primary: #2D2D2D;
  --text-secondary: #5A5A5A;
  --text-light: #8A8A8A;
  --white: #FFFFFF;
  --dark-bg: #1C1C1C;
  --card-hover: 0 8px 30px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* â•â•â• NAV â€” solid forest green â•â•â• */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--forest);
  padding: 14px 0;
  transition: box-shadow 0.3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 24px; color: var(--white); text-decoration: none;
}
.nav-tagline {
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 600;
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.35);
  letter-spacing: 0.01em;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.85);
  font-size: 15px; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--white) !important; color: var(--forest) !important;
  padding: 10px 24px !important; border-radius: 50px;
  font-weight: 600 !important; font-size: 14px !important;
  transition: all 0.2s !important;
}
.nav-cta:hover { background: var(--gold-pastel) !important; transform: translateY(-1px); }
.mobile-menu { display: none; cursor: pointer; background: none; border: none; padding: 8px; }
.mobile-menu span { display: block; width: 24px; height: 2px; background: var(--white); margin: 6px 0; transition: 0.3s; }
.nav-cta-mobile {
  display: none;
  background: var(--white); color: var(--forest);
  padding: 7px 16px; border-radius: 50px;
  font-weight: 600; font-size: 12px;
  text-decoration: none; margin-left: auto; margin-right: 8px;
  transition: all 0.2s;
}
.nav-cta-mobile:hover { background: var(--gold-pastel); }

/* â•â•â• HERO â•â•â• */
.hero {
  padding: 130px 0 80px;
  min-height: 90vh;
  display: flex; align-items: center;
  background: linear-gradient(160deg, var(--forest-pastel) 0%, var(--cream) 40%, var(--gold-pastel) 100%);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.hero-pill {
  display: inline-block;
  background: var(--gold-pastel); color: var(--gold-dark);
  font-size: 13px; font-weight: 600;
  padding: 8px 18px; border-radius: 50px;
  margin-bottom: 24px; letter-spacing: 0.02em;
  border: 1px solid var(--gold-mid);
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1; color: var(--text-primary);
  margin-bottom: 20px;
}
.hero p.hero-desc {
  font-size: 18px; color: var(--text-secondary);
  max-width: 480px; margin-bottom: 16px; line-height: 1.7;
}
.hero-desc-bold {
  font-size: 13px;
  color: var(--text-primary);
  max-width: 480px;
  margin-bottom: 24px;
  line-height: 1.7;
  margin-top: 20px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-top: 12px; }
.btn-primary {
  background: var(--forest); color: var(--white);
  padding: 16px 32px; border-radius: 50px;
  text-decoration: none; font-weight: 600; font-size: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s ease; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--forest-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(66,89,44,0.3); }
.btn-gold {
  background: var(--gold); color: var(--white);
  padding: 16px 32px; border-radius: 50px;
  text-decoration: none; font-weight: 600; font-size: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s ease; border: none; cursor: pointer;
}
/* Shimmer sweep on load — plays once */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: btn-shimmer 1.5s ease-out 0.8s 1 forwards;
  pointer-events: none;
}
@keyframes btn-shimmer {
  from { left: -55%; }
  to   { left: 115%; }
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-secondary {
  color: var(--forest); font-weight: 600; font-size: 16px;
  text-decoration: none; padding: 16px 8px;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-secondary:hover { color: var(--forest-dark); }
.hero-trial { font-size: 13px; color: var(--text-light); margin-top: 12px; }

/* â•â•â• PHONE MOCKUPS â•â•â• */
.phone-mockup {
  width: 300px; background: #1a1a1a; border-radius: 32px;
  padding: 10px; box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  flex-shrink: 0; position: relative; overflow: hidden;
}
.phone-mockup img { width: 100%; border-radius: 24px; display: block; }
.phone-mockup-lg { width: 340px; }
.hero-phone-container { display: flex; justify-content: center; align-items: center; }
.hero-phone-container .phone-mockup { animation: float 6s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.phone-pair {
  display: flex; align-items: flex-start; justify-content: center;
}
.phone-pair .phone-mockup:first-child { z-index: 2; }
.phone-pair .phone-mockup:last-child { margin-left: 20px; margin-top: 30px; z-index: 1; }

/* â•â•â• SECTION HELPERS â•â•â• */
.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 16px; text-align: center;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  text-align: center; margin-bottom: 16px; line-height: 1.2;
}
.section-subtitle {
  text-align: center; color: var(--text-secondary);
  font-size: 18px; max-width: 600px; margin: 0 auto 60px;
}

/* â•â•â• WHY TAGTEAM â€” COMPACT BENTO â•â•â• */
.why-section { padding: 100px 0; background: var(--white); }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.bento-card {
  border-radius: 18px; padding: 24px;
  transition: all 0.3s ease; overflow: hidden;
}
.bento-card:hover { transform: translateY(-3px); box-shadow: var(--card-hover); }
.bento-card.span-2 { grid-column: span 2; }
.bento-card.green { background: var(--forest-pastel); }
.bento-card.gold { background: var(--gold-pastel); }
.bento-card.orange { background: var(--orange-pastel); }
.bento-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px; margin-bottom: 8px; color: var(--text-primary);
}
.bento-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.55; }
.bento-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.bento-icon.forest { background: var(--forest); color: white; }
.bento-icon.gold { background: var(--gold); color: white; }
.bento-icon.orange { background: var(--orange); color: white; }

/* â•â•â• RHYTHM â€” ALWAYS 4 COLS â•â•â• */
.rhythm-section {
  padding: 100px 0;
  background: var(--forest-pastel);
}
.rhythm-steps {
  display: flex; gap: 24px; margin-top: 60px;
}
.rhythm-step {
  flex: 1; min-width: 0;
  text-align: center; position: relative;
}
.rhythm-number {
  font-family: 'DM Serif Display', serif;
  font-size: 64px; color: var(--orange); margin-bottom: 10px;
  font-weight: 700;
}
.rhythm-step h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.rhythm-step p { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }
.rhythm-step::after {
  content: ''; position: absolute; top: 36px; right: -12px;
  width: 24px; height: 2px; background: var(--orange-mid);
}
.rhythm-step:last-child::after { display: none; }

/* â•â•â• FEATURES â•â•â• */
.features-section { padding: 100px 0; background: var(--white); }
.feature-bg-green { background: #FDFCF8; padding: 80px 0; }
.feature-bg-gold { background: var(--white); padding: 80px 0; }
.feature-bg-orange { background: #FDFCF8; padding: 80px 0; }
.feature-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  margin-bottom: 0;
}
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }
.feature-label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 20px;
}
.feature-label.green { background: var(--forest-pastel); color: var(--forest); }
.feature-label.gold { background: var(--gold-pastel); color: var(--gold); }
.feature-label.orange { background: var(--orange-pastel); color: var(--orange); }
.feature-block h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.15; margin-bottom: 16px;
}
.feature-block .subtitle {
  font-size: 17px; color: var(--text-secondary); margin-bottom: 28px; line-height: 1.6;
}
.feature-list { list-style: none; }
.feature-list li {
  padding: 8px 0; font-size: 15px; color: var(--text-secondary); line-height: 1.6;
}
.feature-list li strong { color: var(--text-primary); }

/* â•â•â• COMING SOON â€” soft gold pastel â•â•â• */
.coming-soon-section {
  padding: 80px 0 100px;
  background: var(--gold-pastel);
}
.coming-soon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.coming-soon-card {
  background: var(--white); border-radius: 20px; padding: 36px;
  border: 1px solid var(--gold-mid);
}
.coming-soon-badge {
  display: inline-block; background: var(--orange-pastel); color: var(--orange);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 50px; margin-bottom: 16px;
}
.coming-soon-card h3 {
  font-family: 'DM Serif Display', serif; font-size: 24px; margin-bottom: 12px;
}
.coming-soon-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }

/* â•â•â• ABOUT â•â•â• */
.about-section { padding: 100px 0; background: var(--white); }
.about-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(20px, 3vw, 28px);
  text-align: center; color: var(--forest);
  max-width: 800px; margin: 0 auto 40px;
  line-height: 1.4; font-weight: 700;
  font-style: normal;
}
.about-text {
  max-width: 700px; margin: 0 auto 60px;
  font-size: 16px; color: var(--text-secondary); line-height: 1.8;
  text-align: center;
}

/* â•â•â• EVIDENCE â€” uses orange pastel â•â•â• */
.evidence-section { padding: 80px 0 100px; background: var(--orange-pastel); }
.evidence-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.evidence-card {
  background: var(--white); border-radius: 20px; padding: 32px;
  border: 1px solid var(--orange-mid);
  transition: all 0.3s ease;
}
.evidence-card:hover { transform: translateY(-4px); box-shadow: var(--card-hover); }
.evidence-card h3 {
  font-family: 'DM Serif Display', serif; font-size: 20px; margin-bottom: 12px;
  color: var(--orange-dark);
}
.evidence-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.evidence-cite { font-size: 12px; color: var(--text-light); margin-top: 16px; font-style: italic; }

/* â•â•â• PRICING â•â•â• */
.pricing-section { padding: 100px 0; background: var(--cream); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 800px; margin: 0 auto; }
.pricing-card { border-radius: 24px; padding: 40px; background: var(--white); }
.pricing-card.featured {
  background: var(--white); border: 2px solid var(--forest);
  box-shadow: 0 8px 40px rgba(66,89,44,0.12);
}
.pricing-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 16px;
}
.pricing-card .price {
  font-family: 'DM Serif Display', serif; font-size: 48px; margin-bottom: 4px;
}
.pricing-card .price-detail { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; }
.pricing-card .pricing-cta {
  display: block; width: 100%; text-align: center; padding: 14px; border-radius: 50px;
  font-weight: 600; font-size: 15px; text-decoration: none; margin-bottom: 24px;
  transition: all 0.3s ease;
}
.pricing-free-cta { background: var(--forest-pastel); color: var(--forest); }
.pricing-featured-cta { background: var(--forest); color: var(--white); }
.pricing-featured-cta:hover { background: var(--forest-dark); transform: translateY(-2px); }
.pricing-features { list-style: none; }
.pricing-features li {
  padding: 6px 0; font-size: 14px; color: var(--text-secondary);
  display: flex; gap: 10px; align-items: flex-start;
}
.pricing-features li::before { content: '✓'; color: var(--forest); font-weight: 700; flex-shrink: 0; }
.pricing-features li.disabled::before { content: '—'; color: var(--text-light); }
.pricing-features li.disabled { color: var(--text-light); }
.therapist-note {
  max-width: 800px; margin: 40px auto 0;
  background: var(--gold-pastel); border: 1px solid var(--gold-mid);
  border-radius: 16px; padding: 24px 32px;
  font-size: 15px; color: var(--text-secondary);
}
.therapist-note strong { color: var(--gold-dark); }

/* â•â•â• FAQS â€” green pastel bg â•â•â• */
.faqs-section { padding: 100px 0; background: var(--forest-pastel); }
.faq-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.faq-why-card {
  background: var(--white); border-radius: 20px; padding: 32px;
  border: 1px solid var(--forest-mid);
}
.faq-why-card h3 {
  font-family: 'DM Serif Display', serif; font-size: 20px; margin-bottom: 12px;
  color: var(--forest);
}
.faq-why-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.faq-research {
  background: #FDFCFA; border-radius: 12px; padding: 16px;
  font-size: 13px; color: var(--text-primary); line-height: 1.55;
  border: 1px solid var(--forest-mid);
}
.faq-research cite { font-size: 11px; color: var(--text-secondary); display: block; margin-top: 8px; font-style: italic; }
.faq-accordion { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--forest-mid); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 24px 0; text-align: left;
  font-size: 17px; font-weight: 600; color: var(--text-primary);
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'DM Sans', sans-serif;
}
.faq-question::after { content: '+'; font-size: 24px; color: var(--forest); transition: transform 0.3s; }
.faq-item.active .faq-question::after { content: '—'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 24px; font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* â•â•â• FINAL CTA â•â•â• */
.final-cta-section {
  padding: 100px 0; text-align: center;
  background: var(--forest);
  color: var(--white);
}
.final-cta-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 5vw, 52px); margin-bottom: 20px;
  color: var(--white);
}
.final-cta-section p { color: rgba(255,255,255,0.75); font-size: 16px; margin-bottom: 32px; }
.btn-white {
  background: var(--white); color: var(--forest);
  padding: 18px 40px; border-radius: 50px;
  text-decoration: none; font-weight: 600; font-size: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s ease; border: none; cursor: pointer;
}
.btn-white:hover { background: var(--gold-pastel); transform: translateY(-2px); }

/* â•â•â• FOOTER â•â•â• */
footer { background: var(--dark-bg); color: rgba(255,255,255,0.7); padding: 60px 0 40px; }
.footer-inner {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.footer-brand { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--white); margin-bottom: 8px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.5); }
.footer-links a {
  display: block; color: rgba(255,255,255,0.7);
  text-decoration: none; font-size: 14px; padding: 4px 0; transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-email { color: rgba(255,255,255,0.5); font-size: 14px; text-align: right; }
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0; padding: 20px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center; font-size: 13px; color: rgba(255,255,255,0.4);
}

/* â•â•â• ANIMATIONS â•â•â• */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* â•â•â• RESPONSIVE â•â•â• */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero p.hero-desc { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-story-h1 { font-size: clamp(38px, 11vw, 50px); }
  /* Bento: 2 cols on tablet */
  .bento-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .bento-card.span-2 { grid-column: span 1; }
  .bento-card { padding: 20px; }
  .bento-card h3 { font-size: 16px; }
  .bento-card p { font-size: 13px; }
  /* Rhythm stays 4 cols but shrinks */
  .rhythm-steps { gap: 12px; }
  .rhythm-step h3 { font-size: 14px; }
  .rhythm-step p { font-size: 12px; }
  .rhythm-number { font-size: 48px; }
  .rhythm-step::after { display: none; }
  
  .feature-block { grid-template-columns: 1fr; gap: 24px; }
  .feature-block.reverse { direction: ltr; }
  .feature-block h2 { font-size: 24px; margin-bottom: 10px; }
  .feature-block .subtitle { font-size: 15px; margin-bottom: 16px; }
  .feature-label { font-size: 10px; padding: 5px 12px; margin-bottom: 12px; }
  .feature-list li { padding: 4px 0; font-size: 13px; line-height: 1.5; }
  .phone-pair { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .phone-pair .phone-mockup { width: 260px; }
  .phone-pair .phone-mockup:first-child { width: 260px; }
  .phone-pair .phone-mockup:last-child { margin-left: 0; margin-top: 0; }
  .features-section { padding: 60px 0; }
  .feature-bg-green, .feature-bg-gold, .feature-bg-orange { padding: 48px 0; }
  .coming-soon-grid { grid-template-columns: 1fr; }
  .evidence-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .faq-why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-email { text-align: center; }
  .nav-links { display: none; }
  .nav-cta-mobile { display: inline-block; }
  .mobile-menu { display: block; }
  .phone-mockup { width: 260px; }
  .phone-mockup-lg { width: 300px; }
  .phone-pair .phone-mockup:last-child { margin-left: 10px; margin-top: 30px; }
}

.h1-underline {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

@media (max-width: 480px) {
  .rhythm-steps { flex-wrap: nowrap; gap: 8px; }
  .rhythm-number { font-size: 40px; }
  .rhythm-step h3 { font-size: 12px; }
  .rhythm-step p { font-size: 11px; }
  .phone-pair { flex-direction: column; align-items: center; }
  .phone-pair .phone-mockup:last-child { margin-left: 0; margin-top: 12px; }
  .phone-pair .phone-mockup { width: 240px; }
  .phone-mockup { width: 240px; }
  .phone-mockup-lg { width: 280px; }
  .feature-block h2 { font-size: 22px; }
  .feature-block .subtitle { font-size: 14px; }
  .feature-list li { font-size: 12.5px; }
  .feature-bg-green, .feature-bg-gold, .feature-bg-orange { padding: 36px 0; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .bento-card { padding: 18px; }
}

/* â•â•â• HERO STORY â€” scroll-driven â•â•â• */
.hero-section {
  position: relative;
  padding-top: 115px;
  padding-bottom: 80px;
  transition: background 0.6s ease;
  background: linear-gradient(160deg, #FDE8E8 0%, #FDF0E6 30%, var(--cream) 60%, var(--gold-pastel) 100%);
}
.hero-section.balanced-bg {
  background: linear-gradient(160deg, var(--forest-pastel) 0%, #F0F5E8 30%, var(--cream) 60%, var(--gold-pastel) 100%);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: center;
}
.hero-text-col {
  z-index: 2;
}
.hero-chip {
  display: inline-block;
  background: var(--gold-pastel);
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  border: 1px solid var(--gold-mid);
}
.hero-story-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.h1-line { white-space: nowrap; }

/* Phone scene â€” phone with annotations positioned around it */
.hero-phone-scene {
  display: grid;
  grid-template-columns: 130px auto 140px;
  grid-template-rows: auto auto auto;
  align-items: start;
  justify-items: center;
  gap: 0;
  position: relative;
}

/* Annotations */
.hero-anno {
  z-index: 3;
}
.hero-anno-left {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  text-align: left;
  padding-right: 2px;
}
.hero-anno-right {
  grid-column: 3;
  grid-row: 3;
  align-self: end;
  padding-left: 2px;
  margin-top: 10px;
}
.hero-anno-bottom-left {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
  text-align: left;
  padding-right: 2px;
  margin-top: 10px;
}
.anno-insight {
  background: var(--white);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid var(--forest-pastel);
}
.anno-insight-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 6px;
}
.anno-insight-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}
.hero-phone-wrap {
  grid-column: 2;
  grid-row: 2 / 5;
}
.anno-question {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.4;
}
.anno-partner {
  margin-bottom: 10px;
}
.anno-partner-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.anno-cup {
  flex-shrink: 0;
}
.anno-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}
.anno-level {
  display: block;
  font-size: 11px;
  color: var(--text-secondary);
  text-align: left;
  transition: all 0.5s ease;
}
.anno-forecast {
  background: var(--white);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transition: all 0.5s ease;
}
.anno-forecast-label {
  font-size: 10px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 3px;
}
.anno-forecast-value {
  font-family: 'DM Serif Display', serif;
  font-size: 15px;
  color: #C0392B;
  transition: color 0.5s ease;
  margin-bottom: 3px;
}
.anno-forecast-action {
  font-size: 11px;
  color: var(--text-light);
  font-style: italic;
  transition: all 0.5s ease;
}
.hero-phone-scene.balanced .anno-forecast-value {
  color: var(--forest) !important;
}
.hero-phone-scene.balanced .anno-forecast {
  border: 2px solid var(--forest-pastel);
}

/* Phone with swipe reveal */
.hero-phone-wrap {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.hero-phone-wrap .phone-mockup {
  width: 260px;
  cursor: ew-resize;
}
.hero-phone-inner {
  position: relative;
  background: #FAF6F0;
  border-radius: 24px;
  overflow: hidden;
}
.hero-phone-inner img {
  width: 100%;
  display: block;
  border-radius: 24px;
}
.hero-img-good-clip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.1s ease-out;
}
.hero-img-good-clip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Swipe hint overlay */
.swipe-hint {
  z-index: 10;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 500;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: opacity 0.4s ease;
}
.hero-swipe-peek {
  display: none;
}
.swipe-hint-desktop {
  grid-column: 1 / 4;
  grid-row: 1;
  text-align: center;
  margin-bottom: 8px;
}
.swipe-hint.hidden { opacity: 0; }
.swipe-hint svg { animation: bobDown 2s ease-in-out infinite; }
@keyframes bobDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* Mobile hero */
@media (max-width: 900px) {
  .hero-section {
    background: var(--forest-pastel) !important;
    padding-top: 110px;
    padding-bottom: 80px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 0;
    min-height: calc(100vh - 110px);
    display: flex;
    flex-direction: column;
  }
  .hero-text-col {
    order: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-desc-bold { font-size: 12px; }
  .hero-ctas { margin-top: 8px !important; margin-bottom: 0; }
  .swipe-hint-desktop { display: none; }
  .hero-swipe-peek {
    display: block;
    order: 2;
    text-align: center;
    padding: 8px 0 16px;
  }
  .hero-chip { max-width: fit-content; white-space: normal; }
  .hero-phone-scene {
    order: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding-top: 40px;
    padding-bottom: 20px;
    max-width: 100%;
  }
  /* Energy annotation: left-aligned, Ariana & Kyle in one row */
  .hero-anno-left {
    width: 100%;
    text-align: left;
    order: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 24px;
    align-items: flex-start;
  }
  .hero-anno-left .anno-question { width: 100%; margin-bottom: 8px; font-style: italic; }
  .hero-anno-left .anno-partner { margin-bottom: 0; }
  /* Phone centered */
  .hero-phone-wrap { order: 2; width: 100%; display: flex; justify-content: center; }
  .hero-phone-wrap .phone-mockup { width: 240px; }
  /* Forecast + Insight side by side below phone */
  .hero-anno-right, .hero-anno-bottom-left {
    width: calc(50% - 8px);
    text-align: left;
  }
  .hero-anno-right { order: 3; }
  .hero-anno-bottom-left { order: 4; }
  .anno-forecast, .anno-insight { max-width: 100%; }
  .hero-ctas { justify-content: flex-start; }
  .anno-question { font-size: 11px; }
  .anno-name { font-size: 11px; }
  .anno-level { font-size: 10px; }
  .anno-forecast { padding: 10px 12px; }
  .anno-forecast-label { font-size: 9px; }
  .anno-forecast-value { font-size: 13px; }
  .anno-forecast-action { font-size: 10px; }
  .hero-story-h1 { font-size: 28px; }
  .h1-line { white-space: normal; }
  .hero-chip { font-size: 11px; padding: 6px 12px; max-width: 100%; white-space: normal; text-align: left; }
}
@media (max-width: 380px) {
  .hero-phone-wrap .phone-mockup { width: 220px; }
  .hero-phone-scene { grid-template-columns: 85px auto 95px; }
  .hero-story-h1 { font-size: 24px; }
}

/* Mobile swipe caption — hidden on desktop */
.mobile-swipe-caption { display: none; }

/* ═══ MOBILE HERO — Option A: Centered, product-first ═══ */
@media (max-width: 900px) {
  /* Center all hero text */
  .hero-text-col { align-items: center; text-align: center; }
  .hero-ctas { justify-content: center; }

  /* Headline: bigger, TickTick-style impact */
  .hero-story-h1 {
    font-size: 36px !important;
    line-height: 1.1 !important;
    order: 1 !important;
  }
  .hero-desc { font-size: 14px !important; }
  .hero-desc { order: 2 !important; }
  .hero-ctas { order: 3 !important; }

  /* Hide chip on mobile */
  .hero-chip { display: none !important; }

  /* Remove TagTeam Answers block + secondary CTA */
  .hero-desc-bold { display: none; }
  .btn-secondary { display: none; }

  /* Hide swipe hint + desktop annotations */
  .hero-swipe-peek { display: none !important; }
  .hero-anno-left,
  .hero-anno-right,
  .hero-anno-bottom-left { display: none !important; }

  /* Phone scene: column layout — caption above, phone below */
  .hero-phone-scene {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 0 !important;
    padding-top: 24px !important;
    padding-bottom: 0 !important;
  }

  .mobile-state-badge { display: none !important; }
  .mobile-state-badge.balanced { display: none !important; }

  /* Mobile state label + dots */
 .mobile-swipe-caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-bottom: 5px;
  }
  .mobile-state-badge {
    font-size: 13px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 20px;
    background: rgba(192,57,43,0.1);
    color: #C0392B;
    transition: background 0.5s ease, color 0.5s ease;
    .mobile-state-badge { display: none; }
  }
  .mobile-state-badge.balanced {
    background: rgba(66,89,44,0.1);
    color: #42592C;
  }
  .mobile-dots {
    display: flex;
    gap: 7px;
    align-items: center;
  }
  .mobile-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(66,89,44,0.2);
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .mobile-dot.active {
    background: #42592C;
    transform: scale(1.3);
  }
 .mobile-swipe-cue {
    font-size: 11px;
    color: #000000;
    font-style: italic;
    letter-spacing: 0.03em;
  }

  /* Phone entrance zoom */
  .hero-phone-wrap {
    width: auto !important;
    transform: scale(0.93);
    opacity: 0.6;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
  }
  .hero-phone-wrap.phone-in-view {
    transform: scale(1) !important;
    opacity: 1 !important;
  }
  .hero-phone-wrap .phone-mockup {
    width: 220px !important;
    border-radius: 32px !important;
    box-shadow: 0 -4px 40px rgba(66,89,44,0.18) !important;
  }
  .hero-phone-wrap .phone-mockup {
    width: 220px !important;
    border-radius: 32px !important;
    box-shadow: 0 -4px 40px rgba(66,89,44,0.18) !important;
  }
  /* Tighten all section padding on mobile */
  .why-section, .rhythm-section, .features-section,
  .coming-soon-section, .about-section, .evidence-section,
  .pricing-section, .faqs-section, .final-cta-section {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }
}
