:root {
  --bg: #FBF3E8;
  --paper: #FFFEFA;
  --ink: #4A3552;
  --body: #96809E;
  --soft: #BCA9C2;
  --rose: #F2789F;
  --rose-deep: #C2426E;
  --rose-lt: #FCDCE7;
  --peach: #FFA671;
  --peach-lt: #FFE8D9;
  --lav: #A98BE0;
  --lav-lt: #EBE2FA;
  --butter: #FFCF66;
  --butter-lt: #FFF2CF;
  --sage: #8FCBAA;
  --tape-rose: rgba(242,120,159,.4);
  --tape-lav: rgba(169,139,224,.4);
  --tape-butter: rgba(255,207,102,.55);
  --shadow: 0 2px 4px rgba(74,53,82,.05), 0 14px 30px rgba(74,53,82,.13);
  --shadow-lg: 0 4px 8px rgba(74,53,82,.06), 0 24px 48px rgba(74,53,82,.18);
  --radius: 24px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
  background: #F4E8D8;
  overflow-x: hidden;
  line-height: 1.5;
}

/* ---------- decorative background ---------- */
.bg-glow {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(700px 480px at 8% -4%, rgba(242,120,159,.14), transparent 60%),
    radial-gradient(660px 460px at 94% 12%, rgba(169,139,224,.15), transparent 62%),
    radial-gradient(620px 440px at 40% 60%, rgba(255,207,102,.14), transparent 62%),
    radial-gradient(620px 440px at 80% 96%, rgba(143,203,170,.12), transparent 62%),
    var(--bg);
}
.bg-dots {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(74,53,82,.10) 1.1px, transparent 1.6px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.7));
          mask-image: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.7));
}

/* ---------- typography ---------- */
h1, h2, h3 { font-family: 'Gabarito', sans-serif; font-weight: 900; letter-spacing: -1px; line-height: 1.05; }
h1 { font-size: clamp(40px, 6vw, 68px); }
h2 { font-size: clamp(30px, 4.4vw, 48px); }
em {
  font-family: 'Caveat', cursive; font-style: normal; font-weight: 700;
  color: var(--rose); font-size: 1.12em;
}
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: 2.4px;
  font-size: 11.5px; font-weight: 700; color: var(--body); margin-bottom: 14px;
}
.lede { font-size: clamp(15px, 1.6vw, 18px); color: var(--body); max-width: 34ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 15px;
  padding: 14px 24px; border-radius: 16px; text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: 14px; border-radius: 13px; }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #FF9FBE, var(--rose));
  box-shadow: 0 12px 26px rgba(242,120,159,.42);
}
.btn-primary:hover { box-shadow: 0 16px 34px rgba(242,120,159,.5); }
.btn-soft {
  color: var(--ink); background: var(--paper);
  border: 1px solid rgba(188,169,194,.5); box-shadow: var(--shadow);
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 100; width: min(1120px, calc(100% - 32px));
  display: flex; align-items: center; gap: 20px;
  padding: 10px 12px 10px 20px; border-radius: 22px;
  background: linear-gradient(155deg, rgba(255,254,250,.82), rgba(255,254,250,.5) 55%, rgba(255,240,230,.6));
  -webkit-backdrop-filter: blur(20px) saturate(160%);
          backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 10px 30px rgba(74,53,82,.12);
  transition: box-shadow .3s ease;
}
.nav.scrolled { box-shadow: 0 14px 40px rgba(74,53,82,.18); }
.brand { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.brand-bow { display: inline-flex; align-items: center; }
.brand-logo { width: 28px; height: 28px; border-radius: 8px; display: block; }
.brand-name { font-family: 'Gabarito', sans-serif; font-weight: 900; font-size: 22px; color: var(--ink); letter-spacing: -.5px; }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { text-decoration: none; color: var(--body); font-weight: 600; font-size: 14.5px; transition: color .2s; }
.nav-links a:hover { color: var(--rose-deep); }

/* ---------- layout ---------- */
.section { width: min(1120px, calc(100% - 44px)); margin: 0 auto; padding: 90px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 52px; }
.section-head p { color: var(--body); font-size: 17px; margin-top: 12px; }

/* ---------- hero ---------- */
.hero {
  width: min(1120px, calc(100% - 44px)); margin: 0 auto;
  padding: 140px 0 60px; display: grid;
  grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
}
.hero-copy h1 { margin: 6px 0 20px; }
.hero-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-cta.center { justify-content: center; }
.hero-stats { display: flex; gap: 34px; margin-top: 40px; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats b { font-family: 'Gabarito', sans-serif; font-size: 30px; font-weight: 900; color: var(--ink); }
.hero-stats span { font-size: 12.5px; color: var(--body); }

/* ---------- phone mockup (mirrors home_screen.dart) ---------- */
.hero-phone { position: relative; display: flex; justify-content: center; }
.phone {
  width: 300px; height: 650px; border-radius: 44px; position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 10px #3A2944, 0 40px 70px rgba(58,41,68,.38);
}
.phone-screen {
  width: 100%; height: 100%; position: relative; overflow: hidden;
  background: var(--bg);
}
.phone-screen::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(430px 320px at 106% -4%, rgba(169,139,224,.17), transparent 62%),
    radial-gradient(410px 300px at -10% 10%, rgba(242,120,159,.16), transparent 60%),
    radial-gradient(420px 320px at 108% 66%, rgba(255,207,102,.19), transparent 64%),
    radial-gradient(380px 300px at -8% 96%, rgba(143,203,170,.15), transparent 62%);
}
.phone-screen::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(74,53,82,.13) 1.1px, transparent 1.6px);
  background-size: 20px 20px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.5), rgba(0,0,0,.9));
          mask-image: linear-gradient(180deg, rgba(0,0,0,.5), rgba(0,0,0,.9));
}
/* Design at 375×812, scale into the bezel */
.phone-ui {
  position: absolute; left: 0; top: 0; width: 375px; height: 812px; z-index: 2;
  transform: scale(0.8); transform-origin: top left;
  display: flex; flex-direction: column;
  font-family: 'Outfit', sans-serif; color: var(--ink);
}

.p-status {
  height: 50px; flex-shrink: 0; display: flex; justify-content: space-between; align-items: center;
  padding: 0 30px; font-size: 14.5px; font-weight: 700;
}
.p-sig { display: flex; gap: 5px; align-items: center; }
.p-sig i { display: block; width: 16px; height: 10px; border-radius: 2.5px; background: var(--ink); }
.p-sig i.b { width: 24px; border-radius: 4px; }

.p-top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 2px 24px 14px; flex-shrink: 0;
}
.p-greet {
  display: block; font-family: 'Caveat', cursive; font-weight: 600; font-size: 17px;
  color: var(--rose); line-height: 1.1;
}
.p-top b {
  font-family: 'Gabarito', sans-serif; font-size: 25px; font-weight: 900;
  letter-spacing: -.5px; display: block; line-height: 1.1; margin-top: 1px;
}
.p-top-actions { display: flex; align-items: center; gap: 9px; }
.p-bell {
  position: relative; width: 40px; height: 40px; border-radius: 50%; color: var(--ink);
  background: linear-gradient(160deg, rgba(255,254,250,.94), rgba(255,254,250,.6));
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 5px 12px rgba(74,53,82,.1);
  display: flex; align-items: center; justify-content: center;
}
.p-bell svg { width: 16px; height: 16px; }
.p-bell .dot {
  position: absolute; top: 9px; right: 10px; width: 8px; height: 8px; border-radius: 50%;
  background: var(--rose); border: 1.5px solid var(--paper);
}
.p-avatar {
  width: 40px; height: 40px; border-radius: 50%; background-size: cover; background-position: center;
  border: 2.5px solid var(--paper); box-shadow: 0 3px 8px rgba(74,53,82,.16);
}

.p-scroll {
  flex: 1; overflow: hidden; padding: 12px 24px 130px; position: relative;
}

/* Overlapping collage — matches `_spread` */
.p-spread { position: relative; height: 252px; margin-top: 6px; }
.p-spread .drop {
  position: absolute; left: 0; top: 6px; width: 54.5%;
  transform: rotate(-2.5deg); z-index: 3; padding: 9px 9px 10px;
}
.p-spread .drop .pim { height: 196px; }
.p-spread .drop .cap {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 9px 4px 0; gap: 6px;
}
.p-spread .drop .cap b {
  font-family: 'Caveat', cursive; font-weight: 700; font-size: 19px; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.p-spread .drop .cap span {
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--rose);
  flex-shrink: 0;
}
.p-spread .note {
  position: absolute; right: 10px; top: 10px; width: 40.5%;
  padding: 14px 13px 12px; background: var(--butter-lt);
  transform: rotate(2deg); box-shadow: var(--shadow); z-index: 4; border-radius: 0;
}
.p-spread .note .pin {
  position: absolute; left: 50%; top: -8px; transform: translateX(-50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #FF9FBE, #D6497A 70%);
  box-shadow: 0 3px 6px rgba(74,53,82,.3);
}
.p-spread .note b {
  font-family: 'Gabarito', sans-serif; font-weight: 800; font-size: 14.5px;
  line-height: 1.2; display: block; letter-spacing: 0;
}
.p-spread .note b em {
  font-family: 'Caveat', cursive; font-style: normal; font-weight: 700;
  font-size: 19px; color: #C2426E;
}
.p-spread .note small {
  font-size: 9.5px; font-weight: 600; color: #9A7B42; display: block;
  margin: 6px 0 10px; line-height: 1.4;
}
.p-spread .note .go {
  display: inline-flex; align-items: center; font-size: 10px; font-weight: 800;
  color: #fff; background: var(--ink); border-radius: 99px; padding: 8px 13px;
  box-shadow: 0 6px 14px rgba(74,53,82,.3);
}
.p-spread .streak {
  position: absolute; right: 10px; bottom: 2px; width: 40.5%;
  padding: 12px 13px; background: var(--paper); border-radius: 16px;
  box-shadow: var(--shadow); transform: rotate(-1.5deg); z-index: 4;
  display: flex; align-items: center; gap: 10px;
}
.p-spread .streak .fl {
  font-family: 'Caveat', cursive; font-weight: 700; font-size: 28px;
  color: var(--peach); line-height: 1;
}
.p-spread .streak b { font-size: 11px; font-weight: 700; display: block; line-height: 1.15; }
.p-spread .streak small { font-size: 8.5px; font-weight: 600; color: var(--soft); }
.spread-doodle {
  position: absolute; right: 52px; bottom: 66px;
  width: 52px; height: 42px; z-index: 2; overflow: visible;
}

.p-gal-head {
  display: flex; align-items: center; margin-top: 14px; margin-bottom: 10px;
}
.p-gal-title {
  font-family: 'Caveat', cursive; font-weight: 700; font-size: 17px; color: var(--rose);
}
.ftabs { display: flex; gap: 7px; margin-left: auto; }
.ftab {
  display: inline-flex; align-items: center; gap: 4px; padding: 5px 12px; border-radius: 99px;
  font-size: 9.5px; font-weight: 800; color: var(--soft); background: var(--paper);
  box-shadow: var(--shadow);
}
.ftab svg { width: 10px; height: 10px; }
.ftab.on {
  color: #fff; background: linear-gradient(120deg, var(--rose), #E05A88);
  box-shadow: 0 5px 12px rgba(242,120,159,.4);
}

.p-gal { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.p-gal .col { display: flex; flex-direction: column; gap: 12px; }
.p-gal .pola { padding: 6px 6px 7px; }
.p-gal .pim.tall { height: 198px; }
.p-gal .pim.short { height: 140px; }
.p-gal .tilt-l { transform: rotate(-.9deg); }
.p-gal .tilt-r { transform: rotate(.9deg); }
.p-gal .tint-cream {
  background: linear-gradient(168deg, #FFFFFF 0%, #FEFBF4 62%, #FAF3E7 100%);
}
.p-gal .tint-lav {
  background: linear-gradient(168deg, #FAF7FF 0%, #F0E9FC 62%, #E9DFF8 100%);
}
.p-gal .tint-butter {
  background: linear-gradient(168deg, #FFFDF4 0%, #FCF3DA 62%, #F7EBC9 100%);
}
.p-gal .tint-rose {
  background: linear-gradient(168deg, #FFF7FA 0%, #FCE8F0 62%, #F8DCE8 100%);
}
.p-gal .corners::after {
  content: ''; position: absolute; inset: 10px 10px 12px; pointer-events: none; z-index: 3;
  background:
    linear-gradient(var(--ink), var(--ink)) top left / 10px 1.5px no-repeat,
    linear-gradient(var(--ink), var(--ink)) top left / 1.5px 10px no-repeat,
    linear-gradient(var(--ink), var(--ink)) top right / 10px 1.5px no-repeat,
    linear-gradient(var(--ink), var(--ink)) top right / 1.5px 10px no-repeat,
    linear-gradient(var(--ink), var(--ink)) bottom left / 10px 1.5px no-repeat,
    linear-gradient(var(--ink), var(--ink)) bottom left / 1.5px 10px no-repeat,
    linear-gradient(var(--ink), var(--ink)) bottom right / 10px 1.5px no-repeat,
    linear-gradient(var(--ink), var(--ink)) bottom right / 1.5px 10px no-repeat;
  opacity: .22;
}
.p-gal .sticker {
  position: absolute; right: -9px; bottom: -9px; z-index: 6;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--rose); color: #fff; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  transform: rotate(10deg); box-shadow: 0 4px 10px rgba(74,53,82,.2);
  border: 2px solid var(--paper);
}
.p-gal .clip {
  position: absolute; left: 14px; top: -13px; z-index: 6;
  width: 14px; height: 28px; border-radius: 7px;
  border: 2.5px solid #B8C0C8;
  background: linear-gradient(180deg, #E8ECF0, #C5CCD3);
  transform: rotate(-8deg);
  box-shadow: 0 2px 4px rgba(74,53,82,.15);
}

/* polaroid frame */
.pola {
  background: linear-gradient(168deg, #FFFFFF 0%, #FEFBF4 62%, #FAF3E7 100%);
  padding: 9px 9px 12px; border-radius: 3px; position: relative;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.9),
    inset 0 -1px 0 rgba(74,53,82,.06),
    0 1px 2px rgba(74,53,82,.07),
    0 14px 30px rgba(74,53,82,.15);
}
.pola::before {
  content: ''; position: absolute; inset: 4.5px; border: 1px solid rgba(74,53,82,.07);
  border-radius: 2px; pointer-events: none; z-index: 4;
}
.pola .pim {
  position: relative; border-radius: 1.5px; background-size: cover; background-position: center;
  box-shadow: inset 0 1px 5px rgba(74,53,82,.24), inset 0 0 0 1px rgba(74,53,82,.1);
  overflow: hidden;
}
.pola .pim::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: linear-gradient(118deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,.05) 26%, transparent 42%);
}

/* tape — solid translucent (matches Flutter Tape) */
.tape {
  position: absolute; width: 74px; height: 22px; z-index: 5; pointer-events: none;
  left: 50%; top: -11px; transform: translateX(-50%) rotate(-3deg);
}
.tape.t-c { left: 50%; top: -11px; transform: translateX(-50%) rotate(-3deg); }
.tape.t-l { left: -18px; top: -9px; right: auto; transform: rotate(-38deg); }
.tape.t-r { right: -18px; top: -9px; left: auto; transform: rotate(38deg); }
.tape.rs { background: var(--tape-rose); }
.tape.lv { background: var(--tape-lav); }
.tape.bt { background: var(--tape-butter); }

/* liquid glass tab bar */
.p-tabbar {
  position: absolute; left: 16px; right: 16px; bottom: 18px; z-index: 10;
  height: 72px; border-radius: 26px; display: flex; align-items: center; padding: 0 8px;
  background: linear-gradient(155deg, rgba(255,254,250,.78), rgba(255,254,250,.42) 55%, rgba(255,240,230,.5));
  -webkit-backdrop-filter: blur(26px) saturate(175%);
          backdrop-filter: blur(26px) saturate(175%);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.98),
    inset 0 -10px 18px rgba(255,255,255,.35),
    0 18px 40px rgba(74,53,82,.18);
}
.p-tabbar .tab {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; height: 56px; border-radius: 18px; color: var(--soft);
  font-size: 9.5px; font-weight: 700; letter-spacing: .3px; position: relative;
}
.p-tabbar .tab svg { width: 21px; height: 21px; }
.p-tabbar .tab.on {
  color: #C2426E;
  background: linear-gradient(160deg, rgba(255,255,255,.9), rgba(252,220,231,.55));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 6px 14px rgba(242,120,159,.2);
}
.p-tabbar .tab.on::after {
  content: ''; position: absolute; top: -4px; left: 50%; transform: translateX(-50%) rotate(-4deg);
  width: 26px; height: 8px; background: var(--tape-rose);
}
.p-tabbar .tab-plus { flex: 1; display: flex; justify-content: center; }
.p-tabbar .fab {
  width: 54px; height: 54px; border-radius: 50%; margin-top: -26px; color: #fff;
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
  background: radial-gradient(circle at 32% 26%, #FF9FBE, var(--rose) 64%);
  border: 2.5px solid rgba(255,255,255,.92);
  box-shadow: 0 12px 26px rgba(242,120,159,.45), inset 0 2px 4px rgba(255,255,255,.5);
}
.p-tabbar .fab::after {
  content: ''; position: absolute; left: 8%; top: 6%; width: 46%; height: 34%; border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.65), transparent);
}
.p-tabbar .fab svg { width: 22px; height: 22px; position: relative; z-index: 2; }
.home-ind {
  position: absolute; bottom: 7px; left: 50%; transform: translateX(-50%);
  width: 130px; height: 5px; border-radius: 99px; background: var(--ink); opacity: .65; z-index: 14;
}

/* doodles */
.doodle { position: absolute; font-size: 26px; z-index: 3; animation: float 6s ease-in-out infinite; }
.d1 { top: 40px; right: 6%; color: var(--butter); }
.d2 { bottom: 70px; left: 2%; font-size: 32px; animation-delay: 1.2s; }
.d3 { top: 46%; right: 0; color: var(--lav); animation-delay: .6s; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-6deg); } 50% { transform: translateY(-12px) rotate(6deg); } }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; padding: 22px 0; border-block: 1px solid rgba(74,53,82,.08); background: rgba(255,254,250,.4); }
.marquee-track { display: flex; gap: 22px; white-space: nowrap; width: max-content; animation: scroll 26s linear infinite; }
.marquee-track span { font-family: 'Gabarito'; font-weight: 800; font-size: 22px; color: var(--soft); text-transform: lowercase; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- features ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
  background: var(--paper); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease;
  border-top: 4px solid var(--rose);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-card .fi {
  width: 54px; height: 54px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 16px; background: var(--rose-lt);
}
.feature-card h3 { font-size: 20px; margin-bottom: 8px; }
.feature-card p { color: var(--body); font-size: 14.5px; }
.c-rose { border-top-color: var(--rose); } .c-rose .fi { background: var(--rose-lt); }
.c-lav { border-top-color: var(--lav); } .c-lav .fi { background: var(--lav-lt); }
.c-butter { border-top-color: var(--butter); } .c-butter .fi { background: var(--butter-lt); }
.c-peach { border-top-color: var(--peach); } .c-peach .fi { background: var(--peach-lt); }
.c-sage { border-top-color: var(--sage); } .c-sage .fi { background: #DFF1E7; }

/* ---------- quiz ---------- */
.quiz { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.quiz-copy p { color: var(--body); font-size: 17px; margin: 14px 0 22px; max-width: 40ch; }
.profiles { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.chip { padding: 8px 15px; border-radius: 99px; font-weight: 700; font-size: 13.5px; }
.chip.c-rose { background: var(--rose-lt); color: var(--rose-deep); }
.chip.c-lav { background: var(--lav-lt); color: var(--lav); }
.chip.c-peach { background: var(--peach-lt); color: #D97A3C; }
.chip.c-butter { background: var(--butter-lt); color: #B8862A; }
.quiz-cards { position: relative; display: flex; justify-content: center; gap: 18px; }
.quiz-cards .pola { width: 210px; padding: 10px 10px 12px; }
.quiz-cards .pim { height: 250px; }
.quiz-cards .cap { display: flex; justify-content: space-between; align-items: baseline; padding: 8px 2px 0; }
.quiz-cards .cap b { font-family: 'Gabarito'; font-weight: 800; font-size: 15px; }
.quiz-cards .cap span { font-size: 11px; font-weight: 700; color: var(--rose); }
.tilt-l { transform: rotate(-5deg); } .tilt-r { transform: rotate(5deg); margin-top: 30px; }
.quiz-cards .pola { transition: transform .3s ease; }
.tilt-l:hover { transform: rotate(-2deg) translateY(-6px); }
.tilt-r:hover { transform: rotate(2deg) translateY(-6px); }

/* ---------- bows ---------- */
.bows-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  background: linear-gradient(135deg, var(--rose-lt), var(--lav-lt));
  border-radius: 34px; padding: 52px; box-shadow: var(--shadow-lg);
}
.bows-copy p { color: var(--body); font-size: 17px; margin: 14px 0 24px; }
.bows-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.bows-list li {
  display: flex; align-items: center; gap: 14px; background: var(--paper);
  padding: 14px 18px; border-radius: 16px; box-shadow: var(--shadow); font-weight: 600; font-size: 15px;
}
.b-plus, .b-minus { font-family: 'Gabarito'; font-weight: 900; font-size: 16px; min-width: 74px; padding: 6px 10px; border-radius: 10px; text-align: center; }
.b-plus { background: #DFF1E7; color: #3E9B6C; }
.b-minus { background: var(--rose-lt); color: var(--rose-deep); }

/* ---------- gallery ---------- */
.gallery-strip { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.gallery-strip .pola { width: 190px; padding: 9px 9px 14px; }
.gallery-strip .pim { height: 230px; }
.gallery-strip .pola { transition: transform .3s ease, box-shadow .3s ease; }
.gallery-strip .pola:hover { transform: translateY(-8px) rotate(0deg) !important; box-shadow: var(--shadow-lg); z-index: 2; }
.g1 { transform: rotate(-4deg); } .g2 { transform: rotate(3deg); } .g3 { transform: rotate(-2deg); }
.g4 { transform: rotate(4deg); } .g5 { transform: rotate(-3deg); }

/* ---------- download ---------- */
.download { padding-bottom: 100px; }
.download-card {
  position: relative; text-align: center; overflow: hidden;
  background: linear-gradient(160deg, var(--paper), #FFF4E8);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 34px; padding: 66px 30px; box-shadow: var(--shadow-lg);
}
.download-card p { color: var(--body); font-size: 18px; margin: 12px 0 30px; }
.dc1 { top: 30px; left: 8%; font-size: 34px; }
.dc2 { bottom: 30px; right: 10%; color: var(--butter); font-size: 30px; }

/* ---------- footer ---------- */
.footer { width: min(1120px, calc(100% - 44px)); margin: 0 auto; padding: 40px 0 60px; text-align: center; border-top: 1px solid rgba(74,53,82,.08); }
.footer-brand { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.footer-links a { text-decoration: none; color: var(--body); font-weight: 600; font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--rose-deep); }
.footer-note { color: var(--soft); font-size: 13px; }

/* ---------- legal pages ---------- */
.legal-hero { width: min(820px, calc(100% - 44px)); margin: 0 auto; padding: 140px 0 30px; text-align: center; }
.legal-hero h1 { font-size: clamp(34px, 5vw, 54px); }
.legal-hero .updated { display: inline-block; margin-top: 14px; padding: 7px 16px; border-radius: 99px; background: var(--paper); box-shadow: var(--shadow); font-size: 13px; font-weight: 600; color: var(--body); }
.legal {
  width: min(820px, calc(100% - 44px)); margin: 0 auto 40px;
  background: var(--paper); border-radius: 28px; padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow-lg);
}
.legal .intro { font-size: 16px; color: var(--body); }
.legal .contact-card {
  display: flex; flex-wrap: wrap; gap: 10px 26px; margin: 22px 0 8px; padding: 16px 20px;
  background: linear-gradient(135deg, var(--rose-lt), var(--lav-lt)); border-radius: 16px;
}
.legal .contact-card a { color: var(--rose-deep); font-weight: 700; text-decoration: none; }
.legal h2 {
  font-size: 22px; margin: 40px 0 12px; padding-top: 8px; letter-spacing: -.5px;
  display: flex; align-items: baseline; gap: 12px;
}
.legal h2 .num {
  font-family: 'Gabarito'; font-size: 15px; font-weight: 900; color: #fff;
  background: linear-gradient(135deg, #FF9FBE, var(--rose));
  min-width: 30px; height: 30px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px rgba(242,120,159,.35); align-self: center;
}
.legal h3 { font-size: 16.5px; margin: 20px 0 8px; color: var(--ink); }
.legal p { color: var(--body); font-size: 15.5px; margin-bottom: 12px; }
.legal ul { list-style: none; margin: 0 0 14px; padding: 0; }
.legal li { position: relative; padding-left: 22px; margin-bottom: 10px; color: var(--body); font-size: 15.5px; }
.legal li::before { content: '🎀'; position: absolute; left: 0; top: 1px; font-size: 12px; }
.legal li b, .legal p b { color: var(--ink); font-weight: 700; }
.legal a { color: var(--rose-deep); }
.legal hr { border: none; border-top: 1px dashed rgba(74,53,82,.15); margin: 10px 0 0; }
.legal-back { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; color: var(--body); text-decoration: none; font-weight: 600; font-size: 14px; }
.legal-back:hover { color: var(--rose-deep); }

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

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 120px; text-align: center; }
  .hero-copy .lede { margin-inline: auto; }
  .hero-cta, .hero-stats { justify-content: center; }
  .hero-phone { margin-top: 20px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .quiz, .bows-card { grid-template-columns: 1fr; }
  .bows-card { padding: 38px; }
  .quiz-cards { margin-top: 20px; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; }
  .quiz-cards .pola { width: 150px; }
  .quiz-cards .pim { height: 180px; }
  .section { padding: 60px 0; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
