/*
  Öğrenci Nerede Yer? — "Gece Servisi" (Night Service)
  ─────────────────────────────────────────────────────────────────
  Aesthetic: a late-night neon street-food map. Warm near-black canvas,
  brand red glowing like a live map pin, amber like restaurant light on
  the street. Editorial-tech: Fraunces display + Nunito body + monospace
  HUD labels. Glassmorphism, gradient mesh, grain, pulsing pins.

  One stylesheet for the whole site. The landing (index.html) uses the
  rich section classes; the legal/404 pages reuse the shared chrome
  (.masthead, .article, .section-block, .notice, .steps, .colophon)
  and reskin automatically.
*/

/* ─────────────────────────  TOKENS  ───────────────────────── */
:root {
  /* surfaces — warm near-black, no cold blue drift */
  --bg:          #0C0A0B;
  --bg-2:        #100D0F;
  --elev:        #151113;
  --elev-2:      #1C1719;
  --glass:       rgba(255, 255, 255, 0.045);
  --glass-2:     rgba(255, 255, 255, 0.07);
  --line:        rgba(255, 255, 255, 0.09);
  --line-2:      rgba(255, 255, 255, 0.16);

  /* type */
  --ink:         #F6F0EA;        /* warm white */
  --ink-soft:    #CBC2BB;
  --ink-mut:     #9A908A;
  --ink-dim:     #6E645F;

  /* brand red — split: graphics vs. AA-safe foreground text */
  --red:         #E23744;        /* graphics / fills */
  --red-text:    #FF5E6B;        /* foreground text + links on dark (AA ≥4.5) */
  --red-deep:    #B8252F;
  --red-glow:    rgba(255, 80, 95, 0.55);

  /* brand amber — split likewise */
  --amber:       #F5A623;        /* graphics / fills */
  --amber-text:  #FFC24D;        /* foreground text on dark */
  --amber-deep:  #C77B00;
  --amber-glow:  rgba(245, 166, 35, 0.50);

  /* support */
  --mint:        #38D6A6;        /* map route accent only */
  --violet:      #9B8CFF;        /* sparse mockup accent */

  --radius:      18px;
  --radius-sm:   12px;
  --radius-lg:   28px;
  --col:         760px;
  --wide:        1180px;

  --shadow:      0 1px 0 rgba(255,255,255,.03) inset, 0 18px 50px -20px rgba(0,0,0,.7);
  --shadow-lift: 0 1px 0 rgba(255,255,255,.05) inset, 0 30px 70px -24px rgba(0,0,0,.8);

  --ease:        cubic-bezier(.22, 1, .36, 1);
  --spring:      cubic-bezier(.5, 1.5, .4, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* Atmosphere: gradient-mesh glow + faint street-grid dots, fixed behind all */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(60vw 50vw at 8% -6%,  rgba(226,55,68,.20), transparent 60%),
    radial-gradient(55vw 50vw at 102% 8%, rgba(245,166,35,.13), transparent 58%),
    radial-gradient(70vw 60vw at 78% 108%, rgba(226,55,68,.10), transparent 60%),
    var(--bg);
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none; opacity: .55;
  background-image:
    radial-gradient(rgba(255,255,255,.05) 1px, transparent 1.4px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(120vw 100vh at 50% 30%, #000 30%, transparent 78%);
          mask-image: radial-gradient(120vw 100vh at 50% 30%, #000 30%, transparent 78%);
}

/* Film grain — its own layer so it sits above the mesh but below content */
.grain {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; opacity: .045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
}

::selection { background: var(--red); color: #fff; }

a { color: var(--red-text); text-decoration: none; }
a:hover { color: #fff; }

:focus-visible {
  outline: 2px solid var(--amber-text);
  outline-offset: 3px;
  border-radius: 6px;
}

.container { max-width: var(--col);  margin: 0 auto; padding: 0 24px; position: relative; }
.wide      { max-width: var(--wide); margin: 0 auto; padding: 0 24px; position: relative; }

.mono {
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", "Menlo", monospace;
  font-feature-settings: "tnum" 1;
  letter-spacing: .02em;
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }

/* ─────────────────────────  TICKER (landing top strip)  ───────────────────────── */
.ticker {
  position: relative; z-index: 2;
  border-bottom: 1px solid var(--line);
  background: rgba(12,10,11,.6);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  overflow: hidden;
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mut);
}
.ticker__track {
  display: inline-flex; gap: 0; white-space: nowrap;
  padding: 8px 0;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.ticker__track span { padding: 0 18px; }
.ticker__track .hot { color: var(--amber-text); }
.ticker:hover .ticker__track { animation-play-state: paused; }

/* legacy thin strip for legal pages */
.issue-line {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  color: var(--ink-mut);
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 11.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  padding: 9px 0; text-align: center;
}
.issue-line .dot { color: var(--red-text); }

/* ─────────────────────────  NAVBAR (masthead)  ───────────────────────── */
.masthead {
  position: sticky; top: 0; z-index: 60;
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, backdrop-filter .3s;
}
.masthead.scrolled {
  border-bottom-color: var(--line);
  background: rgba(11,10,11,.72);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
          backdrop-filter: saturate(140%) blur(16px);
}
/* Legal/404 pages have no scroll-JS, so their sticky masthead must always
   carry the glass backing (otherwise body text scrolls under it). */
.masthead:not(#nav) {
  border-bottom-color: var(--line);
  background: rgba(11,10,11,.82);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
          backdrop-filter: saturate(140%) blur(16px);
}
/* Their plain <nav> (not .nav-links) gets matching link styling. */
.masthead nav:not(.nav-links) { display: flex; gap: 26px; flex-wrap: wrap; }
.masthead nav:not(.nav-links) a { color: var(--ink-soft); font-size: 14.5px; font-weight: 700; letter-spacing: .005em; }
.masthead nav:not(.nav-links) a:hover { color: #fff; }
.masthead nav:not(.nav-links) a.is-current { color: var(--red-text); }
.masthead .wide {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px; gap: 18px;
}
.brand {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800; font-size: 19px;
  font-variation-settings: "opsz" 60, "SOFT" 50;
  color: var(--ink); letter-spacing: -.01em; line-height: 1;
}
.brand:hover { color: var(--ink); }
.brand__mark {
  width: 34px; height: 34px; flex: none; display: block; object-fit: contain;
  filter: drop-shadow(0 4px 14px var(--red-glow));
}
/* real logo on legal/404 brand lockups */
.brand-logo {
  width: 32px; height: 32px; flex: none; display: block; object-fit: contain;
  filter: drop-shadow(0 4px 14px var(--red-glow));
}
/* legacy text badge (kept as fallback) */
.brand .mark {
  width: 32px; height: 32px; flex: none; display: inline-grid; place-items: center;
  border-radius: 10px; background: linear-gradient(150deg, var(--red), var(--red-deep));
  color: #fff; font-family: 'Fraunces', serif; font-style: italic; font-weight: 900; font-size: 19px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  box-shadow: 0 4px 16px -3px var(--red-glow), 0 0 0 1px rgba(255,255,255,.08) inset;
}
.brand .question { color: var(--red-text); font-style: italic; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--ink-soft); font-size: 14.5px; font-weight: 700; letter-spacing: .005em;
  position: relative; padding: 4px 0;
}
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--red-text); border-radius: 2px; transition: width .28s var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: #fff; }
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.is-current::after { width: 100%; }
.nav-links a.is-current { color: var(--red-text); }

.nav-cta {
  padding: 9px 18px !important; border-radius: 999px;
  background: var(--ink); color: var(--bg) !important;
  font-weight: 800 !important;
  box-shadow: 0 0 0 1px var(--line-2);
  transition: transform .2s var(--spring), box-shadow .25s, background .25s;
}
.nav-cta:hover { color: var(--bg) !important; transform: translateY(-1px); box-shadow: 0 8px 24px -8px rgba(255,255,255,.5); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent;
  color: var(--ink); cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 22px;
    padding: 32px;
    background: var(--bg-2); border-left: 1px solid var(--line);
    transform: translateX(100%); transition: transform .35s var(--ease);
    z-index: 70;
  }
  .nav-links.open { transform: none; box-shadow: -30px 0 80px -20px rgba(0,0,0,.8); }
  .nav-links a { font-size: 20px; font-family: 'Fraunces', serif; font-weight: 700; }
  .nav-cta { margin-top: 8px; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 65; opacity: 0; pointer-events: none; transition: opacity .3s; }
  .nav-backdrop.open { opacity: 1; pointer-events: auto; }
}

/* ─────────────────────────  BUTTONS  ───────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 24px; min-height: 50px;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 15.5px;
  letter-spacing: .005em; border-radius: 999px;
  cursor: pointer; border: 0; line-height: 1;
  transition: transform .2s var(--spring), box-shadow .3s, background .3s, color .2s;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  box-shadow: 0 0 0 1px rgba(255,255,255,.08) inset, 0 14px 34px -10px var(--red-glow), 0 0 50px -16px var(--red-glow);
}
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(255,255,255,.14) inset, 0 22px 48px -10px var(--red-glow), 0 0 70px -12px var(--red-glow); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  color: var(--ink);
  background: var(--glass); border: 1px solid var(--line-2);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.btn-ghost:hover { color: #fff; transform: translateY(-2px); background: var(--glass-2); border-color: var(--ink-mut); }
.btn-soon {
  color: var(--ink-mut); background: var(--glass); border: 1px solid var(--line);
  cursor: default; pointer-events: none;
}
.btn-soon .tag { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--amber-text); }
.btn .sub { display: block; font-size: 10.5px; font-weight: 700; opacity: .7; letter-spacing: .04em; margin-bottom: -2px; }
.btn .big { display: block; font-size: 16px; }
.btn--store { padding: 11px 22px 11px 18px; text-align: left; }
.btn--store .stack { line-height: 1.05; }

/* ─────────────────────────  HERO  ───────────────────────── */
.hero { position: relative; padding: 70px 0 90px; overflow: hidden; }
.hero__bg-pins { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__bg-pins .bgpin {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--red); color: var(--red);
  animation: ping 3.4s ease-out infinite;
}
.hero__bg-pins .bgpin.a { top: 18%; left: 14%; }
.hero__bg-pins .bgpin.b { top: 64%; left: 8%;  background: var(--amber); color: var(--amber); animation-delay: 1.1s; }
.hero__bg-pins .bgpin.c { top: 30%; left: 46%; animation-delay: 2.0s; }
.hero__bg-pins .bgpin.d { top: 78%; left: 38%; background: var(--amber); color: var(--amber); animation-delay: .6s; }

.hero .wide {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero__copy { position: relative; z-index: 2; }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--amber-text);
  background: rgba(245,166,35,.10); border: 1px solid rgba(245,166,35,.28);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 26px;
}
.kicker .live {
  width: 7px; height: 7px; border-radius: 50%; background: var(--mint); color: var(--mint);
  animation: ping 2.6s ease-out infinite;
}

.hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900; font-variation-settings: "opsz" 144, "SOFT" 28;
  font-size: clamp(54px, 8.2vw, 112px);
  line-height: .92; letter-spacing: -.035em; color: var(--ink);
}
.hero h1 .em {
  font-style: italic; color: var(--red-text);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  text-shadow: 0 0 38px var(--red-glow), 0 0 80px rgba(255,80,95,.25);
  position: relative;
}
.hero h1 .em::after {
  content: ""; position: absolute; left: -1%; right: -1%; bottom: .07em; height: .16em;
  background: linear-gradient(90deg, var(--amber), var(--red)); border-radius: 4px;
  opacity: .85; filter: drop-shadow(0 0 10px var(--amber-glow)); transform: skewX(-9deg);
}

.hero .lede {
  margin-top: 26px; max-width: 500px;
  font-size: 19px; line-height: 1.6; color: var(--ink-soft); font-weight: 500;
}
.hero .lede b { color: var(--ink); font-weight: 800; }

.hero__cta { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

.trust {
  margin-top: 34px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 13px; color: var(--ink-mut);
}
.trust .t { display: inline-flex; align-items: center; gap: 7px; }
.trust .t b { color: var(--ink); font-weight: 700; }
.trust .star { color: var(--amber-text); }
.trust .sep { width: 1px; height: 16px; background: var(--line-2); }

/* ─────────────────────────  PHONE MOCKUP  ───────────────────────── */
.stage { position: relative; z-index: 1; display: grid; place-items: center; min-height: 540px; }
.stage__glow {
  position: absolute; width: 90%; height: 70%; border-radius: 50%;
  background: radial-gradient(closest-side, var(--red-glow), transparent 70%);
  filter: blur(30px); opacity: .6; z-index: 0;
}

.phone {
  position: relative; z-index: 2;
  width: 290px; height: 600px; border-radius: 46px;
  background: linear-gradient(160deg, #2a2426, #131012);
  padding: 11px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,.06),
    0 0 0 11px #0a0809,
    0 0 0 12px rgba(255,255,255,.05),
    0 50px 90px -30px rgba(0,0,0,.9);
  animation: float 7s ease-in-out infinite;
}
.phone__screen {
  position: relative; width: 100%; height: 100%; border-radius: 36px; overflow: hidden;
  background: #0e0c10;
  display: flex; flex-direction: column;
}
.phone__island {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 26px; background: #000; border-radius: 999px; z-index: 6;
}

.statusbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 22px 6px; font-size: 12px; font-weight: 800; color: var(--ink);
  font-family: ui-monospace, monospace; position: relative; z-index: 5;
}
.statusbar .icons { display: inline-flex; gap: 6px; align-items: center; }
.statusbar .bars { display: inline-flex; gap: 2px; align-items: flex-end; height: 11px; }
.statusbar .bars i { width: 3px; background: var(--ink); border-radius: 1px; }
.statusbar .bars i:nth-child(1){ height: 4px; } .statusbar .bars i:nth-child(2){ height: 6px; }
.statusbar .bars i:nth-child(3){ height: 8px; } .statusbar .bars i:nth-child(4){ height: 11px; }
.statusbar .batt { width: 22px; height: 11px; border: 1.4px solid var(--ink); border-radius: 3px; position: relative; }
.statusbar .batt::after { content:""; position:absolute; inset: 1.6px; width: 70%; background: var(--mint); border-radius: 1px; }
.statusbar .batt::before { content:""; position:absolute; right: -3px; top: 3px; width: 2px; height: 4px; background: var(--ink); border-radius: 0 1px 1px 0; }

/* map screen */
.mapview { position: relative; flex: 1; background: #0b0a0d; overflow: hidden; }
.mapview__grid {
  position: absolute; inset: -20%;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 38px 38px;
  transform: perspective(420px) rotateX(34deg) scale(1.4); transform-origin: center 30%;
}
.mapview__route {
  position: absolute; top: 26%; left: -6%; width: 120%; height: 50%;
  background:
    radial-gradient(circle at 30% 40%, rgba(56,214,166,.0) 0, transparent 1px);
}
.mapview__route svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.mapview .blob {
  position: absolute; border-radius: 40% 60% 55% 45%;
  background: rgba(245,166,35,.06); filter: blur(2px);
}
.mapview .blob.b1 { width: 120px; height: 90px; top: 12%; left: -10%; }
.mapview .blob.b2 { width: 90px; height: 80px; bottom: 26%; right: -8%; background: rgba(226,55,68,.07); }

.mpin {
  position: absolute; width: 26px; height: 26px; transform: translate(-50%, -100%);
  z-index: 3;
}
.mpin i {
  position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 22px; height: 22px; border-radius: 50% 50% 50% 0; rotate: 45deg;
  background: var(--red); box-shadow: 0 6px 12px -3px rgba(0,0,0,.6), 0 0 0 3px rgba(226,55,68,.18);
  display: grid; place-items: center;
}
.mpin i::after { content: ""; width: 7px; height: 7px; background: #fff; border-radius: 50%; rotate: -45deg; }
.mpin.amber i { background: var(--amber); box-shadow: 0 6px 12px -3px rgba(0,0,0,.6), 0 0 0 3px rgba(245,166,35,.2); }
.mpin .ring { position: absolute; left: 50%; top: 6px; width: 12px; height: 12px; border-radius: 50%; transform: translate(-50%,-50%); background: var(--red); color: var(--red); animation: ping 3s ease-out infinite; }
.mpin.amber .ring { background: var(--amber); color: var(--amber); }
.mpin.p1 { top: 32%; left: 30%; } .mpin.p2 { top: 24%; left: 66%; } .mpin.p3 { top: 50%; left: 50%; }
.mpin.p2 .ring { animation-delay: 1s; } .mpin.p3 .ring { animation-delay: 1.8s; }
.me-dot {
  position: absolute; top: 62%; left: 40%; width: 16px; height: 16px; border-radius: 50%;
  background: var(--violet); border: 3px solid #fff; box-shadow: 0 0 0 6px rgba(155,140,255,.22); z-index: 2;
}

.search-pill {
  position: absolute; top: 14px; left: 14px; right: 14px; z-index: 4;
  display: flex; align-items: center; gap: 9px;
  background: rgba(20,17,19,.82); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 14px; padding: 11px 13px;
  font-size: 12.5px; color: var(--ink-soft); font-weight: 600;
  box-shadow: 0 10px 24px -12px rgba(0,0,0,.8);
}
.search-pill svg { width: 15px; height: 15px; color: var(--ink-mut); flex: none; }

/* venue bottom sheet */
.sheet {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 5;
  background: linear-gradient(180deg, rgba(28,23,25,.92), rgba(18,15,17,.97));
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-2);
  border-radius: 22px 22px 0 0; padding: 12px 16px 18px;
  box-shadow: 0 -20px 40px -20px rgba(0,0,0,.7);
}
.sheet .grab { width: 38px; height: 4px; border-radius: 4px; background: var(--line-2); margin: 0 auto 12px; }
.sheet__row { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.sheet h4 { font-family: 'Fraunces', serif; font-weight: 800; font-size: 18px; letter-spacing: -.01em; color: var(--ink); font-variation-settings:"opsz" 144; }
.sheet .cat { font-size: 11.5px; color: var(--ink-mut); margin-top: 1px; }
.sheet .lvl { font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  color: var(--amber-text); background: rgba(245,166,35,.12); border: 1px solid rgba(245,166,35,.3);
  padding: 4px 8px; border-radius: 999px; white-space: nowrap; flex: none; }
.sheet .meta-mini { display: flex; gap: 12px; margin: 10px 0 12px; font-family: ui-monospace, monospace; font-size: 11px; color: var(--ink-soft); }
.sheet .meta-mini b { color: var(--ink); }
.axes { display: grid; gap: 7px; }
.axis { display: grid; grid-template-columns: 58px 1fr 26px; align-items: center; gap: 8px; font-size: 10.5px; color: var(--ink-mut); }
.axis .bar { height: 6px; border-radius: 4px; background: rgba(255,255,255,.08); overflow: hidden; }
.axis .bar span { display: block; height: 100%; border-radius: 4px; }
.axis .v { font-family: ui-monospace, monospace; color: var(--ink); font-weight: 700; text-align: right; }
.axis.lez .bar span { width: 92%; background: linear-gradient(90deg, var(--amber), var(--red)); }
.axis.fiy .bar span { width: 84%; background: linear-gradient(90deg, var(--mint), var(--amber)); }
.axis.ort .bar span { width: 76%; background: linear-gradient(90deg, var(--violet), var(--red)); }

/* floating glass cards around the phone */
.float-card {
  position: absolute; z-index: 4;
  background: rgba(22,19,21,.72); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid var(--line-2); border-radius: 18px; padding: 13px;
  box-shadow: var(--shadow-lift);
  width: 210px;
}
.float-card.fc-feed  { top: 4%;  left: -12%; transform: rotate(-5deg); animation: float 8s ease-in-out infinite .4s; }
.float-card.fc-event { bottom: 6%; right: -14%; transform: rotate(4deg);  animation: float 9s ease-in-out infinite 1.2s; width: 224px; }
.float-card.fc-rate  { top: 40%; right: -20%; transform: rotate(6deg);   animation: float 7.5s ease-in-out infinite .8s; width: auto; padding: 9px 14px; }

.fc-head { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; }
.avatar { width: 28px; height: 28px; border-radius: 50%; flex: none; display: grid; place-items: center; font-size: 13px; font-weight: 800; color: #fff; }
.avatar.a1 { background: linear-gradient(135deg, var(--red), var(--amber)); }
.avatar.a2 { background: linear-gradient(135deg, var(--violet), var(--red)); }
.avatar.a3 { background: linear-gradient(135deg, var(--mint), #2a8); color:#06231b; }
.fc-head .who { font-size: 12px; font-weight: 800; color: var(--ink); line-height: 1.1; }
.fc-head .sub { font-size: 10.5px; color: var(--ink-mut); }
.fc-photo { height: 70px; border-radius: 11px; margin-bottom: 9px; background:
  linear-gradient(135deg, #3a2418, #6a2b22 55%, #2a1a10), radial-gradient(circle at 70% 30%, rgba(245,166,35,.4), transparent 50%);
  position: relative; overflow: hidden; }
.fc-photo::after { content: "🌯"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 30px; filter: drop-shadow(0 4px 8px rgba(0,0,0,.4)); }
.fc-cap { font-size: 12px; color: var(--ink-soft); line-height: 1.4; }
.fc-foot { display: flex; align-items: center; gap: 12px; margin-top: 9px; font-family: ui-monospace, monospace; font-size: 11px; color: var(--ink-mut); }
.fc-foot .lk { color: var(--red-text); }
/* tiny like/comment metric icons (replaces ♥ / 💬 glyphs) */
.m-ic { width: 12px; height: 12px; flex: none; display: inline-block; vertical-align: -1.5px; margin-right: 4px; }

.fc-event .ev-when { font-family: ui-monospace, monospace; font-size: 10.5px; letter-spacing:.06em; text-transform: uppercase; color: var(--amber-text); margin-bottom: 4px; }
.fc-event h5 { font-family: 'Fraunces', serif; font-weight: 800; font-size: 15px; color: var(--ink); line-height: 1.15; font-variation-settings:"opsz" 144; }
.fc-event .stack-av { display: flex; margin-top: 10px; align-items: center; }
.fc-event .stack-av .avatar { width: 24px; height: 24px; margin-left: -7px; border: 2px solid #161315; font-size: 10px; }
.fc-event .stack-av .avatar:first-child { margin-left: 0; }
.fc-event .stack-av .more { font-size: 11px; color: var(--ink-soft); font-weight: 700; margin-left: 9px; }

.fc-rate { display: flex; align-items: center; gap: 9px; }
.fc-rate .big { font-family: 'Fraunces', serif; font-weight: 900; font-size: 26px; color: var(--ink); line-height: 1; font-variation-settings:"opsz" 144; }
.fc-rate .lab { font-size: 10.5px; color: var(--ink-mut); line-height: 1.2; }
.fc-rate .lab b { display:block; color: var(--amber-text); font-size: 12px; }

/* ─────────────────────────  DISTRICT MARQUEE band  ───────────────────────── */
/* (kept as the single continuous marquee — community wall is static) */

/* ─────────────────────────  STATS BAND  ───────────────────────── */
.stats {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.015);
}
.stats .wide { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 34px 22px; text-align: center; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat .n {
  font-family: 'Fraunces', serif; font-weight: 900; font-variation-settings:"opsz" 144, "SOFT" 40;
  font-size: clamp(34px, 5vw, 52px); line-height: 1; letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--ink) 30%, var(--amber-text));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat .l { margin-top: 8px; font-size: 13px; color: var(--ink-mut); font-weight: 600; }
@media (max-width: 720px) {
  .stats .wide { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: 0; }
  .stat { border-top: 1px solid var(--line); }
  .stat:nth-child(1), .stat:nth-child(2) { border-top: 0; }
}

/* ─────────────────────────  SECTIONS scaffolding  ───────────────────────── */
.section { padding: 96px 0; position: relative; }
.section-head { max-width: 660px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", monospace;
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red-text); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--red-text); display: inline-block; }
.section-title {
  font-family: 'Fraunces', serif; font-weight: 900; font-variation-settings:"opsz" 144, "SOFT" 30;
  font-size: clamp(32px, 5vw, 56px); line-height: 1.02; letter-spacing: -.03em; color: var(--ink);
}
.section-title .em { font-style: italic; color: var(--red-text); font-variation-settings:"opsz" 144,"SOFT" 100; }
.section-sub { margin-top: 18px; font-size: 18px; color: var(--ink-soft); line-height: 1.6; }

/* ─────────────────────────  BENTO FEATURES  ───────────────────────── */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.feature {
  position: relative; overflow: hidden;
  background: var(--glass); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  transition: transform .35s var(--ease), border-color .35s, background .35s, box-shadow .35s;
}
.feature::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .4s;
  background: radial-gradient(60% 60% at 80% 0%, rgba(226,55,68,.16), transparent 70%);
}
.feature:hover { transform: translateY(-5px); border-color: var(--line-2); background: var(--glass-2); box-shadow: var(--shadow-lift); }
.feature:hover::before { opacity: 1; }
.feature.lg { grid-column: span 3; grid-row: span 2; }
.feature.sm { grid-column: span 3; }
@media (min-width: 861px) {
  .feature.lg { grid-column: span 3; }
}

.feature .ico {
  display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 14px;
  font-size: 24px; margin-bottom: 18px; position: relative; z-index: 1;
  background: rgba(255,255,255,.05); border: 1px solid var(--line-2);
}
.feature .ico svg { width: 26px; height: 26px; color: var(--ink-soft); }
.feature.lg .ico svg { color: var(--red-text); }
.feature h3 {
  position: relative; z-index: 1;
  font-family: 'Fraunces', serif; font-weight: 800; font-variation-settings:"opsz" 144;
  font-size: 24px; letter-spacing: -.015em; color: var(--ink); margin-bottom: 9px; line-height: 1.12;
}
.feature p { position: relative; z-index: 1; font-size: 15px; color: var(--ink-soft); line-height: 1.6; }
.feature .tags { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.feature .pill {
  font-family: ui-monospace, monospace; font-size: 11px; color: var(--ink-soft);
  background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 999px; padding: 5px 11px;
}

/* big feature gets the inline mini-map visual */
.feature.lg .ico { background: rgba(226,55,68,.12); border-color: rgba(226,55,68,.3); }
.minimap {
  position: relative; z-index: 1; margin-top: 22px; height: 190px; border-radius: 14px; overflow: hidden;
  background: #0b0a0d; border: 1px solid var(--line);
}
.minimap .g { position: absolute; inset: -20%;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 30px 30px; transform: perspective(360px) rotateX(40deg) scale(1.5); transform-origin: center 20%; }
.minimap .mpin { transform: translate(-50%,-100%) scale(.85); }

/* axis bars in showcase */
.rating-show { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.rating-card {
  background: var(--glass); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow);
}
.rating-card .v-name { font-family:'Fraunces',serif; font-weight:800; font-size: 22px; color: var(--ink); font-variation-settings:"opsz" 144; }
.rating-card .v-cat { font-size: 13px; color: var(--ink-mut); margin-bottom: 22px; }
.big-axis { margin-bottom: 20px; }
.big-axis .top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.big-axis .nm { font-weight: 800; color: var(--ink); font-size: 15px; }
.big-axis .nm span { color: var(--ink-mut); font-weight: 600; font-size: 12.5px; }
.big-axis .sc { font-family:'Fraunces',serif; font-weight: 900; font-size: 22px; color: var(--ink); font-variation-settings:"opsz" 144; }
.big-axis .track { height: 10px; border-radius: 6px; background: rgba(255,255,255,.07); overflow: hidden; }
.big-axis .fill { display: block; height: 100%; border-radius: 6px; width: 0; transition: width 1.1s var(--ease); }
.rating-card.in .lz .fill { width: 94%; }
.rating-card.in .fp .fill { width: 86%; }
.rating-card.in .or .fill { width: 78%; }
.big-axis.lz .fill { background: linear-gradient(90deg, var(--amber), var(--red)); }
.big-axis.fp .fill { background: linear-gradient(90deg, var(--mint), var(--amber)); }
.big-axis.or .fill { background: linear-gradient(90deg, var(--violet), var(--red-text)); }

/* ─────────────────────────  HOW IT WORKS  ───────────────────────── */
.flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.flow::before {
  content: ""; position: absolute; top: 34px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-2) 0 8px, transparent 8px 16px);
}
.step { position: relative; text-align: center; padding: 0 8px; }
.step .k {
  width: 68px; height: 68px; margin: 0 auto 22px; border-radius: 50%;
  display: grid; place-items: center; position: relative; z-index: 1;
  background: var(--bg-2); border: 1px solid var(--line-2);
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 900; font-size: 30px;
  color: var(--red-text); font-variation-settings:"opsz" 144, "SOFT" 100;
  box-shadow: 0 0 30px -8px var(--red-glow);
}
.step h3 { font-family:'Fraunces',serif; font-weight: 800; font-size: 21px; color: var(--ink); margin-bottom: 8px; font-variation-settings:"opsz" 144; }
.step p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; max-width: 280px; margin: 0 auto; }
@media (max-width: 720px) { .flow { grid-template-columns: 1fr; gap: 40px; } .flow::before { display: none; } }

/* ─────────────────────────  COMMUNITY WALL (static)  ───────────────────────── */
.wall { columns: 3; column-gap: 20px; }
.post {
  break-inside: avoid; margin-bottom: 20px; display: block;
  background: var(--glass); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.post:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--glass-2); }
.post .ph { display: flex; align-items: center; gap: 10px; margin-bottom: 13px; }
.post .ph .who { font-size: 13.5px; font-weight: 800; color: var(--ink); line-height: 1.1; }
.post .ph .sub { font-size: 11.5px; color: var(--ink-mut); }
.post .bd { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.post .bd b { color: var(--ink); }
.post .ft { display: flex; gap: 14px; margin-top: 14px; font-family: ui-monospace, monospace; font-size: 11.5px; color: var(--ink-mut); }
.post .ft .lk { color: var(--red-text); }
.post .chip { display: inline-block; font-family: ui-monospace, monospace; font-size: 11px; color: var(--amber-text);
  background: rgba(245,166,35,.1); border: 1px solid rgba(245,166,35,.25); border-radius: 999px; padding: 3px 10px; margin-bottom: 12px; }
@media (max-width: 900px) { .wall { columns: 2; } }
@media (max-width: 600px) { .wall { columns: 1; } }

/* ─────────────────────────  FAQ  ───────────────────────── */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--glass); margin-bottom: 14px; overflow: hidden;
  transition: border-color .3s, background .3s;
}
.faq details[open] { border-color: var(--line-2); background: var(--glass-2); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 19px; color: var(--ink);
  font-variation-settings:"opsz" 144;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ic { width: 26px; height: 26px; flex: none; position: relative; }
.faq summary .ic::before, .faq summary .ic::after {
  content: ""; position: absolute; background: var(--red-text); border-radius: 2px; transition: transform .3s var(--ease);
}
.faq summary .ic::before { top: 12px; left: 4px; right: 4px; height: 2px; }
.faq summary .ic::after  { left: 12px; top: 4px; bottom: 4px; width: 2px; }
.faq details[open] summary .ic::after { transform: scaleY(0); }
.faq .ans { padding: 0 24px 22px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; }
.faq .ans a { font-weight: 700; }

/* ─────────────────────────  FINAL CTA  ───────────────────────── */
.cta-final { padding: 30px 0 110px; }
.cta-card {
  position: relative; overflow: hidden; text-align: center;
  border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  padding: 72px 32px;
  background:
    radial-gradient(70% 120% at 50% -10%, rgba(226,55,68,.28), transparent 60%),
    radial-gradient(60% 120% at 100% 110%, rgba(245,166,35,.18), transparent 60%),
    var(--elev);
  box-shadow: var(--shadow-lift);
}
.cta-card .bgpins { position: absolute; inset: 0; pointer-events: none; opacity: .5; }
.cta-card h2 {
  font-family: 'Fraunces', serif; font-weight: 900; font-variation-settings:"opsz" 144,"SOFT" 30;
  font-size: clamp(38px, 6vw, 76px); line-height: .98; letter-spacing: -.035em; color: var(--ink);
  position: relative;
}
.cta-card h2 .em { font-style: italic; color: var(--red-text); text-shadow: 0 0 40px var(--red-glow); font-variation-settings:"opsz" 144,"SOFT" 100; }
.cta-card p { position: relative; margin: 20px auto 34px; max-width: 480px; font-size: 18px; color: var(--ink-soft); }
.cta-card .actions { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────  FOOTER (colophon)  ───────────────────────── */
.colophon {
  background: var(--bg-2); border-top: 1px solid var(--line);
  padding: 56px 0 40px; position: relative;
}
.colophon::before {
  content: ""; display: block; height: 1px; margin: 0 24px 44px; max-width: var(--wide);
  margin-inline: auto;
  background: repeating-linear-gradient(90deg, var(--line-2) 0 6px, transparent 6px 14px);
}
.colophon .wide { display: grid; gap: 30px; grid-template-columns: 1.4fr 1fr 1fr; align-items: start; }
.colophon h4 { font-family:'Fraunces',serif; font-weight: 800; font-size: 28px; letter-spacing: -.02em; color: var(--ink); font-variation-settings:"opsz" 144; }
.colophon h4 .em { font-style: italic; color: var(--amber-text); }
.colophon p { font-size: 14px; color: var(--ink-mut); margin-top: 8px; max-width: 320px; }
.colophon .brand-col .mark-row { display:flex; align-items:center; gap:10px; margin-bottom: 14px; }
.colophon .brand-col .brand__mark { width: 30px; height: 30px; }
.col-h { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 16px; }
.colophon nav { display: flex; flex-direction: column; gap: 12px; }
.colophon nav a { color: var(--ink-soft); font-size: 14.5px; font-weight: 600; width: fit-content; }
.colophon nav a:hover { color: #fff; }
.colophon .legal {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: ui-monospace, monospace; font-size: 12px; color: var(--ink-dim);
}
@media (max-width: 760px) { .colophon .wide { grid-template-columns: 1fr 1fr; } .colophon .brand-col { grid-column: 1 / -1; } }

/* ─────────────────────────  LEGAL ARTICLE (reskin)  ───────────────────────── */
.article { padding: 60px 0 100px; }
.article .container { max-width: var(--col); }
.article .crumb {
  font-family: ui-monospace, monospace; font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red-text); margin-bottom: 16px;
}
.article h1 {
  font-family: 'Fraunces', serif; font-weight: 900; font-variation-settings:"opsz" 144,"SOFT" 30;
  font-size: clamp(40px, 7vw, 72px); line-height: 1.0; letter-spacing: -.035em; color: var(--ink); margin-bottom: 14px;
}
.article h1 .em { font-style: italic; color: var(--red-text); text-shadow: 0 0 36px var(--red-glow); font-variation-settings:"opsz" 144,"SOFT" 100; }
.article .meta {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-family: ui-monospace, monospace; font-size: 12.5px; color: var(--ink-mut);
  letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 34px; padding-bottom: 22px; border-bottom: 1px solid var(--line);
}
.article .meta .dot { color: var(--red-text); }
.article .lede {
  font-family: 'Fraunces', serif; font-weight: 500; font-variation-settings:"opsz" 36;
  font-size: clamp(19px, 2.4vw, 23px); line-height: 1.55; color: var(--ink); max-width: 660px;
  margin-bottom: 48px; padding-left: 20px; border-left: 3px solid var(--red);
}

.section-block { display: grid; grid-template-columns: 76px 1fr; gap: 24px; padding: 28px 0; border-top: 1px solid var(--line); }
.section-block:first-of-type { border-top: 0; padding-top: 8px; }
.section-block .numeral {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 900; font-variation-settings:"opsz" 144,"SOFT" 60;
  font-size: 50px; line-height: 1; letter-spacing: -.04em;
  color: transparent; -webkit-text-stroke: 1.5px var(--red); text-stroke: 1.5px var(--red);
  opacity: .9;
}
.section-block h2 {
  font-family: 'Fraunces', serif; font-weight: 800; font-variation-settings:"opsz" 144;
  font-size: 23px; letter-spacing: -.015em; line-height: 1.2; color: var(--ink); margin-bottom: 12px;
}
.section-block p, .section-block li { font-size: 16px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 8px; }
.section-block ul, .section-block ol { padding-left: 20px; margin: 8px 0 14px; }
.section-block strong { color: var(--ink); font-weight: 800; }
.section-block code {
  font-family: ui-monospace, monospace; font-size: 13px; color: var(--amber-text);
  background: rgba(245,166,35,.1); border: 1px solid rgba(245,166,35,.22); border-radius: 6px; padding: 1px 6px;
}
@media (max-width: 720px) { .section-block { grid-template-columns: 1fr; gap: 8px; } .section-block .numeral { font-size: 40px; } }

.notice {
  background: rgba(245,166,35,.1); border: 1px solid rgba(245,166,35,.28); border-left: 3px solid var(--amber);
  padding: 14px 18px; border-radius: var(--radius-sm);
  font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin: 14px 0;
}
.notice strong { color: var(--amber-text); }

.steps { counter-reset: step; list-style: none; padding: 0; margin: 10px 0 14px; }
.steps li { counter-increment: step; position: relative; padding-left: 42px; margin-bottom: 12px; font-size: 16px; line-height: 1.6; color: var(--ink-soft); }
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: -1px;
  width: 28px; height: 28px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--red), var(--red-deep)); color: #fff;
  font-family: 'Fraunces', serif; font-weight: 800; font-size: 14px; font-variation-settings:"opsz" 144;
  border-radius: 50%; box-shadow: 0 0 18px -4px var(--red-glow);
}
.steps-list { counter-reset: stp; list-style: none; padding: 0; margin: 14px 0; }

/* ─────────────────────────  404  ───────────────────────── */
.error-page { min-height: 62vh; display: grid; place-items: center; text-align: center; padding: 70px 24px; }
.error-page h1 {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 900; font-variation-settings:"opsz" 144,"SOFT" 100;
  font-size: clamp(96px, 16vw, 200px); line-height: .9; color: var(--red-text);
  text-shadow: 0 0 60px var(--red-glow);
}
.error-page p { font-size: 18px; color: var(--ink-soft); max-width: 400px; margin: 14px auto 30px; }

/* ─────────────────────────  ANIMATIONS  ───────────────────────── */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes float { 0%,100% { transform: translateY(0) rotate(var(--r,0deg)); } 50% { transform: translateY(-12px) rotate(var(--r,0deg)); } }
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 currentColor; opacity: .9; }
  70%  { box-shadow: 0 0 0 16px transparent; opacity: 0; }
  100% { box-shadow: 0 0 0 0 transparent; opacity: 0; }
}
/* ping uses currentColor for ring expansion; restate per element via background where needed */
.bgpin, .mpin .ring, .kicker .live { will-change: box-shadow, opacity; }

/* float cards keep their rotation while floating */
.float-card.fc-feed  { --r: -5deg; }
.float-card.fc-event { --r: 4deg; }
.float-card.fc-rate  { --r: 6deg; }
.phone { --r: 0deg; }

/* ─────────────────────────  RESPONSIVE  ───────────────────────── */
@media (max-width: 980px) {
  .hero .wide { grid-template-columns: 1fr; gap: 24px; }
  .stage { min-height: 0; margin-top: 20px; transform: scale(.95); }
  .float-card.fc-event { right: -4%; }
  .float-card.fc-rate  { right: -6%; }
  .float-card.fc-feed  { left: -4%; }
  .rating-show { grid-template-columns: 1fr; gap: 28px; }
  .bento { grid-template-columns: 1fr 1fr; }
  .feature.lg, .feature.sm { grid-column: span 1; }
}
@media (max-width: 600px) {
  .hero { padding: 44px 0 60px; }
  .section { padding: 70px 0; }
  .bento { grid-template-columns: 1fr; }
  .trust { gap: 14px; }
  .trust .sep { display: none; }
  .float-card.fc-rate { display: none; }
  .stage { transform: scale(.9); }
}

/* ─────────────────────────  REDUCED MOTION  ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .ticker__track { animation: none; transform: none; }
  .phone, .float-card { animation: none; }
  .rating-card .fill { transition: none; }
}
