@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  --cream: #fff9f2;
  --cream-dark: #fff3e6;
  --ink: #2a2f28;
  --muted: #6b7568;
  --green: #4caf6a;
  --green-dark: #3a9155;
  --green-light: #e8f7ed;
  --pink: #f7b7c4;
  --pink-deep: #f08fa3;
  --yellow: #f4c542;
  --yellow-light: #fff6d6;
  --purple: #b794f6;
  --purple-light: #f3ebff;
  --orange: #f5a962;
  --orange-light: #fff0e3;
  --white: #ffffff;
  --radius: 20px;
  --shadow: 0 12px 40px rgba(60, 80, 50, 0.08);
  --shadow-sm: 0 4px 16px rgba(60, 80, 50, 0.06);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: 'Outfit', 'Nunito', sans-serif;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }

.landing {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

/* ── Nav ── */
.l-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 249, 242, 0.85);
  backdrop-filter: blur(12px);
}
.l-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
}
.l-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--green-light);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}
.l-nav-links {
  display: none;
  gap: 28px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--muted);
}
.l-nav-links a:hover { color: var(--green-dark); }
.l-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.88rem;
  box-shadow: 0 6px 20px rgba(76, 175, 106, 0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}
.l-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(76, 175, 106, 0.4);
}

.l-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  flex-shrink: 0;
}
.l-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.l-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.l-burger.is-open span:nth-child(2) { opacity: 0; }
.l-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.l-menu-backdrop[hidden] {
  display: none !important;
}

.l-menu-backdrop:not([hidden]) {
  display: block;
}

.l-menu[hidden] {
  display: none !important;
}

.l-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 88vw);
  height: 100%;
  z-index: 90;
  background: var(--cream);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
  padding: max(72px, calc(env(safe-area-inset-top) + 56px)) 24px max(24px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.25s ease, visibility 0.25s;
  visibility: hidden;
}

.l-menu:not([hidden]) {
  transform: translateX(0);
  visibility: visible;
}

.l-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(42, 47, 40, 0.35);
  z-index: 80;
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.l-menu-backdrop:not([hidden]) {
  opacity: 1;
}
.l-menu a {
  display: block;
  padding: 14px 12px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
}
.l-menu a:hover { background: var(--green-light); color: var(--green-dark); }
.l-menu-cta {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
  text-align: center;
}
body.l-menu-open { overflow: hidden; }

@media (min-width: 768px) {
  .l-nav-links { display: flex; }
  .l-menu, .l-menu-backdrop { display: none !important; }
}

/* ── Ribbon ── */
.l-ribbon-wrap {
  overflow: hidden;
  margin: 0 -20px;
  padding: 14px 0;
  background: var(--yellow);
  transform: rotate(-1.5deg);
  margin-top: 8px;
}
.l-ribbon-wrap--mid {
  margin: 8px -20px 40px;
  transform: rotate(1.2deg);
  box-shadow: 0 6px 24px rgba(244, 197, 66, 0.35);
}
.l-ribbon {
  display: flex;
  white-space: nowrap;
  animation: ribbon 28s linear infinite;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.l-ribbon span { padding: 0 24px; }
.l-ribbon span::after { content: ' ✦ '; opacity: 0.5; }

@keyframes ribbon {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Hero ── */
.l-hero {
  display: grid;
  gap: 32px;
  padding: 48px 0 56px;
  align-items: center;
}
@media (min-width: 900px) {
  .l-hero { grid-template-columns: 1.1fr 0.9fr; gap: 48px; padding: 64px 0 72px; }
}

.l-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--pink);
  color: var(--pink-deep);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.l-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 16px;
}
.l-hero h1 em {
  font-style: normal;
  color: var(--green-dark);
  position: relative;
}
.l-hero-lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 28px;
  font-weight: 600;
}
.l-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.l-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.l-btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 24px rgba(76, 175, 106, 0.35);
}
.l-btn-primary:hover { transform: translateY(-2px); }
.l-btn-ghost {
  background: var(--white);
  color: var(--green-dark);
  border: 2px solid var(--green-light);
}
.l-btn-ghost:hover { background: var(--green-light); }

.l-hero-visual {
  position: relative;
  min-height: 320px;
}
.l-hero-blob {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--pink) 0%, #ffd4de 50%, var(--yellow-light) 100%);
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  animation: blob 8s ease-in-out infinite alternate;
}
@keyframes blob {
  to { border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%; }
}
.l-phone {
  position: relative;
  z-index: 2;
  max-width: 280px;
  margin: 24px auto 0;
  background: var(--white);
  border-radius: 32px;
  padding: 14px;
  box-shadow: var(--shadow);
  border: 3px solid rgba(255,255,255,0.8);
}
.l-phone-screen {
  background: var(--green-light);
  border-radius: 22px;
  padding: 20px 16px;
  min-height: 260px;
}
.l-phone-ring {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 8px solid var(--green);
  border-top-color: var(--green-light);
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--green-dark);
}
.l-phone-bubble {
  background: var(--yellow-light);
  border: 1.5px solid var(--yellow);
  border-radius: 14px 14px 14px 4px;
  padding: 8px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #8a6d20;
  margin-bottom: 10px;
  line-height: 1.35;
}
.l-phone-meal {
  background: var(--white);
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
}
.l-float-card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 10px 14px;
  box-shadow: var(--shadow-sm);
  font-size: 0.78rem;
  font-weight: 800;
  z-index: 3;
  animation: float 4s ease-in-out infinite alternate;
}
.l-float-card.a { top: 12%; right: 0; background: var(--purple-light); color: #6b4fa8; }
.l-float-card.b { bottom: 8%; left: -8px; background: var(--orange-light); color: #b86a28; animation-delay: 1s; }
@keyframes float {
  to { transform: translateY(-8px); }
}

/* ── Sections ── */
.l-section { padding: 56px 0; }
.l-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.l-section-head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.l-section-head p {
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 600;
}

/* ── Feature cards ── */
.l-features {
  display: grid;
  gap: 16px;
}
@media (min-width: 640px) { .l-features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .l-features { grid-template-columns: repeat(4, 1fr); } }

.l-feat {
  border-radius: var(--radius);
  padding: 24px 20px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}
.l-feat:hover { transform: translateY(-4px); }
.l-feat-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  display: grid;
  place-items: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.l-feat-icon { font-size: 2rem; margin-bottom: 10px; }
.l-feat h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.25;
}
.l-feat p {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
  opacity: 0.92;
}
.l-feat--green { background: var(--green-light); color: #2d5a3a; }
.l-feat--pink { background: #ffe8ee; color: #7a3d4f; }
.l-feat--yellow { background: var(--yellow-light); color: #7a6520; }
.l-feat--purple { background: var(--purple-light); color: #5a4088; }

/* ── Steps ── */
.l-steps {
  display: grid;
  gap: 20px;
  counter-reset: step;
}
@media (min-width: 768px) { .l-steps { grid-template-columns: repeat(3, 1fr); } }

.l-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  counter-increment: step;
  position: relative;
}
.l-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--green-light);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.l-step h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.l-step p {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

/* ── Benefits ── */
.l-benefits {
  background: var(--white);
  border-radius: 28px;
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
}
.l-benefits-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) { .l-benefits-grid { grid-template-columns: 1fr 1fr; gap: 24px 40px; } }

.l-benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.l-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--cream);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.l-benefit h4 {
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.l-benefit p {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
}

/* ── Pricing ── */
.l-pricing {
  display: grid;
  gap: 20px;
  align-items: stretch;
}
@media (min-width: 768px) { .l-pricing { grid-template-columns: 1fr 1fr; max-width: 760px; margin: 0 auto; } }

.l-plan {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
}
.l-plan--pro {
  border-color: var(--purple);
  background: linear-gradient(180deg, #fdfaff 0%, var(--white) 100%);
  position: relative;
}
.l-plan-tag {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 8px;
}
.l-plan--pro .l-plan-tag { color: var(--purple); }
.l-plan h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.l-plan-desc {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 20px;
  min-height: 2.8em;
}
.l-plan ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.l-plan li {
  font-size: 0.88rem;
  font-weight: 600;
  padding-left: 22px;
  position: relative;
}
.l-plan li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}
.l-plan-note {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  font-style: italic;
}

/* ── CTA ── */
.l-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--green) 0%, #3d9970 100%);
  border-radius: 28px;
  padding: 48px 28px;
  color: #fff;
  margin-top: 20px;
}
.l-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.l-cta p {
  font-size: 1rem;
  opacity: 0.92;
  font-weight: 600;
  max-width: 480px;
  margin: 0 auto 24px;
}
.l-cta .l-btn-primary {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ── Footer ── */
.l-footer {
  text-align: center;
  padding: 32px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}
.l-footer a { color: var(--green-dark); font-weight: 800; }

/* ═══ CREATIVE SECTIONS (after hero) ═══ */

.l-cloud-divider {
  height: 48px;
  margin: 0 -20px 32px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 48'%3E%3Cpath fill='%23fff9f2' d='M0 48V20c80-15 160 15 240 0s160-15 240 0 160 15 240 0 160-15 240 0 160 15 240 0 160-15 240 0V48z'/%3E%3C/svg%3E") center bottom / cover no-repeat;
  background-color: var(--white);
}

.l-eyebrow {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: 8px;
}
.l-showcase { text-align: center; padding: 20px 0 48px; }
.l-showcase-title {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 28px;
}
.l-orbs {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.l-orb {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: transform 0.2s;
}
.l-orb:hover { transform: scale(1.06) translateY(-4px); }
.l-orb span { font-size: 1.6rem; }
.l-orb small { font-size: 0.68rem; font-weight: 800; color: var(--muted); }

.l-split {
  display: grid;
  gap: 32px;
  align-items: center;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 860px) {
  .l-split { grid-template-columns: 1fr 1fr; gap: 48px; padding: 72px 0; }
  .l-split--reverse .l-split-text { order: 2; }
  .l-split--reverse .l-split-visual { order: 1; }
}
.l-split-bg {
  position: absolute;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(4rem, 14vw, 9rem);
  color: rgba(247, 183, 196, 0.22);
  pointer-events: none;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.l-split-text, .l-split-visual { position: relative; z-index: 1; }
.l-split-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin: 10px 0 14px;
  line-height: 1.15;
}
.l-split-text p {
  color: var(--muted);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.l-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.l-tag--green { background: var(--green-light); color: var(--green-dark); }
.l-tag--pink { background: #ffe8ee; color: #9e4060; }
.l-tag--yellow { background: var(--yellow-light); color: #8a7020; }
.l-tag--purple { background: var(--purple-light); color: #6b4fa8; }

.l-btn-glow {
  display: inline-flex;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  color: #fff;
  background: var(--pink-deep);
  box-shadow: 0 8px 28px rgba(240, 143, 163, 0.45);
  transition: transform 0.15s, box-shadow 0.15s;
}
.l-btn-glow:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(240, 143, 163, 0.55); }
.l-btn-glow--green { background: var(--green); box-shadow: 0 8px 28px rgba(76, 175, 106, 0.4); }
.l-btn-glow--pro { background: linear-gradient(135deg, #9b7fd4, #7b5fbf); box-shadow: 0 8px 28px rgba(123, 95, 191, 0.45); }
.l-btn-glow--pro:hover { box-shadow: 0 12px 32px rgba(123, 95, 191, 0.55); }
.l-btn-glow--white { background: #fff; color: var(--green-dark); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

.l-card-stack { position: relative; height: 220px; max-width: 280px; margin: 0 auto; }
.l-stack-card {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 0.88rem;
  box-shadow: var(--shadow);
  background: var(--white);
}
.l-stack-card.c1 { bottom: 0; z-index: 3; background: var(--green-light); transform: translateX(-50%) rotate(-2deg); }
.l-stack-card.c2 { bottom: 52px; z-index: 2; transform: translateX(-50%) rotate(3deg); }
.l-stack-card.c3 { bottom: 104px; z-index: 1; opacity: 0.92; transform: translateX(-50%) rotate(-4deg); }
.l-speech {
  position: absolute;
  padding: 8px 14px;
  border-radius: 14px;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}
.l-speech--purple { top: 0; right: 0; background: var(--purple-light); color: #6b4fa8; }
.l-speech--purple::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 20px;
  border: 6px solid transparent;
  border-top-color: var(--purple-light);
}

.l-ring-demo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 10px solid var(--green);
  border-top-color: var(--green-light);
  margin: 0 auto 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  box-shadow: var(--shadow);
}
.l-ring-demo-num { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.6rem; color: var(--green-dark); line-height: 1; }
.l-ring-demo-sub { font-size: 0.65rem; color: var(--muted); font-weight: 700; }
.l-ring-demo-net { font-size: 0.6rem; color: var(--muted); font-weight: 700; margin-top: 2px; }
.l-mini-cards { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.l-mini-card {
  background: var(--white);
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.l-mascot {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px 24px;
  margin: 20px 0;
  background: linear-gradient(135deg, var(--purple-light) 0%, #fff 60%);
  border-radius: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.l-mascot-char {
  font-size: 4.5rem;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.08));
  animation: float 4s ease-in-out infinite alternate;
}
.l-mascot-bubble {
  flex: 1;
  min-width: 260px;
  max-width: 480px;
  background: var(--white);
  padding: 20px 22px;
  border-radius: 20px 20px 20px 6px;
  box-shadow: var(--shadow-sm);
}
.l-mascot-bubble strong { display: block; margin-bottom: 8px; font-size: 1.05rem; }
.l-mascot-bubble p { color: var(--muted); font-weight: 600; font-size: 0.92rem; line-height: 1.55; }

.l-workout-cards { display: flex; flex-direction: column; gap: 10px; max-width: 260px; margin: 0 auto; }
.l-wcard {
  background: var(--white);
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border, #eee);
}
.l-wcard small { font-weight: 600; color: var(--muted); font-size: 0.75rem; }
.l-wcard--done { background: var(--green); color: #fff; border-color: var(--green-dark); }
.l-wcard--tilt { transform: rotate(2deg); background: var(--yellow-light); }

.l-friend-ui { max-width: 300px; margin: 0 auto; }
.l-friend-cloud {
  background: var(--yellow-light);
  border: 1.5px solid var(--yellow);
  padding: 10px 14px;
  border-radius: 16px 16px 16px 4px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #8a6d20;
}
.l-friend-advice {
  background: var(--white);
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--purple);
}
.l-friend-label { font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.l-friend-advice p { margin-top: 8px; font-size: 0.88rem; font-weight: 600; line-height: 1.5; color: var(--ink); }

.l-why { text-align: center; padding: 56px 0; }
.l-why-title { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 800; margin-bottom: 8px; }
.l-why-sub { color: var(--muted); font-weight: 600; margin-bottom: 32px; max-width: 640px; margin-left: auto; margin-right: auto; }

.l-why-hero {
  position: relative;
  background: linear-gradient(145deg, #fff 0%, var(--green-light) 55%, #ffe8ee 100%);
  border-radius: 32px;
  padding: 36px 28px 120px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
}
.l-why-hero-core { position: relative; z-index: 2; max-width: 520px; margin: 0 auto; }
.l-why-hero-badge {
  display: inline-block;
  background: var(--white);
  border: 1.5px solid var(--green);
  color: var(--green-dark);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.l-why-hero-core h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.l-why-hero-core p {
  color: var(--muted);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.55;
}
.l-why-orbit {
  position: absolute;
  inset: auto 0 0;
  height: 100px;
  pointer-events: none;
}
.l-why-orbit-item {
  position: absolute;
  background: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.l-why-orbit-item.o1 { left: 8%; bottom: 28px; transform: rotate(-6deg); }
.l-why-orbit-item.o2 { left: 32%; bottom: 8px; transform: rotate(3deg); background: #ffe8ee; }
.l-why-orbit-item.o3 { right: 28%; bottom: 12px; transform: rotate(-2deg); background: var(--yellow-light); }
.l-why-orbit-item.o4 { right: 6%; bottom: 32px; transform: rotate(5deg); background: var(--purple-light); }

.l-why-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
.l-why-grid--bento {
  text-align: left;
}
@media (min-width: 768px) {
  .l-why-grid--bento { grid-template-columns: repeat(3, 1fr); }
}
.l-why-card--wide { grid-column: 1 / -1; }
.l-why-card {
  border-radius: 20px;
  padding: 24px 18px;
  text-align: left;
  color: #fff;
  min-height: 140px;
  transition: transform 0.2s;
}
.l-why-card:hover { transform: translateY(-4px); }
.l-why-card--mint { background: linear-gradient(145deg, #5ec4a8, #3da88a); }
.l-why-card--wide { min-height: auto; padding: 28px 24px; }
.l-why-card--wide h3 { font-size: 1.15rem; }
.l-why-card--wide p { font-size: 0.92rem; }
.l-why-card--pink { background: linear-gradient(145deg, #f08fa3, #e06b85); }
.l-why-card--purple { background: linear-gradient(145deg, #b794f6, #9670e0); }
.l-why-card--blue { background: linear-gradient(145deg, #7eb8f7, #5a9ae8); }
.l-why-icon { font-size: 1.8rem; margin-bottom: 10px; }
.l-why-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.l-why-card p { font-size: 0.82rem; font-weight: 600; opacity: 0.95; line-height: 1.45; }

.l-steps-flow {
  text-align: center;
  padding: 48px 0 56px;
  background: var(--white);
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
}
.l-steps-flow h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 800; margin-bottom: 32px; }

.l-flow-zigzag {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.l-flow-zigzag::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 24px;
  bottom: 24px;
  width: 3px;
  background: linear-gradient(180deg, var(--green-light), var(--pink), var(--purple-light));
  transform: translateX(-50%);
  border-radius: 4px;
  opacity: 0.6;
}
.l-flow-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--cream);
  border-radius: 22px;
  padding: 20px 18px;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
  text-align: left;
}
.l-flow-card--left { margin-right: 12%; }
.l-flow-card--right { margin-left: 12%; flex-direction: row-reverse; text-align: right; }
.l-flow-card--right .l-flow-body { text-align: right; }
.l-flow-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #3d9970);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
}
.l-flow-body h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.25;
}
.l-flow-body p {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 560px) {
  .l-flow-zigzag::before { display: none; }
  .l-flow-card--left, .l-flow-card--right { margin: 0; flex-direction: row; text-align: left; }
  .l-flow-card--right .l-flow-body { text-align: left; }
}

.l-flow-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 720px;
  margin: 0 auto;
}
.l-flow-item {
  flex: 1;
  min-width: 100px;
  max-width: 140px;
}
.l-flow-item span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 10px;
}
.l-flow-item p { font-size: 0.82rem; font-weight: 800; line-height: 1.35; }
.l-flow-item small { font-weight: 600; color: var(--muted); font-size: 0.72rem; }
.l-flow-line {
  width: 40px;
  height: 2px;
  background: var(--pink);
  margin-top: 22px;
  opacity: 0.5;
  flex-shrink: 0;
}
@media (max-width: 520px) { .l-flow-line { display: none; } }

.l-plans-wrap {
  position: relative;
  padding: 48px 0 20px;
  text-align: center;
  overflow: hidden;
}
.l-plans-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 12vw, 7rem);
  color: rgba(183, 148, 246, 0.12);
  white-space: nowrap;
  pointer-events: none;
}
.l-plans-title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: 8px; position: relative; }
.l-plans-sub { color: var(--muted); font-weight: 600; margin-bottom: 32px; position: relative; }
.l-pricing--creative {
  display: grid;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 640px) { .l-pricing--creative { grid-template-columns: 1fr 1fr; } }
.l-plan-tile {
  background: var(--white);
  border-radius: 24px;
  padding: 28px 22px;
  box-shadow: var(--shadow);
  text-align: left;
}
.l-plan-tile--pro {
  background: linear-gradient(160deg, #fdfaff 0%, #fff 100%);
  border: 2px solid var(--purple);
}
.l-plan-tile-head {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: 4px;
}
.l-plan-desc {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.l-plan-tile--pro .l-plan-desc { color: var(--purple); }
.l-plan-lead {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 2.8em;
}
.l-plan-tile ul { list-style: none; margin-bottom: 20px; }
.l-plan-tile li {
  font-size: 0.88rem;
  font-weight: 600;
  padding: 7px 0 7px 22px;
  position: relative;
  color: var(--ink);
}
.l-plan-tile li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}
.l-plan-soft {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  font-weight: 600;
  margin-top: 12px;
}
.l-plan-tile .l-btn-glow { width: 100%; justify-content: center; }

.l-cta--cloud {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green) 0%, #3d9970 100%);
  border-radius: 28px;
  padding: 56px 28px;
  text-align: center;
  color: #fff;
  margin-top: 32px;
}
.l-cta--cloud h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 10px; }
.l-cta--cloud p { opacity: 0.92; font-weight: 600; margin-bottom: 24px; max-width: 400px; margin-left: auto; margin-right: auto; }
.l-cta-clouds {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40'%3E%3Cpath fill='%23fff9f2' d='M0 40V15c100-10 200 10 300 0s200-10 300 0 200 10 300 0 200-10 300 0V40z'/%3E%3C/svg%3E") center bottom / cover no-repeat;
  opacity: 0.35;
}

/* ═══ MOBILE ═══ */

@media (max-width: 767px) {
  .l-nav-cta--desktop { display: none; }
  .l-burger { display: flex; }

  .landing {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
    padding-bottom: max(48px, env(safe-area-inset-bottom));
  }

  .l-nav {
    padding: 12px 0;
    gap: 10px;
  }

  .l-logo {
    font-size: 1rem;
    min-width: 0;
  }

  .l-logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    border-radius: 12px;
  }

  .l-hero-text { text-align: center; }

  .l-hero {
    padding: 28px 0 40px;
    gap: 24px;
  }

  .l-hero-badge {
    font-size: 0.75rem;
    padding: 5px 12px;
  }

  .l-hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .l-hero-lead {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .l-hero-btns {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .l-hero-btns .l-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .l-hero-visual {
    min-height: 260px;
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
  }

  .l-float-card.a {
    top: 4%;
    right: 0;
    max-width: 58%;
    font-size: 0.7rem;
    padding: 8px 10px;
  }

  .l-float-card.b {
    bottom: 4%;
    left: 0;
    max-width: 58%;
    font-size: 0.7rem;
    padding: 8px 10px;
  }

  .l-phone {
    max-width: 240px;
  }

  .l-section { padding: 40px 0; }

  .l-showcase { padding: 12px 0 36px; text-align: center; }

  .l-showcase-title {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
    padding: 0 4px;
  }

  .l-orbs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 320px;
    margin: 0 auto;
    justify-content: center;
  }

  .l-orb {
    width: 100%;
    aspect-ratio: 1;
    height: auto;
  }

  .l-split {
    padding: 36px 0;
    gap: 24px;
    text-align: center;
  }

  .l-split-text h2 {
    font-size: clamp(1.25rem, 5vw, 1.6rem);
  }

  .l-split-text p {
    font-size: 0.92rem;
  }

  .l-split-text .l-btn-glow {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .l-split-bg {
    font-size: clamp(2.5rem, 18vw, 4rem);
    opacity: 0.18;
  }

  .l-mascot {
    padding: 28px 18px;
    margin: 8px 0;
    border-radius: 22px;
  }

  .l-mascot-char { font-size: 3.5rem; }

  .l-mascot-bubble {
    min-width: 0;
    width: 100%;
    padding: 16px 18px;
  }

  .l-why {
    padding: 40px 0;
  }

  .l-why-sub {
    font-size: 0.92rem;
    padding: 0 4px;
  }

  .l-why-hero {
    padding: 28px 18px 28px;
    border-radius: 22px;
  }

  .l-why-orbit {
    position: static;
    height: auto;
    inset: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    pointer-events: auto;
  }

  .l-why-orbit-item {
    position: static;
    transform: none !important;
    white-space: normal;
  }

  .l-why-grid {
    grid-template-columns: 1fr;
  }

  .l-why-card--wide {
    grid-column: auto;
  }

  .l-why-card {
    min-height: auto;
  }

  .l-steps-flow {
    padding: 36px 16px 44px;
  }

  .l-plans-wrap {
    padding: 36px 0 12px;
  }

  .l-plans-sub {
    font-size: 0.92rem;
    padding: 0 4px;
  }

  .l-plan-lead { min-height: auto; }

  .l-plan-tile {
    padding: 22px 18px;
    text-align: center;
  }

  .l-plan-tile ul,
  .l-plan-lead,
  .l-plan-desc,
  .l-plan-tile-head {
    text-align: left;
  }

  .l-plan-tile .l-btn-glow {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .l-cta--cloud {
    padding: 40px 20px;
    border-radius: 22px;
    margin-top: 24px;
  }

  .l-cta--cloud .l-btn-glow {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .l-ribbon-wrap,
  .l-ribbon-wrap--mid {
    margin-left: -16px;
    margin-right: -16px;
  }
}

@media (max-width: 480px) {
  .l-nav-links { display: none; }

  .l-float-card { display: none; }

  .l-hero-visual { min-height: 220px; }

  .l-phone { max-width: 220px; margin-top: 8px; }

  .l-card-stack { height: 200px; max-width: 240px; }

  .l-speech--purple {
    font-size: 0.72rem;
    padding: 6px 10px;
  }

  .l-friend-ui { max-width: 100%; }

  .l-flow-item {
    min-width: calc(50% - 12px);
    max-width: none;
  }

  .l-plans-bg {
    font-size: 2.5rem;
  }

  .l-footer {
    font-size: 0.78rem;
    padding-top: 24px;
  }
}

@media (max-width: 360px) {
  .l-logo-text {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
