:root {
  --bg: #FBF9F7;
  --bg-white: #FFFFFF;
  --bg-soft: #F3F1EC;
  --bg-lav: #EEEDF3;

  --green: #5E7A4E;
  --green-dark: #4B6440;
  --lav: #7D70A4;
  --lav-dark: #6A5D92;

  --ink: #22201D;
  --body: #4A463F;
  --muted: #877F74;
  --line: #E8E3DB;

  --dark: #16150F;
  --dark-2: #1F1E17;

  --tint-happy: #FBEFD6;
  --tint-happy-fg: #C58A2E;
  --tint-calm: #E6EFE0;
  --tint-calm-fg: #5E7A4E;
  --tint-sad: #E9E5F3;
  --tint-sad-fg: #7D70A4;
  --tint-anxious: #FBEADE;
  --tint-anxious-fg: #C97A46;
  --tint-exhausted: #E4EAF4;
  --tint-exhausted-fg: #5E75A6;

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(34, 32, 29, .05);
  --shadow: 0 20px 50px -20px rgba(34, 32, 29, .18);
  --maxw: 1160px;
  --header-h: 74px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 { font-family: var(--serif); color: var(--ink); line-height: 1.12; font-weight: 600; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px;
}
.skip-link:focus { left: 16px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  padding: 11px 22px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 249, 247, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 22px -18px rgba(0,0,0,.4); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 30px; width: auto; display: block; }
.brand.on-dark .brand-logo { filter: brightness(0) invert(1); }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { font-size: 15px; font-weight: 500; color: var(--body); transition: color .2s ease; }
.main-nav a:hover { color: var(--green); }
.main-nav a.active { color: var(--green); font-weight: 600; }
.main-nav .nav-cta { color: #fff; padding: 9px 20px; }
.main-nav .nav-cta:hover { color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Sections */
.section { padding: 96px 0; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 17px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green); background: var(--tint-calm); padding: 7px 14px; border-radius: 100px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

/* Hero */
.hero { padding: 60px 0 40px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero-copy h1 { font-size: clamp(38px, 5.4vw, 62px); margin: 22px 0 20px; letter-spacing: -.01em; }
.hero-copy .lead { font-size: 18px; color: var(--body); max-width: 30em; }
.store-badges { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--ink); color: #fff; padding: 10px 20px 10px 18px; border-radius: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.store-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.store-badge svg { width: 26px; height: 26px; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store-badge small { font-size: 10.5px; opacity: .85; letter-spacing: .02em; }
.store-badge strong { font-size: 17px; font-weight: 600; }
.store-badge.on-dark { background: #fff; color: var(--ink); }

/* Phone mockups */
.hero-visual, .split-visual { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative; z-index: 2;
  width: 300px; border-radius: 46px; padding: 11px;
  background: #111; box-shadow: 0 40px 80px -30px rgba(34,32,29,.5), 0 0 0 2px rgba(0,0,0,.06);
}
.phone-sm { width: 280px; }
.phone img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 390 / 844; object-fit: cover;
  border-radius: 36px;
}
.phone-notch { position: absolute; top: 22px; left: 50%; transform: translateX(-50%); width: 96px; height: 22px; background: #111; border-radius: 100px; z-index: 3; }

.blob { position: absolute; border-radius: 50%; filter: blur(10px); z-index: 1; opacity: .6; }
.blob-a { width: 320px; height: 320px; background: radial-gradient(circle, var(--tint-calm), transparent 68%); top: -30px; right: -10px; }
.blob-b { width: 260px; height: 260px; background: radial-gradient(circle, var(--tint-sad), transparent 68%); bottom: -20px; left: -20px; }
.blob-c { width: 300px; height: 300px; background: radial-gradient(circle, var(--tint-happy), transparent 70%); top: -10px; left: -30px; opacity: .7; }
.blob-d { width: 300px; height: 300px; background: radial-gradient(circle, var(--tint-exhausted), transparent 70%); bottom: -10px; right: -30px; opacity: .7; }

/* Why */
.why { background: var(--bg-white); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; transition: transform .25s ease, box-shadow .25s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-card h3 { font-size: 20px; margin: 18px 0 8px; }
.feature-card p { font-size: 15px; color: var(--muted); }

.feature-icon { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 13px; }
.feature-icon svg { width: 24px; height: 24px; }
.feature-icon img { width: 24px; height: 24px; display: block; }
.tint-happy { background: var(--tint-happy); color: var(--tint-happy-fg); }
.tint-calm { background: var(--tint-calm); color: var(--tint-calm-fg); }
.tint-sad { background: var(--tint-sad); color: var(--tint-sad-fg); }
.tint-anxious { background: var(--tint-anxious); color: var(--tint-anxious-fg); }
.tint-exhausted { background: var(--tint-exhausted); color: var(--tint-exhausted-fg); }

.act-calm { background: #E7EDE4; }
.act-distract { background: #E4DFFB; }
.act-reset { background: #FBF3D7; }
.act-lift { background: #E0E8F9; }
.act-lightdistract { background: #F6E0DC; }
.act-reflect { background: #E9F4E0; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.step-num { font-family: var(--serif); font-size: 40px; font-weight: 700; color: var(--green); }
.step-arrow { color: var(--green); font-size: 22px; opacity: .5; }
.step h3 { font-size: 21px; margin-bottom: 8px; }
.step > p { font-size: 15px; color: var(--muted); margin-bottom: 20px; }
.step-card { background: var(--bg-white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.step-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green); }
.step-card p { font-size: 14.5px; color: var(--body); margin: 10px 0 18px; }

.emoji-row { display: flex; gap: 10px; }
.emoji-row .e { flex: 1; aspect-ratio: 1; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.emoji-row .e img { width: 74%; height: 74%; }
.em-happy { background: #FDF4E2; }
.em-excited { background: #FCEFD5; }
.em-sad { background: #EDF1F8; }
.em-anxious { background: #F0ECF8; }
.em-stressed { background: #FBEDE2; }
.wave { color: var(--lav); height: 60px; }
.wave svg { width: 100%; height: 100%; }
.bars { display: flex; align-items: flex-end; gap: 8px; height: 66px; }
.bars i { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(var(--tint-calm-fg), var(--tint-calm)); }
.bars i:nth-child(1){height:40%} .bars i:nth-child(2){height:65%} .bars i:nth-child(3){height:48%}
.bars i:nth-child(4){height:82%} .bars i:nth-child(5){height:58%} .bars i:nth-child(6){height:72%}
.bars i:nth-child(7){height:50%}

/* Split sections */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-copy h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 18px; }
.split-copy > p { color: var(--body); margin-bottom: 26px; }
.check-list { list-style: none; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 34px; font-size: 15.5px; color: var(--body); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--tint-calm) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235E7A4E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 4 4 10-10'/%3E%3C/svg%3E") center/13px no-repeat;
}
.personalize { background: var(--bg-white); }

/* Activities */
.activities { background: var(--bg-lav); }
.activity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.activity-card { background: var(--bg-white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; transition: transform .25s ease, box-shadow .25s ease; }
.activity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.activity-card h3 { font-size: 20px; margin: 16px 0 8px; }
.activity-card p { font-size: 14.5px; color: var(--muted); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 32px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--serif); font-size: 40px; font-weight: 700; }
.stat-num.green { color: var(--green); }
.stat-num.lav { color: var(--lav); }
.stat-label { font-size: 13.5px; color: var(--muted); max-width: 12em; }

/* Privacy */
.privacy { background: var(--bg); text-align: center; padding: 84px 0; }
.privacy-inner { max-width: 640px; margin: 0 auto; }
.privacy-icon { display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: 16px; background: var(--tint-calm); color: var(--green); margin-bottom: 22px; }
.privacy-icon svg { width: 30px; height: 30px; }
.privacy h2 { font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 16px; }
.privacy p { color: var(--muted); }

/* Testimonials */
.testimonials { background: var(--bg-white); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; display: flex; flex-direction: column; }
.quote-mark { font-family: var(--serif); font-size: 46px; line-height: .5; color: var(--green); opacity: .35; margin-bottom: 18px; }
.testimonial blockquote { font-size: 15.5px; color: var(--body); margin-bottom: 22px; flex: 1; }
.testimonial figcaption { display: flex; align-items: center; gap: 12px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 14px; flex-shrink: 0; }
.testimonial figcaption strong { display: block; font-size: 15px; color: var(--ink); }
.testimonial figcaption small { color: var(--muted); font-size: 13px; }

/* FAQ */
.faq-inner { max-width: 780px; }
.accordion { display: grid; gap: 14px; }
.acc-item { background: var(--bg-white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s ease; }
.acc-item.open { box-shadow: var(--shadow-sm); }
.acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--ink);
  padding: 20px 24px;
}
.acc-icon { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.acc-icon::before, .acc-icon::after { content: ""; position: absolute; background: var(--green); border-radius: 2px; transition: transform .3s ease; }
.acc-icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.acc-icon::after { top: 0; left: 7px; width: 2px; height: 16px; }
.acc-item.open .acc-icon::after { transform: scaleY(0); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc-panel p { padding: 0 24px 22px; color: var(--muted); font-size: 15.5px; }

/* CTA */
.cta { background: var(--dark); color: #fff; padding: 0; margin-top: 40px; }
.cta-inner { position: relative; padding: 96px 24px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; overflow: hidden; }
.cta-copy { position: relative; z-index: 2; max-width: 32em; }
.cta-copy h2 { color: #fff; font-size: clamp(30px, 4vw, 46px); margin-bottom: 16px; }
.cta-copy p { color: rgba(255,255,255,.72); margin-bottom: 30px; }
.cta-orbs { position: absolute; inset: 0; z-index: 1; }
.cta-orbs span { position: absolute; border-radius: 50%; }
.cta-orbs span:nth-child(1) { width: 300px; height: 300px; background: radial-gradient(circle, rgba(94,122,78,.35), transparent 70%); top: -60px; right: 6%; }
.cta-orbs span:nth-child(2) { width: 180px; height: 180px; border: 1px solid rgba(255,255,255,.1); right: 22%; bottom: 12%; }
.cta-orbs span:nth-child(3) { width: 90px; height: 90px; background: radial-gradient(circle, rgba(125,112,164,.4), transparent 70%); right: 12%; bottom: 30%; }
.cta-orbs span:nth-child(4) { width: 8px; height: 8px; background: rgba(255,255,255,.5); right: 40%; top: 30%; }

/* Footer */
.site-footer { background: var(--dark-2); color: rgba(255,255,255,.7); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-nav { display: flex; gap: 28px; }
.footer-nav a { font-size: 14px; transition: color .2s ease; }
.footer-nav a:hover { color: #fff; }
.copyright { font-size: 13px; color: rgba(255,255,255,.45); }

/* Privacy policy page */
.policy-hero { background: var(--bg-white); border-bottom: 1px solid var(--line); padding: 52px 0 44px; }
.policy-hero h1 { font-size: clamp(34px, 5vw, 52px); margin: 16px 0 10px; }
.policy-hero .updated { color: var(--muted); font-size: 15px; }

.policy-body { padding: 56px 0 20px; }
.policy-layout { display: grid; grid-template-columns: 250px 1fr; gap: 60px; align-items: start; }

.toc { position: sticky; top: calc(var(--header-h) + 24px); }
.toc h2 { font-family: var(--serif); font-size: 17px; margin-bottom: 18px; color: var(--ink); }
.toc ol { list-style: none; counter-reset: toc; display: grid; gap: 11px; }
.toc li { counter-increment: toc; }
.toc a { display: flex; gap: 8px; font-size: 13.5px; line-height: 1.4; color: var(--muted); transition: color .2s ease; }
.toc a::before { content: counter(toc) "."; color: inherit; font-variant-numeric: tabular-nums; }
.toc a:hover { color: var(--green); }
.toc a.active { color: var(--green); font-weight: 600; }

.policy-content { max-width: 720px; }
.policy-intro { font-size: 17.5px; color: var(--body); margin-bottom: 40px; }
.policy-content section { padding-bottom: 30px; margin-bottom: 30px; border-bottom: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 20px); }
.policy-content section:last-child { border-bottom: 0; margin-bottom: 0; }
.policy-content h2 { display: flex; align-items: baseline; gap: 12px; font-size: clamp(21px, 2.4vw, 27px); margin-bottom: 16px; }
.policy-content .sec-num { font-family: var(--serif); font-size: .72em; font-weight: 700; color: var(--green); flex-shrink: 0; }
.policy-content p { margin-bottom: 14px; color: var(--body); font-size: 16px; }
.policy-content p:last-child { margin-bottom: 0; }
.policy-content ul { margin: 0 0 16px; padding-left: 22px; display: grid; gap: 9px; }
.policy-content li { color: var(--body); font-size: 16px; padding-left: 4px; }
.policy-content li::marker { color: var(--green); }
.policy-content a { color: var(--green-dark); font-weight: 500; border-bottom: 1px solid rgba(94,122,78,.35); transition: border-color .2s ease; overflow-wrap: anywhere; }
.policy-content a:hover { border-bottom-color: var(--green-dark); }

@media (max-width: 860px) {
  .policy-layout { grid-template-columns: 1fr; gap: 0; }
  .toc { position: static; margin-bottom: 40px; padding: 22px 24px; background: var(--bg-white); border: 1px solid var(--line); border-radius: var(--radius); }
  .toc ol { grid-template-columns: 1fr 1fr; gap: 12px 24px; }
}
@media (max-width: 520px) {
  .toc ol { grid-template-columns: 1fr; }
}

/* Contact page */
.contact-layout { display: grid; grid-template-columns: 1fr 360px; gap: 52px; align-items: start; }
.contact-form-col h2 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 8px; }
.contact-sub { color: var(--muted); font-size: 15.5px; margin-bottom: 26px; }
.form-embed { background: var(--bg-white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.form-embed iframe { width: 100%; height: 780px; border: 0; display: block; }

.contact-aside { display: grid; gap: 20px; position: sticky; top: calc(var(--header-h) + 24px); }
.info-card { background: var(--bg-white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow-sm); }
.card-eyebrow { display: flex; align-items: center; gap: 11px; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.card-icon { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 10px; background: var(--bg-lav); color: var(--lav); }
.card-icon svg { width: 18px; height: 18px; }
.info-card h3 { font-family: var(--serif); font-size: 22px; margin-bottom: 6px; word-break: break-word; }
.info-card h3 a { color: var(--ink); border-bottom: 1px solid transparent; transition: border-color .2s ease; }
.info-card h3 a:hover { border-bottom-color: var(--ink); }
.info-card p { font-size: 14px; color: var(--muted); }

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .contact-aside { position: static; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .contact-aside { grid-template-columns: 1fr; }
  .form-embed iframe { height: 900px; }
}

/* 404 */
.notfound { padding: 120px 0; text-align: center; }
.notfound .eyebrow { margin-bottom: 22px; }
.notfound h1 { font-size: clamp(34px, 5vw, 56px); margin-bottom: 16px; }
.notfound p { color: var(--muted); max-width: 34em; margin: 0 auto 30px; }
.notfound-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 960px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .activity-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .step-arrow { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-orbs { opacity: .5; }
}

@media (max-width: 820px) {
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 18px 24px 26px; box-shadow: var(--shadow);
    transform: translateY(-140%); transition: transform .35s ease; z-index: 90;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 12px 4px; font-size: 16px; border-bottom: 1px solid var(--line); }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav .nav-cta { margin-top: 10px; padding: 13px; }
  .nav-toggle { display: flex; }

  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .hero-copy { order: 1; }
  .hero-visual { order: 2; }
  .hero-copy .lead { margin-left: auto; margin-right: auto; }
  .store-badges { justify-content: center; }
  .eyebrow { margin: 0 auto; }

  .split { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .split.reverse .split-copy { order: 2; }
  .split.reverse .split-visual { order: 1; }
  .check-list { text-align: left; max-width: 26em; margin: 0 auto; }
  .stats { max-width: 30em; margin-left: auto; margin-right: auto; }
}

@media (max-width: 560px) {
  .section { padding: 68px 0; }
  .why-grid, .activity-grid { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .phone { width: 260px; }
  .stats { gap: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}
