/* ============================================================================
   Tinfle landing v3 — "The page is a party."
   Standalone page CSS. Core colors come from tokens.css; the vars below are
   page-scoped derivatives (tints, glows, brick shades) of those tokens.
   The .phone / .ph-* block is a scoped replica of the real watch page
   (public/watch.html + watch.css), scaled to a phone frame.
   Mobile-first. Every animation has a prefers-reduced-motion fallback.
   ========================================================================== */

:root {
    --v3-coral: var(--color-accent);            /* #FF6B6B */
    --v3-coral-soft: rgba(255, 107, 107, 0.14);
    --v3-coral-glow: rgba(255, 107, 107, 0.38);
    --v3-ink: var(--color-bg);                  /* #1A1A1A */
    --v3-white-04: rgba(255, 255, 255, 0.04);
    --v3-white-08: rgba(255, 255, 255, 0.08);
    --v3-white-14: rgba(255, 255, 255, 0.14);
    --v3-font-display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
    --v3-font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --v3-nav-h: 64px;
}

/* ----- base ----- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--v3-nav-h) + 12px); }
body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text-primary);
    font-family: var(--v3-font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
main { position: relative; z-index: 1; }
/* JS toggles visibility via the hidden attribute; author display values
   (flex/grid) must never override it */
[hidden] { display: none !important; }

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
    position: fixed; top: -48px; left: 12px; z-index: 100;
    background: var(--v3-coral); color: var(--v3-ink);
    font-weight: 800; padding: 10px 16px; border-radius: 0 0 10px 10px;
    text-decoration: none; transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

/* ----- type ----- */
.h2 {
    font-family: var(--v3-font-display);
    font-weight: 800;
    font-size: clamp(1.9rem, 6.4vw, 3.2rem);
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin: 8px 0 16px;
    text-wrap: balance;
}
.h3 {
    font-family: var(--v3-font-display);
    font-weight: 800;
    font-size: clamp(1.3rem, 4vw, 1.7rem);
    margin: 0 0 8px;
}
.coral { color: var(--v3-coral); }
.eyebrow {
    color: var(--v3-coral);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0;
}
.lede {
    color: var(--color-text-secondary);
    font-size: clamp(1rem, 2.6vw, 1.2rem);
    max-width: 620px;
    margin: 0 0 28px;
}
.body { color: var(--color-text-secondary); margin: 0 0 16px; }
.body--center { max-width: 640px; margin-left: auto; margin-right: auto; }
.pull-quote {
    font-style: italic;
    color: var(--color-text-primary);
    border-left: 3px solid var(--v3-coral);
    padding-left: 16px;
    font-size: 1.05rem;
}
.center { text-align: center; }
.center-col { display: flex; flex-direction: column; align-items: center; text-align: center; }
.center-col .lede { margin-left: auto; margin-right: auto; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.text-link { color: var(--v3-coral); font-weight: 800; text-decoration: none; }
.text-link:hover { color: var(--color-text-primary); }

/* ----- layout ----- */
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; position: relative; }
.wrap--narrow { max-width: 760px; }
.section { position: relative; padding: 72px 0; }
.section--tint { background: rgba(37, 37, 37, 0.42); border-top: 1px solid var(--v3-white-04); border-bottom: 1px solid var(--v3-white-04); }
.grid-2 { display: grid; gap: 40px; align-items: center; }

/* ----- buttons ----- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    flex-wrap: wrap;
    font-family: var(--v3-font-body); font-weight: 800; font-size: 1rem;
    padding: 14px 26px; border-radius: 10px; border: none; cursor: pointer;
    text-decoration: none; text-align: center; line-height: 1.2;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn small { flex-basis: 100%; font-weight: 400; font-size: 0.78rem; }
.btn-coral {
    background: var(--v3-coral); color: var(--v3-ink);
    box-shadow: 0 0 18px var(--v3-coral-glow);
}
.btn-coral:hover { background: var(--color-text-primary); color: var(--v3-ink); }
.btn-coral small { color: rgba(26, 26, 26, 0.72); }
.btn-ghost {
    background: var(--color-surface); color: var(--color-text-primary);
    border: 1px solid var(--color-border);
}
.btn-ghost:hover { border-color: var(--v3-coral); }
.btn-ghost small { color: var(--color-text-secondary); }
.btn-sm { padding: 10px 18px; font-size: 0.9rem; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; box-shadow: none; }

/* ----- ambient brick wall (canvas) ----- */
#wall-canvas {
    position: fixed; inset: 0; width: 100%; height: 100%;
    z-index: 0; pointer-events: none;
}
/* [TINFLE-REDESIGN] removed: .wall-chip (floating "bricks laid" counter, distracting) */

/* ----- nav ----- */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    background: rgba(26, 26, 26, 0.86);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--v3-white-04);
}
.nav-inner {
    max-width: 1080px; margin: 0 auto; padding: 0 16px;
    height: var(--v3-nav-h);
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.nav-brand {
    display: flex; align-items: center; gap: 8px;
    background: none; border: none; cursor: pointer; padding: 0;
    color: var(--color-text-primary);
    min-width: 0; /* lets the pronunciation ellipsize before the bar breaks */
}
.nav-logo { height: 30px; flex-shrink: 0; }
.nav-word { font-family: var(--v3-font-display); font-weight: 800; font-size: 1.3rem; letter-spacing: -0.02em; white-space: nowrap; flex-shrink: 0; }
.nav-pron {
    color: var(--color-text-muted); font-size: 0.72rem;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    min-width: 0; flex: 0 1 auto;
}
.nav-links { display: flex; align-items: center; gap: 16px; }
.nav-link {
    display: none; /* mobile collapses the links into the burger menu */
    color: var(--color-text-secondary); text-decoration: none;
    font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
    transition: color 0.2s ease;
    white-space: nowrap;
}
.nav-link:hover { color: var(--v3-coral); }
.nav-burger {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; flex-shrink: 0;
    background: none; border: none; cursor: pointer;
    color: var(--color-text-secondary); border-radius: 10px;
    transition: color 0.2s ease;
}
.nav-burger:hover, .nav-burger[aria-expanded="true"] { color: var(--color-text-primary); }
/* The menu is a floating brick stack under the burger, not a panel:
   uniform brick-sized links in running bond, dropping in bottom-up
   (the coral Join brick is the foundation). The page stays visible
   behind it. The CSS animation restarts every open because [hidden]
   removes the box entirely. */
.nav-menu {
    position: absolute;
    top: 100%; right: 10px;
    display: flex; flex-direction: column;
    align-items: flex-end;
    padding: 4px 0 10px;
}
.nav-menu a {
    width: 100px;
    color: var(--color-text-primary); text-decoration: none;
    font-size: 0.7rem; font-weight: 700;
    padding: 9px 10px;
    background: linear-gradient(165deg, var(--color-surface-2), var(--color-surface) 70%);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    margin-top: 3px; /* mortar line */
    box-shadow: inset 0 1px 0 var(--v3-white-08), 0 12px 28px rgba(0, 0, 0, 0.55);
    animation: menu-brick-drop 0.4s cubic-bezier(0.34, 1.3, 0.64, 1) backwards;
}
.nav-menu a:nth-child(odd) { --tilt: -1.4deg; margin-right: 18px; }
.nav-menu a:nth-child(even) { --tilt: 1.4deg; margin-right: 0; }
.nav-menu a:hover { border-color: var(--v3-coral); color: var(--v3-coral); }
.nav-menu .nav-menu-join {
    background: var(--v3-coral); color: var(--v3-ink);
    border-color: var(--v3-coral);
    box-shadow: 0 0 14px var(--v3-coral-soft), 0 12px 28px rgba(0, 0, 0, 0.55);
}
.nav-menu .nav-menu-join:hover { background: var(--color-text-primary); color: var(--v3-ink); }
/* bricks land bottom-up: the last link is the foundation */
.nav-menu a:nth-child(6) { animation-delay: 0s; }
.nav-menu a:nth-child(5) { animation-delay: 0.07s; }
.nav-menu a:nth-child(4) { animation-delay: 0.14s; }
.nav-menu a:nth-child(3) { animation-delay: 0.21s; }
.nav-menu a:nth-child(2) { animation-delay: 0.28s; }
.nav-menu a:nth-child(1) { animation-delay: 0.35s; }
@keyframes menu-brick-drop {
    0% { opacity: 0; transform: translateY(-30px) rotate(var(--tilt, -1.4deg)); }
    65% { opacity: 1; transform: translateY(3px) rotate(calc(var(--tilt, -1.4deg) * -0.35)); }
    100% { opacity: 1; transform: translateY(0) rotate(0deg); }
}
.nav-cta {
    background: var(--v3-coral); color: var(--v3-ink);
    font-weight: 800; font-size: 0.82rem; text-decoration: none;
    padding: 9px 18px; border-radius: 999px;
    box-shadow: 0 0 14px var(--v3-coral-glow);
    transition: background 0.2s ease;
    white-space: nowrap;
}
.nav-cta:hover { background: var(--color-text-primary); }
/* [TINFLE-REDESIGN] removed — .nav-progress / #nav-progress-bar scroll bar
   (partially-filled coral dashes read as a stuck loading bar, founder 2026-07-31) */
/* pronunciation note stays next to the logo at every width; the bar
   tightens on small screens so it fits */
@media (max-width: 600px) {
    .nav-inner { padding: 0 12px; }
    .nav-links { gap: 8px; }
    .nav-word { font-size: 1.12rem; }
    .nav-pron { font-size: 0.6rem; }
    .nav-cta { padding: 8px 14px; font-size: 0.78rem; }
    .nav-burger { width: 34px; }
}
@media (min-width: 720px) and (max-width: 899px) {
    .nav-pron { font-size: 0.6rem; }
    .nav-links { gap: 12px; }
}
@media (min-width: 720px) {
    .nav-link { display: inline; }
    .nav-burger { display: none; }
    .nav-menu { display: none !important; }
}

/* ----- hero ----- */
.hero { position: relative; z-index: 1; padding: calc(var(--v3-nav-h) + 56px) 0 40px; overflow: hidden; }
.hero-glow {
    position: absolute; top: 40%; left: 50%; transform: translate(-50%, -50%);
    width: min(760px, 120vw); height: min(760px, 120vw);
    background: radial-gradient(circle, var(--v3-coral-soft), transparent 65%);
    pointer-events: none;
}
.hero-wrap { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-pill {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid var(--v3-white-14); border-radius: 999px;
    color: var(--color-text-secondary); font-size: 0.74rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 7px 14px; margin: 0 0 22px;
}
.hero-pill::before {
    content: ""; width: 7px; height: 7px; border-radius: 50%;
    background: var(--v3-coral); box-shadow: 0 0 8px var(--v3-coral-glow);
}
.hero-h1 {
    font-family: var(--v3-font-display);
    font-weight: 800;
    font-size: clamp(2.9rem, 11vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    margin: 0 0 18px;
}
/* [TINFLE-REDESIGN] removed — the hero "together." image moved out of the
   h1 into its own .hero-together block (2026-07-22); the generic .coral
   color rule (:70) still serves the waitlist heading */
.hero-sub { color: var(--color-text-primary); font-size: clamp(1.05rem, 3.4vw, 1.45rem); font-weight: 600; margin: 0 0 36px; max-width: 560px; }
.hero-ctas {
    display: flex; flex-direction: row; align-items: stretch;
    gap: 12px; width: 100%; max-width: 440px; margin-top: 30px;
}
.hero-ctas .btn { flex: 1; padding: 13px 10px; font-size: 0.84rem; gap: 7px; }
/* Simple CTAs (2026-07-22): short labels earn the big type */
.hero-ctas .btn-big { font-size: clamp(1.05rem, 3.4vw, 1.3rem); padding: 16px 14px; }
.hero-ctas .btn svg { display: none; } /* icon returns at desktop widths */
.hero-ctas .btn small { font-size: 0.68rem; }
/* [TINFLE-REDESIGN] removed — hero-promise line cut (2026-07-22) */


/* ----- the reacting face (pure CSS puppet; the living stand-in until real
   captures replace the placeholder zones) ----- */
.face-bubble {
    display: block; width: 64px; height: 64px; border-radius: 50%;
    background: var(--v3-ink); border: 2px solid var(--v3-coral);
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.6), 0 0 12px var(--v3-coral-glow);
    overflow: hidden; position: relative;
}
.face { position: absolute; inset: 0; animation: face-idle 3.4s ease-in-out infinite; }
@keyframes face-idle { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(2px); } }
.face-brow {
    position: absolute; top: 31%; width: 19%; height: 3px; border-radius: 2px;
    background: var(--color-text-primary);
    transition: transform 0.18s ease;
}
.face-brow--l { left: 22%; }
.face-brow--r { right: 22%; }
.face-eye {
    position: absolute; top: 42%; width: 11%; height: 11%; border-radius: 50%;
    background: var(--color-text-primary);
    transition: transform 0.18s ease, height 0.18s ease, border-radius 0.18s ease;
}
.face-eye--l { left: 25%; }
.face-eye--r { right: 25%; }
.face-mouth {
    position: absolute; left: 50%; top: 65%; transform: translateX(-50%);
    width: 25%; height: 3px; border-radius: 3px;
    background: var(--v3-coral);
    transition: all 0.18s ease;
}
.face[data-mood="shock"] { animation: none; }
.face[data-mood="shock"] .face-brow--l { transform: translateY(-5px) rotate(-12deg); }
.face[data-mood="shock"] .face-brow--r { transform: translateY(-5px) rotate(12deg); }
.face[data-mood="shock"] .face-eye { transform: scale(1.75); }
.face[data-mood="shock"] .face-mouth { width: 22%; height: 25%; border-radius: 50%; top: 58%; }
.face[data-mood="joy"] { animation: face-laugh 0.42s ease-in-out infinite; }
.face[data-mood="joy"] .face-brow--l { transform: translateY(-3px) rotate(-8deg); }
.face[data-mood="joy"] .face-brow--r { transform: translateY(-3px) rotate(8deg); }
.face[data-mood="joy"] .face-eye { height: 3px; border-radius: 3px; transform: translateY(2px); }
.face[data-mood="joy"] .face-mouth { width: 38%; height: 17%; border-radius: 0 0 24px 24px; top: 60%; }
@keyframes face-laugh { 0%, 100% { transform: translateY(0) rotate(-1.5deg); } 50% { transform: translateY(2.5px) rotate(1.5deg); } }

/* floating reaction emoji */
.float-emoji {
    position: absolute; bottom: 8%; left: 50%;
    width: 30px; height: 30px; pointer-events: none;
    transform: translateX(calc(-50% + var(--fx, 0px)));
    animation: emoji-rise 1.15s ease-out forwards;
}
.float-emoji img { width: 100%; height: 100%; }
@keyframes emoji-rise {
    0% { opacity: 0; transform: translateX(calc(-50% + var(--fx, 0px))) translateY(8px) scale(0.5); }
    18% { opacity: 1; }
    100% { opacity: 0; transform: translateX(calc(-50% + var(--fx, 0px) * 2)) translateY(-110px) scale(1.25) rotate(var(--fr, 0deg)); }
}

/* ============================================================================
   THE PLAYABLE PARTY — a phone running the real watch page (scoped replica)
   ========================================================================== */
.stage {
    background: rgba(30, 30, 30, 0.92);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 18px;
    max-width: 920px;
    margin: 8px auto 0;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.stage-cols { display: grid; grid-template-columns: 1fr; gap: 20px; justify-items: center; }

/* ----- the phone frame ----- */
.phone {
    position: relative;
    width: min(310px, 88vw);
    background: #0D0D0D;
    border: 1px solid var(--color-border);
    border-radius: 34px;
    padding: 10px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), inset 0 1px 0 var(--v3-white-08);
    flex-shrink: 0;
}
.phone-notch {
    position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
    width: 84px; height: 14px; border-radius: 999px;
    background: #0D0D0D; z-index: 60;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.phone-screen {
    position: relative;
    height: min(600px, 128vw);
    border-radius: 26px;
    background: #000;
    overflow: hidden;
    display: flex; flex-direction: column;
}

/* ----- watch-header replica ----- */
.ph-header {
    position: absolute; top: 0; left: 0; right: 0; z-index: 20;
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 12px 10px;
    background: linear-gradient(rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.55) 20%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}
.ph-h-left { display: flex; align-items: center; gap: 7px; min-width: 0; }
.ph-logo { height: 17px; opacity: 0.85; }
.ph-avatar {
    width: 25px; height: 25px; border-radius: 50%; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.62rem; font-weight: 800; color: var(--v3-ink);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.av-maya { background: var(--v3-coral); }
.av-you { background: var(--color-text-primary); }
.av-leo { background: var(--color-gold); }
.av-katie { background: var(--color-silver); }
.ph-h-name { font-size: 0.74rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ph-h-right { display: flex; align-items: center; gap: 7px; }
.ph-live {
    background: var(--v3-coral); color: var(--v3-ink);
    font-size: 0.54rem; font-weight: 800; letter-spacing: 0.1em;
    padding: 2px 6px; border-radius: 3px;
    opacity: 0; transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.stage.is-live .ph-live { opacity: 1; transform: scale(1); }
.ph-count { font-size: 0.6rem; color: rgba(255, 255, 255, 0.75); white-space: nowrap; }
.ph-more {
    width: 25px; height: 25px; border-radius: 50%; flex-shrink: 0;
    background: var(--color-surface); border: 1px solid var(--color-border);
    color: #fff; font-size: 0.8rem; line-height: 1;
    display: inline-flex; align-items: center; justify-content: center;
}

/* ----- stream area ----- */
.ph-stream { flex: 1; position: relative; background: #000; overflow: hidden; min-height: 0; }

/* placeholder media zones — drop real static images in, delete the chip */
.ph-media {
    position: absolute; inset: 0;
    background:
        radial-gradient(120% 90% at 50% 20%, rgba(255, 107, 107, 0.05), transparent 60%),
        linear-gradient(150deg, #161616, #1f1f1f 45%, #181818);
    outline: 1px dashed rgba(255, 255, 255, 0.12);
    outline-offset: -7px;
    display: flex; align-items: center; justify-content: center;
}
.ph-media::after {
    content: attr(data-label);
    position: absolute; left: 9px; bottom: 9px;
    font-size: 0.52rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.55); border: 1px solid var(--v3-white-08);
    border-radius: 4px; padding: 2px 6px;
    pointer-events: none;
}
.ph-media--tight::after { font-size: 0.44rem; left: 4px; top: 4px; bottom: auto; padding: 1px 4px; }

/* ----- lobby / invite (real .st-lobby) ----- */
.ph-lobby {
    position: absolute; inset: 0; z-index: 30;
    display: none; flex-direction: column; align-items: center; justify-content: center;
    gap: 11px; padding: 24px 18px; text-align: center;
    background: rgba(26, 26, 26, 0.97);
}
.stage[data-beat="invite"] .ph-lobby,
.stage[data-beat="lobby"] .ph-lobby { display: flex; animation: sv-in 0.4s ease; }
@keyframes sv-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.ph-badge {
    font-size: 0.56rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--v3-coral);
    border: 1px solid var(--color-glass-border); background: var(--color-glass-bg);
    border-radius: 4px; padding: 3px 8px;
}
.ph-lobby-title { font-size: 0.98rem; font-weight: 700; margin: 0; line-height: 1.3; }
.ph-lobby-sub { font-size: 0.7rem; color: var(--color-text-secondary); margin: 0; line-height: 1.45; }
.ph-name-row { display: flex; gap: 6px; width: 100%; align-items: center; }
.ph-name-input {
    flex: 1; text-align: left;
    background: rgba(255, 255, 255, 0.06); border: 1px solid var(--color-border);
    border-radius: 10px; padding: 9px 11px;
    font-size: 0.74rem; color: var(--color-text-primary);
}
.ph-name-tag {
    background: var(--v3-coral); color: var(--v3-ink);
    font-size: 0.6rem; font-weight: 800; white-space: nowrap;
    border-radius: 10px; padding: 9px 11px;
}
.ph-brickcount {
    font-size: 0.72rem; font-weight: 600; color: var(--color-text-primary);
    background: var(--color-glass-bg); border: 1px solid var(--color-glass-border);
    border-radius: 12px; padding: 7px 14px;
}
.ph-brickcount b { color: var(--v3-coral); }
.ph-lobby-note { font-size: 0.6rem; color: var(--color-text-muted); margin: 0; }
.stage[data-beat="invite"] .ph-brickcount[hidden],
.stage[data-beat="invite"] .ph-lobby-note[hidden] { display: none; }

/* ----- host camera full screen ----- */
.ph-hostcam { position: absolute; inset: 0; z-index: 4; display: none; }
.stage[data-beat="downtime"] .ph-hostcam,
.stage[data-beat="seatpass"]:not(.is-playing2) .ph-hostcam { display: block; animation: sv-in 0.3s ease; }
.face-bubble.ph-hostcam-face {
    position: absolute; left: 50%; top: 52%;
    transform: translate(-50%, -50%);
    width: 92px; height: 92px;
}

/* ----- the brick playing (react-video-area replica) ----- */
.ph-brickvideo { position: absolute; inset: 0; z-index: 5; display: none; background: #000; }
.stage[data-beat="play"] .ph-brickvideo,
.stage[data-beat="seatpass"].is-playing2 .ph-brickvideo { display: block; animation: sv-in 0.3s ease; }
#ph-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; background: #000;
}
.ph-progress {
    position: absolute; left: 12px; right: 12px; bottom: 66px; height: 2px;
    background: var(--v3-white-08); border-radius: 2px; overflow: hidden; z-index: 6;
}
/* scaleX driven by the real video's timeupdate (full-landing-v3.js) */
.ph-progress-fill {
    display: block; height: 100%; width: 100%; background: var(--v3-coral);
    transform: scaleX(0); transform-origin: left;
}

/* submitter pill (react-video-info replica) */
.ph-pill {
    position: absolute; top: 44px; left: 10px; z-index: 6;
    font-size: 0.6rem; color: rgba(255, 255, 255, 0.85);
    background: var(--color-surface); border: 1px solid var(--color-border);
    padding: 4px 9px; border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    display: none;
}
.stage[data-beat="play"] .ph-pill,
.stage[data-beat="seatpass"].is-playing2 .ph-pill { display: block; }

/* pip camera (host reaction corner) */
.ph-pip {
    position: absolute; top: 44px; right: 8px; z-index: 7;
    width: 72px; height: 126px; border-radius: 12px; overflow: hidden;
    border: 2px solid rgba(255, 107, 107, 0.55);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
    display: none;
}
.stage[data-beat="play"] .ph-pip,
.stage[data-beat="seatpass"].is-playing2 .ph-pip { display: block; }
.stage[data-seat="leo"] .ph-pip { border-color: rgba(255, 215, 0, 0.6); }
.face-bubble.ph-pip-face {
    position: absolute; left: 50%; top: 44%;
    transform: translate(-50%, -50%);
    width: 46px; height: 46px;
    border-width: 1.5px;
}
.ph-pip-name {
    position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
    font-size: 0.5rem; font-weight: 700; color: rgba(255, 255, 255, 0.85);
    background: rgba(0, 0, 0, 0.55); border-radius: 4px; padding: 1px 6px;
}

/* ----- downtime: the real brick wall (same engine as watch-downtime.js) ----- */
.ph-downtime {
    position: absolute; top: 46px; left: 0; right: 0; z-index: 31;
    pointer-events: none; display: none;
}
.stage[data-beat="downtime"] .ph-downtime { display: block; }
#ph-wall { width: 100%; display: block; }

/* "Your show is ready!" pill (real .fyp-ready-signal) */
.ph-ready {
    position: absolute; top: 54px; left: 50%; z-index: 33;
    transform: translateX(-50%) scale(0.85);
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 107, 107, 0.4);
    border-radius: 20px; padding: 5px 13px;
    display: inline-flex; gap: 5px; align-items: center;
    color: var(--v3-coral); cursor: pointer;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.ph-ready.visible { opacity: 1; transform: translateX(-50%) scale(1); pointer-events: auto; }
.ph-ready-text { font-size: 0.64rem; color: var(--color-text-primary); font-weight: 600; white-space: nowrap; }
.ph-ready-sub { font-size: 0.56rem; color: var(--v3-coral); white-space: nowrap; }

/* seat banner (real .st-seat-banner) */
.ph-seatbanner {
    position: absolute; top: 44px; left: 50%; transform: translateX(-50%) translateY(-6px); z-index: 35;
    background: var(--color-glass-bg); border: 1px solid var(--color-glass-border);
    border-radius: 12px; color: var(--color-text-primary);
    font-size: 0.62rem; font-weight: 600; padding: 5px 12px; white-space: nowrap;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.ph-seatbanner.visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.stage[data-beat="seatpass"].is-playing2 .ph-pill { left: 10px; }

/* ----- overlay chat (real .overlay-msg look) ----- */
.ph-chat {
    position: absolute; left: 0; bottom: 10px; width: 80%; max-height: 46%; z-index: 12;
    pointer-events: none;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 0 10px; overflow: hidden;
    -webkit-mask-image: linear-gradient(transparent 0%, black 26%);
    mask-image: linear-gradient(transparent 0%, black 26%);
}
.ph-msg { display: flex; align-items: flex-start; gap: 6px; padding: 4px 0; animation: ph-msg-in 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes ph-msg-in { from { opacity: 0; transform: translateX(-14px); } to { opacity: 1; transform: none; } }
.ph-msg-avatar {
    width: 21px; height: 21px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.5rem; font-weight: 800; color: var(--v3-ink);
    border: 1.5px solid rgba(255, 107, 107, 0.4);
}
.ph-msg-body { min-width: 0; line-height: 1.35; }
.ph-msg-author {
    color: var(--v3-coral); font-weight: 600; font-size: 0.66rem; margin-right: 4px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.95);
}
.ph-msg-text {
    color: #fff; font-size: 0.66rem; font-weight: 500; word-break: break-word;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.95);
}
.ph-msg--system .ph-msg-text { color: rgba(255, 255, 255, 0.55); font-style: italic; }

/* ----- viewer rail (Like) ----- */
.ph-rail { position: absolute; right: 8px; bottom: 88px; z-index: 13; display: none; flex-direction: column; align-items: center; }
.stage[data-beat="play"] .ph-rail,
.stage[data-beat="seatpass"].is-playing2 .ph-rail { display: flex; }
.ph-rail-btn {
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    background: none; border: none; cursor: pointer; padding: 0;
    color: rgba(255, 255, 255, 0.85);
    transition: transform 0.15s ease, color 0.2s ease;
}
.ph-rail-btn svg { width: 30px; height: 30px; filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5)); }
.ph-rail-label { font-size: 0.54rem; font-weight: 600; color: rgba(255, 255, 255, 0.7); text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6); }
.ph-rail-btn.liked svg { fill: #FF2D55; stroke: #FF2D55; animation: rail-like-pop 0.45s ease; }
.ph-rail-btn.liked .ph-rail-label { color: #FF2D55; }
@keyframes rail-like-pop {
    0% { transform: scale(1) rotate(0deg); }
    30% { transform: scale(1.25) rotate(-8deg); }
    50% { transform: scale(1.25) rotate(8deg); }
    70% { transform: scale(1.15) rotate(-4deg); }
    100% { transform: scale(1) rotate(0deg); }
}

/* viewer mute toggle (the app's .viewer-mute-btn, in-phone) */
.ph-mute {
    position: absolute; right: 8px; bottom: 10px; z-index: 15;
    width: 30px; height: 30px; border-radius: 50%;
    background: rgba(0, 0, 0, 0.55); border: 1px solid var(--v3-white-14);
    color: #fff; cursor: pointer;
    display: none; align-items: center; justify-content: center;
}
.stage[data-beat="play"] .ph-mute,
.stage[data-beat="seatpass"].is-playing2 .ph-mute { display: flex; }
.ph-mute svg { width: 15px; height: 15px; }
.ph-mute .ph-mute-off { display: none; }
.ph-mute:not(.is-muted) .ph-mute-on { display: none; }
.ph-mute:not(.is-muted) .ph-mute-off { display: block; }
.ph-mute:hover { border-color: var(--v3-coral); }

/* tap hearts (watch-tap-feedback replica) */
.ph-bursts { position: absolute; inset: 0; z-index: 14; pointer-events: none; overflow: hidden; }
.ph-heart {
    position: absolute; width: 22px; height: 20px;
    transform: translate(-50%, -50%);
    animation: heart-rise 0.95s ease-out forwards;
}
.ph-heart::before, .ph-heart::after {
    content: ""; position: absolute; top: 0; width: 11px; height: 17px;
    border-radius: 11px 11px 0 0; background: var(--v3-coral);
}
.ph-heart::before { left: 11px; transform: rotate(-45deg); transform-origin: 0 100%; }
.ph-heart::after { left: 0; transform: rotate(45deg); transform-origin: 100% 100%; }
@keyframes heart-rise {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
    18% { opacity: 0.95; transform: translate(-50%, -60%) scale(1.1) rotate(var(--hr, -8deg)); }
    100% { opacity: 0; transform: translate(-50%, -320%) scale(0.9) rotate(var(--hr, -8deg)); }
}

/* ----- outro overlay ----- */
.ph-ended {
    position: absolute; inset: 0; z-index: 45;
    display: none; flex-direction: column; align-items: center; justify-content: center;
    gap: 10px; padding: 22px; text-align: center;
    background: rgba(15, 15, 15, 0.95);
}
.stage[data-beat="outro"] .ph-ended { display: flex; animation: sv-in 0.4s ease; }
.ph-ended-big { font-family: var(--v3-font-display); font-weight: 800; font-size: 1.5rem; margin: 0; }
.ph-ended-small { font-size: 0.72rem; color: var(--color-text-secondary); margin: 0 0 6px; }
.ph-ended-stats { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; width: 100%; max-width: 210px; }
.ph-ended-stats li {
    background: var(--color-glass-bg); border: 1px solid var(--color-glass-border);
    border-radius: 10px; padding: 7px 12px;
    font-size: 0.66rem; font-weight: 600; color: var(--color-text-secondary);
    text-align: left;
}
.ph-ended-stats b { color: var(--v3-coral); margin-right: 5px; font-size: 0.78rem; }

/* ----- chat bar (real .chat-input-row + the Bricks button) ----- */
.ph-chatbar {
    display: flex; gap: 6px; padding: 8px 10px calc(8px + 4px);
    background: var(--color-surface); border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    position: relative; z-index: 25;
}
.ph-chatbar input {
    flex: 1; min-width: 0;
    background: rgba(255, 255, 255, 0.06); border: 1px solid var(--color-border);
    border-radius: 10px; padding: 10px 10px;
    color: #fff; font-size: 0.7rem; font-family: var(--v3-font-body);
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.ph-chatbar input:focus { background: #FFFFFF; color: var(--v3-ink); border-color: var(--v3-coral); }
.ph-chatbar input:disabled { opacity: 0.5; }
#ph-chat-send {
    background: var(--color-primary); color: #000;
    border: none; padding: 10px 12px; border-radius: 10px;
    font-weight: 700; font-size: 0.7rem; cursor: pointer; flex-shrink: 0;
    transition: transform 0.15s ease;
}
#ph-chat-send:hover:not(:disabled) { transform: scale(1.04); }
#ph-chat-send:disabled { opacity: 0.5; cursor: not-allowed; }
.ph-bricks-btn {
    display: inline-flex; align-items: center; gap: 5px; flex-shrink: 0;
    background: var(--v3-coral); color: #FFFFFF;
    border: none; padding: 10px 11px; border-radius: 10px;
    font-weight: 700; font-size: 0.7rem; cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.ph-bricks-btn:hover:not(:disabled) { transform: scale(1.04); box-shadow: 0 0 16px var(--v3-coral-glow); }
.ph-bricks-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.ph-bricks-btn.is-nudge { animation: bricks-nudge 1.5s ease infinite; }
@keyframes bricks-nudge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.55); }
    60% { box-shadow: 0 0 0 9px rgba(255, 107, 107, 0); }
}

/* ----- My Bricks sheet (real submit modal, in-phone) ----- */
.ph-submit {
    position: absolute; inset: 0; z-index: 50;
    background: rgba(0, 0, 0, 0.75);
    display: none; align-items: flex-end;
}
.ph-submit.open { display: flex; }
.ph-submit-sheet {
    width: 100%; max-height: 88%;
    background: var(--color-surface); border: 1px solid var(--color-border); border-bottom: none;
    border-radius: 18px 18px 0 0;
    display: flex; flex-direction: column; overflow: hidden;
    animation: sheet-up 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes sheet-up { from { transform: translateY(40px); opacity: 0; } to { transform: none; opacity: 1; } }
.ph-submit-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 14px; border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ph-submit-head h4 { margin: 0; font-size: 0.85rem; font-weight: 600; }
#ph-submit-close {
    background: none; border: none; color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem; cursor: pointer; padding: 2px 6px;
}
#ph-submit-close:hover { color: #fff; }
.ph-submit-desc { margin: 0; padding: 8px 14px; font-size: 0.6rem; color: rgba(255, 255, 255, 0.4); }
.ph-submit-grid {
    padding: 8px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
    overflow-y: auto;
}
.ph-card { display: flex; flex-direction: column; }
/* 9:16 via padding-bottom, NOT aspect-ratio (grid auto-row sizing, Chromium) */
.ph-card-box { position: relative; width: 100%; padding-bottom: 177.78%; border-radius: 8px; overflow: hidden; }
.ph-card-emoji { position: absolute; top: 5px; left: 5px; width: 16px; height: 16px; z-index: 2; }
.ph-card-len {
    position: absolute; bottom: 5px; right: 5px; z-index: 2;
    font-size: 0.5rem; font-weight: 700; color: rgba(255, 255, 255, 0.85);
    background: rgba(0, 0, 0, 0.6); border-radius: 3px; padding: 1px 5px;
}
.ph-card-thumb {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.ph-card-title {
    font-size: 0.58rem; font-weight: 600; line-height: 1.3;
    margin: 6px 0 5px; color: var(--color-text-primary);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    min-height: 2.6em;
}
.ph-card-btn {
    padding: 5px 6px; border-radius: 10px;
    border: 1px solid var(--v3-coral); background: rgba(255, 107, 107, 0.1);
    color: var(--v3-coral); font-size: 0.54rem; font-weight: 700;
    width: 100%; cursor: pointer;
}
.ph-card-btn:active { background: var(--v3-coral); color: var(--v3-ink); }
.ph-card-btn.is-sent { background: var(--v3-coral); color: var(--v3-ink); pointer-events: none; }
.ph-prowl {
    flex-shrink: 0; margin: 4px 8px 12px; padding: 9px 12px;
    border-radius: 12px; border: 1px solid var(--v3-coral);
    background: rgba(255, 107, 107, 0.1); color: var(--v3-coral);
    font-size: 0.62rem; font-weight: 700; cursor: pointer;
}

/* ----- side panel (narrator + controls) ----- */
.stage-side { display: flex; flex-direction: column; align-items: center; gap: 14px; width: 100%; max-width: 420px; }
.stage-step-label {
    margin: 0;
    display: flex; align-items: center; gap: 9px;
    font-size: 0.82rem; font-weight: 700; color: var(--color-text-primary);
}
.stage-step-label b {
    background: var(--v3-coral); color: var(--v3-ink);
    font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 3px 9px; border-radius: 4px;
}
.stage-caption {
    min-height: 44px; margin: 0;
    color: var(--color-text-secondary); font-size: 0.95rem; text-align: center;
    line-height: 1.55;
}
.stage-caption b { color: var(--color-text-primary); }
.stage-controls { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 100%; }
.stage-action { min-width: 240px; }
.stage-skip {
    background: none; border: none; cursor: pointer;
    color: var(--color-text-muted); font-size: 0.82rem; font-weight: 600;
    text-decoration: underline; text-underline-offset: 3px;
}
.stage-skip:hover { color: var(--color-text-secondary); }
.stage-hint { min-height: 20px; margin: 0; color: var(--color-text-muted); font-size: 0.76rem; font-style: italic; text-align: center; }
.outro-ctas { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.outro-ctas[hidden] { display: none; }
.stage-dots { display: flex; justify-content: center; gap: 7px; margin-top: 2px; }
.stage-dot {
    width: 16px; height: 7px; border-radius: 3px;
    background: var(--v3-white-08);
    transition: background 0.3s ease, width 0.3s ease;
}
.stage-dot.is-on { background: var(--v3-coral); width: 26px; }

/* ============================================================================
   HOW IT WORKS — cards mortared like a wall
   ========================================================================== */
.how-wall { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 28px; }
.how-brick {
    position: relative;
    background: linear-gradient(165deg, var(--color-surface-2), var(--color-surface) 60%);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 22px 22px 20px 66px;
    box-shadow: inset 0 1px 0 var(--v3-white-04);
}
.how-num {
    position: absolute; left: 20px; top: 22px;
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--v3-coral); color: var(--v3-ink);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--v3-font-display); font-weight: 800; font-size: 1.05rem;
    box-shadow: 0 0 14px var(--v3-coral-soft);
    transform: rotate(-3deg);
}
.how-brick h3 { margin: 0 0 8px; font-size: 1.12rem; font-weight: 800; }
.how-brick p { margin: 0; color: var(--color-text-secondary); font-size: 0.94rem; }

/* [TINFLE-REDESIGN] removed — mockup phone-frame carousel (.mock-*) replaced
   by the app-store hero rail below (2026-07-26) */
/* ----- hero rail: real app screens, app-store style (2026-07-26) -----
   One flat swipe rail: the mechanic's three beats plus the four screens
   from the retired "Inside Tinfle" tour section. Reuses the tour-item
   card idiom; native scroll + snap, no autoplay. */
.hero-rail {
    display: flex; gap: 14px;
    align-self: stretch;
    margin: 8px -20px 0;               /* bleed past .wrap's 20px gutters */
    padding: 4px 20px 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    text-align: left;
}
@media (max-width: 719px) {
    .hero-rail::-webkit-scrollbar { display: none; }
}
/* Swipe nudge: the whole card row slides left and SNAPS back (small
   overshoot) — a transform on the items, never the scroll position, so
   nothing about device scroll state can defeat it. JS adds .do-nudge when
   the rail is in view and removes it on animationend. */
@keyframes rail-nudge {
    0% { transform: translateX(0); }
    38% { transform: translateX(-30px); }
    64% { transform: translateX(7px); }
    82% { transform: translateX(-2px); }
    100% { transform: translateX(0); }
}
.hero-rail.do-nudge .tour-item {
    animation: rail-nudge 950ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@media (prefers-reduced-motion: reduce) {
    .hero-rail.do-nudge .tour-item { animation: none; }
}

/* Right-edge fade: "more cards this way". Masked on the scroll container so
   no overlay element is needed; JS toggles .rail-fade off at the rail's end
   so the last card is never cut. */
.hero-rail.rail-fade {
    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 56px), transparent);
    mask-image: linear-gradient(to right, #000 calc(100% - 56px), transparent);
}
.tour-item { flex: 0 0 clamp(190px, 54vw, 216px); margin: 0; scroll-snap-align: start; }
.tour-frame {
    border: 1px solid var(--color-border); border-radius: 18px; overflow: hidden;
    background: #000;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}
.tour-frame img { display: block; width: 100%; height: auto; }
.tour-name { margin: 12px 0 4px; font-family: var(--v3-font-display); font-weight: 800; font-size: 1.02rem; }
.tour-line { margin: 0; color: var(--color-text-secondary); font-size: 0.86rem; }

/* ----- seat swap ----- */
.swap-demo {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    margin-top: 26px;
}
.swap-chip {
    background: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: 999px; padding: 10px 20px;
    font-size: 0.9rem; font-weight: 600; color: var(--color-text-secondary);
    transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.swap-demo.on-1 .swap-chip--ask,
.swap-demo.on-2 .swap-chip--tap,
.swap-demo.on-3 .swap-chip--live {
    border-color: var(--v3-coral); color: var(--color-text-primary);
    box-shadow: 0 0 16px var(--v3-coral-soft); transform: scale(1.04);
}
.swap-chip--live { font-weight: 800; }
.swap-demo.on-3 .swap-chip--live { background: var(--v3-coral); color: var(--v3-ink); }
.swap-arrow { position: relative; width: 2px; height: 26px; background: var(--v3-white-08); overflow: visible; }
.swap-token {
    position: absolute; left: 50%; top: 0; transform: translate(-50%, -2px);
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--v3-coral); box-shadow: 0 0 10px var(--v3-coral-glow);
    opacity: 0;
}
.swap-demo.on-2 .swap-arrow:not(.swap-arrow--b) .swap-token,
.swap-demo.on-3 .swap-arrow--b .swap-token { opacity: 1; animation: token-drop 0.5s ease forwards; }
@keyframes token-drop { from { top: 0; } to { top: calc(100% - 8px); } }

/* ============================================================================
   VIDEO TRACKER: animated queue-climb widget
   ========================================================================== */
.vt-demo {
    width: min(400px, 100%); margin: 26px auto 0;
    background: var(--v3-ink); border: 1px solid var(--color-border);
    border-radius: 16px; padding: 18px; text-align: left;
}
.vt-demo-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.vt-demo-thumb {
    width: 40px; height: 62px; border-radius: 8px; flex-shrink: 0; position: relative;
    background: linear-gradient(160deg, #3a2828, #1f1f1f 60%);
    border: 1px solid var(--v3-white-08);
}
.vt-demo-thumb::after {
    content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-40%, -50%);
    border-style: solid; border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.55);
}
.vt-demo-title { margin: 0; font-weight: 800; font-size: 0.95rem; }
.vt-demo-count {
    margin: 3px 0 0; color: var(--v3-coral);
    font-size: 0.74rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
}
.vt-demo-rows { display: flex; flex-direction: column; gap: 8px; }
.vt-row {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--v3-white-08); border-radius: 10px;
    padding: 9px 12px;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.vt-row.is-live { border-color: var(--v3-coral); background: rgba(255, 107, 107, 0.08); }
.vt-ava {
    width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
    background: var(--v3-white-08); color: var(--color-text-secondary);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem; font-weight: 800;
}
.vt-user {
    flex: 1; min-width: 0; font-size: 0.88rem; font-weight: 600;
    color: var(--color-text-secondary);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vt-row.is-live .vt-user { color: var(--color-text-primary); }
.vt-ord {
    flex-shrink: 0; font-size: 0.74rem; font-weight: 800;
    background: var(--v3-white-08); color: var(--color-text-primary);
    border-radius: 999px; padding: 4px 10px;
}
.vt-ord.is-next { background: var(--color-text-primary); color: var(--v3-ink); }
.vt-ord.is-live { background: var(--v3-coral); color: var(--v3-ink); animation: vt-pulse 1.2s ease-in-out infinite; }
.vt-ord.is-tick { animation: vt-tick 0.4s ease; }
@keyframes vt-pulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--v3-coral-soft); }
    50% { box-shadow: 0 0 0 7px rgba(255, 107, 107, 0); }
}
@keyframes vt-tick {
    0% { transform: translateY(-6px); opacity: 0.4; }
    100% { transform: none; opacity: 1; }
}
.vt-demo-cta {
    margin: 12px auto 0; width: fit-content;
    background: var(--v3-coral); color: var(--v3-ink);
    font-size: 0.8rem; font-weight: 800;
    border-radius: 999px; padding: 8px 16px;
    opacity: 0; transform: translateY(6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.vt-demo-cta.show { opacity: 1; transform: none; }
.vt-closer { margin: 18px 0 0; color: var(--color-text-secondary); font-size: 0.92rem; font-weight: 600; }
@media (prefers-reduced-motion: reduce) {
    .vt-ord.is-live, .vt-ord.is-tick { animation: none; }
}

/* [TINFLE-REDESIGN] removed — "Inside Tinfle" tour section CSS; the tour-item
   card rules moved up into the hero-rail block (2026-07-26) */

/* ============================================================================
   TWO DOORS
   ========================================================================== */
.doors { display: grid; grid-template-columns: 1fr; gap: 22px; margin: 34px 0 26px; }
.door-scene {
    position: relative; min-height: 640px; /* fits the room's real-screen shot without inner scroll */
    perspective: 1400px;
    border-radius: 16px;
}
.door-room {
    position: absolute; inset: 0;
    background: var(--v3-ink);
    border: 1px solid var(--color-border); border-radius: 16px;
    padding: 24px 22px;
    display: flex; flex-direction: column; gap: 12px;
    overflow: auto;
}
.door-room--private { box-shadow: inset 0 0 60px var(--v3-coral-soft); }
.room-title { font-family: var(--v3-font-display); font-weight: 800; font-size: 1.3rem; margin: 0; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.room-tag {
    background: var(--v3-coral); color: var(--v3-ink);
    font-family: var(--v3-font-body); font-size: 0.62rem; font-weight: 800;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 3px 9px; border-radius: 4px;
}
.room-tag--public { background: var(--color-text-primary); }
.room-facts { margin: 0; display: flex; flex-direction: column; gap: 10px; }
.room-facts div { border-bottom: 1px solid var(--v3-white-04); padding-bottom: 10px; }
.room-facts dt { color: var(--color-text-muted); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 3px; }
.room-facts dd { margin: 0; font-weight: 600; font-size: 0.95rem; }
.room-note { color: var(--color-text-secondary); font-size: 0.88rem; margin: 0; }
/* A real app screen behind each door: a window into the platform */
.room-shot {
    border: 1px solid var(--color-border); border-radius: 12px;
    overflow: hidden; background: #000;
    max-width: 340px;
}
.room-shot img { display: block; width: 100%; height: auto; }
.room-shot-label {
    color: var(--color-text-muted); font-size: 0.68rem; font-weight: 800;
    letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 -4px;
}
.room-cta {
    margin-top: auto; align-self: flex-start;
    color: var(--v3-coral); font-weight: 800; font-size: 0.92rem; text-decoration: none;
}
.room-cta:hover { color: var(--color-text-primary); }
.room-cta--public { color: var(--color-text-primary); }
.room-cta--public:hover { color: var(--v3-coral); }

.door {
    position: absolute; inset: 0; z-index: 2;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
    border-radius: 16px; cursor: pointer;
    border: 1px solid var(--color-border);
    background:
        linear-gradient(90deg, var(--v3-white-04) 1px, transparent 1px) 0 0 / 25% 100%,
        linear-gradient(165deg, var(--color-surface-2), var(--color-surface) 70%);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 var(--v3-white-08);
    transform-origin: left center;
    transition: transform 0.65s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.5s ease 0.15s;
    color: var(--color-text-primary);
}
.door--private { box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), inset 0 0 50px var(--v3-coral-soft); }
.door-word {
    font-family: var(--v3-font-display); font-weight: 800;
    font-size: clamp(2.2rem, 9vw, 3rem); letter-spacing: 0.12em;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.5);
}
.door--private .door-word { color: var(--v3-coral); }
.door-plaque {
    border: 1px solid var(--v3-white-14); border-radius: 4px;
    color: var(--color-text-secondary);
    font-size: 0.66rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
    padding: 5px 12px;
}
.door-peep { display: flex; gap: 5px; }
.door-peep i { width: 9px; height: 9px; border-radius: 50%; display: block; }
.door-peep i:nth-child(1) { background: var(--v3-coral); }
.door-peep i:nth-child(2) { background: var(--color-text-primary); }
.door-peep i:nth-child(3) { background: var(--color-gold); }
.door-peep i:nth-child(4) { background: var(--color-silver); }
.door-peep--crowd i { width: 6px; height: 6px; background: var(--color-text-muted); }
.door-peep--crowd i:nth-child(3n) { background: var(--color-text-secondary); }
.door-peep--crowd i:nth-child(4) { background: var(--v3-coral); }
.door-knob {
    position: absolute; right: 16px; top: 50%;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--color-text-secondary);
    box-shadow: inset 0 -2px 3px rgba(0, 0, 0, 0.6);
}
.door-hint {
    position: absolute; bottom: 16px;
    color: var(--color-text-muted); font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    animation: hint-bob 2.4s ease-in-out infinite;
}
@keyframes hint-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.door-scene.is-open .door {
    transform: rotateY(-84deg);
    opacity: 0.35;
    pointer-events: none;
}
.door-scene.is-open .door .door-hint { animation: none; }
.doors-closer { font-family: var(--v3-font-display); font-weight: 700; font-size: 1.15rem; }

/* ============================================================================
   FAQ — native details accordion
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 30px; }
.faq-item {
    background: var(--color-surface);
    border: 1px solid var(--v3-white-04);
    border-radius: 12px;
    overflow: hidden;
}
.faq-q {
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    padding: 16px 18px; cursor: pointer;
    font-weight: 700; font-size: 0.98rem;
    list-style: none;
    transition: color 0.2s ease;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--v3-coral); }
.faq-chevron { flex-shrink: 0; color: var(--color-text-muted); transition: transform 0.25s ease; }
.faq-item[open] .faq-q { color: var(--v3-coral); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); color: var(--v3-coral); }
.faq-a { padding: 0 18px 16px; color: var(--color-text-secondary); font-size: 0.92rem; line-height: 1.6; }
.faq-a p { margin: 0; }
.faq-a a { color: var(--v3-coral); font-weight: 700; text-decoration: none; }
.faq-a a:hover { color: var(--color-text-primary); }
.faq-more { color: var(--color-text-secondary); margin: 28px 0 0; }

/* ============================================================================
   SAYING — chat feed
   ========================================================================== */
.chat-feed { display: flex; flex-direction: column; gap: 18px; margin-top: 34px; }
.chat-msg { display: flex; gap: 10px; align-items: flex-end; max-width: 92%; }
.chat-msg--right { flex-direction: row-reverse; margin-left: auto; }
.chat-who {
    width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.8rem; font-weight: 800; color: var(--v3-ink);
}
.chat-bubble {
    background: var(--color-surface); border: 1px solid var(--v3-white-04);
    border-radius: 16px 16px 16px 4px;
    padding: 14px 16px;
}
.chat-msg--right .chat-bubble { border-radius: 16px 16px 4px 16px; }
.chat-bubble p { margin: 0 0 8px; font-size: 0.95rem; line-height: 1.55; }
.chat-name { color: var(--color-text-muted); font-size: 0.76rem; font-weight: 700; }
.typing-dots { display: inline-flex; gap: 4px; padding: 4px 2px; }
.typing-dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--color-text-muted); animation: typing 1.1s ease infinite; }
.typing-dots i:nth-child(2) { animation-delay: 0.15s; }
.typing-dots i:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing { 0%, 100% { opacity: 0.25; transform: translateY(0); } 45% { opacity: 1; transform: translateY(-3px); } }
.chat-bubble--typing .typing-payload { display: none; }
.chat-bubble--typing.is-sent .typing-dots { display: none; }
.chat-bubble--typing.is-sent .typing-payload { display: block; animation: sv-in 0.3s ease; }

/* ============================================================================
   WAITLIST + FORMS
   ========================================================================== */
.perks {
    background: var(--color-surface); border: 1px solid var(--v3-white-04);
    border-radius: 12px; padding: 20px 22px; text-align: left;
    max-width: 420px; width: 100%; margin-bottom: 26px;
}
.perks-title { color: var(--v3-coral); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 12px; }
.perks-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.perks-list li { position: relative; padding-left: 24px; color: var(--color-text-secondary); font-size: 0.92rem; }
.perks-list li::before {
    content: ""; position: absolute; left: 0; top: 7px;
    width: 13px; height: 8px; border-radius: 2px;
    background: var(--v3-coral); opacity: 0.9;
}

.waitlist-form { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 420px; }
.waitlist-form input,
.wt-form input[type="email"],
.wt-form input[type="text"] {
    width: 100%;
    background: var(--color-surface); border: 1px solid var(--color-border);
    color: var(--color-text-primary); font-family: var(--v3-font-body); font-size: 1rem;
    border-radius: 10px; padding: 14px 16px; outline: none;
    transition: border-color 0.2s ease;
}
.waitlist-form input:focus, .wt-form input:focus { border-color: var(--v3-coral); }
.waitlist-form input::placeholder, .wt-form input::placeholder { color: var(--color-text-muted); }

/* ----- email domain quick-complete pills (same one-tap idiom as /join) -----
   Wraps so every domain is visible at once; [hidden] must beat display:flex. */
.email-domains { display: flex; flex-wrap: wrap; gap: 8px; }
.email-domains[hidden] { display: none; }
.email-domain-pill {
    flex-shrink: 0; padding: 8px 16px; border-radius: 999px;
    border: 1px solid var(--color-border); background: var(--color-surface);
    color: var(--color-text-secondary); font-family: var(--v3-font-body);
    font-size: 0.8rem; font-weight: 600; cursor: pointer;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.email-domain-pill[hidden] { display: none; }
.email-domain-pill:hover { border-color: var(--v3-coral); color: var(--color-text-primary); }
.email-domain-pill:active {
    background: rgba(255, 107, 107, 0.12);
    border-color: var(--v3-coral); color: var(--color-text-primary);
}
.form-status { font-size: 0.88rem; font-weight: 600; margin: 12px 0 0; }
.form-status.ok { color: var(--color-online); }
.form-status.err { color: var(--v3-coral); }
.waitlist-counter { color: var(--color-text-secondary); font-size: 0.86rem; margin: 14px 0 0; }
.waitlist-counter b { color: var(--v3-coral); }

/* ----- watch this ----- */
.wt-video { width: 100%; max-width: 420px; margin-bottom: 26px; }
.wt-video video {
    width: 100%; border-radius: 14px;
    border: 1px solid var(--color-border);
    background: var(--v3-ink);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.wt-video-note { color: var(--color-text-secondary); font-size: 0.86rem; margin: 12px 0 0; }
.wt-form { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 420px; }
.wt-purge { display: flex; align-items: flex-start; gap: 10px; text-align: left; color: var(--color-text-secondary); font-size: 0.84rem; cursor: pointer; padding: 2px 2px 6px; }
.wt-purge input { margin-top: 3px; accent-color: var(--v3-coral); }
.wt-steps { list-style: none; margin: 30px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; text-align: left; width: 100%; max-width: 420px; }
.wt-steps li { display: flex; align-items: center; gap: 12px; color: var(--color-text-secondary); font-size: 0.9rem; }
.wt-steps b {
    flex-shrink: 0; width: 26px; height: 26px; border-radius: 7px;
    background: var(--v3-white-04); border: 1px solid var(--v3-white-08);
    color: var(--v3-coral); font-weight: 800; font-size: 0.8rem;
    display: inline-flex; align-items: center; justify-content: center;
}
.wt-fine { color: var(--color-text-muted); font-size: 0.78rem; margin: 18px 0 0; }

/* watch this result dialog */
.wt-result {
    background: var(--color-surface); color: var(--color-text-primary);
    border: 1px solid var(--color-border); border-radius: 16px;
    padding: 20px; width: min(440px, calc(100vw - 32px));
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}
.wt-result::backdrop { background: rgba(0, 0, 0, 0.66); backdrop-filter: blur(4px); }
.wt-result-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.wt-result-brand { display: flex; align-items: center; gap: 8px; font-family: var(--v3-font-display); font-weight: 800; font-size: 1.1rem; }
.wt-result-logo { height: 22px; }
.wt-close {
    background: none; border: none; cursor: pointer;
    color: var(--color-text-secondary); padding: 8px; border-radius: 50%;
    display: inline-flex;
}
.wt-close:hover { color: var(--color-text-primary); }
#wt-link {
    width: 100%; background: var(--v3-ink); border: 1px dashed var(--v3-coral);
    color: var(--color-text-primary); border-radius: 10px; padding: 13px 14px;
    font-size: 0.9rem; outline: none; margin-bottom: 12px;
}
.wt-result-actions { display: flex; gap: 10px; }
.wt-result-actions .btn { flex: 1; padding: 12px 16px; }
.wt-wait {
    display: flex; align-items: center; gap: 10px;
    background: var(--v3-white-04); border-radius: 10px;
    color: var(--color-text-secondary); font-size: 0.86rem;
    padding: 11px 14px; margin-top: 16px;
}
.wt-wait-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--v3-coral); animation: cam-pulse 1.4s ease infinite; flex-shrink: 0; }
@keyframes cam-pulse { 50% { opacity: 0.45; } }
.wt-result-note { color: var(--color-text-muted); font-size: 0.8rem; margin: 14px 0 0; }

/* ----- host a show and tell: one-door CTA + quiet link + mint dialog ----- */
.host-doors { display: flex; flex-direction: column; align-items: center; gap: 12px; width: 100%; max-width: 360px; margin-top: 10px; }
.host-doors .btn-coral.host-door { width: 100%; }
.host-alt-link {
    background: none; border: 0; padding: 4px;
    color: var(--color-text-secondary); font-size: 0.85rem;
    text-decoration: underline; text-underline-offset: 3px; cursor: pointer;
}
.host-alt-link:hover { color: var(--v3-coral); }
.hd-badge {
    display: inline-block; align-self: flex-start;
    background: var(--v3-coral-soft); color: var(--v3-coral);
    font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
    border-radius: 999px; padding: 5px 12px; margin: 4px 0 10px;
}
.hd-title { font-family: var(--v3-font-display); font-size: 1.3rem; margin: 0 0 14px; }
.hd-seat-line { margin: 0 0 14px; font-size: 0.8rem; color: var(--color-text-secondary); }
.hd-form { max-width: none; }

/* ----- founders ----- */
.founders { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 720px; margin: 34px auto 0; }
.founder {
    background: var(--color-surface); border: 1px solid var(--v3-white-04);
    border-radius: 14px; padding: 28px 24px; text-align: center;
}
.founder img {
    width: 96px; height: 96px; border-radius: 50%; object-fit: cover;
    border: 2px solid var(--v3-coral-soft); margin-bottom: 14px;
}
.founder h3 { margin: 0; font-size: 1.1rem; font-weight: 800; }
.founder-role { color: var(--v3-coral); font-weight: 700; font-size: 0.86rem; margin: 4px 0 12px; }
.founder-quote { color: var(--color-text-secondary); font-size: 0.92rem; margin: 0; }

/* ----- footer ----- */
.footer { position: relative; z-index: 1; background: var(--color-surface); border-top: 1px solid var(--v3-white-04); padding: 44px 0 28px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; justify-content: center; }
.footer-logo { height: 22px; }
.footer-word { font-family: var(--v3-font-display); font-weight: 800; font-size: 1.15rem; }
.footer-tag { color: var(--color-text-muted); font-size: 0.84rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; }
.footer-links a { color: var(--color-text-secondary); text-decoration: none; font-size: 0.86rem; font-weight: 600; }
.footer-links a:hover { color: var(--v3-coral); }
.footer-wall { color: var(--color-text-muted); font-size: 0.8rem; margin: 0; }
.footer-wall b { color: var(--v3-coral); }
.footer-copy { color: var(--color-text-muted); font-size: 0.78rem; margin: 0; }

/* ----- back to top ----- */
.v3-top {
    position: fixed; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); z-index: 40;
    width: 46px; height: 46px; border-radius: 12px; border: none; cursor: pointer;
    background: var(--v3-coral); color: var(--v3-ink);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 16px var(--v3-coral-glow);
    opacity: 0; pointer-events: none; transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}
.v3-top.is-shown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.v3-top:hover { background: var(--color-text-primary); }

/* ----- brick confetti ----- */
.fetti {
    position: fixed; z-index: 90; pointer-events: none;
    width: 12px; height: 7px; border-radius: 2px;
    animation: fetti-fly 0.85s cubic-bezier(0.2, 0.6, 0.4, 1) forwards;
}
@keyframes fetti-fly {
    from { opacity: 1; transform: translate(0, 0) rotate(0deg); }
    to { opacity: 0; transform: translate(var(--dx, 0px), var(--dy, -80px)) rotate(var(--rot, 180deg)); }
}

/* ----- scroll-in reveals ----- */
[data-anim] { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
[data-anim].is-visible { opacity: 1; transform: none; }
[data-anim-delay="100"].is-visible { transition-delay: 0.1s; }
[data-anim-delay="150"].is-visible { transition-delay: 0.15s; }
[data-anim-delay="200"].is-visible { transition-delay: 0.2s; }
[data-anim-delay="250"].is-visible { transition-delay: 0.25s; }

/* ============================================================================
   BREAKPOINTS
   ========================================================================== */
@media (min-width: 720px) {
    .section { padding: 96px 0; }
    .nav-link--wide { display: inline; }
    /* mouse users get a scroll affordance the touch peek already provides */
    .hero-rail { scrollbar-width: thin; }
    .hero-ctas { max-width: none; width: auto; }
    .hero-ctas .btn { flex: 0 1 auto; padding: 14px 26px; font-size: 1rem; }
    .hero-ctas .btn-big { font-size: 1.3rem; padding: 17px 34px; }
    .hero-ctas .btn svg { display: inline; width: 18px; height: 18px; flex-shrink: 0; }
    .hero-ctas .btn small { font-size: 0.78rem; }
    .grid-2 { grid-template-columns: 1.1fr 0.9fr; }
    .how-wall { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .how-brick--shift { transform: translateY(14px); }
    .how-brick--shift.is-visible { transform: translateY(14px); }
    .doors { grid-template-columns: 1fr 1fr; }
    .founders { grid-template-columns: 1fr 1fr; }
    .waitlist-form { flex-flow: row wrap; }
    .waitlist-form input { flex: 1; }
    /* pills drop to their own full-width line under the input + button row */
    .waitlist-form .email-domains { flex-basis: 100%; order: 1; }
    .swap-demo { flex-direction: row; gap: 0; }
    .swap-arrow { width: 44px; height: 2px; margin: 0 2px; }
    .swap-token { top: 50%; left: 0; transform: translate(0, -50%); }
    .swap-demo.on-2 .swap-arrow:not(.swap-arrow--b) .swap-token,
    .swap-demo.on-3 .swap-arrow--b .swap-token { animation: token-slide 0.5s ease forwards; }
    .stage { padding: 26px; }
    .stage-cols {
        grid-template-columns: auto 1fr;
        gap: 34px; align-items: center;
    }
    .stage-side { align-items: flex-start; max-width: none; }
    .stage-caption { text-align: left; }
    .stage-hint { text-align: left; }
    .stage-controls { align-items: flex-start; }
    .stage-dots { justify-content: flex-start; }
    .outro-ctas { flex-direction: row; }
}
@keyframes token-slide { from { left: 0; } to { left: calc(100% - 10px); } }

/* ============================================================================
   REDUCED MOTION — everything settles instantly, nothing loops
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    [data-anim] { opacity: 1; transform: none; transition: none; }
    .door-hint, .face, .wt-wait-dot { animation: none !important; }
    .door, .swap-chip, .swap-token, .v3-top, .btn,
    .ph-live, .ph-ready, .ph-seatbanner, .ph-pip, .ph-brickvideo { transition-duration: 0.01s; }
    .ph-msg { animation: none; }
    .faq-chevron { transition: none; }
    .nav-menu a { animation: none; }
    .ph-heart { animation-duration: 0.01s; }
    .ph-bricks-btn.is-nudge { animation: none; box-shadow: 0 0 0 3px var(--v3-coral-soft); }
    .ph-rail-btn.liked svg { animation: none; }
    .ph-submit-sheet { animation: none; }
    .float-emoji { animation-duration: 0.01s; }
    .fetti { animation-duration: 0.01s; }
    .face[data-mood="joy"] { animation: none; }
}


/* ===== Moved out of full-landing-v5.html (2026-07-25) =====
   CSP style-src-elem no longer permits inline <style> blocks. */
/* v5 keeps the host-first hero as one readable line on narrow screens. */
@media (max-width: 719px) {
    .hero-h1 {
        font-family: 'Archivo', var(--v3-font-display), sans-serif;
        font-size: clamp(1.65rem, 8.2vw, 2.5rem);
        font-variation-settings: 'wdth' 85;
        white-space: nowrap;
        letter-spacing: -0.045em;
    }
    .hero-wrap { padding-inline: 10px; }
    .hero-headline { white-space: normal; }
    /* match the narrower hero-wrap gutter so the rail still bleeds edge-to-edge */
    .hero-rail { margin-inline: -10px; padding-inline: 10px; scroll-padding-inline: 10px; }
}
/* "together." on its own stage below the headline (2026-07-22) */
.hero-together {
    margin: 4px 0 16px;
}
.hero-together-img {
    display: block;
    width: clamp(220px, 62vw, 430px);
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 0 42px var(--v3-coral-glow));
}
.hero-headline { margin-bottom: 12px; }
.hero-promise { margin-bottom: 36px; }
.hero-promise-text {
    margin: 0;
    color: var(--color-text-primary);
    font-family: 'Archivo', var(--v3-font-display), sans-serif;
    font-size: clamp(1.15rem, 4vw, 1.75rem);
    font-weight: 700;
}
/* [TINFLE-REDESIGN] removed — .mock-frame width override went with the carousel (2026-07-26) */
