/* ─────────────────────────────────────────────────────────────────
   HE♥LTH ME landing page styles
   Theme synced with mobile/theme/colors.ts:
   green #7CB342 / #558B2F · pink #E8536D / #F06292
   ───────────────────────────────────────────────────────────────── */

:root {
  /* Aligned to the 2026-06 Brand Book — brand green #8CC63F, pink #E85D6A. */
  --green: #8CC63F;
  --green-dark: #4F8C1A;
  --green-light: #B9DE82;
  --green-bg: #EFF6E1;
  --green-card: #E5F2CE;
  --pink: #E85D6A;
  --pink-light: #F07E8E;
  --pink-bg: #FCE6EA;
  --blue: #1565C0;
  --blue-bg: #E3F2FD;
  --orange: #E65100;
  --orange-bg: #FFF3E0;

  --text: #1A1A2E;
  --text-muted: #6B7280;
  --text-faint: #9CA3AF;
  --bg: #FAFBF7;
  --bg-soft: #F4F7EE;
  --card: #FFFFFF;
  --border: #EBEBEB;
  --border-soft: #F1F3EC;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(20, 30, 10, 0.04), 0 1px 3px rgba(20, 30, 10, 0.05);
  --shadow: 0 4px 12px rgba(20, 30, 10, 0.06), 0 12px 32px rgba(20, 30, 10, 0.08);
  --shadow-lg: 0 24px 60px rgba(20, 30, 10, 0.16), 0 8px 20px rgba(20, 30, 10, 0.08);
  --shadow-phone: 0 30px 60px rgba(20, 30, 10, 0.22), 0 12px 24px rgba(20, 30, 10, 0.12);

  --max: 1180px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'IBM Plex Sans Thai', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

/* ─────── WORDMARK ─────── */
.logo {
  display: inline-flex; align-items: center;
  line-height: 0; /* prevent baseline gap below the inline image */
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.logo-footer img { height: 52px; }

/* ─────── NAV ─────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 251, 247, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--border-soft);
  background: rgba(255, 255, 255, 0.92);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 32px;
}
.nav-links {
  display: flex; align-items: center; gap: 28px; margin-left: auto;
  font-size: 15px; font-weight: 500;
}
.nav-links a { color: var(--text-muted); transition: color 0.15s; }
.nav-links a:hover { color: var(--green-dark); }
.nav-links .nav-secondary { color: var(--green-dark); }
.nav-cta { padding: 10px 18px; font-size: 14px; }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
}

/* ─────── BUTTONS ─────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; font-size: 15px; font-weight: 600;
  border-radius: 999px; border: none; cursor: pointer;
  transition: transform 0.15s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: white; box-shadow: 0 4px 14px rgba(124, 179, 66, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(124, 179, 66, 0.5); }

.btn-store {
  background: var(--text);
  color: white;
  padding: 12px 22px 12px 18px;
  display: inline-flex; align-items: center; gap: 10px;
  border-radius: 14px;
}
.btn-store:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(20, 30, 10, 0.25); }
.btn-store-soon { opacity: 0.55; cursor: default; }
.btn-store-soon:hover { transform: none; box-shadow: none; }
.btn-store-light { background: white; color: var(--text); }
.btn-store .store-meta { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.btn-store .store-meta-top { font-size: 10px; opacity: 0.8; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }
.btn-store .store-meta-bottom { font-size: 17px; font-weight: 700; margin-top: 2px; }

/* ─────── HERO ─────── */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.hero-watercolor {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.42;
  mix-blend-mode: multiply;
  mask-image: linear-gradient(180deg, black 0%, rgba(0,0,0,0.85) 55%, transparent 95%);
  -webkit-mask-image: linear-gradient(180deg, black 0%, rgba(0,0,0,0.85) 55%, transparent 95%);
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.blob-green {
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--green-light) 0%, transparent 70%);
  top: -120px; right: -80px;
}
.blob-pink {
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--pink-light) 0%, transparent 70%);
  bottom: -100px; left: -60px;
  opacity: 0.28;
}

.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 12px;
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(124, 179, 66, 0); }
}

.hero-copy h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
}
.h1-accent {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 60%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  font-size: 18px; line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 540px;
}
.lede strong { color: var(--text); font-weight: 600; }

.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 36px;
}

.trust-row {
  list-style: none; display: flex; flex-wrap: wrap; gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
}
.trust-row li {
  font-size: 13px; color: var(--text-faint); font-weight: 500;
}
.trust-row strong {
  display: block; color: var(--text); font-size: 22px; font-weight: 700; letter-spacing: -0.5px;
  margin-bottom: 2px;
}

/* ─── Hero visual: phone + floating cards ─── */
.hero-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 560px;
}
.phone {
  position: relative;
  width: 260px;
  aspect-ratio: 430 / 932;
  background: #111;
  border-radius: 38px;
  padding: 8px;
  box-shadow: var(--shadow-phone);
  transition: transform 0.5s var(--ease);
}
.phone img {
  width: 100%; height: 100%;
  border-radius: 30px;
  object-fit: cover;
  background: white;
}
.phone-notch {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #111;
  border-radius: 12px;
  z-index: 2;
}
.phone-hero { width: 290px; transform: rotate(-3deg); }
.phone-hero:hover { transform: rotate(0deg) translateY(-6px); }
.phone-sm { width: 220px; }
.phone-back { position: absolute; top: 30px; left: 60%; transform: rotate(6deg); z-index: 1; }
.phone-tilt-l { transform: rotate(-6deg); }
.phone-tilt-r { transform: rotate(6deg) translateY(28px); margin-left: -40px; }

/* Floating accent cards next to hero phone */
.hero-card {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-soft);
  display: flex; align-items: center; gap: 12px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-card-cal {
  top: 24%; left: -10%;
  animation-delay: 0.2s;
}
.hero-card-lab {
  bottom: 18%; right: -8%;
  animation-delay: 1s;
}
.hero-card-label {
  display: block;
  font-size: 11px; font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.hero-card-value {
  display: block;
  font-size: 22px; font-weight: 700;
  color: var(--green-dark);
  font-family: 'Inter', sans-serif;
  line-height: 1.1; margin-top: 2px;
}
.hero-card-value.sm { font-size: 18px; }
.hero-card-value small { font-size: 11px; font-weight: 500; color: var(--text-muted); }
.hero-card-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-bg);
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero { padding: 48px 0 60px; }
  .hero-visual { min-height: auto; }
  .phone-hero { width: 240px; }
  .hero-card-cal { left: 2%; top: 8%; }
  .hero-card-lab { right: 2%; bottom: 8%; }
}

/* ─────── BRAND STRIP ─────── */
.strip {
  background: white;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 28px 0;
}
.strip-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 12px 22px;
  font-size: 14px; font-weight: 500;
  color: var(--text-muted);
}
.strip-label {
  color: var(--text-faint); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600;
}
.strip-item { font-weight: 600; color: var(--text); }
.strip-divider {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--text-faint); opacity: 0.4;
}

/* ─────── TRUST: Nutritionist ─────── */
.trust {
  padding: 100px 0 80px;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.trust-copy h2 { margin-bottom: 22px; }
.trust-copy p {
  font-size: 17px; line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.trust-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 24px 0;
  margin-bottom: 32px;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.trust-stats li { text-align: left; }
.trust-stats strong {
  display: block;
  font-size: 32px; font-weight: 800;
  color: var(--green-dark);
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.8px;
  line-height: 1;
  margin-bottom: 6px;
}
.trust-stats span {
  font-size: 13px; color: var(--text-muted);
}
.btn-ghost {
  background: white;
  color: var(--green-dark);
  border: 1px solid var(--green-light);
  padding: 12px 22px;
  display: inline-flex;
}
.btn-ghost:hover {
  background: var(--green-bg);
  transform: translateY(-2px);
}
.btn-line {
  background: #06C755;
  color: white;
  padding: 12px 22px;
  display: inline-flex;
  box-shadow: 0 4px 14px rgba(6, 199, 85, 0.35);
}
.btn-line:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(6, 199, 85, 0.5); }

.trust-visual {
  position: relative;
  display: flex; justify-content: center;
}
.trust-visual img {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.trust-tag {
  position: absolute;
  bottom: -16px; left: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  background: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: var(--green-dark);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-soft);
}

@media (max-width: 900px) {
  .trust { padding: 64px 0 32px; }
  .trust-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-stats { grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
  .trust-stats strong { font-size: 24px; }
}

/* ─────── FAMILY BANNER ─────── */
.banner {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  display: flex; align-items: center;
  margin: 80px 0 40px;
}
.banner-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  z-index: 0;
}
.banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(20, 30, 10, 0.78) 0%, rgba(85, 139, 47, 0.4) 60%, transparent 100%);
  z-index: 1;
}
.banner-inner {
  position: relative; z-index: 2;
  width: 100%;
}
.banner-copy {
  max-width: 560px;
  color: white;
}
.banner-h2 {
  color: white;
  margin-bottom: 18px;
  margin-top: 12px;
}
.banner-copy p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}
@media (max-width: 900px) {
  .banner { min-height: 380px; margin: 48px 0 24px; }
  .banner-img { object-position: center 45%; }
  .banner-overlay {
    background: linear-gradient(180deg, rgba(20, 30, 10, 0.4) 0%, rgba(20, 30, 10, 0.78) 100%);
  }
  .banner-inner { display: flex; align-items: flex-end; }
}

/* ─────── GIFT FOR PARENTS ─────── */
.gift {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, transparent 0%, var(--pink-bg) 100%);
  position: relative;
  overflow: hidden;
}
.gift-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.gift-visual {
  position: relative;
  display: flex; justify-content: center;
}
.gift-visual img {
  width: 100%;
  max-width: 430px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.gift-card {
  position: absolute;
  right: -10px; bottom: 32px;
  display: flex; align-items: center; gap: 12px;
  background: white;
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-soft);
  animation: float 4s ease-in-out infinite;
  animation-delay: 0.5s;
}
.gift-card-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 4px var(--pink-bg);
}
.gift-card-label {
  display: block;
  font-size: 11px; font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.gift-card-value {
  display: block;
  font-size: 16px; font-weight: 700;
  color: var(--green-dark);
  margin-top: 2px;
}
.gift-copy h2 { margin-bottom: 20px; }
.gift-copy p {
  font-size: 17px; line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.gift-bullets { list-style: none; margin-bottom: 32px; }
.gift-bullets li {
  position: relative;
  padding: 10px 0 10px 32px;
  font-size: 15px;
  color: var(--text);
  border-top: 1px solid rgba(232, 83, 109, 0.18);
}
.gift-bullets li:first-child { border-top: none; }
.gift-bullets li::before {
  content: '';
  position: absolute; left: 0; top: 16px;
  width: 18px; height: 18px;
  background: var(--pink);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/></svg>") center / contain no-repeat;
}
@media (max-width: 900px) {
  .gift { padding: 48px 0 64px; }
  .gift-grid { grid-template-columns: 1fr; gap: 40px; }
  .gift-visual img { max-width: 320px; }
  .gift-card { right: 0; }
}

/* ─────── SECTION HEADS ─────── */
.section-head {
  margin-bottom: 64px;
  max-width: 720px;
}
.section-head.center {
  margin-left: auto; margin-right: auto; text-align: center;
}
.kicker {
  display: inline-block;
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  color: var(--green-dark); text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  background: var(--green-bg);
  margin-bottom: 16px;
}
.kicker.pink { color: var(--pink); background: var(--pink-bg); }
.kicker.white { color: white; background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(8px); }

h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -1px;
  font-weight: 800;
  color: var(--text);
}
.section-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ─────── FEATURES ─────── */
.features { padding: 100px 0 80px; }
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
}
.feature-row.reverse .feature-copy { order: 2; }
.feature-row.reverse .feature-visual { order: 1; }

.feature-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 999px;
  background: var(--green-bg);
  color: var(--green-dark);
  margin-bottom: 18px;
}
.feature-copy h3 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 18px;
}
.feature-copy p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.feature-copy p strong { color: var(--pink); font-weight: 700; }
.feature-bullets { list-style: none; }
.feature-bullets li {
  position: relative;
  padding: 10px 0 10px 32px;
  font-size: 15px;
  color: var(--text);
  border-top: 1px solid var(--border-soft);
}
.feature-bullets li:first-child { border-top: none; }
.feature-bullets li::before {
  content: '';
  position: absolute; left: 0; top: 16px;
  width: 18px; height: 18px;
  background: var(--green);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center / contain no-repeat;
}

.feature-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.feature-visual::before {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-bg) 0%, transparent 70%);
  z-index: 0;
}
.feature-row.reverse .feature-visual::before {
  background: radial-gradient(circle, var(--pink-bg) 0%, transparent 70%);
}
.feature-visual .phone { z-index: 1; }

.feature-visual-dual {
  min-height: 540px;
}
.feature-visual-dual .phone-sm:first-child { transform: rotate(-4deg); z-index: 2; }

@media (max-width: 900px) {
  .features { padding: 64px 0 40px; }
  .feature-row {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 32px 0;
  }
  .feature-row.reverse .feature-copy { order: 0; }
  .feature-row.reverse .feature-visual { order: 0; }
  .feature-visual-dual { min-height: 480px; }
  .feature-visual::before { width: 280px; height: 280px; }
}

/* ─────── SHOWCASE: Food + lifestyle ─────── */
.showcase {
  padding: 100px 0 80px;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.showcase-grid .showcase-card { aspect-ratio: 3 / 4; }
@media (max-width: 1100px) {
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .showcase-grid .showcase-card:nth-child(3) { grid-column: 1 / -1; aspect-ratio: 16 / 7; }
}
@media (max-width: 720px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-grid .showcase-card,
  .showcase-grid .showcase-card:nth-child(3) { aspect-ratio: 4 / 3; }
}
.showcase-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.showcase-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.showcase-card:hover img { transform: scale(1.04); }
.showcase-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 28px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(20, 30, 10, 0.65) 70%, rgba(20, 30, 10, 0.85) 100%);
  color: white;
  display: flex; align-items: flex-end;
}
.showcase-overlay-life {
  background: linear-gradient(180deg, transparent 0%, rgba(85, 139, 47, 0.55) 60%, rgba(85, 139, 47, 0.85) 100%);
}
.showcase-meta { display: flex; flex-direction: column; gap: 6px; }
.showcase-tag {
  display: inline-block; align-self: flex-start;
  padding: 5px 11px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 6px;
}
.showcase-tag.pink { background: var(--pink); border-color: transparent; color: white; }
.showcase-name {
  font-size: 26px; font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.showcase-stat {
  font-size: 14px; font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Inter', sans-serif;
}
.showcase-stat small { font-weight: 400; opacity: 0.8; }
.showcase-num {
  font-size: 44px; font-weight: 800;
  font-family: 'Inter', sans-serif;
  letter-spacing: -1.5px;
  line-height: 1;
}
.showcase-num small {
  font-size: 16px; font-weight: 600;
  opacity: 0.85;
  margin-left: 6px;
  letter-spacing: 0;
}
.showcase-sub {
  font-size: 14px; line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 6px;
}

@media (max-width: 900px) {
  .showcase { padding: 64px 0 32px; }
  .showcase-name { font-size: 22px; }
  .showcase-num { font-size: 36px; }
}

/* ─────── AUDIENCE ─────── */
.audience {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.audience-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.audience-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green);
}
.audience-card.audience-diabetes::before { background: var(--pink); }
.audience-card.audience-cardio::before { background: var(--orange); }
.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.audience-icon {
  font-size: 38px;
  margin-bottom: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--green-bg);
}
.audience-diabetes .audience-icon { background: var(--pink-bg); }
.audience-cardio .audience-icon { background: var(--orange-bg); }

.audience-illust {
  width: 132px; height: 132px;
  border-radius: 50%;
  margin: -16px 0 18px;
  background: var(--green-bg);
  overflow: hidden;
  position: relative;
}
.audience-diabetes .audience-illust { background: var(--pink-bg); }
.audience-cardio .audience-illust { background: var(--orange-bg); }
.audience-illust img {
  width: 100%; height: 100%; object-fit: cover;
  mix-blend-mode: multiply;
  transition: transform 0.4s var(--ease);
}
/* The cardio heart is already coral on cream — multiplying with the warm
   orange tile turns it muddy. Skip the blend just for that card. */
.audience-cardio .audience-illust img { mix-blend-mode: normal; }
.audience-card:hover .audience-illust img { transform: scale(1.06); }
.audience-card h3 {
  font-size: 22px; font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.audience-card p {
  font-size: 15px; line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.audience-tag {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  padding: 6px 12px; border-radius: 999px;
  background: var(--green-bg); color: var(--green-dark);
}
.audience-diabetes .audience-tag { background: var(--pink-bg); color: var(--pink); }
.audience-cardio .audience-tag { background: var(--orange-bg); color: var(--orange); }

@media (max-width: 900px) {
  .audience { padding: 64px 0; }
  .audience-grid { grid-template-columns: 1fr; }
}

/* ─────── HOW IT WORKS ─────── */
.how { padding: 100px 0; }
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}
.step {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: white;
  font-size: 22px; font-weight: 800;
  font-family: 'Inter', sans-serif;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(124, 179, 66, 0.35);
}
.step h3 {
  font-size: 20px; font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.step p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}
.step-connector {
  align-self: center;
  width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--green-light), transparent);
  border-radius: 1px;
  position: relative;
}
.step-connector::after {
  content: '→';
  position: absolute; right: -10px; top: -12px;
  color: var(--green); font-size: 20px;
}

@media (max-width: 900px) {
  .how { padding: 64px 0; }
  .steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
}

/* ─────── AI TEASE ─────── */
.ai-tease {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.ai-tease::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--pink-bg) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.5;
}
.ai-tease-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.ai-tease-copy h2 { margin-bottom: 20px; }
.ai-tease-copy p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.ai-bullets { list-style: none; }
.ai-bullets li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 15px;
  color: var(--text);
}
.ai-bullets li::before {
  content: '✨';
  position: absolute; left: 0; top: 8px;
  font-size: 14px;
}
.ai-tease-visual {
  display: flex; justify-content: center;
}

@media (max-width: 900px) {
  .ai-tease { padding: 64px 0; }
  .ai-tease-grid { grid-template-columns: 1fr; }
}

/* ─────── DOWNLOAD CTA ─────── */
.download {
  padding: 80px 0 100px;
}
.download-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 60%, #3b6b1f 100%);
  border-radius: var(--radius-xl);
  padding: 80px;
  overflow: hidden;
  color: white;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  box-shadow: 0 40px 80px rgba(85, 139, 47, 0.25);
}
.download-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.blob-green-lg {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(174, 213, 129, 0.45) 0%, transparent 70%);
  top: -250px; right: -150px;
  filter: blur(60px);
}
.blob-pink-lg {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--pink-light) 0%, transparent 70%);
  bottom: -150px; left: -100px;
  filter: blur(80px);
  opacity: 0.45;
}
.download-copy { position: relative; z-index: 1; }
.download-copy h2 {
  color: white;
  margin-bottom: 18px;
  margin-top: 8px;
}
.download-copy p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
}
.download-cta {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px;
}
.download-fine {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.link-white { color: white; font-weight: 600; border-bottom: 1px solid rgba(255, 255, 255, 0.4); }
.link-white:hover { border-bottom-color: white; }

.download-visual {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  min-height: 460px;
}
.download-visual .phone { width: 220px; }

@media (max-width: 900px) {
  .download { padding: 48px 0 64px; }
  .download-inner {
    grid-template-columns: 1fr;
    padding: 48px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
  }
  .download-copy p { margin-left: auto; margin-right: auto; }
  .download-cta { justify-content: center; }
  .download-visual { min-height: 380px; }
  .download-visual .phone { width: 180px; }
  .phone-tilt-r { margin-left: -30px; }
}

/* ─────── FOOTER ─────── */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
/* The wordmark PNG has its own colors — no recolor needed on dark footer */
.footer-brand p {
  font-size: 14px; line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: white;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  padding: 6px 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom-inner .muted { opacity: 0.7; }

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ─────── REVEAL ANIMATION ─────── */
/* Soft entrance polish for elements as they scroll into view. Safe by
   default: the JS only ever ADDs a `.reveal-in` class — content is fully
   visible if JS is disabled, blocked, or the page is rendered headlessly
   for a screenshot/PDF. */
.reveal-in {
  animation: revealUp 0.7s var(--ease) backwards;
}
@keyframes revealUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-in { animation: none; }
  .blob, .hero-card { animation: none; }
  html { scroll-behavior: auto; }
}
