/* ============================================================
   FORKCAST DEMO · 04a · THE STATEMENT · FEED
   "Like your Instagram feed." The social-feed-as-website for
   trend-led venues whose menu lives on TikTok. Stop the scroll.

   Its own DNA (NOT a cousin of any other skin):
   - Palette: warm paper + near-black ink + one hot magenta accent.
     Rounded, app-like, friendly (no sharp brutalism, no dark room).
   - Type: Bricolage Grotesque (expressive display) + DM Sans (body)
     + IBM Plex Mono (handles, counts, timestamps). All unused elsewhere.
   - Signature: THE REEL, a working phone Stories player in the hero,
     plus a feed grid you DOUBLE-TAP to burst a heart. Live counts.
   - Pointer language: double-tap to like (heart pop). Social-native.
   Guarded by prefers-reduced-motion and hover:none throughout.
   ============================================================ */

:root {
  --paper: #FAF8F3;
  --paper-2: #F1EDE4;       /* tint panels */
  --ink: #15141A;
  --ink-soft: #5C5A66;
  --ink-faint: #918E99;
  --card: #FFFFFF;
  --accent: #E81F76;        /* hot magenta */
  --accent-deep: #C2125E;
  --accent-soft: #FCE0EC;
  --line: rgba(21, 20, 26, 0.10);
  --line-strong: rgba(21, 20, 26, 0.18);

  --display: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
  --body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --mono: 'IBM Plex Mono', 'SF Mono', Menlo, monospace;

  --gutter: clamp(20px, 5vw, 92px);
  --content-max: 1280px;
  --section-pad: clamp(72px, 10vw, 150px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 22px;
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--paper); color: var(--ink);
  line-height: 1.6; font-size: 17px; font-weight: 400;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: #fff; }
.wrap { max-width: var(--content-max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

/* ---------- TYPE ---------- */
.label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: 9px; }
.label::before { content: ''; width: 18px; height: 18px; border-radius: 6px; background: var(--accent-soft); border: 1px solid var(--accent); display: inline-block; }
.label.plain::before { display: none; }
.display { font-family: var(--display); font-weight: 800; font-size: clamp(44px, 7.2vw, 112px); line-height: 0.94; letter-spacing: -0.035em; }
.display em { font-style: normal; color: var(--accent); }
.h2 { font-family: var(--display); font-weight: 800; font-size: clamp(30px, 4.6vw, 64px); line-height: 0.98; letter-spacing: -0.03em; }
.h2 em { font-style: normal; color: var(--accent); }
.lede { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.6; color: var(--ink-soft); max-width: 48ch; }

/* ---------- BUTTONS ---------- */
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn { font-family: var(--body); font-size: 15px; font-weight: 700; letter-spacing: -0.01em; padding: 15px 28px; border-radius: 100px; display: inline-flex; align-items: center; gap: 10px; cursor: pointer; border: 2px solid transparent; transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.2s var(--ease); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-ghost .arrow { color: var(--accent); transition: transform 0.3s var(--ease); }
.btn-ghost:hover .arrow { transform: translateX(4px); }

/* ---------- DEMO BANNER ---------- */
.demo-banner { background: var(--ink); color: var(--paper); font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-align: center; padding: 9px 16px; }
.demo-banner strong { color: var(--accent); letter-spacing: 0.1em; }
.demo-banner a { color: var(--paper); border-bottom: 1px solid var(--accent); padding-bottom: 1px; }

/* ---------- NAV ---------- */
.nav { position: sticky; top: 0; z-index: 60; background: rgba(250,248,243,0.86); backdrop-filter: saturate(150%) blur(14px); border-bottom: 1px solid transparent; transition: border-color 0.4s var(--ease); }
.nav.solid { border-bottom-color: var(--line); }
.nav-inner { max-width: var(--content-max); margin: 0 auto; padding: 15px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-brand-monogram { display: inline-flex; align-items: center; gap: 10px; }
.nav-brand-monogram svg { width: 30px; height: 30px; flex-shrink: 0; }
.nav-brand-monogram .sq { fill: none; stroke: var(--ink); }
.nav-brand-monogram .play { fill: var(--accent); stroke: none; }
.nav-brand-monogram span { font-family: var(--display); font-weight: 800; font-size: 20px; letter-spacing: -0.02em; }
.nav-links { display: flex; gap: clamp(15px, 2.2vw, 32px); }
.nav-links a { font-family: var(--body); font-size: 14px; font-weight: 600; color: var(--ink-soft); position: relative; padding: 4px 0; transition: color 0.3s var(--ease); }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { font-size: 14px; font-weight: 700; color: #fff; background: var(--accent); padding: 11px 20px; border-radius: 100px; transition: background 0.3s var(--ease), transform 0.2s var(--ease); }
.nav-cta:hover { background: var(--accent-deep); transform: translateY(-2px); }
@media (max-width: 900px) { .nav-links { display: none; } }

/* ---------- IMAGE SLOT (.shot) · photo-ready ---------- */
.shot { position: relative; overflow: hidden; isolation: isolate; border-radius: 18px; background: linear-gradient(150deg, #efe9dd 0%, #f5f1e8 50%, #e7e0d2 100%); }
.shot::after { content: ''; position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0.4; mix-blend-mode: multiply; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E"); }
.shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.shot:has(img)::after { opacity: 0.12; mix-blend-mode: overlay; }
.shot .ph { position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 10px; padding: 22px; }
.shot .ph .ph-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-deep); }
.shot .ph .ph-intent { font-size: 13px; line-height: 1.5; color: var(--ink-soft); max-width: 28ch; }
.shot .ph .ph-mark { width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--accent); display: flex; align-items: center; justify-content: center; color: var(--accent); font-family: var(--mono); font-size: 11px; }

/* heart-burst layer (double-tap to like) */
.heart-burst { position: absolute; z-index: 6; pointer-events: none; font-size: 60px; line-height: 1; transform: translate(-50%, -50%) scale(0); color: #fff; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4)); }
.heart-burst.go { animation: heartPop 0.7s var(--ease) forwards; }
@keyframes heartPop { 0% { transform: translate(-50%,-50%) scale(0) rotate(-12deg); opacity: 0; } 30% { transform: translate(-50%,-50%) scale(1.15) rotate(4deg); opacity: 1; } 100% { transform: translate(-50%,-150%) scale(1) rotate(0); opacity: 0; } }

/* ============================================================
   HERO · headline left + the REEL (phone Stories player) right.
   ============================================================ */
.hero { padding: clamp(36px, 5vw, 72px) 0 var(--section-pad); }
.hero-inner { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.hero-eyebrow { margin-bottom: 22px; }
.hero h1 { margin-bottom: 22px; }
.hero-sub { margin-bottom: 30px; }
.hero-meta { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 32px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--ink-faint); }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta b { color: var(--ink); font-weight: 700; }
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; } .hero-reel-wrap { order: -1; } }

/* ============================================================
   THE REEL · phone Stories/Reels player (the signature).
   ============================================================ */
.reel-phone { width: min(330px, 78vw); margin: 0 auto; aspect-ratio: 9 / 19; background: #0d0d10; border-radius: 40px; padding: 11px; box-shadow: 0 50px 90px -40px rgba(21,20,26,0.55), 0 0 0 2px rgba(21,20,26,0.06); position: relative; }
.reel-screen { position: relative; width: 100%; height: 100%; border-radius: 30px; overflow: hidden; background: #1a1a1f; isolation: isolate; }
.reel-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s var(--ease); }
.reel-slide.on { opacity: 1; }
.reel-slide .shot { position: absolute; inset: 0; border-radius: 0; }
.reel-slide .shot::after { opacity: 0.22; }
.reel-grad { position: absolute; inset: 0; z-index: 2; background: linear-gradient(0deg, rgba(10,10,14,0.82) 0%, rgba(10,10,14,0) 38%), linear-gradient(180deg, rgba(10,10,14,0.5) 0%, rgba(10,10,14,0) 26%); }
.reel-bars { position: absolute; z-index: 4; top: 14px; left: 12px; right: 12px; display: flex; gap: 5px; }
.reel-bars .bar { flex: 1; height: 3px; border-radius: 3px; background: rgba(255,255,255,0.35); overflow: hidden; }
.reel-bars .bar .fill { display: block; height: 100%; width: 0; background: #fff; }
.reel-bars .bar.done .fill { width: 100%; }
.reel-bars .bar.active .fill { animation: reelFill var(--reel-dur, 4s) linear forwards; }
@keyframes reelFill { from { width: 0; } to { width: 100%; } }
.reel-head { position: absolute; z-index: 4; top: 28px; left: 14px; right: 14px; display: flex; align-items: center; gap: 9px; color: #fff; }
.reel-head .av { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #ff9e3d); border: 2px solid #fff; flex-shrink: 0; }
.reel-head .hd { font-family: var(--mono); font-size: 12px; font-weight: 500; }
.reel-head .hd small { display: block; opacity: 0.7; font-size: 10px; }
.reel-cap { position: absolute; z-index: 4; left: 16px; right: 64px; bottom: 22px; color: #fff; }
.reel-cap .t { font-family: var(--display); font-weight: 800; font-size: 24px; line-height: 1.02; letter-spacing: -0.02em; margin-bottom: 6px; }
.reel-cap .s { font-size: 13px; opacity: 0.86; }
.reel-actions { position: absolute; z-index: 4; right: 14px; bottom: 24px; display: flex; flex-direction: column; gap: 16px; align-items: center; color: #fff; }
.reel-actions button { background: none; border: none; cursor: pointer; color: #fff; display: flex; flex-direction: column; align-items: center; gap: 4px; font-family: var(--mono); font-size: 10px; }
.reel-actions .ic { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; }
.reel-actions svg { width: 26px; height: 26px; }
.reel-actions .liked svg { fill: var(--accent); stroke: var(--accent); }
.reel-nav { position: absolute; z-index: 3; inset: 0; display: flex; }
.reel-nav button { flex: 1; background: none; border: none; cursor: pointer; }
.reel-tag { position: absolute; z-index: 5; top: -14px; right: -10px; background: var(--accent); color: #fff; font-family: var(--mono); font-size: 11px; font-weight: 700; padding: 8px 14px; border-radius: 100px; transform: rotate(4deg); box-shadow: 0 12px 24px -10px rgba(232,31,118,0.6); }
@media (max-width: 900px) { .reel-tag { right: 8px; } }

/* ---------- STORIES BAR ---------- */
.stories { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--card); }
.stories-inner { max-width: var(--content-max); margin: 0 auto; padding: 22px var(--gutter); display: flex; gap: clamp(16px, 3vw, 40px); align-items: center; overflow-x: auto; }
.story { display: flex; flex-direction: column; align-items: center; gap: 9px; flex-shrink: 0; }
.story .ring { width: 64px; height: 64px; border-radius: 50%; padding: 3px; background: linear-gradient(135deg, var(--accent), #ff9e3d); }
.story .ring .inner { width: 100%; height: 100%; border-radius: 50%; background: var(--paper-2); border: 2px solid var(--card); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.story span { font-family: var(--mono); font-size: 11px; color: var(--ink-soft); }
.stories .handle { margin-left: auto; flex-shrink: 0; text-align: right; }
.stories .handle b { font-family: var(--display); font-weight: 800; font-size: 18px; display: block; }
.stories .handle small { font-family: var(--mono); font-size: 11px; color: var(--ink-faint); }
@media (max-width: 700px) { .stories .handle { display: none; } }

/* ============================================================
   THE FEED · masonry-ish square grid, double-tap to like.
   ============================================================ */
.feed { padding: var(--section-pad) 0; }
.feed-head { max-width: var(--content-max); margin: 0 auto clamp(28px, 3vw, 48px); padding: 0 var(--gutter); display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.feed-head .h2 { margin-top: 12px; }
.feed-grid { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(10px, 1.4vw, 18px); }
.post { position: relative; aspect-ratio: 1 / 1; border-radius: 18px; overflow: hidden; cursor: pointer; }
.post.tall { aspect-ratio: 1 / 1; }
.post .shot { position: absolute; inset: 0; border-radius: 0; }
.post .post-ov { position: absolute; inset: 0; z-index: 4; background: linear-gradient(0deg, rgba(10,10,14,0.6), rgba(10,10,14,0) 55%); opacity: 0; transition: opacity 0.35s var(--ease); display: flex; align-items: flex-end; padding: 16px; gap: 16px; color: #fff; font-family: var(--mono); font-size: 13px; }
.post:hover .post-ov { opacity: 1; }
.post .post-ov .st { display: inline-flex; align-items: center; gap: 6px; }
.post .post-ov svg { width: 17px; height: 17px; fill: #fff; }
.post .dbl { position: absolute; z-index: 5; left: 14px; bottom: 14px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: rgba(232,31,118,0.9); padding: 5px 10px; border-radius: 100px; opacity: 0; transform: translateY(6px); transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); }
.post:hover .dbl { opacity: 1; transform: none; }
@media (max-width: 620px) { .feed-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   MENU TEASE · what you came for
   ============================================================ */
.dishes { padding: var(--section-pad) 0; background: var(--paper-2); }
.dishes-inner { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--gutter); }
.dishes-head { max-width: 620px; margin-bottom: clamp(32px, 4vw, 56px); }
.dishes-head h2 { margin-bottom: 12px; }
.dish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); }
.dish { background: var(--card); border-radius: var(--radius); overflow: hidden; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.dish:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -34px rgba(21,20,26,0.35); }
.dish .shot { aspect-ratio: 4/5; border-radius: 0; }
.dish-body { padding: 18px 20px 22px; }
.dish-body .top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.dish-body h3 { font-family: var(--display); font-weight: 800; font-size: 21px; letter-spacing: -0.02em; }
.dish-body .pr { font-family: var(--mono); font-size: 14px; color: var(--accent); }
.dish-body p { color: var(--ink-soft); font-size: 14px; margin-top: 6px; }
.dish-body .tag { display: inline-block; margin-top: 12px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-deep); background: var(--accent-soft); padding: 5px 11px; border-radius: 100px; }
@media (max-width: 860px) { .dish-grid { grid-template-columns: 1fr; } }

/* ============================================================
   THE HYPE · reviews as comments + count-up stats
   ============================================================ */
.hype { padding: var(--section-pad) 0; }
.hype-head { max-width: 640px; margin: 0 auto clamp(36px, 4vw, 60px); padding: 0 var(--gutter); text-align: center; }
.hype-head .label { justify-content: center; }
.hype-head h2 { margin-top: 12px; }
.stats { max-width: var(--content-max); margin: 0 auto clamp(40px, 5vw, 72px); padding: 0 var(--gutter); display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat .num { font-family: var(--display); font-weight: 800; font-size: clamp(34px, 4.6vw, 64px); letter-spacing: -0.03em; color: var(--ink); display: inline-flex; align-items: baseline; }
.stat .num .accent { color: var(--accent); }
.stat .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-top: 8px; }
.comments { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--gutter); columns: 3; column-gap: clamp(14px, 1.6vw, 22px); }
.comment { break-inside: avoid; margin-bottom: clamp(14px, 1.6vw, 22px); background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 20px 22px; }
.comment .ch { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.comment .ch .av { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #ff9e3d); flex-shrink: 0; }
.comment .ch .nm { font-weight: 700; font-size: 14px; }
.comment .ch .nm small { display: block; font-family: var(--mono); font-size: 11px; color: var(--ink-faint); font-weight: 400; }
.comment p { font-size: 15px; line-height: 1.55; color: var(--ink); }
.comment .likes { margin-top: 12px; font-family: var(--mono); font-size: 11px; color: var(--ink-faint); display: inline-flex; align-items: center; gap: 6px; }
.comment .likes svg { width: 14px; height: 14px; fill: var(--accent); }
@media (max-width: 860px) { .comments { columns: 2; } .stats { grid-template-columns: 1fr; gap: 30px; } }
@media (max-width: 560px) { .comments { columns: 1; } }

/* ============================================================
   STORY TEASE
   ============================================================ */
.story-tease { padding: var(--section-pad) 0; background: var(--paper-2); }
.story-tease-inner { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.story-tease .shot { aspect-ratio: 4/5; }
.story-tease h2 { margin: 14px 0; }
.story-tease p { color: var(--ink-soft); margin-bottom: 16px; max-width: 46ch; }
@media (max-width: 820px) { .story-tease-inner { grid-template-columns: 1fr; } }

/* ============================================================
   VISIT · find us (Google hallmarks)
   ============================================================ */
.visit { padding: var(--section-pad) 0; }
.visit-inner { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--gutter); }
.visit-head { max-width: 620px; margin-bottom: clamp(36px, 4vw, 60px); }
.visit-head h2 { margin: 12px 0; }
.visit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 36px); }
.visit-block { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.visit-block h3 { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.visit-block p { color: var(--ink-soft); font-size: 15px; margin-bottom: 7px; }
.visit-block p strong { color: var(--ink); font-weight: 700; }
.visit-block .small { font-size: 13px; color: var(--ink-faint); }
@media (max-width: 760px) { .visit-grid { grid-template-columns: 1fr; } }

/* ---------- FINAL CTA ---------- */
.final-cta { padding: var(--section-pad) 0; }
.final-cta-card { max-width: var(--content-max); margin: 0 auto; padding: clamp(48px, 7vw, 110px) var(--gutter); background: var(--ink); border-radius: clamp(24px, 3vw, 40px); margin-left: var(--gutter); margin-right: var(--gutter); text-align: center; display: flex; flex-direction: column; align-items: center; position: relative; overflow: hidden; }
.final-cta-card .label { justify-content: center; margin-bottom: 22px; color: var(--accent); }
.final-cta-card .label::before { background: var(--accent); border-color: var(--accent); }
.final-cta-card h2 { font-family: var(--display); font-weight: 800; font-size: clamp(38px, 6vw, 92px); line-height: 0.96; letter-spacing: -0.035em; color: var(--paper); margin-bottom: 22px; max-width: 16ch; }
.final-cta-card h2 em { font-style: normal; color: var(--accent); }
.final-cta-card p { color: rgba(250,248,243,0.7); margin-bottom: 30px; max-width: 42ch; }

/* ---------- FOOTER ---------- */
.footer { background: var(--paper); padding: clamp(54px, 7vw, 100px) 0 40px; border-top: 1px solid var(--line); }
.footer-inner { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--gutter); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line); }
.footer-brand .wordmark { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.footer-brand .wordmark svg { width: 28px; height: 28px; }
.footer-brand .wordmark .sq { fill: none; stroke: var(--ink); }
.footer-brand .wordmark .play { fill: var(--accent); stroke: none; }
.footer-brand .wordmark span { font-family: var(--display); font-weight: 800; font-size: 19px; }
.footer-brand p { color: var(--ink-faint); max-width: 32ch; font-size: 14.5px; }
.footer-col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 15px; }
.footer-col a, .footer-col p { display: block; color: var(--ink-soft); font-size: 14.5px; margin-bottom: 9px; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; flex-wrap: wrap; font-family: var(--mono); font-size: 11.5px; color: var(--ink-faint); }
.footer-bottom .built-by a { color: var(--accent); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); will-change: opacity, transform; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; } .reveal-d2 { transition-delay: 0.16s; } .reveal-d3 { transition-delay: 0.24s; } .reveal-d4 { transition-delay: 0.32s; }

/* ============================================================
   GUIDED COMMENTARY DOCK (.cx) · Forkcast sales overlay (demo only)
   ============================================================ */
.cx { position: fixed; right: 20px; bottom: 20px; z-index: 120; width: min(356px, calc(100vw - 32px)); background: var(--card); border: 1px solid var(--line-strong); border-radius: 18px; box-shadow: 0 30px 70px -34px rgba(21,20,26,0.45); padding: 18px 20px 16px; transform: translateY(20px); opacity: 0; pointer-events: none; transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.cx.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cx.cx-hidden { opacity: 0; transform: translateY(20px); pointer-events: none; }
.cx-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cx-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: 8px; }
.cx-tag::before { content: ''; width: 13px; height: 13px; border-radius: 5px; border: 1px solid var(--accent); }
.cx-close { background: none; border: none; cursor: pointer; font-size: 19px; line-height: 1; color: var(--ink-faint); padding: 2px 5px; border-radius: 4px; }
.cx-close:hover { color: var(--ink); }
.cx-body { transition: opacity 0.25s var(--ease), transform 0.25s var(--ease); }
.cx.swapping .cx-body { opacity: 0; transform: translateY(6px); }
.cx-feel { font-family: var(--display); font-weight: 800; font-size: 20px; line-height: 1.12; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 8px; }
.cx-feel em { font-style: normal; color: var(--accent); }
.cx-text { font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); }
.cx-dots { display: flex; gap: 6px; margin-top: 15px; }
.cx-dots span { width: 13px; height: 3px; border-radius: 2px; background: var(--line-strong); transition: background 0.4s var(--ease); }
.cx-dots span.on { background: var(--accent); }
.cx-reopen { position: fixed; right: 20px; bottom: 20px; z-index: 120; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; background: var(--ink); color: var(--paper); border: none; cursor: pointer; padding: 12px 18px; border-radius: 100px; box-shadow: 0 20px 50px -26px rgba(0,0,0,0.5); opacity: 0; transform: translateY(20px); pointer-events: none; transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), background 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.cx-reopen::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.cx-reopen.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cx-reopen:hover { background: var(--accent-deep); }
@media (max-width: 600px) { .cx { right: 12px; left: 12px; bottom: 12px; width: auto; padding: 15px 16px; } .cx-reopen { right: 12px; bottom: 12px; } }

/* ============================================================
   MOTION + MOBILE GUARDS
   ============================================================ */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
@media (hover: none) {
  .dish:hover { transform: none; box-shadow: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .reel-slide { transition: none; }
  .reel-bars .bar.active .fill { animation: none; width: 100%; }
  .heart-burst.go { animation: none; }
  .dish, .post .post-ov, .post .dbl, .cx, .cx-body, .cx-reopen { transition: none; }
}

/* ============================================================
   EXPERIENCE LAYER (Cycle 8) · "it's alive" social wow.
   Phone 3D tilt, live watching pill + floating hearts, hype
   marquee, magnetic CTA. All guarded for reduced-motion + touch.
   ============================================================ */

/* A · phone tilts in 3D toward the cursor */
.hero-reel-wrap { perspective: 1200px; }
.reel-phone { transition: transform 0.4s var(--ease); transform-style: preserve-3d; }

/* B · live "watching" pill + floating reaction hearts */
.reel-live { position: absolute; z-index: 4; top: 30px; right: 14px; display: inline-flex; align-items: center; gap: 7px; background: rgba(10,10,14,0.5); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.22); color: #fff; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.03em; padding: 5px 10px; border-radius: 100px; }
.reel-live .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(232,31,118,0.6); animation: livePulse 1.8s infinite; }
@keyframes livePulse { 0% { box-shadow: 0 0 0 0 rgba(232,31,118,0.55); } 70% { box-shadow: 0 0 0 7px rgba(232,31,118,0); } 100% { box-shadow: 0 0 0 0 rgba(232,31,118,0); } }
.reel-fly { position: absolute; z-index: 5; right: 26px; bottom: 80px; width: 22px; height: 22px; pointer-events: none; opacity: 0; }
.reel-fly svg { width: 100%; height: 100%; fill: var(--accent); filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }
.reel-fly.go { animation: flyUp 2.4s var(--ease) forwards; }
@keyframes flyUp { 0% { opacity: 0; transform: translateY(0) scale(0.5); } 12% { opacity: 0.95; } 100% { opacity: 0; transform: translateY(-180px) translateX(var(--fx, -12px)) scale(1.15); } }

/* C · hype marquee tape */
.hype-tape { background: var(--ink); color: var(--paper); overflow: hidden; padding: 16px 0; }
.hype-tape-track { display: inline-flex; white-space: nowrap; animation: tape 28s linear infinite; }
.hype-tape .it { font-family: var(--display); font-weight: 800; font-size: clamp(20px, 2.4vw, 34px); letter-spacing: -0.01em; padding: 0 0; display: inline-flex; align-items: center; gap: 26px; }
.hype-tape .it .star { color: var(--accent); padding: 0 26px; }
@keyframes tape { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* D · magnetic CTA */
.btn-primary { will-change: transform; }

@media (hover: none) { .reel-phone { transform: none !important; } }
@media (prefers-reduced-motion: reduce) {
  .reel-phone { transition: none; transform: none !important; }
  .reel-live .dot { animation: none; }
  .reel-fly.go { animation: none; opacity: 0; }
  .hype-tape-track { animation: none; }
}

/* ============================================================
   FORKCAST BUY BAND · demo sales chrome (Cycle 9)
   Tasteful bottom CTA, attention sheen + pulse. Above the footer,
   never blocks content. Guarded.
   ============================================================ */
.fc-buy { background: var(--paper-2); border-top: 1px solid var(--line); padding: clamp(44px, 6vw, 76px) var(--gutter); text-align: center; position: relative; overflow: hidden; }
.fc-buy-inner { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.fc-buy-text { font-family: var(--display); font-size: clamp(22px, 3vw, 34px); line-height: 1.2; color: var(--ink); }
.fc-buy-text strong { color: var(--accent); }
.fc-buy-actions { display: flex; flex-wrap: wrap; gap: 16px 22px; align-items: center; justify-content: center; }
.fc-buy-cta { position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: 10px; background: var(--accent); color: #fff; font-family: var(--body); font-weight: 600; font-size: 14px; letter-spacing: 1.2px; text-transform: uppercase; padding: 16px 30px; border-radius: 100px; box-shadow: 0 0 0 0 rgba(232, 31, 118, 0.5); animation: fcBuyPulse 2.6s ease-in-out infinite; }
.fc-buy-cta span { transition: transform 0.25s; }
.fc-buy-cta:hover span { transform: translateX(4px); }
.fc-buy-cta:hover { filter: brightness(1.06); }
.fc-buy-cta::after { content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%; background: linear-gradient(110deg, transparent, rgba(255,255,255,0.45), transparent); transform: skewX(-18deg); animation: fcBuySheen 3.6s ease-in-out infinite; pointer-events: none; }
@keyframes fcBuyPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(232, 31, 118, 0.45); } 50% { box-shadow: 0 0 26px 4px rgba(232, 31, 118, 0.5); } }
@keyframes fcBuySheen { 0% { left: -60%; } 55%, 100% { left: 130%; } }
.fc-buy-back { font-family: var(--mono); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-soft); border-bottom: 1px solid var(--accent); padding-bottom: 2px; }
.fc-buy-back:hover { color: var(--accent); }
@media (prefers-reduced-motion: reduce) { .fc-buy-cta { animation: none; } .fc-buy-cta::after { display: none; } }
