:root {
    --ink: #1A1A1A;
    --ink-soft: #2D2A24;
    --muted: #7A7568;
    --paper: #FFF6E7;
    --peach: #FFE8C7;
    --rose: #FBD2D2;
    --sky: #DDE7FF;
    --mint: #D7F0D9;
    --tg-blue: #229ED9;
    --leaf: #2BA84A;
    --leaf-dark: #1F8A3A;
    --line: rgba(26,26,26,.08);
    --shadow-sticker: 0 8px 24px rgba(20,20,15,.14), 0 2px 6px rgba(20,20,15,.08);
    --shadow-soft: 0 4px 16px rgba(20,20,15,.08);
}

* { box-sizing: border-box; }
img.emoji { height: 1em; width: 1em; margin: 0 .05em 0 .1em; vertical-align: -0.1em; display: inline-block; }
html, body { margin: 0; padding: 0; }
body {
    font-family: 'Geist', -apple-system, sans-serif;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Page-wide ambient blobs */
body::before, body::after {
    content: ''; position: fixed; pointer-events: none; z-index: 0; border-radius: 50%;
    filter: blur(80px); opacity: .55;
}
body::before { width: 600px; height: 600px; background: var(--rose); top: -200px; left: -150px; }
body::after { width: 500px; height: 500px; background: var(--sky); top: 30%; right: -150px; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; position: relative; }
section, header, nav, footer { position: relative; z-index: 1; }

.italic { font-family: 'Caveat', cursive; font-weight: 700; font-style: normal; }
em.italic { color: var(--leaf); display: inline-block; transform: rotate(-3deg); }

/* ======================== TOP STRIP ======================== */
.strip {
    background: var(--tg-blue); color: white;
    font-family: 'Geist Mono', monospace; font-size: 12px; letter-spacing: .08em;
    padding: 9px 0; overflow: hidden; position: relative; z-index: 2;
}
.strip-inner { display: flex; gap: 48px; white-space: nowrap; animation: scroll 38s linear infinite; }
.strip-inner span::before { content: '·'; margin-right: 48px; opacity: .5; }
.strip-inner span:first-child::before { display: none; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================= NAV ============================= */
.nav { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px); background: rgba(255,246,231,.78); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-weight: 800; font-size: 20px; letter-spacing: -.01em; }
.brand img { width: 30px; height: 30px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--ink); text-decoration: none; font-size: 14.5px; font-weight: 500; }
.nav-links a:hover { color: var(--leaf); }
@media (max-width: 720px) { .nav-links { display: none; } }

/* ============================ BUTTONS ============================ */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: 999px; font-weight: 600; font-size: 14px; text-decoration: none; transition: transform .12s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-tg { background: var(--tg-blue); color: white; box-shadow: 0 8px 20px rgba(34,158,217,.35); }
.btn-leaf { background: var(--leaf); color: white; box-shadow: 0 8px 20px rgba(43,168,74,.3); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-lg { padding: 15px 26px; font-size: 16px; }
.btn svg { width: 18px; height: 18px; }

/* =========================== STICKERS =========================== */
.sticker { position: absolute; filter: drop-shadow(0 6px 14px rgba(20,20,15,.16)); user-select: none; pointer-events: none; line-height: 1; }
.sticker.wobble { animation: wobble 5s ease-in-out infinite; }
@keyframes wobble {
    0%, 100% { transform: rotate(var(--r, -8deg)) translateY(0); }
    50% { transform: rotate(calc(var(--r, -8deg) + 4deg)) translateY(-6px); }
}

/* ============================ HERO ============================ */
.hero { padding: 80px 0 0; text-align: center; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px;
    background: white; border-radius: 999px; box-shadow: var(--shadow-soft);
    font-size: 12.5px; font-weight: 500; color: var(--ink-soft); margin-bottom: 28px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--leaf); box-shadow: 0 0 0 4px rgba(43,168,74,.18); position: relative; animation: dot-breathe 2s ease-in-out infinite; }
.hero-eyebrow .dot::before,
.hero-eyebrow .dot::after {
    content: ""; position: absolute; inset: 0; border-radius: 50%;
    background: var(--leaf); opacity: .55;
    animation: dot-ripple 2s ease-out infinite;
}
.hero-eyebrow .dot::after { animation-delay: 1s; }
@keyframes dot-breathe {
    0%, 100% { box-shadow: 0 0 0 4px rgba(43,168,74,.18); }
    50%      { box-shadow: 0 0 0 4px rgba(43,168,74,.32); }
}
@keyframes dot-ripple {
    0%   { transform: scale(1);   opacity: .55; }
    80%  { transform: scale(3.2); opacity: 0; }
    100% { transform: scale(3.2); opacity: 0; }
}
.hero h1 { font-size: clamp(48px, 7vw, 92px); font-weight: 900; line-height: .96; letter-spacing: -.035em; margin: 0 0 24px; text-wrap: balance; }
.hero h1 em.italic { font-size: 1.05em; }
.hero h1 .squiggle { color: var(--ink); position: relative; display: inline-block; }
.hero-sub { font-size: clamp(17px, 2vw, 21px); line-height: 1.5; color: var(--muted); max-width: 580px; margin: 0 auto 36px; text-wrap: balance; }
.hero-sub b { color: var(--ink); font-weight: 600; }
.hero-cta { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-checks { display: flex; gap: 22px; justify-content: center; margin-top: 22px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.hero-checks span::before { content: '✓'; color: var(--leaf); font-weight: 700; margin-right: 6px; }

.hero-stickers { position: absolute; inset: 0; pointer-events: none; }
.hero-stickers .sticker { font-size: 64px; }
.s-avo { top: 8%; left: 8%; --r: -14deg; }
.s-egg { top: 14%; right: 12%; --r: 10deg; font-size: 72px !important; }
.s-broc { bottom: 22%; left: 6%; --r: -6deg; font-size: 56px !important; }
.s-fire { bottom: 30%; right: 8%; --r: 16deg; font-size: 60px !important; }
.s-bread { top: 42%; left: 4%; --r: 8deg; font-size: 48px !important; }
.s-coffee { top: 38%; right: 4%; --r: -12deg; font-size: 52px !important; }
@media (max-width: 720px) {
    .hero-stickers .sticker { font-size: 40px !important; }
    .s-bread, .s-coffee { display: none; }
}

/* parade marquee */
.parade { padding: 40px 0 60px; overflow: hidden; background: linear-gradient(180deg, transparent, rgba(255,232,199,.4)); }
.parade-track { display: flex; gap: 44px; white-space: nowrap; animation: scroll 60s linear infinite; line-height: 1; align-items: center; }
.parade-item { display: inline-flex; flex-direction: column; align-items: center; gap: 6px; }
.parade-item .em { font-size: 52px; line-height: 1; filter: drop-shadow(0 4px 10px rgba(20,20,15,.12)); }
.parade-item .kc { font-family: 'Geist Mono', monospace; font-size: 11px; font-weight: 500; color: var(--ink); letter-spacing: .02em; background: white; padding: 3px 9px; border-radius: 999px; box-shadow: 0 2px 6px rgba(20,20,15,.08); white-space: nowrap; }
.parade-item .kc b { color: var(--leaf); font-weight: 700; }

/* =============================== HOW =============================== */
.sec { padding: 100px 0; position: relative; }
.sec-eyebrow {
    font-family: 'Caveat', cursive; font-size: 22px; color: var(--leaf);
    transform: rotate(-2deg); display: inline-block; margin-bottom: 8px;
}
.sec-title { font-size: clamp(36px, 5vw, 56px); font-weight: 900; letter-spacing: -.03em; line-height: 1; margin: 0 0 18px; max-width: 720px; }
.sec-title em.italic { font-size: 1.05em; }
.sec-lead { font-size: 18px; line-height: 1.55; color: var(--muted); max-width: 560px; margin: 0 0 56px; }

.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .how-grid { grid-template-columns: 1fr; } }
.how-card {
    background: white; border-radius: 28px; padding: 24px 22px 28px;
    box-shadow: var(--shadow-sticker); position: relative;
}
.how-card:nth-child(1) { transform: rotate(-1.5deg); }
.how-card:nth-child(2) { transform: rotate(1deg); margin-top: 24px; }
.how-card:nth-child(3) { transform: rotate(-.5deg); }
.how-card .topsticker { position: absolute; top: -28px; right: -16px; font-size: 64px; filter: drop-shadow(0 6px 14px rgba(20,20,15,.18)); }
.how-card .step { font-family: 'Caveat', cursive; font-size: 22px; color: var(--leaf); transform: rotate(-2deg); display: inline-block; margin-bottom: 14px; }
.how-card h3 { font-size: 24px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 6px; }
.how-card p { font-size: 15px; line-height: 1.5; color: var(--muted); margin: 0 0 18px; }

/* Mini chat preview inside how-card */
.mini-chat { background: var(--peach); border-radius: 18px; padding: 12px; display: flex; flex-direction: column; gap: 6px; min-height: 120px; }
.mini-chat .bb { padding: 7px 11px; border-radius: 14px; font-size: 12.5px; line-height: 1.35; max-width: 80%; box-shadow: 0 1px 1px rgba(0,0,0,.06); }
.mini-chat .bb.out { background: #E1FFC7; align-self: flex-end; border-bottom-right-radius: 4px; }
.mini-chat .bb.in { background: white; align-self: flex-start; border-bottom-left-radius: 4px; }

/* On-demand report card inside how-card */
.mini-report { background: white; border-radius: 14px; padding: 11px 13px; box-shadow: 0 1px 1px rgba(0,0,0,.06); display: flex; flex-direction: column; gap: 7px; }
.mini-report .mr-row { display: flex; align-items: baseline; gap: 10px; font-size: 12px; }
.mini-report .mr-row .i { color: var(--ink-soft); flex: 1; min-width: 0; }
.mini-report .mr-row .kc { font-family: 'Geist Mono', monospace; font-size: 11.5px; font-weight: 600; color: var(--muted); }
.mini-report .mr-total { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; flex-wrap: wrap; margin-top: 3px; padding-top: 8px; border-top: 1px dashed var(--line); }
.mini-report .mr-total .sum { font-size: 13px; font-weight: 800; color: var(--ink); }
.mini-report .mr-total .bju { font-family: 'Geist Mono', monospace; font-size: 11px; font-weight: 600; color: var(--leaf); }

/* =============================== DEMO =============================== */
.demo { background: linear-gradient(180deg, var(--paper) 0%, var(--peach) 100%); }
.demo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .demo-grid { grid-template-columns: 1fr; } }

.ways { display: grid; gap: 14px; margin-top: 28px; }
.way { position: relative; display: flex; align-items: center; gap: 16px; padding: 14px 18px; background: white; border-radius: 18px; box-shadow: var(--shadow-soft); }
.way .em { font-size: 36px; line-height: 1; }
.way .name { font-weight: 700; font-size: 16px; }
.way .ex { font-size: 13px; color: var(--muted); font-family: 'Geist Mono', monospace; }
.way .arrow { margin-left: auto; font-family: 'Caveat', cursive; color: var(--leaf); font-size: 18px; }
.badge-beta { position: absolute; top: -11px; left: -9px; z-index: 2; font-family: 'Geist Mono', monospace; font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #B26B00; background: #FFE6A8; border: 2px solid #fff; padding: 3px 9px; border-radius: 999px; line-height: 1.4; white-space: nowrap; transform: rotate(-7deg); box-shadow: 0 4px 10px rgba(178,107,0,.30), inset 0 1px 0 rgba(255,255,255,.5); }
.badge-beta.badge-pro { color: #fff; background: var(--ink); box-shadow: 0 4px 10px rgba(20,20,15,.30), inset 0 1px 0 rgba(255,255,255,.18); }

.phone {
    background: white; border-radius: 36px; padding: 14px 12px 16px;
    box-shadow: 0 24px 48px rgba(20,20,15,.18), 0 4px 12px rgba(20,20,15,.06);
    width: 100%; max-width: 360px; margin: 0 auto; position: relative;
}
.phone::before { content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 100px; height: 6px; background: #f0f0f0; border-radius: 3px; }
.ph-hd { display: flex; align-items: center; gap: 10px; padding: 14px 6px 12px; border-bottom: 1px solid #f0f0f0; margin-top: 8px; }
.ph-hd img { width: 32px; height: 32px; }
.ph-hd .ttl { display: flex; flex-direction: column; line-height: 1.2; }
.ph-hd b { font-size: 14px; }
.ph-hd span { font-size: 11px; color: var(--muted); }
.ph-chat { background: var(--peach); margin: 0 -12px -16px; padding: 14px; border-radius: 0 0 28px 28px; min-height: 360px; display: flex; flex-direction: column; gap: 6px; position: relative; }
.bb { padding: 8px 12px; border-radius: 14px; font-size: 13.5px; line-height: 1.4; max-width: 80%; box-shadow: 0 1px 1px rgba(0,0,0,.06); position: relative; opacity: 0; transform: translateY(8px); animation: bbIn .35s ease forwards; }
@keyframes bbIn { to { opacity: 1; transform: translateY(0); } }
.bb.out { background: #E1FFC7; align-self: flex-end; border-bottom-right-radius: 4px; }
.bb.in { background: white; align-self: flex-start; border-bottom-left-radius: 4px; }
.bb .t { font-size: 10px; color: rgba(0,0,0,.4); margin-left: 8px; }
.bb .reaction { position: absolute; bottom: -10px; right: -8px; font-size: 22px; filter: drop-shadow(0 2px 4px rgba(0,0,0,.15)); }
.bb img:not(.emoji) { display: block; width: 100%; border-radius: 10px; margin-bottom: 4px; }
.demo-pointer { position: absolute; left: 50%; bottom: -42px; transform: translateX(-50%) rotate(-4deg); font-family: 'Caveat', cursive; color: #E94B4B; font-size: 24px; white-space: nowrap; }
.demo-pointer::before { content: '↑ '; }
@media (max-width: 1100px) { .demo-pointer { display: none; } }

/* =========================== FEATURES =========================== */
.features { background: var(--paper); }
.scrap { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(184px, auto); gap: 16px; }
.fcard { background: white; border: 1px solid rgba(20,20,15,.07); border-radius: 22px; padding: 26px 28px; box-shadow: 0 1px 2px rgba(20,20,15,.04); position: relative; display: flex; flex-direction: column; transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s; }
.fcard:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(20,20,15,.10); }
/* intentional 12-col rhythm */
.fcard.c7 { grid-column: span 7; }
.fcard.c6 { grid-column: span 6; }
.fcard.c5 { grid-column: span 5; }
.fcard.c4 { grid-column: span 4; }
.fcard.c12 { grid-column: span 12; flex-direction: row; align-items: center; gap: 22px; }
.fcard.c12 .em { margin-bottom: 0; flex: 0 0 auto; }
.fcard.c12 div.txt { display: flex; flex-direction: column; }
.fcard.tall { grid-row: span 2; }
.fcard.peach { background: var(--peach); border-color: transparent; }
.fcard.rose  { background: var(--rose); border-color: transparent; }
.fcard.sky   { background: var(--sky); border-color: transparent; }
.fcard.mint  { background: var(--mint); border-color: transparent; }
.fcard.ink   { background: var(--ink); color: white; border-color: transparent; }
.fcard.ink p { color: rgba(255,255,255,.62); }
.fcard .em { font-size: 30px; line-height: 1; margin-bottom: 18px; display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 14px; background: rgba(20,20,15,.05); }
.fcard.ink .em, .fcard.peach .em, .fcard.rose .em, .fcard.sky .em, .fcard.mint .em { background: rgba(255,255,255,.45); }
.fcard.ink .em { background: rgba(255,255,255,.10); }
.fcard h4 { font-size: 20px; font-weight: 800; letter-spacing: -.015em; margin: 0 0 8px; }
.fcard p { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin: 0; }
.fcard > p:last-child { margin-top: auto; }
.fcard .scribble { position: absolute; font-family: 'Caveat', cursive; color: #E94B4B; font-size: 18px; }
.fcard .display { font-size: 40px; font-weight: 900; letter-spacing: -.03em; line-height: 1; margin: 0 0 12px; }
.fcard.tall .display { font-size: 52px; }
.fcard .display em.italic { color: #FFD58A; }
.fcard.ink .display em.italic { color: var(--leaf); }
@media (max-width: 900px) { .scrap { grid-template-columns: repeat(6, 1fr); } .fcard.c7, .fcard.c6 { grid-column: span 6; } .fcard.c5, .fcard.c4 { grid-column: span 3; } .fcard.tall { grid-row: auto; } }
@media (max-width: 600px) { .scrap { grid-template-columns: 1fr; } .fcard.c7, .fcard.c6, .fcard.c5, .fcard.c4 { grid-column: span 1; } }

/* macro bar inside feature card */
.macro-vis { background: rgba(255,255,255,.55); border-radius: 14px; padding: 14px; margin-top: 12px; }
.macro-bar { display: flex; height: 14px; border-radius: 999px; overflow: hidden; }
.macro-bar > div { display: grid; place-items: center; font-size: 10px; color: white; font-weight: 700; }
.macro-bar .p { background: #30D158; }
.macro-bar .f { background: #FF9F0A; }
.macro-bar .c { background: #0A84FF; }
.macro-legend { display: flex; gap: 16px; margin-top: 8px; font-size: 12px; color: var(--ink); }
.macro-legend i { display: inline-block; width: 8px; height: 8px; border-radius: 2px; margin-right: 6px; vertical-align: middle; }

/* ============================ FRIDGE (refined v5) ============================ */
.fridge-v5 .stage {
    background: linear-gradient(180deg, #ECECEE 0%, #D8D8DC 100%);
    border-radius: 36px 36px 28px 28px; padding: 96px 40px 56px 88px;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.7), inset 6px 0 12px rgba(0,0,0,.04), 0 16px 40px rgba(20,20,15,.14);
    overflow: hidden;
}
.fridge-v5 .stage::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 60px;
    background: linear-gradient(180deg, rgba(0,0,0,.06), transparent);
    border-bottom: 1px solid rgba(0,0,0,.10);
}
.fridge-v5 .stage::after {
    content: ''; position: absolute; left: 40px; top: 84px; bottom: 56px; width: 16px;
    background: linear-gradient(180deg, #C7C7CC, #AEAEB2 50%, #98989D);
    border-radius: 8px;
    box-shadow: inset -2px 0 4px rgba(0,0,0,.18), 2px 2px 6px rgba(0,0,0,.18);
}
.fridge-v5 .grid { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: center; position: relative; }
@media (max-width: 900px) { .fridge-v5 .grid { grid-template-columns: 1fr; } .fridge-v5 .stage { padding: 84px 28px 48px 28px; } .fridge-v5 .stage::after { display: none; } }
.fridge-v5 .copy h3 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 900; letter-spacing: -.025em; line-height: 1.02; margin: 0 0 14px; }
.fridge-v5 .copy h3 em.italic { color: #E94B4B; }
.fridge-v5 .copy p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.55; margin: 0 0 24px; max-width: 420px; }
.fridge-v5 .pts { display: grid; gap: 14px; }
.fridge-v5 .pt { display: flex; gap: 14px; align-items: flex-start; }
.fridge-v5 .pt .em { font-size: 26px; line-height: 1; }
.fridge-v5 .pt b { font-size: 15px; display: block; margin-bottom: 2px; }
.fridge-v5 .pt span { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }

.fridge-v5 .summary-card-big {
    background: white; border-radius: 22px; padding: 26px 24px 22px; position: relative;
    box-shadow: 0 22px 44px rgba(20,20,15,.22), 0 6px 14px rgba(20,20,15,.1);
    transform: rotate(-2deg);
    border-top: 18px solid #FFD58A;
}
.fridge-v5 .summary-card-big .magnet { position: absolute; top: -28px; left: 50%; margin-left: -22px; width: 44px; height: 44px; display: grid; place-items: center; font-size: 38px; transform: rotate(-6deg); filter: drop-shadow(0 6px 10px rgba(20,20,15,.22)); }
.fridge-v5 .summary-card-big .magnet.r { left: auto; right: 18px; background: #F4B6C2; transform: rotate(7deg); border-radius: 50%; }
.fridge-v5 .summary-card-big .meta { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); font-family: 'Geist Mono', monospace; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 6px; }
.fridge-v5 .summary-card-big .lbl { font-size: 13px; color: var(--muted); margin-bottom: 2px; }
.fridge-v5 .summary-card-big .num { font-size: 76px; font-weight: 900; letter-spacing: -.04em; line-height: 1; }
.fridge-v5 .summary-card-big .num small { font-size: 14px; color: var(--muted); font-weight: 500; margin-left: 6px; }
.fridge-v5 .summary-card-big .delta { display: inline-flex; align-items: center; gap: 4px; background: rgba(43,168,74,.12); color: var(--leaf); font-size: 12px; font-weight: 600; padding: 3px 8px; border-radius: 999px; font-family: 'Geist Mono', monospace; margin-left: 4px; }
.fridge-v5 .summary-card-big .bar { display: flex; height: 22px; border-radius: 999px; overflow: hidden; margin: 18px 0 10px; }
.fridge-v5 .summary-card-big .bar > div { color: white; font-weight: 700; font-size: 11px; display: grid; place-items: center; }
.fridge-v5 .summary-card-big .bar .p { background: #30D158; }
.fridge-v5 .summary-card-big .bar .f { background: #FF9F0A; }
.fridge-v5 .summary-card-big .bar .c { background: #0A84FF; }
.fridge-v5 .summary-card-big .legend { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); }
.fridge-v5 .summary-card-big .foot { display: flex; align-items: center; gap: 8px; margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 11px; color: var(--muted); background: transparent; padding-left: 0; padding-right: 0; padding-bottom: 0; }
.fridge-v5 .summary-card-big .foot img { width: 14px; height: 14px; }

.fridge-v5 .extra-magnet {
    position: absolute; background: white; border-radius: 4px; padding: 10px 12px;
    box-shadow: 0 8px 18px rgba(20,20,15,.16);
    font-family: 'Caveat', cursive; font-size: 16px; line-height: 1.2; color: var(--ink-soft);
    transform: rotate(-4deg);
    display: flex; align-items: center; gap: 8px;
    z-index: 2;
}
.fridge-v5 .extra-magnet::before { content: ''; width: 6px; height: 6px; background: var(--leaf); border-radius: 50%; box-shadow: 0 0 0 3px rgba(43,168,74,.25); }
.fridge-v5 .extra-magnet.streak { top: 30px; right: 60px; }
.fridge-v5 .extra-magnet.note { bottom: 30px; right: 220px; transform: rotate(5deg); background: #FFFCDC; }
.fridge-v5 .extra-magnet.note::before { display: none; }
@media (max-width: 720px) { .fridge-v5 .extra-magnet.note { right: 20px; bottom: 20px; } .fridge-v5 .extra-magnet.streak { right: 20px; top: 20px; } }

.fridge-v5 .alpha-stickers { position: absolute; z-index: 1; }
.fridge-v5 .alpha-stickers.tl { top: 92px; left: 130px; }
.fridge-v5 .alpha-stickers .a { font-size: 32px; filter: drop-shadow(0 4px 10px rgba(20,20,15,.18)); display: inline-block; transform: rotate(-12deg); }

/* ============================ SOCIAL ============================ */
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 56px; }
@media (max-width: 900px) { .social-grid { grid-template-columns: 1fr; } }

.tg-msg { background: white; padding: 14px 18px; border-radius: 18px; box-shadow: var(--shadow-sticker); display: flex; gap: 12px; }
.tg-msg:nth-child(1) { transform: rotate(-1deg); }
.tg-msg:nth-child(2) { transform: rotate(1deg); margin-top: 20px; }
.tg-msg:nth-child(3) { transform: rotate(-.5deg); }
.tg-msg .av { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; }
.tg-msg .body b { display: block; font-size: 13px; color: var(--tg-blue); margin-bottom: 2px; }
.tg-msg .body p { font-size: 14.5px; line-height: 1.5; margin: 0 0 6px; color: var(--ink); }
.tg-msg .reactions { display: flex; gap: 4px; }
.tg-msg .react { background: var(--peach); padding: 2px 8px; border-radius: 999px; font-size: 12px; font-weight: 600; color: var(--ink-soft); }
.tg-msg .who { font-size: 11px; color: var(--muted); font-family: 'Geist Mono', monospace; text-transform: uppercase; letter-spacing: .08em; margin-top: 6px; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 720px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat { background: white; padding: 24px 20px; border-radius: 20px; box-shadow: var(--shadow-soft); text-align: center; }
.stat .em { font-size: 32px; line-height: 1; margin-bottom: 6px; display: block; }
.stat .v { font-size: 32px; font-weight: 900; letter-spacing: -.02em; line-height: 1; }
.stat .l { font-size: 12px; color: var(--muted); margin-top: 6px; }

/* ============================ PRICING ============================ */
.pricing { background: linear-gradient(180deg, var(--paper), var(--mint) 100%); }
.tickets { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 880px; margin: 0 auto; }
@media (max-width: 720px) { .tickets { grid-template-columns: 1fr; } }
.ticket {
    background: white; padding: 32px 28px; position: relative;
    box-shadow: var(--shadow-sticker);
    border-radius: 20px;
}
.ticket.free { transform: rotate(-1deg); }
.ticket.pro { transform: rotate(1deg); background: var(--ink); color: white; }
.ticket.pro p, .ticket.pro li { color: rgba(255,255,255,.7); }
.ticket .stk { position: absolute; top: -28px; right: 16px; font-size: 56px; filter: drop-shadow(0 6px 14px rgba(20,20,15,.2)); }
.ticket .pname { font-family: 'Caveat', cursive; font-size: 24px; color: var(--leaf); }
.ticket.pro .pname { color: #FFD58A; }
.ticket .pamt { font-size: 56px; font-weight: 900; letter-spacing: -.035em; line-height: 1; margin: 8px 0 4px; }
.ticket .pamt small { font-size: 16px; font-weight: 500; color: var(--muted); margin-left: 6px; }
.ticket.pro .pamt small { color: rgba(255,255,255,.5); }
.ticket .pdesc { font-size: 14.5px; color: var(--muted); margin-bottom: 20px; line-height: 1.5; }
.ticket ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; }
.ticket li { font-size: 14.5px; padding-left: 26px; position: relative; line-height: 1.45; }
.ticket li::before { content: '✓'; position: absolute; left: 0; color: var(--leaf); font-weight: 700; }
.ticket.pro li::before { color: #7DF6A0; }
.ticket .pbtn { display: block; text-align: center; }

.ticket .newprice { color: #FFD58A; }
.ticket .oldprice { font-size: 28px; color: rgba(255,255,255,.35); text-decoration: line-through; text-decoration-thickness: 3px; margin-left: 14px; font-weight: 700; vertical-align: middle; }
.ticket .pamtsmall { font-size: 12px; color: rgba(255,255,255,.5); margin-top: -2px; margin-bottom: 10px; font-family: 'Geist Mono', monospace; letter-spacing: .02em; }
.ticket .newcomer-badge { display: inline-block; background: rgba(255,213,138,.18); color: #FFD58A; padding: 6px 12px; border-radius: 999px; font-size: 13px; font-weight: 600; margin-bottom: 14px; border: 1px solid rgba(255,213,138,.3); }

/* ============================== FAQ ============================== */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.faq details {
    background: white; padding: 0; border-radius: 18px; box-shadow: var(--shadow-soft);
    overflow: hidden; transition: transform .3s ease;
}
.faq details:nth-child(odd) { transform: rotate(-.5deg); }
.faq details:nth-child(even) { transform: rotate(.5deg); }
.faq details[open] { transform: rotate(0); box-shadow: var(--shadow-sticker); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 24px; display: flex; align-items: center; gap: 14px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .qn { font-family: 'Caveat', cursive; color: var(--leaf); font-size: 22px; flex-shrink: 0; }
.faq summary > span:nth-child(2) { flex: 1; font-weight: 600; font-size: 16.5px; }
.faq summary .qm { width: 28px; height: 28px; border-radius: 50%; background: var(--peach); display: grid; place-items: center; font-size: 18px; font-weight: 700; transition: transform .25s ease; }
.faq details[open] summary .qm { transform: rotate(45deg); background: var(--leaf); color: white; }
.faq .ans { padding: 0 24px 22px 70px; font-size: 15px; line-height: 1.6; color: var(--muted); }

/* ========================== FINAL CTA ========================== */
.final { padding: 120px 0; text-align: center; }
.postcard {
    background: #FDFBF3;
    padding: 56px 48px; border-radius: 8px;
    max-width: 680px; margin: 0 auto;
    box-shadow: 0 24px 56px rgba(20,20,15,.18), 0 4px 12px rgba(20,20,15,.08);
    transform: rotate(-1.5deg); position: relative;
    background-image: linear-gradient(45deg, transparent 48%, rgba(229,75,75,.15) 49%, rgba(229,75,75,.15) 51%, transparent 52%);
    background-size: 8px 8px;
}
.postcard::before { content: ''; position: absolute; inset: 8px; background: #FDFBF3; border-radius: 4px; }
.postcard > * { position: relative; z-index: 1; }
.postcard h2 { font-family: 'Caveat', cursive; font-weight: 700; font-size: clamp(40px, 6vw, 64px); line-height: 1.05; margin: 0 0 18px; color: var(--ink); }
.postcard h2 .heart { color: #E94B4B; }
.postcard p { font-size: 16px; color: var(--muted); margin: 0 0 28px; line-height: 1.55; max-width: 480px; margin-left: auto; margin-right: auto; }
.postcard .signed { font-family: 'Caveat', cursive; font-size: 20px; color: var(--muted); margin-top: 24px; }
.final-stickers .sticker { font-size: 56px; }
.final-stickers .s1 { top: 10%; left: 12%; --r: -16deg; }
.final-stickers .s2 { top: 14%; right: 16%; --r: 14deg; }
.final-stickers .s3 { bottom: 18%; left: 18%; --r: 8deg; }
.final-stickers .s4 { bottom: 12%; right: 14%; --r: -10deg; }

/* ============================ FOOTER ============================ */
.foot { background: var(--ink); color: white; padding: 64px 0 32px; }
.foot h3 { font-size: clamp(32px, 4vw, 48px); font-weight: 800; letter-spacing: -.02em; margin: 0 0 36px; line-height: 1; max-width: 640px; }
.foot h3 em.italic { color: var(--leaf); }
.foot-row { display: flex; gap: 28px; flex-wrap: wrap; margin-bottom: 36px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.foot-link { display: flex; flex-direction: column; align-items: center; gap: 8px; text-decoration: none; color: white; flex: 1; min-width: 120px; }
.foot-link .em { font-size: 36px; line-height: 1; transition: transform .25s ease; }
.foot-link:hover .em { transform: scale(1.15) rotate(-5deg); }
.foot-link span:last-child { font-size: 12px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; font-family: 'Geist Mono', monospace; }
.foot-bot { display: flex; justify-content: space-between; gap: 16px; font-family: 'Geist Mono', monospace; font-size: 11px; color: rgba(255,255,255,.4); letter-spacing: .08em; text-transform: uppercase; flex-wrap: wrap; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
