/* ═══════════════════════════════════════════════════════
   EXPLOCY · social landing
   Cream zine collage · polaroid collage · Gen-Z warm.
   ═══════════════════════════════════════════════════════ */

:root {
    --paper:     #FBF4E4;
    --paper-2:   #F3EAD2;
    --ink:       #1A1714;
    --ink-muted: #5b5244;
    --ink-dim:   #a7998a;

    --pink:      #FF4D8F;
    --pink-2:    #FFC7DC;
    --coral:     #FF7A4A;
    --coral-2:   #FFD2BC;
    --sage:      #7FA06A;
    --sage-2:    #C9DBBA;
    --indigo:    #2E2A76;
    --indigo-2:  #B9B4FF;
    --yellow:    #FFD300;

    --border:    rgba(26,23,20,0.14);
    --border-2:  rgba(26,23,20,0.28);
    --shadow-card: 0 18px 30px rgba(26,23,20,0.12), 0 4px 10px rgba(26,23,20,0.08);
    --shadow-press: 6px 6px 0 var(--ink);

    --f-display: "Bagel Fat One", "Arial Black", sans-serif;
    --f-serif:   "Fraunces", "Times New Roman", serif;
    --f-hand:    "Caveat", cursive;
    --f-mono:    "IBM Plex Mono", "Menlo", monospace;

    --pad-x: clamp(20px, 5vw, 84px);
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--f-serif);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-image:
        radial-gradient(circle at 20% 10%, rgba(255,77,143,0.12), transparent 40%),
        radial-gradient(circle at 90% 0%, rgba(255,122,74,0.10), transparent 45%),
        radial-gradient(circle at 50% 100%, rgba(127,160,106,0.10), transparent 50%);
    background-attachment: fixed;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }

::selection { background: var(--pink); color: var(--paper); }

/* ═════ Paper grain + ambient blobs ═════ */
.grain {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 150;
    opacity: .09;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 .1 0 0 0 0 .1 0 0 0 0 .09 0 0 0 .5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.noise-blob {
    position: fixed;
    width: 55vw; height: 55vw;
    border-radius: 50%;
    filter: blur(110px);
    opacity: .45;
    z-index: 0;
    pointer-events: none;
    animation: drift 38s ease-in-out infinite alternate;
}
.noise-blob--a { background: var(--pink-2); top: -25%; left: -15%; }
.noise-blob--b { background: var(--sage-2); bottom: -30%; right: -20%; animation-duration: 48s; animation-delay: -10s; }
@keyframes drift {
    0%   { transform: translate3d(0,0,0) scale(1); }
    100% { transform: translate3d(6vw, -4vh, 0) scale(1.12); }
}

/* ═════ Heart cursor ═════ */
.heart-cursor {
    position: fixed;
    top: 0; left: 0;
    z-index: 999;
    pointer-events: none;
    color: var(--pink);
    font-size: 20px;
    transform: translate(-50%, -50%);
    transition: transform .12s, font-size .15s, color .2s;
    filter: drop-shadow(0 2px 4px rgba(255,77,143,.35));
    user-select: none;
}
.heart-cursor.is-hot {
    font-size: 34px;
    color: var(--coral);
}
@media (pointer: coarse) { .heart-cursor { display: none; } }

/* ═════ NAV ═════ */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px var(--pad-x);
    backdrop-filter: blur(14px);
    background: rgba(251,244,228,0.8);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, box-shadow .3s;
}
.nav.is-scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 6px 20px rgba(26,23,20,0.04);
}

.nav__brand { display: flex; align-items: center; gap: 10px; }
.nav__logo {
    width: 32px; height: 32px; object-fit: contain;
    filter: drop-shadow(0 2px 3px rgba(26,23,20,.2));
}
.nav__wordmark {
    font-family: var(--f-display);
    font-size: 22px;
    letter-spacing: -.01em;
}
.nav__handle {
    font-family: var(--f-hand);
    font-size: 20px;
    color: var(--pink);
    font-style: normal;
    margin-left: -4px;
    transform: rotate(-4deg);
    display: inline-block;
}

.nav__links {
    display: flex;
    gap: 30px;
    font-family: var(--f-mono);
    font-size: 13px;
}
.nav__links a {
    color: var(--ink-muted);
    position: relative;
    padding: 6px 2px;
    transition: color .2s;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 6px;
    background: var(--pink);
    opacity: .45;
    z-index: -1;
    transform: rotate(-1deg);
}

.nav__cta {
    background: var(--ink);
    color: var(--paper);
    padding: 12px 22px;
    border-radius: 999px;
    font-family: var(--f-mono);
    font-weight: 500;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform .2s, background .2s;
    box-shadow: 3px 3px 0 var(--ink);
}
.nav__cta:hover { transform: translate(-2px, -2px); background: var(--pink); box-shadow: 5px 5px 0 var(--ink); }
.nav__cta-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 0 0 rgba(255,77,143,.6);
    animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255,77,143,.7); }
    70%  { box-shadow: 0 0 0 8px rgba(255,77,143,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,77,143,0); }
}

@media (max-width: 860px) {
    .nav__links, .nav__handle { display: none; }
}

/* ═════ HERO ═════ */
.hero {
    position: relative;
    padding: 60px var(--pad-x) 80px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 1;
    min-height: 80vh;
}
@media (max-width: 960px) {
    .hero { grid-template-columns: 1fr; gap: 80px; }
}

.hero__left { position: relative; z-index: 2; }

.sticker {
    display: inline-block;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
}
.sticker--small { font-size: 11px; margin-bottom: 28px; }

.hero__title {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(56px, 9.5vw, 140px);
    line-height: .92;
    letter-spacing: -.02em;
    color: var(--ink);
}
.hero__line { display: block; animation: drop 1s cubic-bezier(.2,.8,.2,1) both; }
.hero__line--1 { animation-delay: .1s; }
.hero__line--2 { animation-delay: .2s; margin-left: .55em; }
.hero__line--2.is-pink { color: var(--pink); font-family: var(--f-serif); font-style: italic; font-weight: 900; font-size: .95em; letter-spacing: -.03em; }
.hero__line--3 { animation-delay: .3s; }
.hero__line--4 { animation-delay: .4s; position: relative; display: inline-block; margin-left: .35em; }
.hero__underline {
    position: absolute;
    left: 0; right: 0; bottom: .1em;
    height: 16px;
    background: var(--pink);
    opacity: .4;
    border-radius: 20px;
    transform: rotate(-1deg);
    z-index: -1;
}

@keyframes drop {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: none; }
}

.hero__handwritten {
    display: block;
    font-family: var(--f-hand);
    font-style: normal;
    font-size: clamp(22px, 2.4vw, 30px);
    color: var(--coral);
    margin: 20px 0 10px;
    transform: rotate(-2deg);
    max-width: fit-content;
    animation: drop 1s .55s both;
}

.hero__subtitle {
    max-width: 48ch;
    font-family: var(--f-serif);
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 1.6;
    color: var(--ink-muted);
    margin-top: 24px;
    animation: drop 1s .7s both;
}

.hero__ctas {
    display: flex;
    gap: 18px;
    margin-top: 32px;
    flex-wrap: wrap;
    animation: drop 1s .85s both;
}

.btn {
    font-family: var(--f-mono);
    font-size: 14px;
    font-weight: 500;
    transition: transform .2s, box-shadow .2s;
}
.btn--solid {
    background: var(--pink);
    color: var(--paper);
    padding: 16px 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-press);
}
.btn--solid:hover {
    transform: translate(-2px, -2px) rotate(-1deg);
    box-shadow: 8px 8px 0 var(--ink);
    background: var(--coral);
}
.btn__bolt {
    font-family: var(--f-serif);
    font-size: 18px;
    color: var(--yellow);
    display: inline-block;
    transition: transform .3s;
}
.btn--solid:hover .btn__bolt { transform: rotate(180deg); }

.btn--ghost {
    padding: 16px 6px;
    color: var(--ink);
    border-bottom: 2px solid var(--ink);
}
.btn--ghost:hover { color: var(--pink); border-bottom-color: var(--pink); }

.hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 36px;
    animation: drop 1s 1s both;
}
.hero__tags li {
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--ink-muted);
    padding: 4px 10px;
    border: 1px dashed var(--border-2);
    border-radius: 999px;
    transition: background .2s, color .2s, border-color .2s;
}
.hero__tags li:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ═════ Polaroid collage ═════ */
.hero__collage {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.polaroids {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 540px;
}

.polaroid {
    position: absolute;
    background: #fff;
    padding: 14px 14px 50px;
    border-radius: 4px;
    box-shadow: var(--shadow-card);
    width: 220px;
    transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
    z-index: 1;
}
.polaroid:hover {
    transform: translateY(-10px) rotate(0deg) scale(1.04) !important;
    box-shadow: 0 25px 40px rgba(26,23,20,.18);
    z-index: 10;
}
.polaroid figcaption {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    font-family: var(--f-hand);
    font-size: 18px;
    color: var(--ink);
    text-align: left;
}
.polaroid__photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}
.polaroid__tape {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    background: rgba(255, 211, 0, .85);
    color: var(--ink);
    font-family: var(--f-mono);
    font-size: 10px;
    padding: 3px 18px;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(26,23,20,.1);
    z-index: 2;
}
.polaroid--pink   .polaroid__tape { background: var(--pink);   color: #fff; }
.polaroid--coral  .polaroid__tape { background: var(--coral);  color: #fff; }
.polaroid--sage   .polaroid__tape { background: var(--sage);   color: #fff; }
.polaroid--indigo .polaroid__tape { background: var(--indigo); color: #fff; }

/* Polaroid "photos" — CSS-art scenes */
.polaroid--art-sunset .polaroid__photo {
    background:
        radial-gradient(circle at 50% 80%, #FFC89E, transparent 55%),
        linear-gradient(180deg, #2B2763 0%, #6D3F75 45%, #FF7A4A 70%, #FFC89E 100%);
}
.polaroid--art-sunset .polaroid__photo::before {
    content: "";
    position: absolute;
    top: 55%; left: 35%;
    width: 80px; height: 80px;
    background: radial-gradient(circle, #FFD38A 0%, transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(255, 211, 138, .7);
}
.polaroid--art-bar .polaroid__photo {
    background:
        linear-gradient(180deg, #1a1714 0%, #3d2e20 100%);
    position: relative;
}
.polaroid--art-bar .polaroid__photo::before {
    content: "";
    position: absolute;
    inset: 40% 10% 10% 10%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(255, 211, 0, .75), transparent 40%),
        radial-gradient(ellipse at 70% 40%, rgba(255, 122, 74, .65), transparent 50%);
    border-radius: 8px;
}
.polaroid--art-bar .polaroid__photo::after {
    content: "";
    position: absolute;
    top: 18%; left: 15%;
    width: 70%; height: 18px;
    background: repeating-linear-gradient(90deg, rgba(255,255,255,.12) 0 2px, transparent 2px 6px);
}
.polaroid--art-gallery .polaroid__photo {
    background: #F5EFE4;
    position: relative;
}
.polaroid--art-gallery .polaroid__photo::before {
    content: "";
    position: absolute;
    top: 15%; left: 18%;
    width: 28%; height: 55%;
    background: var(--pink);
    box-shadow: 4px 4px 0 var(--ink);
}
.polaroid--art-gallery .polaroid__photo::after {
    content: "";
    position: absolute;
    top: 30%; right: 18%;
    width: 28%; height: 45%;
    background: var(--sage);
    border-radius: 50%;
    box-shadow: 4px 4px 0 var(--ink);
}
.polaroid--art-party .polaroid__photo {
    background:
        radial-gradient(circle at 20% 40%, var(--pink) 0%, transparent 30%),
        radial-gradient(circle at 70% 30%, var(--coral) 0%, transparent 35%),
        radial-gradient(circle at 50% 80%, var(--indigo-2) 0%, transparent 40%),
        #1a1714;
}
.polaroid--art-party .polaroid__photo::before {
    content: "✦ ✦ ✦";
    position: absolute;
    top: 15px; left: 12px;
    font-size: 14px;
    color: var(--yellow);
    letter-spacing: 6px;
}
.polaroid--art-afters .polaroid__photo {
    background:
        radial-gradient(circle at 50% 40%, #2E2A76 0%, #0B0925 70%);
}
.polaroid--art-afters .polaroid__photo::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 50%; aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,211,0,.3) 0%, transparent 70%);
    filter: blur(8px);
}
.polaroid--art-afters .polaroid__photo::after {
    content: "∞";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--f-display);
    font-size: 60px;
    color: var(--yellow);
    text-shadow: 0 0 20px rgba(255,211,0,.6);
}

/* Scatter positions (nth-child) */
.polaroid:nth-child(1) { top: 0%;   left: 8%;   transform: rotate(-8deg);  animation: float 9s ease-in-out infinite; }
.polaroid:nth-child(2) { top: 18%;  right: 0%;  transform: rotate(6deg);   animation: float 11s ease-in-out infinite -2s; }
.polaroid:nth-child(3) { top: 38%;  left: 2%;   transform: rotate(-3deg);  animation: float 10s ease-in-out infinite -4s; }
.polaroid:nth-child(4) { top: 55%;  right: 6%;  transform: rotate(4deg);   animation: float 13s ease-in-out infinite -6s; }
.polaroid:nth-child(5) { top: 72%;  left: 22%;  transform: rotate(-6deg);  animation: float 12s ease-in-out infinite -3s; }

@keyframes float {
    0%, 100% { translate: 0 0; }
    50%      { translate: 0 -10px; }
}

@media (max-width: 960px) {
    .polaroid { width: 180px; }
    .hero__collage, .polaroids { min-height: 480px; }
}
@media (max-width: 540px) {
    .polaroid { width: 160px; padding: 10px 10px 40px; }
    .polaroid:nth-child(1) { left: 0; }
    .polaroid:nth-child(2) { right: -20px; }
    .polaroid:nth-child(5) { display: none; }
}

/* Decorations in collage */
.deco {
    position: absolute;
    font-family: var(--f-display);
    pointer-events: none;
    z-index: 3;
}
.deco--heart {
    top: 2%; right: 20%;
    font-size: 44px;
    color: var(--pink);
    animation: beat 1.5s ease-in-out infinite;
}
.deco--star {
    bottom: 10%; right: 35%;
    font-size: 32px;
    color: var(--coral);
    animation: spin 12s linear infinite;
}
.deco--arrow {
    top: 45%; left: -30px;
    font-family: var(--f-hand);
    font-size: 60px;
    color: var(--ink);
    transform: rotate(-20deg);
}
@keyframes beat {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.2); }
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

.sticker--floating {
    position: absolute;
    background: var(--ink);
    color: var(--paper);
    padding: 10px 18px;
    border-radius: 999px;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    z-index: 4;
    box-shadow: 3px 3px 0 var(--pink);
}
.sticker--rotate-neg { transform: rotate(-8deg); top: 8%; left: -30px; }
.sticker--rotate-pos { transform: rotate(6deg); }
.sticker--pos {
    background: var(--coral);
    bottom: 8%;
    right: -10px;
    box-shadow: 3px 3px 0 var(--ink);
}

/* ═════ MARQUEE ═════ */
.marquee {
    background: var(--ink);
    color: var(--paper);
    padding: 18px 0;
    overflow: hidden;
    display: flex;
    position: relative;
    z-index: 2;
    margin: 60px 0;
    transform: rotate(-1.5deg);
    box-shadow: 0 6px 0 var(--pink);
}
.marquee__track {
    display: inline-flex;
    gap: 32px;
    padding-right: 32px;
    animation: scroll 38s linear infinite;
    flex-shrink: 0;
}
.marquee__item {
    font-family: var(--f-display);
    font-size: 32px;
    letter-spacing: -.01em;
    white-space: nowrap;
}
.marquee__bullet { color: var(--pink); font-size: 24px; display: inline-flex; align-items: center; }
@keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}

/* ═════ Section base ═════ */
.section {
    position: relative;
    padding: 120px var(--pad-x);
    z-index: 1;
}
.section__eyebrow {
    display: inline-block;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 22px;
}
.section__title {
    font-family: var(--f-display);
    font-size: clamp(40px, 6.5vw, 92px);
    letter-spacing: -.02em;
    line-height: .95;
    max-width: 16ch;
}
.section__subtitle {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: clamp(18px, 1.8vw, 22px);
    color: var(--ink-muted);
    margin-top: 18px;
    max-width: 48ch;
}

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }

/* ═════ FEED ═════ */
.feed__head { margin-bottom: 70px; max-width: 800px; }

.feed__stage {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    min-height: 680px;
}

/* Phone */
.phone { position: relative; transform: rotate(-2deg); z-index: 2; }
.phone__frame {
    width: 320px;
    height: 640px;
    background: var(--ink);
    border-radius: 52px;
    padding: 12px;
    box-shadow: 0 40px 60px rgba(26,23,20,.22);
    position: relative;
}
.phone__notch {
    position: absolute;
    top: 20px; left: 50%;
    transform: translateX(-50%);
    width: 96px; height: 24px;
    background: #000;
    border-radius: 14px;
    z-index: 3;
}
.phone__screen {
    width: 100%; height: 100%;
    background: var(--paper);
    border-radius: 42px;
    padding: 54px 18px 18px;
    overflow: hidden;
    position: relative;
}
.phone__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.phone__top-title {
    font-family: var(--f-display);
    font-size: 22px;
    letter-spacing: -.02em;
}
.phone__top-dot {
    color: var(--pink);
    animation: pulse-dot 1.5s infinite;
    font-size: 10px;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50%      { opacity: .3; }
}

.phone__stories {
    display: flex;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px dashed var(--border);
    margin-bottom: 14px;
    overflow: hidden;
}
.story-ring {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    padding: 3px;
    background: conic-gradient(from 45deg, var(--pink), var(--coral), var(--yellow), var(--pink));
    position: relative;
    flex-shrink: 0;
}
.story-ring::before {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--paper);
}
.story-ring span {
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-2), var(--coral-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-mono);
    font-size: 10px;
    font-weight: 500;
    color: var(--ink);
    text-transform: lowercase;
}
.story-ring--live::after {
    content: "LIVE";
    position: absolute;
    bottom: -4px; left: 50%;
    transform: translateX(-50%);
    background: var(--pink);
    color: #fff;
    font-family: var(--f-mono);
    font-size: 8px;
    padding: 1px 5px;
    border-radius: 4px;
    letter-spacing: .1em;
}

.phone__posts { display: flex; flex-direction: column; gap: 12px; }

.feed-post {
    background: #fff;
    border-radius: 14px;
    padding: 12px;
    font-family: var(--f-serif);
    box-shadow: 0 2px 6px rgba(26,23,20,.06);
    animation: slide-in-post .6s cubic-bezier(.2,.8,.2,1) both;
}
.feed-post:nth-child(1) { animation-delay: .6s; }
.feed-post:nth-child(2) { animation-delay: .8s; }
.feed-post:nth-child(3) { animation-delay: 1s; }
@keyframes slide-in-post {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
}
.feed-post__head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.feed-post__avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
}
.feed-post--pink  .feed-post__avatar { background: linear-gradient(135deg, var(--pink),  var(--coral)); }
.feed-post--sage  .feed-post__avatar { background: linear-gradient(135deg, var(--sage),  var(--sage-2)); }
.feed-post--coral .feed-post__avatar { background: linear-gradient(135deg, var(--coral), var(--yellow)); }

.feed-post__meta { flex: 1; line-height: 1.2; }
.feed-post__author {
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 500;
}
.feed-post__time {
    font-family: var(--f-mono);
    font-size: 9px;
    color: var(--ink-dim);
    margin-top: 2px;
}
.feed-post__more { color: var(--ink-dim); font-size: 14px; letter-spacing: -1px; }
.feed-post__body {
    font-size: 12px;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: 8px;
}
.feed-post__actions {
    display: flex;
    gap: 14px;
    font-family: var(--f-mono);
    font-size: 10px;
    color: var(--ink-muted);
}

/* Floating reactions around the phone */
.react {
    position: absolute;
    background: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-family: var(--f-mono);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 6px 14px rgba(26,23,20,.1);
    animation: float-up 4s ease-in-out infinite;
}
.react__emoji {
    font-family: var(--f-display);
    font-size: 14px;
}
.react--1 {
    top: 10%; left: 10%;
    transform: rotate(-4deg);
}
.react--1 .react__emoji { color: var(--pink); }
.react--2 {
    top: 18%; right: 8%;
    transform: rotate(5deg);
    animation-delay: -1.5s;
}
.react--2 .react__emoji { color: var(--coral); }
.react--3 {
    bottom: 18%; right: 12%;
    transform: rotate(-3deg);
    animation-delay: -2.5s;
}
.react--3 .react__emoji { color: var(--sage); }

@keyframes float-up {
    0%, 100% { translate: 0 0; }
    50%      { translate: 0 -14px; }
}

.chat-bubble {
    position: absolute;
    background: var(--ink);
    color: var(--paper);
    padding: 10px 16px;
    border-radius: 18px;
    font-family: var(--f-mono);
    font-size: 12px;
    max-width: 200px;
    animation: float-up 5s ease-in-out infinite;
}
.chat-bubble--left {
    bottom: 30%; left: 8%;
    background: var(--paper-2);
    color: var(--ink);
    border-bottom-left-radius: 4px;
    transform: rotate(-3deg);
}
.chat-bubble--right {
    top: 40%; right: 4%;
    background: var(--pink);
    color: #fff;
    border-bottom-right-radius: 4px;
    transform: rotate(3deg);
    animation-delay: -2s;
}

@media (max-width: 900px) {
    .feed__stage { min-height: 580px; }
    .phone__frame { width: 280px; height: 580px; }
    .react--1, .chat-bubble--left { left: 0; }
    .react--2 { right: 0; }
    .chat-bubble--right { right: 0; }
}

/* ═════ PILLARS ═════ */
.pillars__head { margin-bottom: 60px; max-width: 900px; }

.pillars__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}
@media (max-width: 760px) { .pillars__grid { grid-template-columns: 1fr; } }

.pillar {
    background: #fff;
    padding: 36px 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
    position: relative;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
    border: 1px solid var(--border);
}
.pillar:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 30px 50px rgba(26,23,20,.16), 8px 8px 0 var(--pillar-stamp, var(--pink));
}
.pillar--pink   { --pillar-stamp: var(--pink);  }
.pillar--coral  { --pillar-stamp: var(--coral); }
.pillar--sage   { --pillar-stamp: var(--sage);  }
.pillar--indigo { --pillar-stamp: var(--indigo); }

.pillar__sticker {
    position: absolute;
    top: -16px; right: 24px;
    background: var(--pillar-stamp, var(--pink));
    color: #fff;
    font-family: var(--f-display);
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: 3px 3px 0 var(--ink);
    transform: rotate(4deg);
}

.pillar__title {
    font-family: var(--f-display);
    font-size: clamp(36px, 4vw, 52px);
    letter-spacing: -.02em;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 4px;
}
.pillar__tagline {
    font-family: var(--f-hand);
    font-size: 24px;
    color: var(--pillar-stamp, var(--pink));
    margin-bottom: 18px;
    transform: rotate(-1deg);
    display: inline-block;
}
.pillar__body {
    font-family: var(--f-serif);
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink-muted);
    margin-bottom: 22px;
}
.pillar__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.pillar__chips li {
    font-family: var(--f-mono);
    font-size: 11px;
    padding: 4px 10px;
    border: 1px solid var(--border-2);
    border-radius: 999px;
    background: var(--paper);
    color: var(--ink);
}

/* ═════ MANIFESTO ═════ */
.manifesto {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}
.manifesto__title {
    font-family: var(--f-display);
    font-size: clamp(48px, 8vw, 120px);
    line-height: .95;
    letter-spacing: -.02em;
    margin: 18px 0 40px;
}
.manifesto__title em {
    display: inline-block;
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 900;
    color: var(--pink);
    position: relative;
}
.manifesto__title em::after {
    content: "";
    position: absolute;
    left: -6px; right: -6px; bottom: .08em;
    height: 16px;
    background: var(--yellow);
    opacity: .45;
    border-radius: 20px;
    z-index: -1;
    transform: rotate(-1deg);
}
.manifesto__body {
    font-family: var(--f-serif);
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.5;
    color: var(--ink);
    max-width: 34ch;
    margin: 0 auto;
}
.manifesto__body em {
    font-style: italic;
    color: var(--pink);
}
.manifesto__signature {
    font-family: var(--f-hand);
    font-size: 28px;
    color: var(--ink-muted);
    margin-top: 40px;
    transform: rotate(-2deg);
    display: inline-block;
}

.sticker-cloud {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}
.sticker--cloud {
    position: absolute;
    background: var(--paper-2);
    color: var(--ink);
    padding: 8px 16px;
    border-radius: 999px;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: .08em;
    transform: rotate(var(--rot));
    border: 1px solid var(--border);
}
.sticker--cloud:nth-child(1) { top: 8%;  left: 6%;  background: var(--pink-2); }
.sticker--cloud:nth-child(2) { top: 15%; right: 8%; background: var(--coral-2); }
.sticker--cloud:nth-child(3) { bottom: 20%; left: 10%; background: var(--sage-2); }
.sticker--cloud:nth-child(4) { bottom: 12%; right: 6%; background: var(--indigo-2); }

/* ═════ NUMBERS ═════ */
.numbers__head { margin-bottom: 60px; text-align: center; max-width: 800px; margin-left: auto; margin-right: auto; }
.numbers__head .section__title { margin: 0 auto; }
.numbers__head .section__subtitle { margin-left: auto; margin-right: auto; text-align: center; }

.numbers__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--ink);
    border-radius: 10px;
    overflow: hidden;
}
@media (max-width: 760px) { .numbers__grid { grid-template-columns: repeat(2, 1fr); } }

.numbers__grid li {
    padding: 44px 24px;
    text-align: center;
    color: var(--paper);
    border-right: 1px dashed rgba(251,244,228,.15);
    position: relative;
    transition: background .3s;
}
.numbers__grid li:last-child { border-right: none; }
.numbers__grid li:hover { background: var(--pink); }
.numbers__grid li:nth-child(2):hover { background: var(--coral); }
.numbers__grid li:nth-child(3):hover { background: var(--sage); }
.numbers__grid li:nth-child(4):hover { background: var(--indigo); }

.numbers__grid strong {
    display: block;
    font-family: var(--f-display);
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -.02em;
    color: var(--yellow);
    margin-bottom: 10px;
}
.numbers__grid span {
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--paper-2);
    text-transform: uppercase;
    letter-spacing: .12em;
}

/* ═════ REACTIONS ═════ */
.reactions .section__title { margin-bottom: 50px; }

.reactions__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
@media (max-width: 760px) { .reactions__grid { grid-template-columns: 1fr; } }

.quote {
    background: #fff;
    padding: 32px 28px;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
    position: relative;
    transition: transform .35s;
}
.quote:hover { transform: translateY(-4px); }
.quote::before {
    content: "";
    position: absolute;
    top: -16px; left: 28px;
    width: 60px; height: 18px;
    background: var(--quote-accent, var(--pink));
    opacity: .7;
    transform: rotate(-4deg);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(26,23,20,.1);
}
.quote--pink   { --quote-accent: var(--pink); }
.quote--coral  { --quote-accent: var(--coral); }
.quote--sage   { --quote-accent: var(--sage); }
.quote--indigo { --quote-accent: var(--indigo); }

.quote p {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 18px;
    color: var(--ink);
}
.quote cite {
    font-family: var(--f-mono);
    font-size: 12px;
    font-style: normal;
    color: var(--quote-accent, var(--pink));
    letter-spacing: .05em;
}

/* ═════ CITIES ═════ */
.cities__title {
    font-family: var(--f-display);
    font-size: clamp(48px, 10vw, 140px);
    line-height: .9;
    letter-spacing: -.03em;
    color: var(--ink);
    margin-bottom: 30px;
}
.cities__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    font-family: var(--f-serif);
    font-weight: 900;
    font-style: italic;
    font-size: clamp(28px, 5vw, 52px);
    letter-spacing: -.02em;
}
.cities__list li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    transition: color .3s;
    cursor: none;
}
.cities__list li:hover { color: var(--pink); }
.cities__dot {
    font-family: var(--f-display);
    font-size: .4em;
    color: var(--coral);
}

/* ═════ CTA ═════ */
.cta__card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 72px 56px;
    position: relative;
    box-shadow: 0 30px 60px rgba(26,23,20,.12);
    transform: rotate(-0.5deg);
}

.cta__tape {
    position: absolute;
    top: -20px; left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    background: var(--pink);
    color: #fff;
    padding: 8px 24px;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(255,77,143,.3);
}

.cta__title {
    font-family: var(--f-display);
    font-size: clamp(52px, 7vw, 100px);
    line-height: .9;
    letter-spacing: -.03em;
    margin: 14px 0 20px;
}
.cta__title em {
    display: block;
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 900;
    font-size: .55em;
    color: var(--pink);
    letter-spacing: -.01em;
    margin-top: 8px;
}
.cta__subtitle {
    font-family: var(--f-serif);
    font-size: 20px;
    font-style: italic;
    color: var(--ink-muted);
    margin-bottom: 32px;
    max-width: 40ch;
}

.cta__form {
    display: flex;
    gap: 10px;
    max-width: 540px;
    margin-top: 14px;
}
.cta__form input {
    flex: 1;
    background: var(--paper);
    border: 1.5px solid var(--border-2);
    border-radius: 999px;
    padding: 14px 22px;
    font-family: var(--f-mono);
    font-size: 14px;
    color: var(--ink);
    outline: none;
    transition: border-color .3s;
}
.cta__form input:focus { border-color: var(--pink); }
.cta__form input::placeholder { color: var(--ink-dim); }
.cta__form button {
    background: var(--ink);
    color: var(--paper);
    border: none;
    padding: 14px 24px;
    border-radius: 999px;
    font-family: var(--f-mono);
    font-size: 13px;
    letter-spacing: .04em;
    cursor: none;
    box-shadow: 3px 3px 0 var(--pink);
    transition: transform .2s, background .2s, box-shadow .2s;
}
.cta__form button:hover { transform: translate(-2px, -2px); background: var(--pink); box-shadow: 6px 6px 0 var(--ink); }
.cta__form button[disabled] { opacity: .6; cursor: not-allowed; }
.cta__form button[disabled]:hover { transform: none; background: var(--ink); box-shadow: 3px 3px 0 var(--pink); }

.cta__status {
    margin-top: 16px;
    min-height: 1.2em;
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--ink-muted);
    transition: color .2s;
}
.cta__status.is-error { color: #D14343; }
.cta__status.is-ok    { color: var(--sage); }

.cta__note {
    margin-top: 18px;
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--ink-dim);
}

.cta__scribble {
    position: absolute;
    bottom: -60px; right: -20px;
    color: var(--coral);
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: rotate(-8deg);
    pointer-events: none;
}
.cta__scribble span {
    font-family: var(--f-hand);
    font-size: 30px;
    color: var(--coral);
    margin-top: -10px;
}

@media (max-width: 640px) {
    .cta__card { padding: 50px 28px; }
    .cta__form { flex-direction: column; }
    .cta__scribble { display: none; }
}

/* ═════ FOOTER ═════ */
.footer {
    padding: 80px var(--pad-x) 40px;
    background: var(--ink);
    color: var(--paper);
    position: relative;
    z-index: 2;
}
.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 50px;
    border-bottom: 1px dashed rgba(251,244,228,.18);
    gap: 40px;
    flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: 16px; }
.footer__logo { width: 56px; height: 56px; filter: invert(1); }
.footer__wordmark {
    font-family: var(--f-display);
    font-size: 28px;
    letter-spacing: -.01em;
}
.footer__tagline {
    font-family: var(--f-hand);
    font-style: normal;
    font-size: 22px;
    color: var(--pink-2);
    display: block;
}

.footer__links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.footer__links a {
    font-family: var(--f-mono);
    font-size: 13px;
    color: var(--paper-2);
    padding: 6px 0;
    border-bottom: 1px dashed transparent;
    transition: color .2s, border-color .2s;
}
.footer__links a:hover { color: var(--pink); border-bottom-color: var(--pink); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--ink-dim);
    flex-wrap: wrap;
    gap: 16px;
}
.footer__handle { color: var(--pink); }

/* ═════ Reduced motion ═════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .marquee__track, .noise-blob, .polaroid { animation: none; }
}
