/* ============================================================
   StreamClock — style.css  v3.0  (Redesign 2026)
   Fonts: Syne (display) + Instrument Sans (body) + JetBrains Mono
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Instrument+Sans:ital,wght@0,400;0,500;0,600;1,400&family=JetBrains+Mono:wght@400;500;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:      #7055F5;
  --purple-soft: #8B72FF;
  --purple-dim:  rgba(112,85,245,0.15);
  --lime:        #C8FF57;
  --lime-dim:    rgba(200,255,87,0.1);
  --green:       #00D68F;
  --green-dim:   rgba(0,214,143,0.1);
  --red:         #FF5A7E;
  --red-dim:     rgba(255,90,126,0.1);
  --amber:       #FFBB37;
  --amber-dim:   rgba(255,187,55,0.1);
  --sky:         #38D9FF;

  --bg:    #07060F;
  --bg2:   #0D0C1A;
  --bg3:   #141326;
  --bg4:   #1C1B32;
  --text:        #F0EEFF;
  --text-muted:  rgba(240,238,255,0.45);
  --text-dim:    rgba(240,238,255,0.2);
  --border:      rgba(255,255,255,0.08);
  --border-soft: rgba(255,255,255,0.04);

  --radius:    16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Instrument Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* grain */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px; opacity: 0.4;
}

/* mesh */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 700px 500px at 15% 10%, rgba(112,85,245,.10) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 85% 80%, rgba(200,255,87,.04) 0%, transparent 60%),
    radial-gradient(ellipse 400px 300px at 70% 20%, rgba(56,217,255,.03) 0%, transparent 60%);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4,
.nav-logo,
.font-display { font-family: 'Syne', sans-serif; }
.mono, code { font-family: 'JetBrains Mono', monospace; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,6,15,0.80);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1000px; margin: 0 auto;
  padding: 0 1.5rem; height: 56px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-size: 1.1rem; font-weight: 700; color: var(--text);
  text-decoration: none; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 6px;
}
.nav-logo span { color: var(--lime); }
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: .875rem; font-weight: 500; letter-spacing: 0.01em;
  padding: 6px 12px; border-radius: var(--radius-xs);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

/* ── CONTAINER ── */
.container {
  max-width: 1000px; margin: 0 auto;
  padding: 2.5rem 1.5rem;
  position: relative; z-index: 1;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: .72rem; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; color: var(--text-dim);
  display: flex; align-items: center; gap: 6px;
  flex-wrap: wrap; margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--text-dim); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--purple-soft); }

/* ── GLASS CARDS ── */
.glass {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.glass-strong {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.11);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ── LIVE DOT ── */
.live-dot {
  display: inline-block;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime);
  animation: livePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes livePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(200,255,87,.5); }
  50%      { box-shadow: 0 0 0 5px rgba(200,255,87,0); }
}

/* ── PILLS / BADGES ── */
.pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 99px;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em;
}
.pill-online  { background: var(--lime-dim);  color: var(--lime);  border: 1px solid rgba(200,255,87,.25); }
.pill-offline { background: rgba(255,255,255,.05); color: var(--text-muted); border: 1px solid var(--border); }
.badge-conf   { background: var(--green-dim); color: var(--green); border: 1px solid rgba(0,214,143,.2); }

/* ── PIVOT PAGE ── */
.pivot-hero { margin-bottom: 2rem; }
.pivot-name {
  font-size: 2.5rem; font-weight: 800; letter-spacing: -.035em;
  line-height: 1.1; margin-bottom: .75rem;
  display: flex; align-items: center; gap: .75rem; flex-wrap: wrap;
}
.pivot-meta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  color: var(--text-muted); font-size: .875rem;
}
.pivot-meta strong { color: var(--text); }

.pivot-cards { display: flex; flex-direction: column; gap: .6rem; max-width: 680px; }
.pivot-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.4rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none; color: var(--text);
  transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.pivot-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: linear-gradient(135deg, rgba(112,85,245,.08), transparent);
  transition: opacity .2s;
}
.pivot-card:hover { border-color: rgba(112,85,245,.4); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(112,85,245,.12); }
.pivot-card:hover::before { opacity: 1; }
.pivot-primary { border-color: rgba(112,85,245,.25); background: linear-gradient(135deg, rgba(112,85,245,.07), rgba(255,255,255,.03)); }
.pivot-pending { opacity: .4; pointer-events: none; }
.pc-icon { font-size: 1.25rem; width: 2rem; text-align: center; flex-shrink: 0; }
.pc-content { flex: 1; min-width: 0; }
.pc-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: .95rem; margin-bottom: .2rem; }
.pc-desc  { font-size: .8rem; color: var(--text-muted); line-height: 1.5; }
.pc-arrow { color: var(--purple-soft); font-size: .9rem; flex-shrink: 0; transition: transform .2s; }
.pivot-card:hover .pc-arrow { transform: translateX(3px); }

/* card mini bar */
.pc-bar-row {
  margin-top: .9rem; padding-top: .9rem;
  border-top: 1px solid var(--border-soft);
}
.pc-bar-meta {
  display: flex; justify-content: space-between;
  font-size: .7rem; font-weight: 600;
  color: var(--text-muted); margin-bottom: 5px;
}
.pc-bar-meta .val { font-family: 'JetBrains Mono', monospace; color: var(--lime); }
.bar-track { height: 3px; background: rgba(255,255,255,.06); border-radius: 99px; overflow: hidden; }
.bar-fill  { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--purple), var(--lime)); transition: width 1.2s cubic-bezier(.16,1,.3,1); }
.bar-fill-green  { background: linear-gradient(90deg, var(--green), rgba(0,214,143,.3)); }
.bar-fill-amber  { background: linear-gradient(90deg, var(--amber), rgba(255,187,55,.3)); }
.bar-fill-dim    { background: rgba(255,255,255,.15); }

/* ── SECTION HEADING ── */
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--text-dim); margin-bottom: .75rem;
  display: flex; align-items: center; gap: .5rem;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ── STATS ROW ── */
.stat-row { display: flex; gap: .6rem; flex-wrap: wrap; margin: 1.25rem 0; }
.stat-box {
  flex: 1; min-width: 80px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1rem;
  text-align: center;
}
.stat-val { display: block; font-family: 'JetBrains Mono', monospace; font-size: 1.3rem; font-weight: 700; color: var(--purple-soft); }
.stat-label { display: block; font-family: 'Syne', sans-serif; font-size: .6rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-top: .25rem; }

/* ── PROBABILITY RING ── */
.prob-ring-wrap { position: relative; display: inline-flex; align-items: center; justify-content: center; }
.prob-ring-wrap svg { transform: rotate(-90deg); }
.prob-ring-val { position: absolute; text-align: center; pointer-events: none; }
.prob-ring-val .num { font-family: 'JetBrains Mono', monospace; font-size: 2.25rem; font-weight: 700; line-height: 1; }
.prob-ring-val .lbl { font-family: 'Syne', sans-serif; font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-top: 2px; }

/* ── SCHEDULE WINDOWS ── */
.sched-windows { display: flex; flex-direction: column; gap: .5rem; }
.sched-window {
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 1rem; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
}
.sched-window.window-high { background: rgba(200,255,87,.05); border-color: rgba(200,255,87,.2); }
.sched-window.window-med  { background: rgba(112,85,245,.06); border-color: rgba(112,85,245,.2); }
.sw-left { display: flex; align-items: center; gap: .75rem; }
.sw-icon { font-size: 1.1rem; }
.sw-time { font-family: 'Syne', sans-serif; font-weight: 700; font-size: .9rem; }
.sw-sub  { font-size: .75rem; color: var(--text-muted); margin-top: 1px; }
.sw-badge {
  font-family: 'JetBrains Mono', monospace; font-size: .78rem; font-weight: 700;
  padding: 2px 10px; border-radius: 99px;
}
.sw-badge-high { background: rgba(200,255,87,.12); color: var(--lime); border: 1px solid rgba(200,255,87,.25); }
.sw-badge-med  { background: var(--purple-dim); color: var(--purple-soft); border: 1px solid rgba(112,85,245,.25); }

/* ── TODAY CARD ── */
.today-card {
  display: flex; flex-direction: column; gap: 1.5rem;
  padding: 1.75rem; margin-bottom: 1.25rem;
  background: rgba(255,255,255,0.055); border: 1px solid rgba(112,85,245,.2);
  border-radius: var(--radius);
  box-shadow: 0 0 40px rgba(112,85,245,.1);
}
@media (min-width: 640px) { .today-card { flex-direction: row; gap: 2rem; } }
.today-card-left { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: .75rem; }

/* ── FORECAST TABLE ── */
.forecast-wrap {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; overflow-x: auto;
  margin-bottom: 1.25rem; -webkit-overflow-scrolling: touch;
}
.forecast-table { width: 100%; border-collapse: collapse; min-width: 420px; }
.forecast-table thead { background: rgba(255,255,255,.025); }
.forecast-table th {
  text-align: left; padding: .75rem 1.25rem;
  font-family: 'Syne', sans-serif; font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .09em; color: var(--text-dim);
  border-bottom: 1px solid var(--border); white-space: nowrap;
}
.forecast-table td { padding: .8rem 1.25rem; border-bottom: 1px solid var(--border-soft); font-size: .875rem; }
.forecast-table tr:last-child td { border-bottom: none; }
.forecast-table tr:hover td { background: rgba(255,255,255,.02); }
.forecast-table .td-day { font-family: 'Syne', sans-serif; font-weight: 700; }
.forecast-table .td-date { color: var(--text-muted); font-size: .8rem; }
.forecast-table .td-pct  { font-family: 'JetBrains Mono', monospace; font-weight: 700; text-align: right; }
.forecast-table .td-win  { font-size: .8rem; color: var(--text-muted); }
.badge-today { display: inline-block; padding: 1px 6px; border-radius: 4px; font-family: 'Syne', sans-serif; font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; background: var(--purple-dim); color: var(--purple-soft); margin-left: 5px; }
.pct-high { color: var(--lime); }
.pct-mid  { color: var(--purple-soft); }
.pct-low  { color: var(--text-dim); }

/* ── HEATMAP ── */
.heatmap-wrap {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1.25rem;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.hm-inner { min-width: 480px; }
.hm-hours { display: flex; padding-left: 34px; margin-bottom: .4rem; }
.hm-hours span { flex: 1; text-align: center; font-size: .62rem; font-family: 'JetBrains Mono', monospace; color: var(--text-dim); }
.hm-row { display: flex; align-items: center; gap: 6px; margin-bottom: 3px; }
.hm-label { width: 28px; font-size: .62rem; font-family: 'Syne', sans-serif; font-weight: 700; color: var(--text-dim); text-align: right; flex-shrink: 0; }
.hm-cells { flex: 1; display: grid; grid-template-columns: repeat(24, 1fr); gap: 2px; }
.hm-cell { aspect-ratio: 1; border-radius: 3px; background: var(--purple); min-width: 0; transition: opacity .15s; cursor: default; }
.hm-cell:hover { opacity: 1 !important; outline: 1px solid rgba(200,255,87,.5); }
.hm-cell-now { background: var(--lime) !important; box-shadow: 0 0 6px rgba(200,255,87,.6); }

/* ── TABLE (tip prices) ── */
.table-wrap {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; overflow-x: auto;
  margin-bottom: 1.5rem; -webkit-overflow-scrolling: touch;
}
.tip-table { width: 100%; border-collapse: collapse; min-width: 380px; }
.tip-table thead { background: rgba(255,255,255,.025); }
.tip-table th {
  text-align: left; padding: .75rem 1.25rem;
  font-family: 'Syne', sans-serif; font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .09em; color: var(--text-dim);
  border-bottom: 1px solid var(--border); white-space: nowrap;
}
.tip-table td { padding: .85rem 1.25rem; border-bottom: 1px solid var(--border-soft); font-size: .875rem; }
.tip-table tr:last-child td { border-bottom: none; }
.tip-table tr:hover td { background: rgba(255,255,255,.02); }
.tip-table .td-action { font-weight: 500; }
.tip-table .td-tokens { font-family: 'JetBrains Mono', monospace; font-weight: 700; color: var(--purple-soft); }
.tip-table .td-usd    { font-family: 'JetBrains Mono', monospace; font-size: .82rem; color: var(--text-muted); }
.tip-table .td-range  { font-family: 'JetBrains Mono', monospace; font-size: .78rem; color: var(--text-dim); }

/* ── vs BADGES ── */
.vs-badge { display: inline-flex; align-items: center; padding: 2px 9px; border-radius: 99px; font-size: .72rem; font-weight: 700; white-space: nowrap; }
.vs-badge.vs-low  { background: var(--green-dim);  color: var(--green); border: 1px solid rgba(0,214,143,.2); }
.vs-badge.vs-avg  { background: var(--purple-dim); color: var(--purple-soft); border: 1px solid rgba(112,85,245,.2); }
.vs-badge.vs-high { background: var(--amber-dim);  color: var(--amber); border: 1px solid rgba(255,187,55,.2); }
.vs-badge.vs-vhigh{ background: var(--red-dim);    color: var(--red);   border: 1px solid rgba(255,90,126,.2); }

/* ── PRICE CARDS ── */
.price-cards { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.75rem; max-width: 680px; }
.price-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.2rem 1.4rem;
  transition: border-color .2s;
}
.price-card:hover { border-color: rgba(112,85,245,.3); }
.price-card-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: .5rem; flex-wrap: wrap; margin-bottom: .75rem;
}
.price-action { display: flex; align-items: center; gap: .4rem; font-family: 'Syne', sans-serif; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }
.price-card-main { display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap; margin-bottom: .75rem; }
.price-tokens { font-family: 'JetBrains Mono', monospace; font-size: 2rem; font-weight: 700; line-height: 1; }
.price-unit   { font-size: .82rem; color: var(--text-muted); }
.price-usd    { font-family: 'JetBrains Mono', monospace; font-size: .9rem; color: var(--text-muted); margin-left: auto; }
.price-bar-row { display: flex; align-items: center; gap: .75rem; }
.price-bar-label { font-family: 'Syne', sans-serif; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; min-width: 56px; text-align: right; }
.price-bar-sub  { font-family: 'JetBrains Mono', monospace; font-size: .7rem; color: var(--text-dim); margin-top: 4px; }
.bar-cheap  .bar-fill { background: linear-gradient(90deg, var(--green), rgba(0,214,143,.3)); }
.bar-avg    .bar-fill { background: linear-gradient(90deg, var(--purple), rgba(112,85,245,.3)); }
.bar-pricey .bar-fill { background: linear-gradient(90deg, var(--amber), rgba(255,187,55,.3)); }
.bar-high   .bar-fill { background: linear-gradient(90deg, var(--red), rgba(255,90,126,.3)); }
.label-cheap  { color: var(--green); }
.label-avg    { color: var(--text-muted); }
.label-pricey { color: var(--amber); }
.label-high   { color: var(--red); }

/* ── CALCULATOR ── */
.calc-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.4rem; margin-bottom: 1.75rem;
  max-width: 680px;
}
.calc-card h2 { font-family: 'Syne', sans-serif; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-dim); margin-bottom: .9rem; }
.calc-row { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.calc-label { color: var(--text-muted); font-size: .875rem; }
.calc-input {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--text); font-family: 'JetBrains Mono', monospace;
  font-size: 1rem; font-weight: 500;
  padding: .4rem .8rem; border-radius: var(--radius-xs);
  width: 96px; transition: border-color .2s, box-shadow .2s;
  -moz-appearance: textfield;
}
.calc-input::-webkit-inner-spin-button,
.calc-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.calc-input:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(112,85,245,.12); }
.calc-result { font-family: 'JetBrains Mono', monospace; font-size: 1.4rem; font-weight: 700; color: var(--lime); }
.calc-note { font-size: .72rem; color: var(--text-dim); margin-top: .5rem; }

/* ── REGION CARDS (tip index) ── */
.cat-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
  gap: .6rem; margin-bottom: 1.75rem;
}
.cat-card {
  display: flex; flex-direction: column; gap: .3rem;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.2rem;
  text-decoration: none; color: var(--text);
  transition: border-color .2s, transform .2s;
}
.cat-card:hover { border-color: rgba(112,85,245,.35); transform: translateY(-2px); }
.cat-emoji { font-size: 1.5rem; line-height: 1; margin-bottom: .1rem; }
.cat-label { font-family: 'Syne', sans-serif; font-weight: 700; font-size: .95rem; }
.cat-c2c   { font-family: 'JetBrains Mono', monospace; font-size: .8rem; color: var(--text-muted); }
.cat-c2c span { color: var(--purple-soft); font-weight: 700; }

/* ── FAQ ── */
.faq-section { margin-bottom: 1.75rem; max-width: 680px; }
.faq-section > h2 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.faq-item { border-bottom: 1px solid var(--border-soft); padding: .85rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-family: 'Syne', sans-serif; font-size: .9rem; font-weight: 700; margin-bottom: .35rem; }
.faq-item p  { font-size: .85rem; color: var(--text-muted); line-height: 1.7; }
.faq-item strong { color: var(--text); }

/* ── PAGE HEADERS ── */
h1 { font-size: 2rem; font-weight: 800; letter-spacing: -.03em; line-height: 1.15; margin-bottom: .5rem; }
h2 { font-size: 1.15rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: .75rem; margin-top: 2rem; }
h2:first-child { margin-top: 0; }
.page-sub { color: var(--text-muted); font-size: .875rem; margin-bottom: 1.5rem; line-height: 1.6; }
.page-sub a { color: var(--purple-soft); text-decoration: none; }
.page-sub a:hover { text-decoration: underline; }

/* ── MISC ── */
.back-link { font-size: .875rem; margin-top: 1.5rem; display: block; }
.back-link a, a.back-link { color: var(--purple-soft); text-decoration: none; font-family: 'Syne', sans-serif; font-weight: 700; }
.back-link a:hover, a.back-link:hover { text-decoration: underline; }
.text-muted, .muted { color: var(--text-muted); font-size: .875rem; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border) 50%, transparent); margin: 2rem 0; }

.model-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: .65rem; margin-top: 1.5rem; }
.model-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.15rem;
  text-decoration: none; color: var(--text);
  transition: border-color .2s, transform .2s;
}
.model-card:hover { border-color: rgba(112,85,245,.35); transform: translateY(-2px); }
.mc-status { font-size: .9rem; margin-bottom: .4rem; }
.mc-name { font-family: 'Syne', sans-serif; font-weight: 700; margin-bottom: .15rem; font-size: .9rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mc-followers { font-size: .75rem; color: var(--text-muted); }

.tags-wrap { display: flex; flex-wrap: wrap; gap: .35rem; }
.tag { background: rgba(255,255,255,.04); border: 1px solid var(--border); color: var(--text-muted); padding: .2rem .6rem; border-radius: 99px; font-size: .72rem; text-decoration: none; transition: color .2s, border-color .2s; }
.tag:hover { color: var(--purple-soft); border-color: rgba(112,85,245,.3); }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem; text-align: center;
  color: var(--text-dim); font-size: .8rem;
  margin-top: 4rem; position: relative; z-index: 1;
}
.footer-inner { max-width: 1000px; margin: 0 auto; }
.footer a { color: var(--text-dim); text-decoration: underline; opacity: .7; }
.footer a:hover { opacity: 1; }
.footer p + p { margin-top: .35rem; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .model-grid { grid-template-columns: repeat(auto-fill, minmax(145px,1fr)); }
  .tip-table th:nth-child(4), .tip-table td:nth-child(4) { display: none; }
  .forecast-table th:nth-child(5), .forecast-table td:nth-child(5) { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 1.5rem 1rem; }
  h1 { font-size: 1.65rem; }
  .nav-links a:not(:last-child) { display: none; }
  .pivot-name { font-size: 1.9rem; flex-direction: column; align-items: flex-start; gap: .4rem; }
  .pivot-cards { max-width: 100%; }
  .price-cards, .calc-card, .faq-section { max-width: 100%; }
  .price-card-main { flex-direction: column; gap: .25rem; }
  .price-usd { margin-left: 0; }
  .price-tokens { font-size: 1.65rem; }
  .stat-row { gap: .4rem; }
  .stat-box { padding: .75rem .6rem; }
  .stat-val { font-size: 1.1rem; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .today-card { padding: 1.25rem; }
  .prob-ring-val .num { font-size: 1.75rem; }
}

/* ── VARIATIVE INTRO ── */
.page-intro { font-size: .93rem; color: var(--text-dim); line-height: 1.65; margin: .75rem 0 1.5rem; max-width: 680px; }
.page-sub-row { display: flex; align-items: center; gap: .5rem; margin: .25rem 0 .5rem; flex-wrap: wrap; }

/* ── BEST VALUE BLOCK ── */
.best-value-block { display: flex; align-items: flex-start; gap: .75rem; background: rgba(0,214,143,.07); border: 1px solid rgba(0,214,143,.2); border-radius: 12px; padding: 1rem 1.2rem; margin: 1.25rem 0; }
.bv-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.bv-body { font-size: .88rem; color: var(--text); line-height: 1.55; }
.bv-body strong { color: var(--green); }

/* ── PIVOT LINK (action table → model page) ── */
.pivot-link { color: var(--text-dim); font-size: .75rem; opacity: .5; text-decoration: none; margin-left: 2px; }
.pivot-link:hover { opacity: 1; color: var(--purple-soft); }

/* ── ACTION GRID (index page browse by action) ── */
.action-grid { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0 2rem; }
.action-chip { display: inline-flex; align-items: center; gap: .35rem; padding: .45rem .9rem; background: var(--bg2); border: 1px solid rgba(255,255,255,.08); border-radius: 99px; font-size: .82rem; color: var(--text); text-decoration: none; transition: border-color .15s, background .15s; white-space: nowrap; }
.action-chip:hover { border-color: rgba(112,85,245,.5); background: rgba(112,85,245,.1); color: var(--purple-soft); }

.cta-watch { display: flex; align-items: center; gap: .6rem; background: linear-gradient(135deg, rgba(112,85,245,.15), rgba(112,85,245,.05)); border: 1px solid rgba(112,85,245,.3); border-radius: 12px; padding: 1rem 1.4rem; margin: 1.5rem 0; color: var(--text); text-decoration: none; font-weight: 600; font-size: .95rem; transition: border-color .2s, background .2s; }
.cta-watch:hover { border-color: rgba(112,85,245,.6); background: rgba(112,85,245,.12); }
.cta-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px var(--green); flex-shrink: 0; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { opacity:1; } 50% { opacity:.4; } }
.updated-ts { font-size: .7rem; color: var(--text-dim); opacity: .6; }
.new-this-week { background: rgba(200,255,87,.05); border: 1px solid rgba(200,255,87,.15); border-radius: 12px; padding: 1rem 1.2rem; margin: 1.5rem 0; }
.ntw-header { display: flex; align-items: center; gap: .75rem; margin-bottom: .6rem; }
.ntw-badge { font-size: .78rem; font-weight: 700; color: var(--lime); }
.ntw-count { font-size: .72rem; color: var(--text-dim); }
.ntw-chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.new-model-chip { font-size: .78rem; padding: .3rem .7rem; background: rgba(200,255,87,.08); border: 1px solid rgba(200,255,87,.2); border-radius: 99px; color: var(--text); text-decoration: none; }
.new-model-chip:hover { background: rgba(200,255,87,.15); color: var(--lime); }
.trust-block { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; margin: 1.5rem 0; overflow: hidden; }
.trust-summary { display: flex; align-items: center; gap: .6rem; padding: .85rem 1.1rem; cursor: pointer; list-style: none; font-size: .85rem; color: var(--text-dim); }
.trust-summary::-webkit-details-marker { display: none; }
.trust-summary:hover { color: var(--text); }
.trust-icon { font-size: 1rem; flex-shrink: 0; }
.trust-conf { margin-left: auto; font-size: .72rem; font-weight: 600; padding: .2rem .55rem; border-radius: 99px; }
.trust-high { background: rgba(0,214,143,.12); color: var(--green); }
.trust-med  { background: rgba(255,187,55,.1);  color: var(--amber); }
.trust-low  { background: rgba(255,90,126,.1);  color: var(--red); }
.trust-body { padding: .25rem 1.1rem 1rem; font-size: .82rem; line-height: 1.65; color: var(--text-dim); border-top: 1px solid rgba(255,255,255,.05); }
.trust-body p { margin: .6rem 0; }
.trust-list { margin: .6rem 0 .6rem 1.1rem; display: flex; flex-direction: column; gap: .35rem; }
.trust-list li { color: var(--text-dim); }
.trust-list strong { color: var(--text); }
.trust-disclaimer { font-size: .77rem; opacity: .6; font-style: italic; }
.footer-compliance { font-size: .72rem; color: var(--text-dim); opacity: .55; border-top: 1px solid rgba(255,255,255,.05); padding-top: .6rem; margin-bottom: .4rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.responsible-block { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 1.25rem 1.4rem; margin: 1.25rem 0; }
.responsible-block h2 { font-size: 1rem; font-weight: 600; margin: 0 0 .75rem; color: var(--text); }
.responsible-block p { font-size: .88rem; line-height: 1.7; color: var(--text-dim); margin: .5rem 0; }
.responsible-block a { color: var(--purple-soft); }
.responsible-list { margin: .5rem 0 .5rem 1.1rem; display: flex; flex-direction: column; gap: .4rem; }
.responsible-list li { font-size: .87rem; line-height: 1.6; color: var(--text-dim); }
.badge-online { background: rgba(0,214,143,.15); color: var(--green); border: 1px solid rgba(0,214,143,.3); font-weight: 600; animation: pulse-online 2.5s infinite; }
@keyframes pulse-online { 0%,100% { box-shadow: 0 0 0 0 rgba(0,214,143,.3); } 50% { box-shadow: 0 0 0 4px rgba(0,214,143,.0); } }
.badge-offline { background: rgba(255,255,255,.04); color: var(--text-dim); border: 1px solid rgba(255,255,255,.08); font-size: .68rem; }
.cta-watch--live { border-color: rgba(0,214,143,.4); background: linear-gradient(135deg, rgba(0,214,143,.12), rgba(0,214,143,.04)); }
.cta-watch--live:hover { border-color: rgba(0,214,143,.7); background: rgba(0,214,143,.15); }