/* ===========================================================
   YARIS ANALIZ — LANDING REDESIGN
   Sports broadcast / racing-track energy · Light mode
   =========================================================== */

:root {
  /* Palette — Orange × Navy × White */
  --paper: #FFFFFF;
  --paper-2: #F2F4F8;
  --ink: #0B1220;
  --ink-2: #1B2A4E;
  --ink-3: #4B5773;
  --ink-4: #8A93A6;
  --rule: #0B1220;
  --rule-soft: rgba(11,18,32,.12);
  --rule-softer: rgba(11,18,32,.06);
  --navy: #0B1220;
  --navy-2: #131C2E;
  --brand: #FF6A1F;       /* orange */
  --brand-2: #E2540A;     /* deeper hover */
  --brand-soft: #FFE5D2;
  --green: #18A957;
  --red: #E5484D;

  /* Type — Space Grotesk everywhere */
  --f-display: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --f-text: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --f-mono: 'Space Grotesk', ui-monospace, 'SF Mono', monospace;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 3.5vw, 48px);
}

/* Lock every section to the same horizontal rhythm.
   Sections use .container internally; this guarantees no
   layout class accidentally bypasses the grid edge. */
section > .container,
footer > .container { width: 100%; }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-text);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01","cv11";
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
ul { list-style: none; }
sup, sub { font-size: .55em; vertical-align: super; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* ===========================================================
   TICKER
   =========================================================== */
.ticker {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid var(--ink-2);
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
  /* Isolate the marquee + pulse animations on their own layer
     so they never share a paint region with the sticky nav. */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
  contain: layout paint;
}
.ticker__track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: ticker 60s linear infinite;
  padding-left: 2.5rem;
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker__item {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.ticker__item b { color: var(--brand); font-weight: 600; }
.ticker__item--up { color: #4ADE80; }
.ticker__item--down { color: #F87171; }
.ticker__item--up b, .ticker__item--down b { color: inherit; }

.dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: currentColor;
}
.dot--live {
  background: #FF3B3B;
  box-shadow: 0 0 0 0 rgba(255,59,59,.6);
  animation: pulse 1.4s infinite;
}
.dot--brand { background: var(--brand); }
.dot--mute { background: rgba(255,255,255,.4); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,59,59,.6); }
  70% { box-shadow: 0 0 0 8px rgba(255,59,59,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,59,59,0); }
}

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  /* Solid background instead of rgba + backdrop-filter.
     backdrop-filter on a sticky bar repaints every frame the
     content below it animates (counters, bar fills, ticker pulse)
     — that's the actual blink source. A near-opaque solid keeps
     the visual feel and is 100% flicker-free. */
  background: #F7F5F2;
  border-bottom: 1px solid var(--rule-soft);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
  contain: layout paint style;
  isolation: isolate;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.01em;
}
.brand-mark {
  width: 30px; height: 30px;
  display: inline-grid; place-items: center;
  background: var(--ink); color: var(--brand);
  border-radius: 6px;
  flex-shrink: 0;
  overflow: hidden;
}
.brand-mark svg { width: 18px; height: 18px; }
.brand-mark--img { background: transparent; padding: 0; }
.brand-mark--img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
/* Neutralize WP's default custom-logo wrapper styles if it ever leaks in */
.nav__brand .custom-logo-link { display: contents; }
.nav__brand img.custom-logo { width: 30px; height: 30px; max-width: 30px; max-height: 30px; border-radius: 6px; object-fit: cover; }
.brand-text { letter-spacing: -.02em; }
.brand-text b { color: var(--brand); font-weight: 700; }

.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  position: relative;
  transition: color .15s;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--brand);
}
@media (max-width: 720px) { .nav__links { display: none; } }

.nav__cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--ink); color: var(--paper);
  padding: 9px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: -.005em;
  transition: background .15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__cta:hover { background: var(--brand); }

.nav__stores { display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0; }
.nav__cta--compact { padding: 8px 12px; font-size: 12px; gap: 5px; }
@media (max-width: 900px) { .nav__cta--compact span { display: none; } .nav__cta--compact { padding: 8px 10px; } }

.nav__social { display: inline-flex; align-items: center; gap: 6px; }
.nav__social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 999px;
  color: var(--ink-2);
  transition: color .15s, background .15s;
}
.nav__social-link:hover { color: var(--brand); background: rgba(0,0,0,.04); }
@media (max-width: 720px) { .nav__social { display: none; } }

.nav__drawer-social {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-top: 18px;
}
.nav__drawer-social .nav__social-link {
  color: #fff; width: 40px; height: 40px;
  background: rgba(255,255,255,.06);
}
.nav__drawer-social .nav__social-link:hover { color: #fff; background: var(--brand); }

/* ===========================================================
   BUTTONS
   =========================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 10px;
  font-family: var(--f-text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.005em;
  cursor: pointer;
  transition: transform .15s, background .15s, color .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--brand); color: #fff;
  box-shadow: 0 1px 0 0 rgba(0,0,0,.08), 0 6px 16px -4px rgba(255,106,31,.4);
}
.btn--primary:hover { background: var(--brand-2); transform: translateY(-1px); }
.btn--ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--rule-soft);
}
.btn--ghost:hover { border-color: var(--ink); }
.btn--ghost-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.18); }
.btn--ghost-light:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.32); color: #fff; }
.btn--soon {
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.1);
  cursor: not-allowed;
  position: relative;
}
.btn--lg { padding: 17px 26px; font-size: 16px; }
.btn--block { display: flex; justify-content: center; width: 100%; }
.soon {
  font-family: var(--f-mono); font-size: 10px; font-weight: 600;
  background: rgba(255,255,255,.15); color: var(--paper);
  padding: 3px 7px; border-radius: 4px;
  letter-spacing: .08em;
}

/* ===========================================================
   GLOBAL: section heads, eyebrows, microline
   =========================================================== */
.eyebrow {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 4px 0;
  border-top: 1px solid var(--brand);
  margin-bottom: 18px;
}
.sect-head {
  max-width: 820px;
  margin-bottom: 64px;
}
.sect-head h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.sect-head h2 em {
  font-style: normal;
  color: var(--brand);
}
.sect-head h2 s {
  text-decoration-color: var(--brand);
  text-decoration-thickness: 4px;
}
.sect-head p {
  margin-top: 18px;
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--ink-3);
  max-width: 620px;
  line-height: 1.55;
}
.sect-head--invert .eyebrow { color: var(--brand); border-color: var(--brand); }
.sect-head--invert h2 { color: var(--paper); }
.sect-head--invert p { color: rgba(255,255,255,.65); }

.microline {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--ink-3);
  margin-bottom: 22px;
}
.microline__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(255,106,31,.18);
}
.microline--inv { color: rgba(255,255,255,.6); }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  padding: clamp(60px, 8vw, 0px) 0 clamp(40px, 4vw, 64px);
  border-bottom: 1px solid var(--rule-soft);
  overflow: hidden;
}
.hero::before {
  /* faint grid bg */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(10,10,10,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,10,10,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 80% 50%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 80% 50%, #000 0%, transparent 75%);
}
.hero__grid {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero__headline {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--ink);
  text-wrap: balance;
}
.hero__strike {
  text-decoration: line-through;
  text-decoration-color: var(--brand);
  text-decoration-thickness: 6px;
  color: var(--ink-3);
}
.hero__num { color: var(--brand); }
.hero__mute { color: var(--ink-3); }
.hero__sub {
  margin-top: 40px;
  max-width: 520px;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: var(--ink-3);
}
.hero__cta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero__meta {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 36px;
  border-top: 1px solid var(--rule-soft);
  padding-top: 24px;
  max-width: 540px;
}
@media (max-width: 540px) {
  .hero__meta { grid-template-columns: 1fr 1fr; gap: 18px; }
}
.hero__meta > div { display: flex; flex-direction: column; gap: 4px; }
.meta-label {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--ink-4);
  text-transform: uppercase;
}
.meta-val {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -.01em;
}
.meta-val .muted { color: var(--ink-4); font-style: normal; font-weight: 500; }

/* SCOREBOARD */
.hero__board {
  background: var(--navy);
  color: var(--paper);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.06);
  position: relative;
  box-shadow:
    0 1px 0 rgba(255,255,255,.04) inset,
    0 30px 60px -20px rgba(11,18,32,.4),
    0 8px 20px -8px rgba(11,18,32,.3);
}
.hero__board::before {
  /* corner notch detail */
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 10px;
  pointer-events: none;
}
.board__hdr {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  color: rgba(255,255,255,.7);
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(255,255,255,.12);
  position: relative;
  z-index: 1;
}
.board__title { color: var(--brand); }
.board__live { color: #FF8C8C; display: inline-flex; align-items: center; gap: 6px; }

.board__hero {
  position: relative;
  z-index: 1;
  padding: 28px 0 26px;
  display: flex;
  align-items: baseline;
  gap: 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.board__hero-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(64px, 8vw, 96px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
}
.board__hero-num i {
  font-style: normal;
  font-size: .5em;
  color: rgba(255,255,255,.55);
  margin-left: 4px;
}
.board__hero-meta { display: flex; flex-direction: column; gap: 4px; padding-bottom: 8px; }
.board__hero-label {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
}
.board__hero-sub {
  font-family: var(--f-mono);
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

.board__bars {
  position: relative; z-index: 1;
  padding: 22px 0;
  display: flex; flex-direction: column; gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.bar__head {
  display: flex; justify-content: space-between; gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(255,255,255,.7);
  margin-bottom: 6px;
  white-space: nowrap;
}
.bar__val { color: #fff; }
.bar__rail {
  height: 10px;
  background: rgba(255,255,255,.08);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.bar__fill {
  height: 100%;
  width: 0;
  border-radius: 2px;
  background: var(--brand);
  animation: barfill 1.6s cubic-bezier(.2,.8,.2,1) forwards;
  --w: 50%;
}
.bar__fill--mute { background: rgba(255,255,255,.4); animation-delay: .15s; }
@keyframes barfill { to { width: var(--w); } }
.bar--accent .bar__head {
  color: var(--brand);
  font-size: 11px;
  padding: 8px 10px;
  background: rgba(255,106,31,.1);
  border-left: 2px solid var(--brand);
  border-radius: 0 4px 4px 0;
}

.board__row {
  position: relative; z-index: 1;
  padding: 18px 0 14px;
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.board__cell {
  display: flex; flex-direction: column; gap: 4px;
  border-right: 1px solid rgba(255,255,255,.08);
  padding: 0 14px;
}
.board__cell:first-child { padding-left: 0; }
.board__cell:last-child { border-right: 0; }
.cell__k {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em;
  color: rgba(255,255,255,.5); font-weight: 600;
}
.cell__v {
  font-family: var(--f-display); font-weight: 700;
  font-size: 22px; letter-spacing: -.02em; color: #fff;
  font-variant-numeric: tabular-nums;
}
.board__foot {
  position: relative; z-index: 1;
  padding-top: 14px;
  display: flex; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: .12em;
  color: rgba(255,255,255,.4);
  border-top: 1px solid rgba(255,255,255,.06);
}

.hero__corner {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: .14em;
  color: var(--ink-4);
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 50% { transform: translate(-50%, 4px); } }
.kbd {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px;
  border: 1px solid var(--rule-soft);
  border-radius: 5px;
  font-size: 12px;
}
@media (max-width: 980px) { .hero__corner { display: none; } }

/* ===========================================================
   STATS BAR
   =========================================================== */
.stats {
  background: var(--ink);
  color: var(--paper);
  padding: 36px 0;
  border-bottom: 1px solid var(--rule);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }
.stats__item {
  display: flex; flex-direction: column; gap: 8px;
  padding: 0 18px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stats__item:last-child { border-right: 0; }
@media (max-width: 980px) { .stats__item { border-right: 0; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); } }
.stats__num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
}
.stats__num sup { color: var(--brand); }
.stats__lbl {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: .14em; font-weight: 600;
  color: rgba(255,255,255,.5);
}
.stats__item--brand .stats__num { color: var(--brand); }
.stats__item--brand .stats__lbl { color: var(--brand); }

/* ===========================================================
   WHO / DEGILIZ
   =========================================================== */
.who { padding: clamp(40px, 4vw, 64px) 0; }
.who__hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}
.who__hero .sect-head { margin-bottom: 0; max-width: 640px; }
.who__art { border: 1px solid var(--rule-soft); border-radius: 14px; overflow: hidden; }
.who__art svg { width: 100%; height: auto; display: block; }

/* Variant: real app screenshot with floating data tags */
.who__art--phone {
  position: relative;
  padding: 32px 28px;
  background: linear-gradient(135deg, #FFF1EA 0%, #fff 60%, #FFF8F3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}
.who__art--phone::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,106,31,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,106,31,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
}
.who__art-phone {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.who__art-phone img {
  width: auto;
  max-height: 340px;
  height: 340px;
  border-radius: 22px;
  box-shadow:
    0 0 0 1px rgba(11,18,32,.05),
    0 20px 40px -16px rgba(11,18,32,.22),
    0 8px 16px -8px rgba(11,18,32,.14);
  display: block;
}
.who__art-tag {
  position: absolute;
  z-index: 2;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--ink);
  background: #fff;
  padding: 7px 11px;
  border-radius: 999px;
  box-shadow: 0 4px 12px -4px rgba(11,18,32,.18), 0 0 0 1px rgba(11,18,32,.06);
  white-space: nowrap;
}
.who__art-tag--tl { top: 28px; left: 24px; color: var(--brand); }
.who__art-tag--tr { top: 28px; right: 24px; }
.who__art-tag--bl { bottom: 24px; left: 24px; }
.who__art-tag--br { bottom: 24px; right: 24px; color: var(--brand); }
@media (max-width: 540px) {
  .who__art--phone { padding: 24px 16px; min-height: 320px; }
  .who__art-phone img { max-height: 280px; height: 280px; border-radius: 18px; }
  .who__art-tag { font-size: 9px; padding: 5px 9px; letter-spacing: .14em; }
  .who__art-tag--tl, .who__art-tag--tr { top: 16px; }
  .who__art-tag--bl, .who__art-tag--br { bottom: 16px; }
  .who__art-tag--tl, .who__art-tag--bl { left: 14px; }
  .who__art-tag--tr, .who__art-tag--br { right: 14px; }
}
@media (max-width: 880px) { .who__hero { grid-template-columns: 1fr; gap: 32px; } }
.who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
@media (max-width: 760px) { .who__grid { grid-template-columns: 1fr; } }
.who__card {
  background: #fff;
  border: 1px solid var(--rule-soft);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.who__card--no { background: var(--ink); color: var(--paper); }
.who__hdr { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.check, .cross {
  width: 32px; height: 32px;
  display: inline-grid; place-items: center;
  border-radius: 8px;
}
.check { background: var(--brand); color: #fff; }
.cross { background: rgba(255,255,255,.08); color: var(--paper); }
.check svg, .cross svg { width: 16px; height: 16px; }
.who__lbl {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: .14em; font-weight: 600;
}
.who__card--yes .who__lbl { color: var(--brand); }
.who__card--no .who__lbl { color: var(--brand); }
.who__card ul { display: flex; flex-direction: column; gap: 14px; }
.who__card li {
  font-size: 16px; line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.who__card li::before {
  content: "—"; position: absolute; left: 0; top: 0;
  color: var(--ink-4);
}
.who__card--no li { color: rgba(255,255,255,.85); }
.who__card--no li::before { color: rgba(255,255,255,.35); }
.who__card b { font-weight: 600; }
.who__card--no b { color: var(--brand); }

.who__mission {
  background: var(--brand);
  color: #fff;
  border-radius: 14px;
  padding: 24px 32px;
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.mission-tag {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: .14em; font-weight: 700;
  background: #fff; color: var(--brand);
  padding: 5px 9px; border-radius: 4px;
}
.who__mission p {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -.01em;
}
.plus { display: inline-block; padding: 0 6px; opacity: .65; }

/* ===========================================================
   PROBLEM
   =========================================================== */
.problem {
  background: var(--navy);
  color: var(--paper);
  padding: clamp(40px, 4vw, 64px) 0;
}
.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 880px) { .problem__grid { grid-template-columns: 1fr; } }
.problem__card {
  background: var(--navy);
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background .2s;
}
.problem__card:hover { background: var(--navy-2); }
.problem__num {
  font-family: var(--f-mono);
  font-size: 12px; letter-spacing: .12em; font-weight: 600;
  color: var(--brand);
  margin-bottom: 8px;
}
.problem__card h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -.02em;
  color: #fff;
}
.problem__card p {
  color: rgba(255,255,255,.65);
  font-size: 15px;
  line-height: 1.55;
}

/* ===========================================================
   SCREENSHOTS
   =========================================================== */
.shots { padding: clamp(40px, 4vw, 64px) 0; }
.shots__rail {
  display: flex;
  gap: 28px;
  padding-bottom: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  /* Full-bleed: rail spans the full viewport width edge-to-edge,
     using only the page gutter as breathing room. */
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.shots__rail::-webkit-scrollbar { display: none; }
.shots__nav {
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
  margin-top: 16px;
  font-family: var(--f-mono);
  font-size: 13px; letter-spacing: .08em;
  color: var(--ink-3);
}
.shots__count b { color: var(--ink); }
.shots__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--rule-soft);
  display: inline-grid; place-items: center;
  transition: background .15s, transform .15s;
}
.shots__btn:hover { background: var(--ink); color: #fff; transform: translateY(-1px); }

/* PHONE — uniform size, clean frame, no notch overlay
   (real iOS screenshots already include their own status bar). */
.phone {
  flex: 0 0 286px;
  scroll-snap-align: center;
  background: var(--ink);
  border-radius: 44px;
  padding: 6px;
  box-shadow:
    0 0 0 1px rgba(11,18,32,.06),
    0 24px 48px -20px rgba(11,18,32,.28),
    0 6px 16px -8px rgba(11,18,32,.18);
  position: relative;
  height: 612px;
}
.phone--lg { /* deprecated — kept as no-op for backward compatibility */ }
.phone__notch { display: none; }
.phone__screen {
  background: var(--paper-2);
  width: 100%; height: 100%;
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 0 1px rgba(255,255,255,.04) inset;
}
@media (max-width: 540px) {
  .phone { flex: 0 0 256px; height: 548px; border-radius: 40px; }
  .phone__screen { border-radius: 34px; }
}

/* Bare shots — screens 2..n already include their own device mockup,
   so they render as plain images at the same rail height as the framed
   first phone. */
.shot {
  flex: 0 0 auto;
  scroll-snap-align: center;
  height: 612px;
  border-radius: 32px;
  overflow: hidden;
  background: transparent;
  display: block;
}
.shot img {
  height: 100%;
  width: auto;
  display: block;
  border-radius: inherit;
}
@media (max-width: 540px) {
  .shot { height: 548px; border-radius: 28px; }
}

.mock__bar {
  display: flex; justify-content: space-between;
  padding: 12px 22px 4px;
  font-family: var(--f-mono);
  font-size: 11px; font-weight: 600;
  color: var(--ink);
}
.mock__pill {
  font-family: var(--f-mono); font-size: 11px;
  background: var(--paper); padding: 3px 8px; border-radius: 4px;
  font-weight: 600;
}
.mock__pill--brand { background: var(--brand); color: #fff; }
.mock__pos {
  width: 28px; height: 28px;
  display: inline-grid; place-items: center;
  background: var(--ink); color: var(--paper);
  border-radius: 6px;
  font-family: var(--f-display); font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.mock__pos--gold { background: var(--brand); color: #fff; }

/* mock-bugun */
.mock-bugun { padding: 8px 14px; }
.mock__hdr { padding: 18px 8px 16px; }
.mock__hdr-eyebrow {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em;
  color: var(--brand); font-weight: 600;
}
.mock__hdr h4 {
  font-family: var(--f-display); font-weight: 700;
  font-size: 22px; margin-top: 6px; letter-spacing: -.02em;
}
.mock__pickcard {
  background: var(--ink); color: var(--paper);
  border-radius: 14px; padding: 14px;
  margin-bottom: 14px;
}
.mock__pickhdr { display: flex; margin-bottom: 12px; }
.mock__pickbody { display: flex; gap: 12px; align-items: center; padding: 4px 0; }
.mock__pickbody strong {
  display: block; font-family: var(--f-display); font-weight: 700;
  font-size: 18px; letter-spacing: -.01em;
}
.mock__pickbody span {
  font-family: var(--f-mono); font-size: 11px;
  color: rgba(255,255,255,.5);
}
.mock__signals {
  display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap;
}
.mock__signals span {
  font-family: var(--f-mono); font-size: 10px; font-weight: 600;
  background: rgba(255,255,255,.1); color: var(--brand);
  padding: 4px 7px; border-radius: 4px; letter-spacing: .04em;
}
.mock__list { display: flex; flex-direction: column; gap: 8px; }
.mock__row {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--rule-soft);
  border-radius: 10px; padding: 12px;
}
.mock__row > div { flex: 1; min-width: 0; }
.mock__row strong { display: block; font-size: 13px; font-weight: 600; }
.mock__row span:not(.mock__city):not(.mock__chev):not(.mock__free) {
  font-family: var(--f-mono); font-size: 10px; color: var(--ink-4);
}
.mock__city {
  font-family: var(--f-mono); font-size: 10px; font-weight: 700;
  background: var(--paper-2); padding: 5px 7px; border-radius: 4px;
  color: var(--ink-2);
}
.mock__chev { color: var(--ink-4); }
.mock__free {
  font-family: var(--f-mono); font-size: 9px; font-weight: 700;
  background: var(--brand); color: #fff;
  padding: 4px 6px; border-radius: 4px;
}
.mock__row--free { border-color: var(--brand); }

/* mock-race */
.mock-race { padding: 8px 14px; }
.mock-race__hdr { display: flex; align-items: center; gap: 10px; padding: 18px 8px 14px; }
.mock-race__pill {
  font-family: var(--f-mono); font-size: 11px; font-weight: 700;
  background: var(--brand); color: #fff;
  padding: 5px 9px; border-radius: 999px;
}
.mock-race__hdr strong { font-size: 13px; font-weight: 600; }
.mock-race__tabs {
  display: flex; gap: 18px;
  padding: 0 8px 14px;
  border-bottom: 1px solid var(--rule-soft);
  margin-bottom: 12px;
  font-family: var(--f-mono); font-size: 11px; font-weight: 600;
  color: var(--ink-4); letter-spacing: .04em;
  text-transform: uppercase;
}
.mock-race__tabs .active { color: var(--brand); position: relative; }
.mock-race__tabs .active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -15px;
  height: 2px; background: var(--brand);
}
.mock-race__rows { display: flex; flex-direction: column; gap: 8px; }
.mock-race__row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 8px;
  border-radius: 8px;
  border: 1px solid var(--rule-soft);
}
.mock-race__row--hl { background: var(--brand-soft); border-color: var(--brand); }
.mock-race__row > div { flex: 1; }
.mock-race__row strong { display: block; font-size: 13px; font-weight: 600; }
.mock-race__row span { font-family: var(--f-mono); font-size: 10px; color: var(--ink-4); }
.mock-race__score {
  font-family: var(--f-display); font-weight: 700;
  font-size: 22px; color: var(--ink); letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.mock-race__row--hl .mock-race__score { color: var(--brand); }

/* mock-perf */
.mock-perf { padding: 8px 14px; height: 100%; display: flex; flex-direction: column; }
.mock-perf__hdr { padding: 18px 8px 18px; border-bottom: 1px solid var(--rule-soft); }
.mock-perf__hdr > span:first-child {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em;
  color: var(--ink-4); font-weight: 600;
}
.mock-perf__hdr h4 {
  font-family: var(--f-display); font-weight: 700;
  font-size: 56px; line-height: 1; color: var(--brand);
  letter-spacing: -.04em; margin-top: 6px;
  font-variant-numeric: tabular-nums;
}
.mock-perf__hdr small {
  font-family: var(--f-mono); font-size: 11px; color: var(--ink-3);
  display: block; margin-top: 4px;
}
.mock-perf__bars {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  padding: 22px 8px;
  border-bottom: 1px solid var(--rule-soft);
  align-items: end;
  height: 200px;
}
.mock-perf__bars > div { display: flex; flex-direction: column; align-items: center; gap: 6px; height: 100%; justify-content: end; }
.mock-perf__bars span {
  font-family: var(--f-mono); font-size: 10px; color: var(--ink-4);
  text-transform: uppercase;
}
.mock-perf__bars i {
  width: 100%;
  height: var(--h);
  background: var(--ink);
  border-radius: 4px 4px 0 0;
  display: block;
}
.mock-perf__bars > div:nth-child(4) i { background: var(--brand); }
.mock-perf__chips {
  padding: 18px 8px;
  display: flex; flex-direction: column; gap: 8px;
}
.mock-perf__chips span {
  display: flex; justify-content: space-between;
  font-family: var(--f-mono); font-size: 11px; color: var(--ink-3);
  padding: 8px 12px;
  background: var(--paper);
  border-radius: 6px;
  letter-spacing: .04em;
}
.mock-perf__chips b { color: var(--brand); font-family: var(--f-display); font-size: 14px; font-weight: 700; }

/* mock-defter */
.mock-defter { padding: 8px 14px; }
.mock-defter__hdr { padding: 18px 8px; }
.mock-defter__hdr span {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em;
  color: var(--brand); font-weight: 600;
}
.mock-defter__hdr h4 {
  font-family: var(--f-display); font-weight: 700;
  font-size: 24px; margin-top: 4px; letter-spacing: -.02em;
}
.mock-defter__list { display: flex; flex-direction: column; gap: 8px; }
.mock-defter__list > div {
  display: flex; align-items: center; gap: 12px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--rule-soft);
  border-radius: 10px;
}
.mock-defter__list > div > div { flex: 1; }
.mock-defter__list strong { display: block; font-size: 13px; font-weight: 600; }
.mock-defter__list span {
  font-family: var(--f-mono); font-size: 10px; color: var(--ink-4);
}
.mock__avt {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink); color: var(--paper);
  display: inline-grid; place-items: center;
  font-family: var(--f-display); font-weight: 700; font-size: 15px;
}
.mock__bell { font-size: 16px; }

/* mock-speed */
.mock-speed { padding: 8px 14px; color: var(--paper); height: 100%; }
.mock-speed .phone__screen { background: var(--navy); }
.mock-speed { background: var(--navy); height: 100%; }
.phone__screen .mock-speed { background: var(--navy); }
.mock-speed__hdr { padding: 18px 8px 14px; color: #fff; }
.mock-speed__hdr > span:first-child {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em;
  color: var(--brand); font-weight: 600;
}
.mock-speed__hdr h4 {
  font-family: var(--f-display); font-weight: 700;
  font-size: 22px; margin-top: 4px; letter-spacing: -.02em; color: #fff;
}
.mock-speed__chart {
  padding: 8px;
  height: 200px;
  color: var(--brand);
}
.mock-speed__chart svg { width: 100%; height: 100%; }
.mock-speed__legend {
  padding: 12px 8px;
  display: flex; flex-direction: column; gap: 8px;
}
.mock-speed__legend span {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 11px;
  color: rgba(255,255,255,.85);
}
.mock-speed__legend i { width: 8px; height: 8px; border-radius: 50%; }

.mock-speed .mock__bar { color: #fff; }
.mock-speed .mock__pill { background: rgba(255,255,255,.1); color: #fff; }

/* ===========================================================
   SIGNAL DEMO
   =========================================================== */
.signal { padding: clamp(40px, 4vw, 64px) 0; background: var(--paper-2); }
.signal__panel {
  background: var(--ink);
  color: var(--paper);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.signal__panel::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.signal__hdr {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px dashed rgba(255,255,255,.18);
  position: relative;
  margin-bottom: 28px;
}
.signal__hdr h3 {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -.025em;
  color: #fff;
  margin-top: 12px;
}
.signal__hdr h3 i {
  font-style: normal;
  color: var(--brand);
  font-family: var(--f-mono); font-size: .55em; font-weight: 600;
  margin-left: 6px;
  letter-spacing: 0;
}
.signal__score {
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
  position: relative;
}
.signal__score-num {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(64px, 8vw, 96px); line-height: 1;
  letter-spacing: -.04em;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
}
.signal__score-lbl {
  font-family: var(--f-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .14em; color: rgba(255,255,255,.5);
}

.signal__bars {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 36px;
}
@media (max-width: 760px) { .signal__bars { grid-template-columns: 1fr; } }
.sig {
  display: grid;
  grid-template-columns: 130px 1fr 50px;
  gap: 14px;
  align-items: center;
  padding: 6px 0;
}
.sig__lbl {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em;
  font-weight: 600; color: rgba(255,255,255,.7);
}
.sig__rail {
  height: 4px; background: rgba(255,255,255,.08); border-radius: 2px;
  overflow: hidden;
}
.sig__fill {
  height: 100%; background: var(--brand);
  width: 0;
  border-radius: 2px;
  animation: barfill 1.4s cubic-bezier(.2,.8,.2,1) forwards;
  --w: 50%;
}
.sig__fill--neg { background: #F87171; }
.sig__val {
  font-family: var(--f-mono); font-size: 13px; font-weight: 600;
  color: #fff;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.sig__val.muted { color: rgba(255,255,255,.4); }

.signal__foot {
  position: relative;
  margin-top: 32px;
  padding: 24px;
  background: rgba(255,255,255,.04);
  border-left: 3px solid var(--brand);
  border-radius: 0 12px 12px 0;
  display: flex; gap: 20px;
  align-items: flex-start;
}
.signal__foot-tag {
  font-family: var(--f-mono); font-size: 11px; font-weight: 700;
  letter-spacing: .14em; color: var(--brand);
  flex-shrink: 0;
  padding-top: 2px;
}
.signal__foot p {
  font-size: 16px; line-height: 1.55;
  color: rgba(255,255,255,.85);
}

/* ===========================================================
   PLANS
   =========================================================== */
.plans { padding: clamp(40px, 4vw, 64px) 0; }
.plans__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 880px) { .plans__grid { grid-template-columns: 1fr; } }
.plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--rule-soft);
  border-radius: 18px;
  padding: 36px;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.plan--pro {
  background: var(--ink); color: var(--paper);
  border-color: var(--ink);
}
.plan__corner {
  position: absolute;
  top: 28px; right: 28px;
  font-family: var(--f-mono); font-size: 11px; font-weight: 700;
  letter-spacing: .16em;
  color: var(--brand);
  border: 1px solid var(--brand);
  padding: 5px 10px; border-radius: 4px;
}
.plan header { padding-bottom: 24px; border-bottom: 1px solid var(--rule-soft); margin-bottom: 24px; }
.plan--pro header { border-color: rgba(255,255,255,.1); }
.plan__tag {
  display: inline-block;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; font-weight: 600;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.plan__tag--inv { color: var(--brand); }
.plan h3 {
  font-family: var(--f-display); font-weight: 700;
  font-size: 30px; letter-spacing: -.02em;
}
.plan__price {
  display: block; margin-top: 14px;
  font-family: var(--f-display); font-weight: 700;
  font-size: 28px; letter-spacing: -.02em;
  color: var(--ink);
}
.plan--pro .plan__price { color: #fff; font-size: 16px; font-weight: 500; }
.plan__price i {
  font-style: normal; font-size: 14px; color: var(--ink-4); font-weight: 500;
}
.plan ul { display: flex; flex-direction: column; gap: 12px; flex: 1; margin-bottom: 28px; }
.plan li {
  font-size: 15px; line-height: 1.45;
  padding-left: 22px;
  position: relative;
  color: var(--ink-2);
}
.plan li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 12px; height: 2px;
  background: var(--brand);
}
.plan--pro li { color: rgba(255,255,255,.85); }
.plan li b { font-weight: 600; }
.plan--pro li b { color: var(--brand); }

/* ===========================================================
   PERFORMANCE PROOF
   =========================================================== */
.perf {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(40px, 4vw, 64px) 0;
}
.perf__hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 60px;
  border-bottom: 1px dashed rgba(255,255,255,.16);
  margin-bottom: 48px;
}
@media (max-width: 880px) { .perf__hero { grid-template-columns: 1fr; gap: 32px; } }
.perf__big { display: flex; align-items: baseline; gap: 24px; flex-wrap: wrap; }
.perf__big-num {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(96px, 14vw, 200px);
  line-height: .9;
  letter-spacing: -.05em;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
}
.perf__big-num i {
  font-style: normal; font-size: .35em;
  color: rgba(255,255,255,.4);
  margin-left: 6px;
}
.perf__big-meta { display: flex; flex-direction: column; gap: 6px; padding-bottom: 14px; }
.perf__big-lbl {
  font-family: var(--f-mono); font-size: 12px; font-weight: 600;
  letter-spacing: .14em; color: #fff;
}
.perf__big-sub {
  font-family: var(--f-mono); font-size: 12px;
  color: rgba(255,255,255,.5);
}

.perf__stack { display: flex; flex-direction: column; gap: 18px; }
.perf__row {
  display: grid;
  grid-template-columns: 160px 80px 1fr;
  align-items: center;
  gap: 16px;
}
.perf__row-lbl {
  font-family: var(--f-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .12em; color: rgba(255,255,255,.7);
}
.perf__row-val {
  font-family: var(--f-display); font-weight: 700;
  font-size: 28px; letter-spacing: -.02em; color: var(--brand);
  font-variant-numeric: tabular-nums;
}
.perf__row-val--mute { color: rgba(255,255,255,.5); }
.perf__row-rail {
  display: block;
  height: 6px;
  background: rgba(255,255,255,.08);
  border-radius: 3px;
  overflow: hidden;
}
.perf__row-fill {
  display: block;
  width: 0;
  height: 100%;
  background: var(--brand);
  animation: barfill 1.6s cubic-bezier(.2,.8,.2,1) forwards;
  --w: 50%;
  border-radius: 3px;
}
.perf__row-fill--mute { background: rgba(255,255,255,.3); }

.perf__notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
@media (max-width: 880px) { .perf__notes { grid-template-columns: 1fr; gap: 24px; } }
.perf__note {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.perf__note-num {
  font-family: var(--f-display); font-weight: 700;
  font-size: 44px; letter-spacing: -.03em;
  color: var(--brand);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.perf__note-num sup { font-size: .5em; }
.perf__note strong {
  display: block;
  font-family: var(--f-display); font-weight: 600;
  font-size: 18px; letter-spacing: -.01em;
  color: #fff;
  margin-bottom: 4px;
}
.perf__note p {
  font-size: 14px; line-height: 1.5;
  color: rgba(255,255,255,.6);
}

/* ===========================================================
   TABS GRID
   =========================================================== */
.tabs { padding: clamp(40px, 4vw, 64px) 0; }
.tabs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule-soft);
  border: 1px solid var(--rule-soft);
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 980px) { .tabs__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .tabs__grid { grid-template-columns: 1fr; } }
.tab {
  background: #fff;
  padding: 28px;
  display: flex; flex-direction: column; gap: 8px;
  transition: background .2s;
  cursor: default;
}
.tab:hover { background: var(--paper); }
.tab__num {
  font-family: var(--f-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .14em; color: var(--brand);
  margin-bottom: 4px;
}
.tab h4 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 22px; letter-spacing: -.02em;
}
.tab p {
  font-size: 14px; line-height: 1.5;
  color: var(--ink-3);
}

/* ===========================================================
   DEFTER
   =========================================================== */
.defter { padding: clamp(40px, 4vw, 64px) 0; background: var(--paper-2); }
.defter__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .defter__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .defter__grid { grid-template-columns: 1fr; } }
.dcard {
  background: #fff;
  border: 1px solid var(--rule-soft);
  border-radius: 14px;
  padding: 22px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 8px 14px;
  transition: transform .15s, border-color .15s;
}
.dcard:hover { transform: translateY(-2px); border-color: var(--brand); }
.dcard__icon {
  width: 44px; height: 44px;
  background: var(--paper);
  border-radius: 10px;
  display: inline-grid; place-items: center;
  font-size: 22px;
  grid-row: 1; grid-column: 1;
}
.dcard h4 {
  grid-row: 1; grid-column: 2;
  align-self: center;
  font-family: var(--f-display); font-weight: 600;
  font-size: 18px; letter-spacing: -.01em;
}
.dcard p {
  grid-column: 1 / -1;
  margin-top: 6px;
  font-size: 14px; line-height: 1.5;
  color: var(--ink-3);
}

/* ===========================================================
   PIPELINE
   =========================================================== */
.pipe { padding: clamp(40px, 4vw, 64px) 0; }
.pipe__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 980px) { .pipe__grid { grid-template-columns: 1fr; } .pipe__arrow { display: none; } }
.pstep {
  background: #fff;
  border: 1px solid var(--rule-soft);
  border-radius: 14px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.pstep__hd { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.pstep__num {
  font-family: var(--f-display); font-weight: 700;
  font-size: 32px; line-height: 1;
  color: var(--brand);
  letter-spacing: -.03em;
}
.pstep__lbl {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em; font-weight: 600;
  color: var(--ink-4);
}
.pstep h4 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 18px; letter-spacing: -.01em;
}
.pstep p {
  font-size: 14px; line-height: 1.5;
  color: var(--ink-3);
}
.pipe__arrow {
  display: grid; place-items: center;
  font-family: var(--f-mono);
  color: var(--brand);
  font-size: 24px;
}
.pipe__tags {
  margin-top: 28px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.pipe__tags span {
  font-family: var(--f-mono); font-size: 12px; font-weight: 500;
  letter-spacing: .04em;
  background: #fff;
  border: 1px solid var(--rule-soft);
  padding: 7px 12px; border-radius: 999px;
  color: var(--ink-3);
}

/* ===========================================================
   PERSONAS
   =========================================================== */
.who-for { padding: clamp(40px, 4vw, 64px) 0; background: var(--paper-2); }
.who-for__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .who-for__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .who-for__grid { grid-template-columns: 1fr; } }
.persona {
  background: #fff;
  border: 1px solid var(--rule-soft);
  border-radius: 14px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
}
.persona__role {
  font-family: var(--f-mono); font-size: 11px; font-weight: 700;
  letter-spacing: .14em; color: var(--brand);
  border: 1px solid var(--brand);
  padding: 4px 8px; border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 4px;
}
.persona h4 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 22px; letter-spacing: -.02em;
}
.persona p { font-size: 14px; line-height: 1.5; color: var(--ink-3); flex: 1; }
.persona__tags { display: flex; gap: 6px; flex-wrap: wrap; padding-top: 12px; border-top: 1px solid var(--rule-soft); }
.persona__tags span {
  font-family: var(--f-mono); font-size: 10px; font-weight: 600;
  letter-spacing: .12em; color: var(--ink-4);
  background: var(--paper); padding: 4px 7px; border-radius: 4px;
}

/* ===========================================================
   FAQ
   =========================================================== */
.faq { padding: clamp(40px, 4vw, 64px) 0; }
.faq__list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--rule);
}
.faq__item {
  border-bottom: 1px solid var(--rule-soft);
  padding: 0;
}
.faq__item summary {
  display: flex; align-items: center; gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -.015em;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary > span:nth-child(2) { flex: 1; }
.faq__num {
  font-family: var(--f-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .14em; color: var(--brand);
  min-width: 32px;
}
.faq__plus {
  font-family: var(--f-display); font-weight: 400;
  font-size: 24px;
  color: var(--ink-3);
  transition: transform .2s;
}
.faq__item[open] .faq__plus { transform: rotate(45deg); }
.faq__item p {
  padding: 0 0 28px 52px;
  font-size: 16px; line-height: 1.6;
  color: var(--ink-3);
  max-width: 800px;
}

/* ===========================================================
   CTA
   =========================================================== */
.cta {
  padding: clamp(40px, 4vw, 64px) 0;
  background: var(--ink);
  color: var(--paper);
}
.cta__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 880px) { .cta__inner { grid-template-columns: 1fr; gap: 40px; } }
.cta__left h2 {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(40px, 5vw, 72px);
  line-height: .98; letter-spacing: -.03em;
  color: #fff; text-wrap: balance;
  margin-top: 16px;
}
.cta__left p {
  margin-top: 18px; max-width: 540px;
  font-size: 16px; line-height: 1.55;
  color: rgba(255,255,255,.65);
}
.cta__btns { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.cta__right { display: flex; justify-content: center; }
.qr {
  background: #fff; color: var(--ink);
  border-radius: 16px;
  padding: 22px;
  display: flex; flex-direction: column; gap: 16px;
  align-items: center;
  text-align: center;
  max-width: 240px;
}
.qr__code {
  display: block;
  width: 180px; height: 180px;
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  transition: transform .15s, box-shadow .15s;
}
.qr__code:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(11,18,32,.18);
}
.qr__code img { width: 100%; height: 100%; display: block; }
.qr__txt strong {
  display: block;
  font-family: var(--f-display); font-weight: 700;
  font-size: 16px; letter-spacing: -.01em;
  margin-bottom: 4px;
}
.qr__txt span {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--ink-3); line-height: 1.4;
}

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { padding: 40px 0 32px; background: var(--paper); }
.footer__top {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
  margin-bottom: 24px;
}
.footer__nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__nav a {
  font-size: 14px; font-weight: 500; color: var(--ink-3);
  transition: color .15s;
}
.footer__nav a:hover { color: var(--brand); }

.footer__social { display: inline-flex; align-items: center; gap: 8px; }
.footer__social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 999px;
  color: var(--ink-3);
  background: rgba(0,0,0,.04);
  transition: color .15s, background .15s;
}
.footer__social-link:hover { color: #fff; background: var(--brand); }

.footer__rule { height: 1px; background: var(--rule-soft); }
.footer__bot {
  margin-top: 18px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--ink-4);
  letter-spacing: .04em;
}
.footer__disclaimer { color: var(--ink-3); }

/* ===========================================================
   BLOG TEASER (on landing)
   =========================================================== */
.blog-teaser { padding: clamp(40px, 4vw, 64px) 0; background: var(--paper); }
.sect-head--row {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; flex-wrap: wrap;
  max-width: none;
}
.sect-head--row > div { max-width: 720px; }

.blog-teaser__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 28px;
}
.blog-teaser__grid .post--feat { grid-row: span 2; }
@media (max-width: 980px) {
  .blog-teaser__grid { grid-template-columns: 1fr 1fr; }
  .blog-teaser__grid .post--feat { grid-row: auto; grid-column: span 2; }
}
@media (max-width: 640px) {
  .blog-teaser__grid { grid-template-columns: 1fr; }
  .blog-teaser__grid .post--feat { grid-column: auto; }
}

.post {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--rule-soft);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s, box-shadow .2s;
}
.post:hover {
  transform: translateY(-3px);
  border-color: var(--brand);
  box-shadow: 0 12px 32px -16px rgba(11, 18, 32, 0.18);
}
.post__media {
  position: relative;
  aspect-ratio: 5 / 3;
  overflow: hidden;
}
.post--feat .post__media { aspect-ratio: 16 / 10; }
.post__art { width: 100%; height: 100%; display: block; }
.post__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.post--feat .post__body { padding: 28px 28px 30px; gap: 14px; }
.post__meta {
  display: inline-flex; gap: 8px; align-items: center;
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .12em;
  font-weight: 600; color: var(--ink-4);
  text-transform: uppercase;
  flex-wrap: wrap;
}
.post__cat { color: var(--brand); }
.post h3 {
  font-family: var(--f-display); font-weight: 700;
  font-size: 22px; line-height: 1.18;
  letter-spacing: -.02em;
  color: var(--ink);
  text-wrap: balance;
}
.post--feat h3 { font-size: 30px; }
.post p {
  font-size: 14.5px; line-height: 1.55;
  color: var(--ink-3);
}
.post--feat p { font-size: 16px; }
.post__excerpt p { margin: 0; }
.post__excerpt p + p { margin-top: .6em; }
.post__excerpt strong, .post__excerpt b { color: var(--ink); font-weight: 600; }
.post__author {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--rule-soft);
  display: inline-flex; align-items: center; gap: 12px;
}
.post__avt {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink); color: #fff;
  display: inline-grid; place-items: center;
  font-family: var(--f-display); font-weight: 700; font-size: 13px;
}
.post__author > span:last-child {
  display: flex; flex-direction: column;
  font-size: 13px; line-height: 1.3;
}
.post__author b { color: var(--ink); font-weight: 600; }
.post__author i {
  font-style: normal; font-family: var(--f-mono);
  font-size: 10.5px; color: var(--ink-4);
  letter-spacing: .04em;
}

/* ===========================================================
   WP-SPECIFIC ADJUSTMENTS
   =========================================================== */

/* Admin bar offset for sticky nav */
.admin-bar .nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .nav { top: 46px; } }

/* Hide .nav__cta tail svg label on tiny screens */
@media (max-width: 380px) { .nav__cta span { display: none; } }

/* Mobile nav drawer */
.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--rule-soft);
  align-items: center; justify-content: center;
  color: var(--ink);
  margin-left: 8px;
  flex-shrink: 0;
}
.nav__toggle svg { width: 22px; height: 22px; }
@media (max-width: 720px) { .nav__toggle { display: inline-flex; } }

.nav__drawer {
  position: fixed; inset: 0;
  background: var(--ink); color: var(--paper);
  z-index: 100;
  padding: 28px var(--gutter);
  display: flex; flex-direction: column; gap: 24px;
  transform: translateX(100%);
  transition: transform .25s ease;
  overflow-y: auto;
}
.nav__drawer.is-open { transform: translateX(0); }
.nav__drawer-top { display: flex; justify-content: space-between; align-items: center; }
.nav__drawer-close {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  display: inline-grid; place-items: center;
  color: var(--paper);
}
.nav__drawer-close svg { width: 22px; height: 22px; }
.nav__drawer-links {
  display: flex; flex-direction: column; gap: 4px;
  margin-top: 12px;
}
.nav__drawer-links a {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -.02em;
  color: #fff;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav__drawer-links a:hover { color: var(--brand); }
.nav__drawer .btn { align-self: flex-start; margin-top: 12px; }
body.is-drawer-open { overflow: hidden; }

/* WP nav menu list reset (for wp_nav_menu output) */
.nav__links ul, .footer__nav ul, .nav__drawer-links ul { list-style: none; padding: 0; margin: 0; }
.nav__links li, .footer__nav li, .nav__drawer-links li { display: inline; }
.nav__drawer-links li { display: block; }

/* WP-injected paragraph spacing inside post body */
.post-body__main p:empty { display: none; }
.post-body__main img,
.post-body__main figure img { border-radius: 12px; }

/* Pagination on archive */
.archive__pager {
  margin-top: 56px;
  display: flex; justify-content: center; gap: 8px;
  flex-wrap: wrap;
}
.archive__pager .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px;
  padding: 0 12px;
  border: 1px solid var(--rule-soft);
  border-radius: 999px;
  font-family: var(--f-mono); font-size: 12px; font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink-2); background: #fff;
  transition: all .15s;
}
.archive__pager .page-numbers:hover { border-color: var(--ink); color: var(--ink); }
.archive__pager .page-numbers.current { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
  .dot--live { animation: none; }
  .hero__corner { animation: none; }
  .bar__fill, .sig__fill, .perf__row-fill { animation: none; width: var(--w); }
}

/* Phone screen — real-screenshot fit */
.phone__screen img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* ===========================================================
   BACK TO TOP
   =========================================================== */
.to-top {
  position: fixed;
  right: clamp(16px, 2.5vw, 28px);
  bottom: clamp(16px, 2.5vw, 28px);
  z-index: 60;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  box-shadow:
    0 1px 0 rgba(255,255,255,.18) inset,
    0 8px 24px -6px rgba(255,106,31,.55),
    0 4px 12px -4px rgba(11,18,32,.25);
  opacity: 0;
  transform: translateY(8px) scale(.92);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, background .15s;
}
.to-top[hidden] { display: none; }
.to-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.to-top:hover { background: var(--brand-2); transform: translateY(-2px) scale(1); }
.to-top:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
.to-top svg { width: 20px; height: 20px; display: block; }
@media (prefers-reduced-motion: reduce) {
  .to-top { transition: opacity .15s linear; transform: none; }
  .to-top.is-visible { transform: none; }
}

/* "Yakında" badge inside dcard titles */
.dcard__soon {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 9.5px; font-weight: 700;
  letter-spacing: .14em;
  background: var(--brand-soft); color: var(--brand-2);
  padding: 3px 7px; border-radius: 4px;
  vertical-align: middle;
  margin-left: 6px;
  position: relative;
  top: -2px;
}

/* Ticker — typed item helpers (live API: date/upcoming/result/stat) */
.ticker__lbl {
  font-style: normal;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--brand);
  margin-right: 4px;
}
.ticker__item--mute { color: rgba(255,255,255,.55); }
.ticker__item--mute b { color: rgba(255,255,255,.7); font-weight: 600; }
.ticker__check {
  display: inline-grid;
  place-items: center;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #18A957;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  margin-left: 2px;
}
.ticker__ganyan {
  font-style: normal;
  font-weight: 700;
  color: var(--brand);
  background: rgba(255,106,31,.12);
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 4px;
  letter-spacing: .04em;
  font-size: 11px;
}
.ticker__item--stat .ticker__lbl,
.ticker__item--date .ticker__lbl { color: var(--brand); }

/* Plan price-tier grid — 4 abonelik seçeneği inside .plan--pro */
.plan__price-note {
  display: block;
  margin-top: 14px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: rgba(255,255,255,.55);
}
.plan__tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 8px 0 28px;
}
.plan-tier {
  position: relative;
  padding: 16px 14px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.plan-tier--popular { border-color: rgba(255,106,31,.45); background: rgba(255,106,31,.04); }
.plan-tier--best    { border-color: var(--brand); background: rgba(255,106,31,.10); }
.plan-tier__lbl {
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  color: rgba(255,255,255,.6);
}
.plan-tier__price {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -.015em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.plan-tier__price i {
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  margin-left: 2px;
}
.plan-tier--best .plan-tier__price { color: var(--brand); }
.plan-tier__sub {
  font-family: var(--f-mono);
  font-size: 11px;
  color: rgba(255,255,255,.5);
}
.plan-tier__badge {
  position: absolute;
  top: -9px; right: 10px;
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  background: rgba(255,255,255,.12);
  color: #fff;
  padding: 4px 7px;
  border-radius: 4px;
  white-space: nowrap;
}
.plan-tier__badge--best { background: var(--brand); color: #fff; }
.plan__fineprint {
  margin-top: 18px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.45);
  letter-spacing: .02em;
}
@media (max-width: 540px) {
  .plan__tiers { grid-template-columns: 1fr; }
}

/* ===========================================================
   PLANS — 5-card classic pricing row (Free + 4 Pro tiers)
   =========================================================== */
.plans .container { max-width: 1440px; }

.plans__platform-note {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 14px;
  background: rgba(255,106,31,.06);
  border: 1px solid rgba(255,106,31,.18);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 720px;
}
.plans__platform-note svg {
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 3px;
}
@media (max-width: 640px) {
  .plans__platform-note { font-size: 12px; padding: 9px 12px; }
}

.plans__row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 56px;
}
@media (max-width: 1180px) { .plans__row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .plans__row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .plans__row { grid-template-columns: 1fr; } }

.pcard {
  position: relative;
  background: #fff;
  border: 1px solid var(--rule-soft);
  border-radius: 14px;
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.pcard:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -16px rgba(11,18,32,.18);
}
.pcard__hd { display: flex; flex-direction: column; gap: 6px; }
.pcard__tag {
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--ink-3);
}
.pcard__hd h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -.01em;
  color: var(--ink);
}
.pcard__price {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.pcard__price i {
  font-style: normal;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-4);
  margin-left: 2px;
}
.pcard__sub {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .03em;
  color: var(--ink-3);
  line-height: 1.5;
}
.pcard__list {
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
  margin: 4px 0 8px;
  padding: 14px 0 0;
  border-top: 1px solid var(--rule-softer);
  list-style: none;
}
.pcard__list li {
  font-size: 13.5px;
  line-height: 1.4;
  padding-left: 18px;
  position: relative;
  color: var(--ink-2);
}
.pcard__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 10px; height: 2px;
  background: var(--brand);
}
.pcard__badge {
  position: absolute;
  top: -10px; left: 16px;
  font-family: var(--f-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .14em;
  background: var(--ink);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.pcard__badge--best { background: var(--brand); }

.pcard--free { background: var(--paper-2); }
.pcard--popular { border-color: var(--ink); border-width: 1.5px; }
.pcard--best {
  background: var(--ink);
  border-color: var(--ink);
}
.pcard--best .pcard__tag,
.pcard--best .pcard__sub { color: rgba(255,255,255,.6); }
.pcard--best .pcard__hd h3 { color: #fff; }
.pcard--best .pcard__price { color: var(--brand); }
.pcard--best .pcard__price i { color: rgba(255,255,255,.5); }
.pcard--best .pcard__list { border-top-color: rgba(255,255,255,.1); }
.pcard--best .pcard__list li { color: rgba(255,255,255,.85); }

/* Shared Pro features panel below the cards */
.plans__features {
  background: var(--paper-2);
  border: 1px solid var(--rule-softer);
  border-radius: 14px;
  padding: clamp(24px, 3vw, 36px);
  margin-bottom: 24px;
}
.plans__features header { margin-bottom: 24px; }
.plans__features header .eyebrow { margin-bottom: 12px; }
.plans__features header h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -.02em;
  color: var(--ink);
}
.plans__features ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  list-style: none;
  padding: 0; margin: 0;
}
@media (max-width: 720px) { .plans__features ul { grid-template-columns: 1fr; } }
.plans__features li {
  font-size: 14.5px;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
  color: var(--ink-2);
}
.plans__features li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 2px;
  background: var(--brand);
}
.plans__features li b { font-weight: 600; color: var(--ink); }

.plans__fineprint {
  font-family: var(--f-mono);
  font-size: 11px;
  line-height: 1.6;
  color: var(--ink-4);
  letter-spacing: .02em;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

/* ===========================================================
   HERO TRACK RECORD — 3 katmanlı canlı performans paneli
   =========================================================== */
.trec {
  position: relative;
  z-index: 1;
  padding: 18px 0;
  border-bottom: 1px dashed rgba(255,255,255,.12);
}
.trec:last-child { border-bottom: 0; padding-bottom: 0; }
.trec:first-of-type { padding-top: 18px; }
.trec__lbl {
  display: block;
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--brand);
  margin-bottom: 12px;
}

/* Recent — list of payouts */
.trec__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 0; padding: 0;
}
.trec__row {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: baseline;
  gap: 8px;
  padding: 6px 8px;
  background: rgba(255,255,255,.03);
  border-radius: 6px;
  font-family: var(--f-mono);
  font-size: 11.5px;
}
.trec__row--combo { background: rgba(255,106,31,.08); }
.trec__bet {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  white-space: nowrap;
}
.trec__pay {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -.01em;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.trec__pay--combo { color: #FFB892; }
.trec__meta {
  font-size: 11px;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Week — counts row + highlight blocks */
.trec__counts {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  margin-bottom: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: rgba(255,255,255,.65);
}
.trec__counts b {
  color: #fff;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -.01em;
  margin-right: 2px;
  font-variant-numeric: tabular-nums;
}
.trec__hl {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 4px 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,.04);
  border-left: 2px solid var(--brand);
  border-radius: 0 6px 6px 0;
  margin-bottom: 8px;
}
.trec__hl--combo {
  background: rgba(255,106,31,.10);
  border-left-color: #FFB892;
}
.trec__hl-lbl {
  font-family: var(--f-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .14em;
  color: rgba(255,255,255,.55);
  grid-column: 1; grid-row: 1;
}
.trec__hl-val {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.02em;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
  grid-column: 2; grid-row: 1 / span 2;
  align-self: center;
}
.trec__hl--combo .trec__hl-val { color: #FFB892; }
.trec__hl-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  color: rgba(255,255,255,.7);
  grid-column: 1; grid-row: 2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Season — 3-cell summary */
.trec__season {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.trec__cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 12px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.trec__cell:first-child { padding-left: 0; }
.trec__cell:last-child { border-right: 0; padding-right: 0; }
.trec__cell-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.02em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.trec__cell--brand .trec__cell-num { color: var(--brand); }
.trec__cell-lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  color: rgba(255,255,255,.5);
}

@media (max-width: 540px) {
  .trec__row { grid-template-columns: auto auto; gap: 4px 8px; }
  .trec__row .trec__meta { grid-column: 1 / -1; padding-top: 2px; }
}

/* ===========================================================
   SIGNAL DEMO — redesigned: profile/tier instead of "AI score"
   Overrides legacy .signal__bars / .signal__score / .sig bar styles
   =========================================================== */

/* Tier rozeti — eski .signal__score yerine */
.signal__tier {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  text-align: right;
  position: relative;
}
.signal__stars {
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--brand);
  line-height: 1;
  margin-right: -4px; /* compensate trailing letter-spacing */
}
.signal__tier-lbl {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--brand);
}
.signal__tier-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed rgba(255,255,255,.12);
  font-family: var(--f-mono);
  font-size: 11px;
  color: rgba(255,255,255,.65);
}
.signal__tier-meta b {
  color: #fff;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -.005em;
  margin-right: 5px;
  font-variant-numeric: tabular-nums;
}

/* Signal grid — 2-col list (replaces .signal__bars) */
.signal__signals {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}
@media (max-width: 760px) { .signal__signals { grid-template-columns: 1fr; } }

/* Override .sig from bar layout to row layout */
.signal__signals .sig {
  display: grid;
  grid-template-columns: 22px 44px 1fr;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: rgba(255,255,255,.03);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.04);
}

.sig__check {
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(24,169,87,.18);
  color: #4ADE80;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}
.sig__check--neg {
  background: rgba(229,72,77,.15);
  color: #F87171;
}

.sig__code {
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--brand);
  background: rgba(255,106,31,.14);
  padding: 4px 6px;
  border-radius: 4px;
  text-align: center;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.sig__code--md {
  color: #FFB892;
  background: rgba(255,184,146,.12);
}
.sig__code--neg {
  color: #F87171;
  background: rgba(248,113,113,.12);
}

/* Override label inside new sig — full text, not mono uppercase rail label */
.signal__signals .sig__lbl {
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .03em;
  color: rgba(255,255,255,.85);
  text-transform: none;
}
.signal__signals .sig--neg .sig__lbl { color: rgba(255,255,255,.7); }

/* "+ N sinyal daha" footer line */
.signal__more {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,.10);
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(255,255,255,.55);
  text-align: center;
}

/* Header alignment fix when tier replaces single big number */
.signal__hdr { align-items: flex-start; }

@media (max-width: 540px) {
  .signal__signals .sig {
    grid-template-columns: 22px 1fr;
    grid-template-rows: auto auto;
    gap: 4px 10px;
  }
  .signal__signals .sig__code {
    grid-row: 1; grid-column: 2;
    align-self: start;
    justify-self: start;
    margin-bottom: 2px;
  }
  .signal__signals .sig__lbl {
    grid-row: 2; grid-column: 1 / -1;
    padding-left: 32px;
  }
  .signal__tier { align-items: flex-start; text-align: left; }
}

/* Featured post author avatar — logo variant (replaces initials) */
.post__avt--logo {
  background: transparent;
  overflow: visible;
  padding: 0;
  border-radius: 0;
}
.post__avt--logo svg { width: 100%; height: 100%; color: var(--brand); display: block; }
.post__avt--logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 0;
  background: transparent;
}

/* ===========================================================
   MOBILE TIGHTEN — reduce padding/margins under 640px
   =========================================================== */
@media (max-width: 640px) {
  /* Section paddings */
  .hero { padding: 28px 0 32px; }
  .stats, .who, .problem, .shots, .signal, .plans, .perf, .cta,
  .blog-teaser, .features, .tabs, .defter, .pipe, .who-for, .tax {
    padding: 36px 0;
  }

  /* Section headings — closer to body */
  .sect-head { margin-bottom: 28px; }
  .sect-head h2 { font-size: clamp(26px, 7vw, 34px); line-height: 1.08; }
  .sect-head p { margin-top: 12px; font-size: 14px; }
  .eyebrow { margin-bottom: 12px; }
  .microline { margin-bottom: 14px; }

  /* Hero internal spacing */
  .hero__grid { gap: 32px; }
  .hero__headline { font-size: clamp(30px, 8vw, 38px); line-height: 1.04; }
  .hero__sub { margin-top: 20px; font-size: 14px; line-height: 1.5; }
  .hero__cta { margin-top: 22px; gap: 10px; }
  .hero__meta { margin-top: 26px; padding-top: 18px; gap: 14px 18px; }

  /* Buttons a touch smaller */
  .btn { padding: 12px 18px; font-size: 14px; }
  .btn--lg { padding: 14px 20px; font-size: 15px; }

  /* CTA download section */
  .cta__btns { margin-top: 20px; gap: 10px; }
  .cta__inner { gap: 28px !important; }

  /* Footer trims */
  .footer { padding: 28px 0 24px; }
  .footer__top { margin-bottom: 18px; gap: 14px; }
  .footer__bot { margin-top: 14px; gap: 8px; }
}

/* Track-record (hero board) — mobile readability */
@media (max-width: 640px) {
  .trec { padding: 16px 0; }
  .trec__lbl { font-size: 11px; margin-bottom: 10px; }

  /* SON 24 SAAT — bet/pay top row, meta full-width below */
  .trec__row {
    grid-template-columns: 1fr auto;
    gap: 4px 10px;
    padding: 10px 12px;
    font-size: 13px;
  }
  .trec__bet { font-size: 11px; grid-column: 1; grid-row: 1; }
  .trec__pay { font-size: 17px; grid-column: 2; grid-row: 1; }
  .trec__meta {
    grid-column: 1 / -1; grid-row: 2;
    font-size: 12px;
    color: rgba(255,255,255,.82);
    white-space: normal;
    line-height: 1.4;
  }

  /* BU HAFTA — counts + highlight */
  .trec__counts { font-size: 12.5px; gap: 6px 16px; margin-bottom: 12px; }
  .trec__counts b { font-size: 16px; }
  .trec__hl { padding: 12px 14px; gap: 4px 10px; }
  .trec__hl-lbl { font-size: 10.5px; }
  .trec__hl-val { font-size: 20px; }
  .trec__hl-meta {
    font-size: 12px;
    color: rgba(255,255,255,.82);
    white-space: normal;
    line-height: 1.4;
  }

  /* SEZON — 3-cell numbers */
  .trec__cell { padding: 0 10px; }
  .trec__cell-num { font-size: 20px; }
  .trec__cell-lbl { font-size: 10.5px; }
}

/* Even tighter under 380px */
@media (max-width: 380px) {
  .hero { padding: 22px 0 28px; }
  .stats, .who, .problem, .shots, .signal, .plans, .perf, .cta,
  .blog-teaser, .features, .tabs, .defter, .pipe, .who-for, .tax {
    padding: 30px 0;
  }
  .sect-head { margin-bottom: 22px; }
  .hero__sub { margin-top: 16px; }
  .hero__cta { margin-top: 18px; }
  .hero__meta { margin-top: 22px; }
}
