/*
  Öğrenci Nerede Yer? · "Lokanta Kağıdı" (Eatery Paper)
  =====================================================================
  Aesthetic: the app itself, printed. Warm cream paper like the in-app
  canvas, ink-red Fraunces headlines, amber highlighter swipes, ruled
  menu lines, monospace receipt type, real food photography, rubber
  stamps. Daylight, appetite, student energy. Not another dark SaaS.

  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,
  .issue-line, .error-page) and reskin automatically through tokens.
*/

/* =====================  TOKENS  ===================== */
:root {
  /* paper surfaces: warm cream, mirrors src/lib/constants.ts */
  --bg:          #FDFBF8;
  --bg-2:        #F6F3EF;
  --card:        #FFFFFF;
  --elev:        #FFFFFF;
  --tint:        rgba(28, 25, 23, 0.035);
  --tint-2:      rgba(28, 25, 23, 0.06);
  --line:        #E9E4DC;
  --line-2:      #D9D1C6;

  /* ink: warm stone */
  --ink:         #1C1917;
  --ink-soft:    #57534E;
  --ink-mut:     #7C7670;
  --ink-dim:     #A8A29E;

  /* brand red: split into fill vs AA-safe text on cream */
  --red:         #E23744;
  --red-text:    #C62828;
  --red-deep:    #B8252F;
  --red-soft:    #FFF0F0;
  --red-glow:    rgba(226, 55, 68, 0.30);

  /* brand amber: split likewise */
  --amber:       #F5A623;
  --amber-text:  #9A6800;
  --amber-deep:  #D4900E;
  --amber-soft:  #FEF6E7;
  --amber-glow:  rgba(245, 166, 35, 0.35);

  /* support */
  --mint:        #16A34A;
  --violet:      #7C6FE0;

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

  --shadow:      0 1px 2px rgba(28,25,23,.05), 0 14px 38px -16px rgba(28,25,23,.16);
  --shadow-lift: 0 2px 4px rgba(28,25,23,.05), 0 28px 60px -22px rgba(28,25,23,.24);

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

  --mono:        ui-monospace, "SF Mono", "JetBrains Mono", "Menlo", monospace;
}

* { 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: warm appetite tints bleeding from the corners */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(55vw 44vw at 6% -8%,  rgba(226,55,68,.07), transparent 62%),
    radial-gradient(50vw 44vw at 104% 4%, rgba(245,166,35,.10), transparent 58%),
    radial-gradient(64vw 52vw at 82% 108%, rgba(226,55,68,.05), transparent 60%),
    var(--bg);
}
/* faint street-grid dots, like the map */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(28,25,23,.055) 1px, transparent 1.4px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(120vw 100vh at 50% 28%, #000 25%, transparent 76%);
          mask-image: radial-gradient(120vw 100vh at 50% 28%, #000 25%, transparent 76%);
}

/* Paper grain, above the tints, below content */
.grain {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; opacity: .05; mix-blend-mode: multiply;
  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: var(--ink); }

:focus-visible {
  outline: 2px solid var(--red);
  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: var(--mono);
  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 (top strip)  ===================== */
.ticker {
  position: relative; z-index: 2;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  overflow: hidden;
  font-family: var(--mono);
  font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(253,251,248,.72);
}
.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); }
.ticker:hover .ticker__track { animation-play-state: paused; }

/* thin strip for legal pages */
.issue-line {
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  color: rgba(253,251,248,.72);
  font-family: var(--mono);
  font-size: 11.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  padding: 9px 0; text-align: center;
}
.issue-line .dot { color: var(--amber); }

/* =====================  NAVBAR (masthead)  ===================== */
.masthead {
  position: sticky; top: 0; z-index: 60;
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.masthead.scrolled {
  border-bottom-color: var(--line);
  background: rgba(253,251,248,.82);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
          backdrop-filter: saturate(160%) blur(16px);
}
/* Legal/404 pages have no scroll JS, so their masthead always carries the backing */
.masthead:not(#nav) {
  border-bottom-color: var(--line);
  background: rgba(253,251,248,.88);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
          backdrop-filter: saturate(160%) blur(16px);
}
.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: var(--ink); }
.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 3px 10px var(--red-glow));
}
.brand-logo {
  width: 32px; height: 32px; flex: none; display: block; object-fit: contain;
  filter: drop-shadow(0 3px 10px var(--red-glow));
}
.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); border-radius: 2px; transition: width .28s var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: var(--ink); }
.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;
  transition: transform .2s var(--spring), box-shadow .25s, background .25s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 22px -8px rgba(28,25,23,.45); }

.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); 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(28,25,23,.35); }
  .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(28,25,23,.4); 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 1px 0 rgba(255,255,255,.18) inset, 0 14px 30px -10px var(--red-glow), 0 3px 8px -2px rgba(184,37,47,.35);
}
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,.22) inset, 0 22px 44px -12px rgba(226,55,68,.5), 0 4px 10px -2px rgba(184,37,47,.4); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  color: var(--ink);
  background: var(--card); border: 1px solid var(--line-2);
  box-shadow: 0 1px 2px rgba(28,25,23,.04);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--ink-dim); box-shadow: var(--shadow); }
.btn-soon {
  color: var(--ink-mut); background: var(--bg-2); 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: .75; 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: 72px 0 96px; overflow: hidden; }
.hero__bg-pins { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__bg-pins .bgpin {
  position: absolute; width: 9px; height: 9px; border-radius: 50%;
  background: var(--red); color: var(--red);
  animation: ping 3.4s ease-out infinite;
}
.hero__bg-pins .bgpin.a { top: 16%; left: 12%; }
.hero__bg-pins .bgpin.b { top: 66%; left: 7%;  background: var(--amber); color: var(--amber); animation-delay: 1.1s; }
.hero__bg-pins .bgpin.c { top: 26%; left: 47%; animation-delay: 2.0s; }
.hero__bg-pins .bgpin.d { top: 80%; left: 36%; 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: var(--mono);
  font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--red-text);
  background: var(--red-soft); border: 1px solid rgba(226,55,68,.25);
  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, 114px);
  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;
  position: relative; z-index: 1; white-space: nowrap;
}
/* amber highlighter swipe behind the words, like a marker on paper */
.hero h1 .em::before {
  content: ""; position: absolute; z-index: -1;
  left: -.06em; right: -.08em; bottom: .02em; height: .46em;
  background: linear-gradient(92deg, rgba(245,166,35,.55), rgba(245,166,35,.32) 85%);
  border-radius: .08em .22em .1em .26em;
  transform: skewX(-9deg) rotate(-1deg);
}

.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: var(--mono);
  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-deep); }
.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: 560px; }
.stage__glow {
  position: absolute; width: 88%; height: 66%; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(245,166,35,.30), rgba(226,55,68,.12) 60%, transparent 75%);
  filter: blur(34px); opacity: .8; z-index: 0;
}

.phone {
  position: relative; z-index: 2;
  width: 292px; height: 604px; border-radius: 46px;
  background: linear-gradient(160deg, #3a3433, #181514);
  padding: 11px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,.35) inset,
    0 0 0 11px #14110f,
    0 0 0 12px rgba(28,25,23,.12),
    0 50px 90px -28px rgba(28,25,23,.45);
  animation: float 7s ease-in-out infinite;
}
.phone__screen {
  position: relative; width: 100%; height: 100%; border-radius: 36px; overflow: hidden;
  background: #F1ECE3;
  display: flex; flex-direction: column;
}
.phone__island {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 26px; background: #0c0a09; 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: var(--mono); 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; }

/* daylight map screen, like the real app on iOS */
.mapview { position: relative; flex: 1; background: #EFEAE0; overflow: hidden; }
.mapview__grid {
  position: absolute; inset: -20%;
  background-image:
    linear-gradient(rgba(255,255,255,.85) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255,255,255,.85) 2px, transparent 2px);
  background-size: 44px 44px;
  transform: perspective(420px) rotateX(32deg) scale(1.4); transform-origin: center 30%;
}
.mapview .blob {
  position: absolute; border-radius: 40% 60% 55% 45%;
  background: rgba(120,180,120,.20); filter: blur(2px);
}
.mapview .blob.b1 { width: 120px; height: 90px; top: 11%; left: -10%; }
.mapview .blob.b2 { width: 100px; height: 86px; bottom: 28%; right: -8%; background: rgba(140,190,235,.28); border-radius: 60% 40% 45% 55%; }

.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(28,25,23,.4), 0 0 0 3px rgba(255,255,255,.9);
  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); }
.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(124,111,224,.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(255,255,255,.92);
  border: 1px solid rgba(28,25,23,.08); border-radius: 14px; padding: 11px 13px;
  font-size: 12.5px; color: var(--ink-soft); font-weight: 700;
  box-shadow: 0 10px 24px -12px rgba(28,25,23,.35);
}
.search-pill svg { width: 15px; height: 15px; color: var(--ink-mut); flex: none; }

/* venue bottom sheet, white like the real app */
.sheet {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 5;
  background: rgba(255,255,255,.97);
  border-top: 1px solid var(--line);
  border-radius: 22px 22px 0 0; padding: 12px 16px 18px;
  box-shadow: 0 -20px 40px -20px rgba(28,25,23,.3);
}
.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: var(--amber-soft); border: 1px solid rgba(245,166,35,.4);
  padding: 4px 8px; border-radius: 999px; white-space: nowrap; flex: none; }
.sheet .meta-mini { display: flex; gap: 12px; margin: 10px 0 12px; font-family: var(--mono); 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); font-weight: 700; }
.axis .bar { height: 6px; border-radius: 4px; background: var(--bg-2); overflow: hidden; }
.axis .bar span { display: block; height: 100%; border-radius: 4px; }
.axis .v { font-family: var(--mono); 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, #4ADE80, var(--amber)); }
.axis.ort .bar span { width: 76%; background: linear-gradient(90deg, var(--violet), var(--red)); }

/* floating cards around the phone: white, like in-app cards */
.float-card {
  position: absolute; z-index: 4;
  background: var(--card);
  border: 1px solid var(--line); border-radius: 18px; padding: 13px;
  box-shadow: var(--shadow-lift);
  width: 212px;
}
.float-card.fc-feed  { top: 3%;  left: -13%; transform: rotate(-5deg); animation: float 8s ease-in-out infinite .4s; }
.float-card.fc-event { bottom: 5%; right: -14%; transform: rotate(4deg);  animation: float 9s ease-in-out infinite 1.2s; width: 226px; }
.float-card.fc-rate  { top: 39%; 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, #2BB68B, #16805f); }
.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: 84px; border-radius: 11px; margin-bottom: 9px;
  background-color: var(--bg-2);
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.fc-cap { font-size: 12px; color: var(--ink-soft); line-height: 1.4; font-weight: 600; }
.fc-foot { display: flex; align-items: center; gap: 12px; margin-top: 9px; font-family: var(--mono); font-size: 11px; color: var(--ink-mut); }
.fc-foot .lk { color: var(--red-text); }
.m-ic { width: 12px; height: 12px; flex: none; display: inline-block; vertical-align: -1.5px; margin-right: 4px; }

.fc-event .ev-when { font-family: var(--mono); 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 #fff; 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; font-weight: 700; }
.fc-rate .lab b { display:block; color: var(--amber-text); font-size: 12px; }

/* =====================  SECTION SCAFFOLDING  ===================== */
.section { padding: 100px 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: var(--mono);
  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); 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;
  position: relative; z-index: 1;
}
.section-title .em::before {
  content: ""; position: absolute; z-index: -1;
  left: -.04em; right: -.06em; bottom: .03em; height: .42em;
  background: linear-gradient(92deg, rgba(245,166,35,.42), rgba(245,166,35,.22) 85%);
  border-radius: .08em .2em .1em .24em;
  transform: skewX(-9deg) rotate(-1deg);
}
.section-sub { margin-top: 18px; font-size: 18px; color: var(--ink-soft); line-height: 1.6; }
.section-sub b { color: var(--ink); }

/* =====================  THE RECEIPT (Hesap ortada)  ===================== */
.hesap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.hesap__copy .trust { margin-top: 28px; }

.receipt-wrap { position: relative; display: grid; place-items: center; padding: 16px 0; }
.receipt {
  position: relative; width: min(380px, 100%);
  background: #FFFEFB;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12.5px; line-height: 1.5; letter-spacing: .01em;
  padding: 30px 26px 34px;
  transform: rotate(-1.4deg);
  box-shadow: 0 1px 2px rgba(28,25,23,.08), 0 24px 50px -18px rgba(28,25,23,.28);
  /* torn sawtooth edges, top and bottom */
  --tooth: 12px;
  clip-path: polygon(
    0 8px, 3% 0, 6% 8px, 9% 0, 12% 8px, 15% 0, 18% 8px, 21% 0, 24% 8px, 27% 0,
    30% 8px, 33% 0, 36% 8px, 39% 0, 42% 8px, 45% 0, 48% 8px, 51% 0, 54% 8px, 57% 0,
    60% 8px, 63% 0, 66% 8px, 69% 0, 72% 8px, 75% 0, 78% 8px, 81% 0, 84% 8px, 87% 0,
    90% 8px, 93% 0, 96% 8px, 100% 0,
    100% calc(100% - 8px), 97% 100%, 94% calc(100% - 8px), 91% 100%, 88% calc(100% - 8px), 85% 100%,
    82% calc(100% - 8px), 79% 100%, 76% calc(100% - 8px), 73% 100%, 70% calc(100% - 8px), 67% 100%,
    64% calc(100% - 8px), 61% 100%, 58% calc(100% - 8px), 55% 100%, 52% calc(100% - 8px), 49% 100%,
    46% calc(100% - 8px), 43% 100%, 40% calc(100% - 8px), 37% 100%, 34% calc(100% - 8px), 31% 100%,
    28% calc(100% - 8px), 25% 100%, 22% calc(100% - 8px), 19% 100%, 16% calc(100% - 8px), 13% 100%,
    10% calc(100% - 8px), 7% 100%, 4% calc(100% - 8px), 1% 100%, 0 calc(100% - 8px)
  );
}
.receipt .r-brand {
  text-align: center; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  font-size: 13px; margin-bottom: 2px;
}
.receipt .r-sub { text-align: center; color: var(--ink-mut); font-size: 11px; margin-bottom: 14px; }
.receipt .r-rule { border: 0; border-top: 1.5px dashed var(--line-2); margin: 12px 0; }
.receipt .r-row { display: flex; justify-content: space-between; gap: 12px; padding: 3px 0; }
.receipt .r-row .l { color: var(--ink-soft); }
.receipt .r-row .r { color: var(--ink); font-weight: 700; white-space: nowrap; }
.receipt .r-row.total { font-size: 16px; font-weight: 700; padding-top: 6px; }
.receipt .r-row.total .l { color: var(--ink); font-weight: 700; letter-spacing: .08em; }
.receipt .r-row.total .r { color: var(--red-text); font-size: 20px; }
.receipt .r-note { text-align: center; color: var(--ink-mut); font-size: 11px; margin-top: 12px; }
.receipt .r-barcode {
  height: 38px; margin: 16px auto 6px; width: 78%;
  background: repeating-linear-gradient(90deg,
    var(--ink) 0 2px, transparent 2px 5px, var(--ink) 5px 6px, transparent 6px 11px,
    var(--ink) 11px 14px, transparent 14px 17px, var(--ink) 17px 18px, transparent 18px 22px);
  opacity: .85;
}
.receipt .r-code { text-align: center; font-size: 10px; letter-spacing: .3em; color: var(--ink-mut); }

/* rubber stamp slammed over the receipt corner */
.stamp {
  position: absolute; right: -4%; top: 8%;
  transform: rotate(9deg);
  font-family: var(--mono); font-weight: 700;
  font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--red-text);
  border: 2.5px solid currentColor; border-radius: 10px;
  padding: 9px 14px;
  background: rgba(255,255,255,.4);
  box-shadow: 0 0 0 1.5px rgba(255,255,255,.5) inset;
  opacity: .92;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='r'><feTurbulence type='fractalNoise' baseFrequency='0.22' numOctaves='3'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 1.6 -0.25'/><feComposite operator='in' in2='SourceGraphic'/></filter><rect width='100%25' height='100%25' filter='url(%23r)' fill='black'/></svg>"), linear-gradient(#000,#000);
  -webkit-mask-composite: source-over;
}

@media (max-width: 980px) {
  .hesap { grid-template-columns: 1fr; gap: 36px; }
  .receipt { transform: rotate(-1deg); }
}

/* =====================  BENTO FEATURES  ===================== */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.feature {
  position: relative; overflow: hidden;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  box-shadow: 0 1px 2px rgba(28,25,23,.03);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.feature::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .4s;
  background: radial-gradient(60% 60% at 85% -5%, rgba(245,166,35,.14), transparent 70%);
}
.feature:hover { transform: translateY(-5px); border-color: var(--line-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; }

.feature .ico {
  display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 14px;
  margin-bottom: 18px; position: relative; z-index: 1;
  background: var(--bg-2); border: 1px solid var(--line);
}
.feature .ico svg { width: 26px; height: 26px; color: var(--ink-soft); }
.feature.lg .ico { background: var(--red-soft); border-color: rgba(226,55,68,.25); }
.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 p b { color: var(--ink); }
.feature .tags { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.feature .pill {
  font-family: var(--mono); font-size: 11px; color: var(--ink-soft);
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 999px; padding: 5px 11px;
}

/* big feature gets the inline mini-map */
.minimap {
  position: relative; z-index: 1; margin-top: 22px; height: 200px; border-radius: 14px; overflow: hidden;
  background: #EFEAE0; border: 1px solid var(--line);
}
.minimap .g { position: absolute; inset: -20%;
  background-image: linear-gradient(rgba(255,255,255,.85) 2px, transparent 2px), linear-gradient(90deg, rgba(255,255,255,.85) 2px, transparent 2px);
  background-size: 36px 36px; transform: perspective(360px) rotateX(38deg) scale(1.5); transform-origin: center 20%; }
.minimap .mpin { transform: translate(-50%,-100%) scale(.85); }

/* =====================  3-AXIS RATING SHOWCASE  ===================== */
.rating-show { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.rating-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow);
  position: relative;
}
.rating-card .v-photo {
  height: 150px; border-radius: 16px; margin-bottom: 18px;
  background-size: cover; background-position: center;
}
.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:last-child { margin-bottom: 0; }
.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: var(--bg-2); 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, #4ADE80, var(--amber)); }
.big-axis.or .fill { background: linear-gradient(90deg, var(--violet), var(--red)); }

/* =====================  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(--card); border: 1.5px 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: var(--shadow);
}
.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  ===================== */
.wall { columns: 3; column-gap: 20px; }
.post {
  break-inside: avoid; margin-bottom: 20px; display: block;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
  box-shadow: 0 1px 2px rgba(28,25,23,.03);
}
.post:hover { transform: translateY(-4px) rotate(-.4deg); border-color: var(--line-2); box-shadow: var(--shadow-lift); }
.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 .pic { height: 150px; border-radius: 12px; margin-bottom: 13px; background-size: cover; background-position: center; }
.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: var(--mono); font-size: 11.5px; color: var(--ink-mut); }
.post .ft .lk { color: var(--red-text); }
.post .chip { display: inline-block; font-family: var(--mono); font-size: 11px; color: var(--amber-text);
  background: var(--amber-soft); border: 1px solid rgba(245,166,35,.35); border-radius: 999px; padding: 3px 10px; margin-bottom: 12px; }
.post .chip.red { color: var(--red-text); background: var(--red-soft); border-color: rgba(226,55,68,.3); }
@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(--card); margin-bottom: 14px; overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.faq details[open] { border-color: var(--line-2); box-shadow: var(--shadow); }
.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); 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 b { color: var(--ink); }
.faq .ans a { font-weight: 700; }

/* =====================  FINAL CTA  ===================== */
.cta-final { padding: 30px 0 110px; }
.cta-card {
  position: relative; overflow: hidden; text-align: center;
  border-radius: var(--radius-lg);
  padding: 76px 32px;
  color: #fff;
  background:
    radial-gradient(80% 130% at 12% -20%, rgba(255,255,255,.16), transparent 55%),
    radial-gradient(70% 120% at 100% 120%, rgba(28,25,23,.25), transparent 55%),
    linear-gradient(120deg, #E23744 0%, #E84A40 45%, #F08038 78%, #F5A623 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 36px 80px -28px rgba(226,55,68,.55);
}
.cta-card .bgpins { position: absolute; inset: 0; pointer-events: none; opacity: .6; }
.cta-card .bgpin { background: #fff !important; color: #fff !important; }
.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: #fff;
  position: relative;
}
.cta-card h2 .em { font-style: italic; color: #FFE9C2; font-variation-settings:"opsz" 144,"SOFT" 100; }
.cta-card p { position: relative; margin: 20px auto 34px; max-width: 480px; font-size: 18px; color: rgba(255,255,255,.92); font-weight: 600; }
.cta-card .actions { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-card .btn-primary {
  background: #fff; color: var(--red-text);
  box-shadow: 0 18px 40px -14px rgba(28,25,23,.45);
}
.cta-card .btn-primary:hover { color: var(--red-deep); box-shadow: 0 26px 54px -16px rgba(28,25,23,.55); }
.cta-card .btn-soon { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.35); color: rgba(255,255,255,.9); }
.cta-card .btn-soon .tag { color: #FFE9C2; }

/* =====================  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(--red-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: var(--mono); 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: var(--ink); }
.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: var(--mono); 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 (auto-reskin)  ===================== */
.article { padding: 60px 0 100px; }
.article .container { max-width: var(--col); }
.article .crumb {
  font-family: var(--mono); 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); font-variation-settings:"opsz" 144,"SOFT" 100; }
.article .meta {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-family: var(--mono); 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: .85;
}
.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: var(--mono); font-size: 13px; color: var(--amber-text);
  background: var(--amber-soft); border: 1px solid rgba(245,166,35,.3); 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: var(--amber-soft); border: 1px solid rgba(245,166,35,.35); 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 6px 14px -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);
}
.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; }
}
.bgpin, .mpin .ring, .kicker .live { will-change: box-shadow, opacity; }

.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: 26px; 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); }
  .stamp { right: 0; }
}

/* =====================  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; }
}
