/* ─── TappiTapp Marketing — Design Tokens ─── */
:root {
  --beige:        #f9dfc9;
  --beige-bright: #fff7f0;
  --paper:        #ffffff;
  --green:        #327760;
  --green-deep:   #265a4a;
  --green-soft:   #e8f2ed;
  --violet:       #9f88b7;
  --violet-soft:  #ede8f5;
  --rose:         #f18678;
  --rose-soft:    #fdecea;
  --yellow:       #e7ac00;
  --yellow-soft:  #fdf5d9;
  --ink:          #2d2f3a;
  --ink-soft:     #5e6172;
  --ink-mute:     #8b8e9a;
  --radius-card:  24px;
  --radius-pill:  100px;
  --shadow-sm:    0 2px 8px rgba(45, 47, 58, .06);
  --shadow:       0 6px 28px rgba(45, 47, 58, .08);
  --shadow-lg:    0 14px 40px rgba(45, 47, 58, .12);
  --t-fast:       150ms ease;
  --t-base:       220ms cubic-bezier(.2,.7,.2,1);
  --t-spring:     420ms cubic-bezier(.16,1,.3,1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: 'Lexend', system-ui, sans-serif;
  background: var(--beige);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { text-decoration: none; color: inherit; }
input, textarea { font: inherit; color: inherit; }

/* ─── Display Font ─── */
h1, h2, h3, h4, .display {
  font-family: 'Darumadrop One', system-ui;
  font-weight: 400;
  letter-spacing: -.005em;
  line-height: 1.08;
}

/* ─── Layout ─── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.wrap-tight { max-width: 980px; margin: 0 auto; padding: 0 28px; }

/* ─── Stamp Tag (organic rotated pill) ─── */
.stamp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: #fff;
  font-family: 'Lexend', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 52% 48% 56% 44% / 50% 56% 44% 50%;
  transform: rotate(-1.5deg);
  transition: transform var(--t-base);
  white-space: nowrap;
}
.stamp:hover { transform: rotate(0deg) scale(1.03); }
.stamp.violet { background: var(--violet); }
.stamp.rose   { background: var(--rose); }
.stamp.yellow { background: var(--yellow); color: var(--ink); }
.stamp.dark   { background: var(--ink); color: #fff; }
.stamp.light  { background: var(--beige-bright); color: var(--ink); }
.stamp.outline { background: transparent; color: var(--green); box-shadow: inset 0 0 0 1.5px var(--green); }
.stamp .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: .55; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -.005em;
  transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-deep); }
.btn-yellow  { background: var(--yellow); color: var(--ink); }
.btn-ghost   { background: rgba(255,255,255,.16); color: #fff; backdrop-filter: blur(10px); }
.btn-outline { background: transparent; color: var(--green); box-shadow: inset 0 0 0 1.5px var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; box-shadow: none; }
.btn-sm { padding: 11px 18px; font-size: 14px; }
.btn-arrow { transition: transform var(--t-base); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ─── Nav ─── */
nav.top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 223, 201, .85);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(45,47,58,.06);
  padding: 14px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Darumadrop One', sans-serif; font-size: 26px; color: var(--green); letter-spacing: -.01em; }
.nav-logo-mark {
  width: 36px; height: 36px;
  background: var(--green);
  color: var(--beige-bright);
  display: grid; place-items: center;
  border-radius: 56% 44% 52% 48% / 48% 56% 44% 52%;
  font-size: 18px;
  transform: rotate(-3deg);
  font-family: 'Darumadrop One', sans-serif;
  flex-shrink: 0;
}
.nav-links { display: flex; gap: 28px; align-items: center; font-size: 14.5px; font-weight: 500; color: var(--ink-soft); }
.nav-links a { transition: color var(--t-fast); }
.nav-links a:hover { color: var(--green); }
@media (max-width: 760px) { .nav-links { display: none; } }

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: 56px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -10%;
  width: 60vw; height: 60vw;
  max-width: 720px; max-height: 720px;
  background: radial-gradient(closest-side, rgba(231, 172, 0, .22), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 50vw; height: 50vw;
  max-width: 620px; max-height: 620px;
  background: radial-gradient(closest-side, rgba(159, 136, 183, .18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--beige-bright);
  color: var(--ink);
  border-radius: var(--radius-pill);
  padding: 8px 16px 8px 8px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow .badge {
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.hero h1 {
  font-size: clamp(44px, 5.8vw, 80px);
  color: var(--ink);
  margin-bottom: 22px;
}
.hero h1 .accent-green { color: var(--green); }
.hero h1 .accent-yellow { color: var(--yellow); }
.hero h1 .accent-rose { color: var(--rose); }
.hero h1 .underline-wave {
  position: relative;
  display: inline-block;
}
.hero h1 .underline-wave::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -8px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 14' preserveAspectRatio='none'><path d='M0,7 C20,1 40,13 60,7 C80,1 100,13 120,7' fill='none' stroke='%23e7ac00' stroke-width='3' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.hero-sub {
  font-size: 18.5px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.55;
}
.hero-cta-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hero-cta-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.avatar-stack { display: flex; }
.avatar-stack img {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2.5px solid var(--beige);
  margin-left: -8px;
  background: var(--beige-bright);
  object-fit: cover;
}
.avatar-stack img:first-child { margin-left: 0; }
.stars { color: var(--yellow); letter-spacing: 2px; font-size: 14px; }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 540px;
  justify-self: end;
  width: 100%;
}
.hero-blob {
  position: absolute;
  inset: 6%;
  background: var(--beige-bright);
  border-radius: 58% 42% 52% 48% / 46% 56% 44% 54%;
  box-shadow: var(--shadow-lg);
}
.hero-blob.alt {
  inset: 12%;
  background: var(--green-soft);
  border-radius: 48% 52% 60% 40% / 52% 44% 56% 48%;
  transform: rotate(-3deg);
  box-shadow: none;
  opacity: .8;
}
.hero-mascot {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}
.hero-mascot img {
  width: 84%;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(45,47,58,.12));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.hero-chip {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  z-index: 3;
  animation: float-slow 7s ease-in-out infinite;
}
.hero-chip .swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 14px;
  font-family: 'Darumadrop One', sans-serif;
}
.hero-chip-1 { top: 6%; left: -2%; animation-delay: 0s; }
.hero-chip-2 { top: 44%; right: -6%; animation-delay: 1.5s; }
.hero-chip-3 { bottom: 8%; left: 4%; animation-delay: 3s; }
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-8px) rotate(.6deg); }
}

@media (max-width: 920px) {
  .hero { padding: 32px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { max-width: 420px; margin: 0 auto; justify-self: center; }
  .hero h1 { font-size: clamp(40px, 9vw, 56px); }
}

/* ─── Counter strip ─── */
.counter-strip {
  background: var(--ink);
  color: rgba(255,255,255,.85);
  padding: 18px 0;
  overflow: hidden;
}
.marquee {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: 'Darumadrop One', sans-serif;
  font-size: 22px;
  letter-spacing: -.005em;
}
.marquee span { display: inline-flex; align-items: center; gap: 16px; }
.marquee .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Section base ─── */
section { padding: 110px 0; position: relative; }
section.beige   { background: var(--beige); }
section.bright  { background: var(--beige-bright); }
section.green-deep { background: var(--green); color: var(--beige-bright); }

.section-head {
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-head .stamp { margin-bottom: 18px; }
.section-head h2 {
  font-size: clamp(36px, 4.6vw, 60px);
  color: var(--ink);
  margin-bottom: 18px;
}
.section-head h2 em { font-style: normal; color: var(--green); }
.section-head h2 .rose { color: var(--rose); }
.section-head h2 .violet { color: var(--violet); }
.section-head h2 .yellow { color: var(--yellow); }
.section-head p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto;
  text-wrap: pretty;
}
.green-deep .section-head h2 { color: #fff; }
.green-deep .section-head p { color: rgba(255,255,255,.78); }

@media (max-width: 760px) {
  section { padding: 72px 0; }
  .section-head { margin-bottom: 44px; }
}

/* ─── Problem ─── */
.problem-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.problem-text h2 {
  font-size: clamp(36px, 4.6vw, 58px);
  margin: 18px 0 22px;
}
.problem-text h2 em { font-style: normal; color: var(--rose); }
.problem-text p { font-size: 17.5px; color: var(--ink-soft); margin-bottom: 14px; line-height: 1.6; }
.problem-text p strong { color: var(--ink); font-weight: 600; }
.quote-stack { display: flex; flex-direction: column; gap: 20px; }
.quote-card {
  background: var(--beige-bright);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.quote-card.tilt-l { transform: rotate(-1.2deg); }
.quote-card.tilt-r { transform: rotate(1deg); margin-left: 32px; }
.quote-card .mark {
  font-family: Georgia, serif;
  font-size: 56px;
  color: var(--rose);
  line-height: .2;
  display: block;
  margin-bottom: 6px;
}
.quote-card blockquote {
  font-size: 16.5px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.55;
}
.quote-card .byline {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--ink-soft);
}
.quote-card .byline .av {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--rose-soft);
  display: grid; place-items: center;
  color: var(--rose);
  font-size: 12px;
  font-weight: 700;
}
@media (max-width: 920px) {
  .problem-grid { grid-template-columns: 1fr; gap: 36px; }
  .quote-card.tilt-r { margin-left: 0; }
}

/* ─── USP twin ─── */
.usp-wrap { position: relative; }
.usp-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 36px;
}
.usp-card {
  background: var(--beige-bright);
  border-radius: var(--radius-card);
  padding: 36px 32px 32px;
  box-shadow: var(--shadow);
  transition: transform var(--t-base), box-shadow var(--t-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.usp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.usp-card .ribbon {
  position: absolute;
  top: 22px; right: -34px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 4px 40px;
  transform: rotate(35deg);
}
.usp-card.violet-ribbon .ribbon { background: var(--violet); }
.usp-card .scene {
  height: 160px;
  margin: -10px -12px 20px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--beige);
}
.usp-card .scene img { width: 100%; height: 100%; object-fit: cover; }
.usp-card .big-num {
  font-family: 'Darumadrop One', sans-serif;
  font-size: 56px;
  color: var(--green);
  margin: 4px 0 6px;
  line-height: .95;
}
.usp-card.violet-ribbon .big-num { color: var(--violet); }
.usp-card h3 {
  font-size: 26px;
  margin-bottom: 10px;
  color: var(--ink);
}
.usp-card p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.6;
  flex: 1;
}
.usp-card .bullets {
  list-style: none;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1.5px dashed rgba(45,47,58,.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.usp-card .bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.usp-card .bullets li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.usp-card.violet-ribbon .bullets li::before { background: var(--violet); }

.oder {
  display: grid;
  place-items: center;
  position: relative;
  min-width: 80px;
}
.oder-circle {
  width: 72px; height: 72px;
  border-radius: 52% 48% 56% 44% / 50% 56% 44% 50%;
  background: var(--yellow);
  display: grid;
  place-items: center;
  font-family: 'Darumadrop One', sans-serif;
  font-size: 22px;
  color: var(--ink);
  transform: rotate(-6deg);
  box-shadow: var(--shadow);
  z-index: 2;
}
.oder::before, .oder::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 2.5px;
  background: repeating-linear-gradient(to bottom, var(--ink-mute) 0 6px, transparent 6px 12px);
  opacity: .35;
}
.oder::before { top: 0; bottom: 50%; transform: translate(-50%, -36px); }
.oder::after  { top: 50%; bottom: 0; transform: translate(-50%, 36px); }

.usp-claim {
  text-align: center;
  background: var(--ink);
  color: var(--beige-bright);
  padding: 22px 32px;
  border-radius: var(--radius-pill);
  font-size: 17px;
  font-weight: 500;
  margin: 0 auto;
  max-width: 720px;
  box-shadow: var(--shadow);
}
.usp-claim strong { color: var(--yellow); font-weight: 600; }

@media (max-width: 920px) {
  .usp-grid { grid-template-columns: 1fr; }
  .oder { padding: 8px 0; }
  .oder::before, .oder::after { display: none; }
  .usp-card .scene { height: 130px; }
}

/* ─── Steps ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 16.66%;
  right: 16.66%;
  height: 2.5px;
  background-image: linear-gradient(to right, var(--ink-mute) 50%, transparent 50%);
  background-size: 12px 2.5px;
  background-repeat: repeat-x;
  opacity: .35;
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  background: var(--beige-bright);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  width: 56px; height: 56px;
  border-radius: 52% 48% 56% 44% / 50% 56% 44% 50%;
  display: grid; place-items: center;
  font-family: 'Darumadrop One', sans-serif;
  font-size: 28px;
  color: #fff;
  background: var(--green);
  margin-bottom: 22px;
  transform: rotate(-3deg);
  box-shadow: 0 6px 14px rgba(50,119,96,.25);
}
.step:nth-child(2) .step-num { background: var(--violet); transform: rotate(2deg); box-shadow: 0 6px 14px rgba(159,136,183,.3); }
.step:nth-child(3) .step-num { background: var(--rose); transform: rotate(-1deg); box-shadow: 0 6px 14px rgba(241,134,120,.3); }
.step h3 { font-size: 22px; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.step .demo {
  margin-top: 18px;
  background: var(--beige);
  border-radius: 14px;
  padding: 14px;
  font-size: 13px;
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.step .demo .chip {
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: #fff;
  font-weight: 500;
  font-size: 12.5px;
  box-shadow: var(--shadow-sm);
}
.step .demo .chip.on { background: var(--green); color: #fff; }

@media (max-width: 920px) {
  .steps { grid-template-columns: 1fr; gap: 20px; }
  .steps::before { display: none; }
  .step { padding: 26px 24px; }
  .step-num { width: 50px; height: 50px; font-size: 24px; margin-bottom: 16px; }
  .step h3 { font-size: 20px; margin-bottom: 8px; }
  .step p { font-size: 14px; line-height: 1.55; }
  .step .demo { margin-top: 14px; padding: 12px; font-size: 12px; }
  .step .demo .chip { padding: 6px 11px; font-size: 11.5px; }
}

/* ─── Features ─── */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.feature {
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-base);
}
.feature:hover { transform: translateY(-4px); }
.feature.green  { background: var(--green-soft); }
.feature.violet { background: var(--violet-soft); }
.feature.rose   { background: var(--rose-soft); }
.feature.yellow { background: var(--yellow-soft); }
.feature-head { display: flex; align-items: flex-start; gap: 18px; }
.feature-img {
  width: 110px;
  height: 110px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--beige-bright);
  box-shadow: var(--shadow-sm);
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature h3 { font-size: 28px; margin: 8px 0 2px; }
.feature p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.55; flex: 1; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
.feature-tag {
  background: rgba(255,255,255,.7);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
@media (max-width: 920px) {
  .features { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .feature { padding: 22px; }
  .feature-img { width: 70px; height: 70px; }
  .feature h3 { font-size: 18px; }
  .feature p { font-size: 13.5px; }
  .feature-tags { gap: 6px; }
  .feature-tag { font-size: 10.5px; padding: 4px 10px; }
}
@media (max-width: 720px) {
  .features { grid-template-columns: 1fr; gap: 18px; }
  .feature { padding: 26px; }
  .feature-img { width: 80px; height: 80px; }
}

/* ─── Audience cards ─── */
.audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.aud-card {
  background: var(--beige-bright);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
  display: flex; flex-direction: column;
  cursor: pointer;
}
.aud-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.aud-img {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(45,47,58,.08);
}
.aud-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aud-icon {
  width: 64px; height: 64px;
  border-radius: 52% 48% 56% 44% / 50% 56% 44% 50%;
  background: var(--green-soft);
  display: grid; place-items: center;
  margin-bottom: 20px;
  transform: rotate(-3deg);
}
.aud-card:nth-child(2) .aud-icon { background: var(--violet-soft); transform: rotate(2deg); }
.aud-card:nth-child(3) .aud-icon { background: var(--rose-soft); transform: rotate(-1deg); }
.aud-icon svg { width: 30px; height: 30px; stroke-width: 2; }
.aud-card:nth-child(1) .aud-icon svg { color: var(--green); }
.aud-card:nth-child(2) .aud-icon svg { color: var(--violet); }
.aud-card:nth-child(3) .aud-icon svg { color: var(--rose); }
.aud-card h3 { font-size: 24px; margin-bottom: 8px; }
.aud-tagline { font-size: 13px; font-weight: 600; color: var(--green); margin-bottom: 10px; letter-spacing: .02em; }
.aud-card:nth-child(2) .aud-tagline { color: var(--violet); }
.aud-card:nth-child(3) .aud-tagline { color: var(--rose); }
.aud-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; margin-bottom: 18px; flex: 1; }
.aud-bullets { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.aud-bullets li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
}
.aud-bullets li svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--green); }
.aud-card:nth-child(2) .aud-bullets li svg { color: var(--violet); }
.aud-card:nth-child(3) .aud-bullets li svg { color: var(--rose); }
@media (max-width: 920px) {
  .audience { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .aud-card { padding: 22px; }
  .aud-img { height: 160px; margin-bottom: 14px; }
  .aud-card h3 { font-size: 19px; }
  .aud-card p { font-size: 13px; }
  .aud-bullets li { font-size: 12px; }
}
@media (max-width: 720px) {
  .audience { grid-template-columns: 1fr; gap: 20px; }
  .aud-card { padding: 24px; }
  .aud-img { height: 160px; }
  .aud-card h3 { font-size: 20px; }
  .aud-card p { font-size: 14px; }
  .aud-bullets li { font-size: 13px; }
}

/* ─── Phone preview (interactive) ─── */
.preview-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.preview-text h2 { font-size: clamp(34px, 4vw, 50px); color: #fff; margin: 18px 0 22px; }
.preview-text > p { font-size: 17.5px; color: rgba(255,255,255,.78); line-height: 1.6; margin-bottom: 28px; }

.preview-toggle {
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-pill);
  padding: 5px;
  display: inline-flex;
  gap: 4px;
  margin-bottom: 24px;
}
.preview-toggle button {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  color: rgba(255,255,255,.7);
  font-weight: 600;
  font-size: 14.5px;
  transition: all var(--t-base);
}
.preview-toggle button.on { background: var(--yellow); color: var(--ink); }
.preview-toggle button:not(.on):hover { color: #fff; }

.preview-feature-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.preview-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,.06);
  border-radius: 14px;
  transition: background var(--t-base);
}
.preview-feature:hover { background: rgba(255,255,255,.1); }
.preview-feature .pf-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  background: var(--yellow);
  color: var(--ink);
}
.preview-feature .pf-icon svg { width: 18px; height: 18px; }
.preview-feature h4 { font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 15.5px; color: #fff; margin-bottom: 2px; letter-spacing: -.005em; }
.preview-feature p { font-size: 13.5px; color: rgba(255,255,255,.7); line-height: 1.45; }

/* Phone frame */
.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}
.phone-stage::before {
  content: '';
  position: absolute;
  inset: 10%;
  background: radial-gradient(closest-side, rgba(255,255,255,.12), transparent 70%);
  pointer-events: none;
}
.phone {
  position: relative;
  width: 300px;
  aspect-ratio: 9 / 19.5;
  background: #1c1d22;
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,.4), 0 0 0 2px rgba(255,255,255,.08) inset;
}
.phone .screen {
  width: 100%;
  height: 100%;
  background: var(--beige);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}
.phone .notch {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 24px;
  background: #1c1d22;
  border-radius: 0 0 14px 14px;
  z-index: 5;
}
.phone .statusbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 22px 0;
  font-family: 'Lexend', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  z-index: 4;
}
.phone .statusbar .icons { display: flex; gap: 5px; align-items: center; }
.phone .statusbar .icons svg { width: 14px; height: 14px; color: var(--ink); }
.phone-decor-leaf {
  position: absolute;
  width: 88px; height: 88px;
  background: var(--green);
  border-radius: 65% 35% 50% 50% / 50% 50% 65% 35%;
  opacity: .8;
  z-index: 0;
}
.phone-decor-leaf.l1 { top: 8%; left: -8%; transform: rotate(-25deg); background: var(--green); }
.phone-decor-leaf.l2 { bottom: 12%; right: -10%; transform: rotate(40deg); background: var(--yellow); opacity: .7; }
.phone-decor-leaf.l3 { top: 50%; right: -2%; transform: rotate(15deg) scale(.6); background: var(--rose); opacity: .7; }

@media (max-width: 920px) {
  .preview-grid { grid-template-columns: 1fr; gap: 40px; }
  .phone-stage { min-height: 540px; }
  .phone-decor-leaf { display: none; }
}

/* ─── Stamp showcase ─── */
.stamps-strip { padding: 60px 0; }
.stamps-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.stamps-row .st-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stamps-row .st {
  width: 88px; height: 88px;
  border-radius: 56% 44% 52% 48% / 48% 56% 44% 52%;
  display: grid; place-items: center;
  background: var(--green-soft);
  color: var(--green);
  font-family: 'Darumadrop One', sans-serif;
  font-size: 32px;
  transform: rotate(-4deg);
  box-shadow: inset 0 0 0 3px rgba(50,119,96,.18);
  transition: transform var(--t-spring);
}
.st-item:hover .st { transform: rotate(0) scale(1.08); }
.st-item.v2 .st { background: var(--violet-soft); color: var(--violet); transform: rotate(3deg); box-shadow: inset 0 0 0 3px rgba(159,136,183,.22); }
.st-item.v3 .st { background: var(--rose-soft); color: var(--rose); transform: rotate(-2deg); box-shadow: inset 0 0 0 3px rgba(241,134,120,.22); }
.st-item.v4 .st { background: var(--yellow-soft); color: #b08300; transform: rotate(2deg); box-shadow: inset 0 0 0 3px rgba(231,172,0,.22); }
.st-item.v5 .st { background: var(--beige-bright); color: var(--ink); transform: rotate(-3deg); box-shadow: inset 0 0 0 3px rgba(45,47,58,.12); }
.stamps-row .st-item span {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-soft);
}

/* ─── Pricing ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 880px;
  margin: 0 auto;
}
.price-card {
  background: var(--beige-bright);
  border-radius: var(--radius-card);
  padding: 38px 34px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.pro {
  background: var(--green);
  color: var(--beige-bright);
  box-shadow: var(--shadow);
}
.price-card .price-tier {
  font-family: 'Lexend', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.price-card.pro .price-tier { color: rgba(255,255,255,.65); }
.price-card .price-num {
  font-family: 'Darumadrop One', sans-serif;
  font-size: 64px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-card.pro .price-num { color: var(--yellow); }
.price-card .price-num .sub { font-size: 16px; font-family: 'Lexend', sans-serif; color: var(--ink-soft); font-weight: 500; }
.price-card.pro .price-num .sub { color: rgba(255,255,255,.7); }
.price-card .price-desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1.5px dashed rgba(45,47,58,.12);
}
.price-card.pro .price-desc { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.2); }
.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.price-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
}
.price-list li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--green);
  margin-top: 2px;
}
.price-card.pro .price-list li svg { color: var(--yellow); }
.price-soon {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-top: 22px;
  align-self: flex-start;
}
@media (max-width: 920px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .price-card { padding: 28px 24px; }
  .price-card .price-num { font-size: 48px; }
  .price-card h4 { font-size: 16px; }
  .price-card .price-desc { font-size: 13.5px; }
  .price-list li { font-size: 13px; }
}
@media (max-width: 720px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .price-card { padding: 32px 28px; }
  .price-card .price-num { font-size: 56px; }
}

/* ─── FAQ ─── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  background: var(--beige-bright);
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow var(--t-base);
}
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  gap: 18px;
}
.faq-q-text { font-weight: 600; font-size: 16.5px; color: var(--ink); line-height: 1.4; }
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  background: var(--green-soft);
  color: var(--green);
  transition: transform var(--t-base), background var(--t-base);
}
.faq-toggle svg { width: 16px; height: 16px; transition: transform var(--t-base); }
.faq-item.open .faq-toggle { background: var(--green); color: #fff; }
.faq-item.open .faq-toggle svg { transform: rotate(45deg); }
.faq-a {
  padding: 0 28px;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-base), padding var(--t-base);
}
.faq-item.open .faq-a { padding: 0 28px 24px; max-height: 600px; }

/* ─── Shop ─── */
.shop-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.shop-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.shop-item {
  background: var(--beige-bright);
  border-radius: 18px;
  padding: 22px 20px;
  position: relative;
  transition: transform var(--t-base), box-shadow var(--t-base);
  cursor: pointer;
}
.shop-item:hover { transform: translateY(-3px) rotate(-1deg); box-shadow: var(--shadow); }
.shop-item:nth-child(2):hover { transform: translateY(-3px) rotate(1deg); }
.shop-item:nth-child(3):hover { transform: translateY(-3px) rotate(1.5deg); }
.shop-item:nth-child(4):hover { transform: translateY(-3px) rotate(-1.5deg); }
.shop-item-art {
  width: 100%; height: 88px;
  background: var(--green-soft);
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 14px;
  color: var(--green);
}
.shop-item:nth-child(2) .shop-item-art { background: var(--violet-soft); color: var(--violet); }
.shop-item:nth-child(3) .shop-item-art { background: var(--rose-soft); color: var(--rose); }
.shop-item:nth-child(4) .shop-item-art { background: var(--yellow-soft); color: #b08300; }
.shop-item-art svg { width: 38px; height: 38px; }
.shop-item-name { font-weight: 600; font-size: 14.5px; color: var(--ink); margin-bottom: 2px; }
.shop-item-soon { font-size: 12px; color: var(--ink-soft); font-weight: 500; }
@media (max-width: 920px) {
  .shop-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
}
@media (max-width: 720px) {
  .shop-items { display: none; }
}

/* ─── Waitlist final CTA ─── */
.waitlist-final {
  position: relative;
  background: var(--green);
  color: #fff;
  padding: 110px 0;
  overflow: hidden;
}
.waitlist-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(231,172,0,.22), transparent 35%),
    radial-gradient(circle at 85% 70%, rgba(241,134,120,.22), transparent 35%);
  pointer-events: none;
}
.waitlist-final-inner { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto; padding: 0 28px; }
.waitlist-final h2 { font-size: clamp(40px, 5vw, 64px); color: #fff; margin: 20px 0 18px; }
.waitlist-final h2 .y { color: var(--yellow); }
.waitlist-final p { font-size: 18px; color: rgba(255,255,255,.78); margin-bottom: 36px; }
.waitlist-mascot-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1.5px dashed rgba(255,255,255,.18);
}
.waitlist-mascot-row img {
  width: 70px; height: 70px;
  object-fit: contain;
  transition: transform var(--t-spring);
}
.waitlist-mascot-row img:hover { transform: translateY(-6px) rotate(-3deg); }
@media (max-width: 760px) {
  .waitlist-final { padding: 80px 0; }
  .waitlist-mascot-row {
    gap: 16px;
    flex-wrap: wrap;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .waitlist-mascot-row img { width: 56px; height: 56px; }
}

/* ─── Waitlist form ─── */
.waitlist-form {
  display: flex;
  gap: 8px;
  background: var(--beige-bright);
  padding: 6px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  max-width: 460px;
}
.waitlist-final .waitlist-form { margin: 0 auto; }
.waitlist-form input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  padding: 0 18px;
  font-size: 15.5px;
  color: var(--ink);
  min-width: 0;
}
.waitlist-form input::placeholder { color: var(--ink-mute); }
.waitlist-form button {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 13px 22px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background var(--t-base);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.waitlist-form button:hover { background: var(--green-deep); }
.waitlist-form.success { background: var(--green-soft); }
.waitlist-form.success button { background: var(--green-deep); }
.waitlist-form.success input { color: var(--green); }
.waitlist-note { font-size: 13px; color: var(--ink-soft); margin-top: 10px; text-align: center; }
.waitlist-final .waitlist-note { color: rgba(255,255,255,.55); }

@media (max-width: 520px) {
  .waitlist-form { flex-direction: column; padding: 14px; gap: 10px; border-radius: 22px; }
  .waitlist-form input { padding: 8px 10px; text-align: center; }
  .waitlist-form button { justify-content: center; padding: 14px; }
}

/* ─── Footer ─── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.6);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { color: var(--beige-bright); margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.55; max-width: 280px; }
.footer-col h5 {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ─── Helpers ─── */
.scroll-reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s cubic-bezier(.16,1,.3,1); }
.scroll-reveal.in { opacity: 1; transform: none; }

/* ─── Scroll to Top Button ─── */
.scroll-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(50, 119, 96, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.85);
  transition: all 0.3s ease;
  z-index: 100;
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.scroll-to-top:hover {
  background: var(--green-deep);
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(50, 119, 96, 0.45);
}
.scroll-to-top svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
  }
  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}

/* ─── Grain overlay (toggleable) ─── */
body.grain::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .12 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: .55;
  z-index: 200;
}
