/* ─────────────────── DESIGN TOKENS ─────────────────── */
:root {
  /* Brand palette derived from the new icon gradient */
  --sage-50:  #EFF8F1;
  --sage-100: #DDF0E2;
  --sage-300: #8BC9A2;
  --sage-400: #2BBA8E;
  --sage-500: #1F9F76;
  --sage-700: #14684C;
  --sage-900: #0B3F2D;

  --teal-400: #1AAEC4;

  --coral-300: #F4A892;
  --coral-400: #E8836B;

  --cream:    #FAFAF8;
  --ink:      #1A1F1B;
  --ink-2:    #2F3A33;
  --ink-3:    #5B6A60;
  --line:     #E7ECE6;

  /* Brand gradient — straight from the icon */
  --grad: linear-gradient(135deg, #1AAEC4 0%, #28B488 45%, #3BC06A 100%);
  --grad-soft: linear-gradient(135deg, rgba(26,174,196,0.10) 0%, rgba(59,192,106,0.10) 100%);

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(11,63,45,0.04), 0 2px 6px rgba(11,63,45,0.04);
  --shadow-md: 0 4px 14px rgba(11,63,45,0.06), 0 10px 30px rgba(11,63,45,0.06);
  --shadow-lg: 0 20px 60px rgba(11,63,45,0.10), 0 6px 20px rgba(11,63,45,0.06);

  --font-display: 'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ─────────────────── BASE ─────────────────── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--sage-500); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--sage-700); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); margin: 0; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.04; font-weight: 900; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.1; font-weight: 800; letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; line-height: 1.3; font-weight: 800; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--sage-50);
  color: var(--sage-700);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--sage-100);
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage-400);
  box-shadow: 0 0 0 4px rgba(43,186,142,0.18);
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(43,186,142,0.14); }
  50% { box-shadow: 0 0 0 7px rgba(43,186,142,0.05); }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 14px;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.98rem;
  border: 0;
  box-shadow: 0 6px 18px rgba(43,186,142,0.32), inset 0 -2px 0 rgba(0,0,0,0.06);
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(43,186,142,0.36); }
.btn:active { transform: translateY(0); }
.btn--small { padding: 10px 16px; font-size: 0.88rem; border-radius: 12px; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 { margin-top: 14px; }
.section-sub { color: var(--ink-3); font-size: 1.05rem; margin: 10px auto 0; max-width: 560px; }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--grad);
  z-index: 100;
  transition: width .08s linear;
}

/* ─────────────────── NAV ─────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,250,248,0.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.is-scrolled { border-bottom-color: var(--line); background: rgba(250,250,248,0.92); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--ink);
  font-size: 1.18rem;
  letter-spacing: -0.01em;
}
.nav__logo { width: 32px; height: 32px; border-radius: 8px; box-shadow: var(--shadow-sm); }
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  color: var(--ink-2);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}
.nav__links a:hover { color: var(--sage-700); }
@media (max-width: 760px) { .nav__links { display: none; } }

/* ─────────────────── HERO ─────────────────── */
.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.hero__glow--a {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(26,174,196,0.28), transparent 70%);
  top: -120px; left: -120px;
}
.hero__glow--b {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(59,192,106,0.22), transparent 70%);
  bottom: -180px; right: -160px;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(11,63,45,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11,63,45,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 920px) { .hero__inner { grid-template-columns: 1fr; gap: 48px; } }

.hero__copy h1 { margin: 18px 0 18px; }
.lead { font-size: clamp(1.05rem, 1.3vw, 1.2rem); color: var(--ink-2); margin: 0 0 28px; max-width: 540px; }

.notify {
  display: flex;
  gap: 8px;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  max-width: 460px;
}
.notify input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
  min-width: 0;
}
.notify input::placeholder { color: #97A39A; }
.notify .btn { padding: 12px 18px; border-radius: 14px; }
.notify--center { margin: 24px auto 0; }

.hero__note {
  margin: 14px 0 0;
  color: var(--ink-3);
  font-size: 0.88rem;
}

/* Hero device + orbit dots */
.hero__device {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__device-orbit { position: absolute; inset: 0; pointer-events: none; }
.orbit-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--sage-400);
  box-shadow: 0 0 0 6px rgba(43,186,142,0.14);
  animation: orbit-float 6s ease-in-out infinite;
}
.orbit-dot--1 { top: 8%;  left: 8%;  background: var(--teal-400); box-shadow: 0 0 0 6px rgba(26,174,196,0.14); }
.orbit-dot--2 { top: 18%; right: 4%; background: var(--coral-400); box-shadow: 0 0 0 6px rgba(232,131,107,0.14); animation-delay: -2s; }
.orbit-dot--3 { bottom: 16%; left: 4%; animation-delay: -4s; }
@keyframes orbit-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Phone mockup */
.phone {
  width: 320px;
  background: #1F2421;
  border-radius: 44px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: rotate(-2deg);
  transition: transform .4s ease;
}
.hero__device:hover .phone { transform: rotate(0); }
.phone__notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 24px;
  background: #000;
  border-radius: 14px;
  z-index: 2;
}
.phone__screen {
  background: var(--cream);
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 9 / 19;
}
.app { padding: 38px 14px 18px; font-family: var(--font-body); font-size: 13px; }
.app__statusbar { display: flex; justify-content: space-between; color: var(--ink); font-weight: 600; font-size: 11px; padding: 0 6px 6px; }
.app__statusicons { letter-spacing: 1px; font-size: 7px; }
.app__header { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; padding: 4px 6px 10px; }

.app__partner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--sage-50);
  border: 1px solid var(--sage-100);
  padding: 9px 11px;
  border-radius: var(--r-md);
  margin: 4px 0 14px;
}
.app__partner-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage-400);
  box-shadow: 0 0 0 3px rgba(43,186,142,0.22);
  animation: pulse-dot 1.8s ease-in-out infinite;
  flex: none;
}
.app__partner strong { display: block; font-size: 12px; color: var(--sage-700); }
.app__partner span { display: block; font-size: 10px; color: var(--ink-3); margin-top: 1px; }

.app__cat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 9px;
  color: var(--sage-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 6px 6px;
}
.app__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 8px;
  border-radius: var(--r-sm);
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 3px;
}
.app__item--checked { color: var(--ink-3); text-decoration: line-through; }
.app__item em { margin-left: auto; font-size: 9px; color: var(--ink-3); font-style: normal; }
.app__item b.pill {
  margin-left: auto;
  background: var(--coral-400);
  color: #fff;
  padding: 1px 6px;
  border-radius: 6px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.chk {
  width: 18px; height: 18px;
  border-radius: 6px;
  border: 2px solid var(--line);
  background: #fff;
  flex: none;
}
.chk--on {
  background: var(--grad);
  border-color: transparent;
  position: relative;
}
.chk--on::after {
  content: "";
  position: absolute;
  top: 4px; left: 5px;
  width: 4px; height: 7px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.app__addbar {
  display: flex; align-items: center; gap: 8px;
  margin-top: 12px;
  padding: 11px 12px;
  background: var(--sage-50);
  border-radius: var(--r-md);
  border: 1px dashed var(--sage-300);
  color: var(--sage-700);
  font-size: 12px;
}
.app__addplus {
  display: inline-grid; place-items: center;
  width: 20px; height: 20px; border-radius: 6px;
  background: var(--sage-400); color: #fff; font-weight: 800; font-size: 14px;
}

/* Scroll cue */
.hero__scrollcue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid var(--sage-300);
  border-radius: 14px;
  z-index: 2;
  opacity: 0.7;
}
.hero__scrollcue span {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 8px;
  background: var(--sage-500);
  border-radius: 3px;
  animation: scroll-cue 1.6s ease-in-out infinite;
}
@keyframes scroll-cue {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* ─────────────────── TAGLINE STRIP ─────────────────── */
.strip {
  background: var(--grad);
  color: #fff;
  padding: 22px 0;
}
.strip__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.strip__dot { opacity: 0.6; }

/* ─────────────────── FEATURES — BENTO ─────────────────── */
.features { padding: 110px 0; }
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.bento__card {
  grid-column: span 2;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.bento__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-100);
}
.bento__card--xl { grid-column: span 4; grid-row: span 2; }
.bento__card--wide { grid-column: span 4; }

@media (max-width: 940px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__card,
  .bento__card--xl,
  .bento__card--wide { grid-column: span 2; grid-row: auto; }
}

.bento__body { display: flex; flex-direction: column; gap: 8px; }
.bento__body h3 { font-size: 1.3rem; }
.bento__body p { color: var(--ink-3); margin: 0; font-size: 0.98rem; }

.feature__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-soft);
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 4px;
}

.bento__art {
  border-radius: var(--r-md);
  padding: 22px;
  background: var(--sage-50);
  border: 1px solid var(--sage-100);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Bento art variations */
.bento__art--sync { gap: 14px; padding: 28px; min-height: 240px; justify-content: space-around; }
.sync-row {
  display: flex; align-items: center; gap: 10px;
  background: #fff; padding: 12px 14px;
  border-radius: var(--r-md);
  font-size: 14px;
  box-shadow: var(--shadow-sm);
}
.sync-row b { color: var(--sage-700); }
.sync-row--from { align-self: flex-start; max-width: 80%; }
.sync-row--to   { align-self: flex-end;   max-width: 80%; }
.sync-ava {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 12px;
}
.sync-ava--a { background: var(--coral-400); }
.sync-ava--b { background: var(--sage-400); }
.sync-pulse {
  align-self: center;
  width: 60px; height: 2px;
  background: linear-gradient(to right, var(--coral-400), var(--sage-400));
  position: relative;
  border-radius: 2px;
}
.sync-pulse::after {
  content: "";
  position: absolute;
  top: -3px; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--sage-400);
  animation: pulse-slide 2.4s ease-in-out infinite;
}
@keyframes pulse-slide {
  0% { left: 0; }
  50% { left: calc(100% - 8px); }
  100% { left: 0; }
}

.bento__art--trip { gap: 10px; }
.mini-progress {
  width: 100%;
  height: 12px;
  border-radius: 99px;
  background: #fff;
  overflow: hidden;
}
.mini-progress__bar {
  width: 62%;
  height: 100%;
  background: var(--grad);
  border-radius: 99px;
  animation: bar-pulse 2.6s ease-in-out infinite;
}
@keyframes bar-pulse {
  0%, 100% { width: 60%; }
  50% { width: 68%; }
}
.mini-progress__label { font-size: 0.82rem; color: var(--ink-3); font-weight: 500; }

.bento__art--media { gap: 12px; flex-direction: row; align-items: stretch; }
.mini-photo {
  flex: 1.2;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, #B6D6C4, #7FB590);
  position: relative;
}
.mini-photo::before {
  content: "";
  position: absolute;
  top: 40%; left: 30%;
  width: 30%; height: 22%;
  background: var(--cream);
  border-radius: 50%;
  opacity: 0.7;
}
.mini-voice {
  flex: 1;
  background: #fff;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  box-shadow: var(--shadow-sm);
  font-size: 0.78rem;
  color: var(--ink-3);
}
.mini-voice__play {
  width: 26px; height: 26px;
  background: var(--grad);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 9px;
  flex: none;
}
.mini-wave {
  flex: 1;
  height: 14px;
  background:
    radial-gradient(circle at 20% 50%, var(--sage-400) 1.5px, transparent 2px),
    radial-gradient(circle at 35% 50%, var(--sage-400) 2.5px, transparent 3px),
    radial-gradient(circle at 50% 50%, var(--sage-400) 1.5px, transparent 2px),
    radial-gradient(circle at 65% 50%, var(--sage-400) 3px, transparent 3.5px),
    radial-gradient(circle at 80% 50%, var(--sage-400) 2px, transparent 2.5px);
  background-size: 100% 100%;
}

.bento__art--offline { gap: 8px; align-items: flex-start; padding: 20px; }
.mini-offline {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--coral-300); color: #fff;
  padding: 4px 12px; border-radius: 99px;
  font-size: 0.78rem; font-weight: 700;
}
.mini-offline::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
}
.mini-row { background: #fff; padding: 9px 12px; border-radius: var(--r-sm); width: 100%; font-size: 0.85rem; }
.mini-row--muted { color: var(--ink-3); }
.mini-arrow { font-size: 0.8rem; color: var(--sage-700); font-weight: 600; }

.bento__art--smart { padding: 24px; }
.smart-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.mini-tag {
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-2);
}
.mini-tag--produce  { color: var(--sage-700);  border-color: var(--sage-100); }
.mini-tag--dairy    { color: #B07E2C;          border-color: #F2DFB2; }
.mini-tag--bakery   { color: #A66B3E;          border-color: #ECD2BA; }
.mini-tag--household{ color: #5B7CC3;          border-color: #D1DCF1; }

/* ─────────────────── HOW IT WORKS ─────────────────── */
.how { padding: 110px 0; background: var(--sage-50); position: relative; }
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}
.step {
  background: #fff;
  border: 1px solid var(--sage-100);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step__num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 16px;
  box-shadow: 0 6px 14px rgba(43,186,142,0.30);
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--ink-3); margin: 0; }
.step-connector {
  align-self: center;
  width: 32px; height: 2px;
  background: repeating-linear-gradient(to right, var(--sage-300) 0 4px, transparent 4px 8px);
}
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
}

/* ─────────────────── MEET JIBI ─────────────────── */
.jibi { padding: 110px 0; }
.jibi__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.jibi__art {
  background: var(--grad-soft);
  border-radius: var(--r-xl);
  padding: 60px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--sage-100);
}
.jibi__art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(43,186,142,0.10) 1px, transparent 2px),
    radial-gradient(circle at 80% 70%, rgba(26,174,196,0.10) 1px, transparent 2px),
    radial-gradient(circle at 50% 50%, rgba(59,192,106,0.06) 1px, transparent 2px);
  background-size: 30px 30px, 50px 50px, 20px 20px;
}
.jibi__copy h2 { margin: 14px 0 18px; }
.jibi__copy p { color: var(--ink-3); margin: 0 0 24px; font-size: 1.08rem; }
.jibi__traits { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.jibi__traits li {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 600;
  color: var(--ink-2);
}
.jibi__traits .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--grad);
  flex: none;
}
@media (max-width: 880px) { .jibi__inner { grid-template-columns: 1fr; } .jibi__art { padding: 40px; } }

/* CSS-built otter mascot (mirrors the in-app Jibi) */
.jibi-otter {
  position: relative; width: 200px; height: 224px;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 22px 30px rgba(26,44,35,.18));
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.jibi-otter__ear {
  position: absolute; top: 6px; width: 50px; height: 50px;
  background: var(--sage-300); border-radius: 50% 50% 42% 42%; z-index: 1;
}
.jibi-otter__ear::after {
  content: ""; position: absolute; left: 10px; right: 10px; top: 9px; height: 24px;
  background: var(--sage-400); border-radius: 50% 50% 42% 42%;
}
.jibi-otter__ear--l { left: 26px; }
.jibi-otter__ear--r { right: 26px; }

.jibi-otter__body {
  position: absolute; top: 26px; left: 50%; transform: translateX(-50%);
  width: 156px; height: 184px; background: var(--sage-300);
  border-radius: 46% 46% 45% 45%; z-index: 2;
}
.jibi-otter__belly {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 104px; background: var(--sage-50); border-radius: 50%;
}

.jibi-otter__arm {
  position: absolute; top: 104px; width: 30px; height: 52px;
  background: var(--sage-400); border-radius: 15px; z-index: 1;
}
.jibi-otter__arm--l { left: 2px; transform: rotate(16deg); }
.jibi-otter__arm--r { right: -2px; transform-origin: bottom center; animation: jibi-wave .8s ease-in-out infinite alternate; }
@keyframes jibi-wave { from { transform: rotate(34deg); } to { transform: rotate(12deg); } }

.jibi-otter__face { position: absolute; top: 52px; left: 0; right: 0; display: flex; flex-direction: column; align-items: center; z-index: 3; }
.jibi-otter__eyes { display: flex; gap: 34px; }
.jibi-eye { width: 17px; height: 9px; background: var(--sage-900); border-radius: 0 0 18px 18px; }
.jibi-otter__nose { width: 11px; height: 7px; background: var(--sage-900); border-radius: 0 0 8px 8px; margin-top: 7px; }
.jibi-otter__cheeks { display: flex; gap: 54px; margin-top: 5px; }
.jibi-otter__cheeks span { width: 15px; height: 15px; border-radius: 50%; background: var(--coral-300); opacity: .55; }
.jibi-otter__mouth {
  width: 26px; height: 15px; margin-top: -6px; background: var(--sage-900);
  border-radius: 6px 6px 13px 13px; overflow: hidden;
  display: flex; justify-content: center; align-items: flex-end;
}
.jibi-otter__mouth::after { content: ""; width: 16px; height: 5px; background: #fff; border-radius: 0 0 6px 6px; }

.jibi-otter__badge {
  position: absolute; top: 18px; right: 6px; z-index: 4;
  width: 46px; height: 46px; border-radius: 50%; background: #fff;
  display: grid; place-items: center;
  font-size: 22px; color: var(--coral-400);
  box-shadow: var(--shadow-md);
  animation: jibi-pop 2.4s ease-in-out infinite;
}
@keyframes jibi-pop { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.12); } }

/* ─────────────────── FREE BANNER ─────────────────── */
.free { padding: 40px 0; background: var(--cream); }
.free__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--sage-100);
  border-radius: var(--r-lg);
  padding: 22px 28px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.free__check {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px;
  background: var(--grad);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  flex: none;
}
.free__inner p { margin: 0; color: var(--ink-2); }
.free__inner strong { color: var(--ink); }

/* ─────────────────── FAQ ─────────────────── */
.faq { padding: 110px 0; background: var(--sage-50); }
.faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--sage-100);
  border-radius: var(--r-md);
  padding: 22px 26px;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq__item:hover { border-color: var(--sage-300); }
.faq__item[open] { box-shadow: var(--shadow-sm); }
.faq__item summary {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 36px;
  font-size: 1.05rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sage-50);
  color: var(--sage-500);
  display: grid; place-items: center;
  font-size: 18px; font-weight: 700;
  transition: transform .25s ease, background .2s ease;
}
.faq__item[open] summary::after { content: "−"; background: var(--sage-100); }
.faq__item p {
  color: var(--ink-3);
  margin: 14px 0 0;
  line-height: 1.65;
}

/* ─────────────────── CTA ─────────────────── */
.cta {
  position: relative;
  padding: 110px 0;
  background: var(--ink);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta__glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(43,186,142,0.28), transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta__inner { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
.cta h2 { color: #fff; margin: 0 0 18px; }
.cta p { color: rgba(255,255,255,0.7); margin: 0; }
.cta__note { margin-top: 16px; color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.cta__link { color: var(--sage-300); }
.cta__link:hover { color: #fff; }
.cta .notify { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); }
.cta .notify input { color: #fff; }
.cta .notify input::placeholder { color: rgba(255,255,255,0.5); }

/* ─────────────────── FOOTER ─────────────────── */
.footer { padding: 40px 0; background: #fff; border-top: 1px solid var(--line); }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800; color: var(--ink);
}
.footer__links { display: flex; gap: 22px; }
.footer__links a { color: var(--ink-3); font-size: 0.92rem; }
.footer__links a:hover { color: var(--ink); }
.footer__copy { margin: 0; color: var(--ink-3); font-size: 0.88rem; }

/* ─────────────────── LEGAL PAGES ─────────────────── */
.legal { padding: 60px 0 80px; max-width: 760px; margin: 0 auto; }
.legal h1 { font-size: 2rem; margin-bottom: 18px; }
.legal h2 { font-size: 1.3rem; margin: 32px 0 10px; }
.legal p, .legal li { color: var(--ink-2); line-height: 1.7; }
.legal ul { padding-left: 22px; }

/* ─────────────────── RESPONSIVE ─────────────────── */
@media (max-width: 540px) {
  .container { padding: 0 18px; }
  .hero { padding: 60px 0 80px; }
  .features, .how, .jibi, .faq, .cta { padding: 80px 0; }
  .phone { width: 280px; }
  .footer__inner { flex-direction: column; text-align: center; }
  .notify { flex-direction: column; padding: 8px; }
  .notify input { padding: 12px 14px; }
  .notify .btn { width: 100%; justify-content: center; }
}
