/* =============================================
   ANARCHOBRONI.ES — DESIGN SYSTEM
   Digital Culture Magazine
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Archivo:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400&family=JetBrains+Mono:wght@300;400;500&display=swap');

/* ─── TOKENS ─────────────────────────────────── */
:root {
  --bg:           #0f0f10;
  --bg2:          #1b1b1f;
  --bg3:          #242428;
  --surface:      #2a2a2f;
  --border:       rgba(242,242,242,0.08);
  --border-hover: rgba(242,242,242,0.18);
  --white:        #f2f2f2;
  --muted:        #888890;
  --muted2:       #555560;

  --orange:   #ff6b2b;
  --blue:     #2b8cff;
  --purple:   #9b6bff;
  --cyan:     #3dd6f5;

  --ff-display: 'Bebas Neue', sans-serif;
  --ff-body:    'Archivo', sans-serif;
  --ff-mono:    'JetBrains Mono', monospace;

  --radius:  4px;
  --radius2: 8px;
  --gap:     clamp(1rem, 3vw, 2rem);
  --col:     min(1280px, 94vw);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.4, 0, 1, 1);
}

/* light mode */
[data-theme="light"] {
  --bg:      #f5f4f0;
  --bg2:     #ebebе8;
  --bg3:     #e0dfdb;
  --surface: #d4d3cf;
  --border:  rgba(15,15,16,0.1);
  --border-hover: rgba(15,15,16,0.22);
  --white:   #0f0f10;
  --muted:   #6a6a72;
  --muted2:  #9a9aa2;
}

/* ─── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── TYPOGRAPHY ─────────────────────────────── */
.t-display {
  font-family: var(--ff-display);
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}
.t-mono {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.t-xl   { font-size: clamp(3.5rem, 9vw, 9rem); }
.t-2xl  { font-size: clamp(2.5rem, 6vw, 6rem); }
.t-lg   { font-size: clamp(1.8rem, 4vw, 3.2rem); }
.t-md   { font-size: clamp(1.3rem, 2.5vw, 2rem); }
.t-base { font-size: 1rem; }
.t-sm   { font-size: 0.875rem; }
.t-xs   { font-size: 0.75rem; }

/* ─── LAYOUT ─────────────────────────────────── */
.container { width: var(--col); margin-inline: auto; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--gap); }

/* ─── NAV ────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 60px;
  display: flex; align-items: center;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  background: rgba(15,15,16,0.85);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
[data-theme="light"] .nav { background: rgba(245,244,240,0.88); }
.nav__logo {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-right: auto;
  white-space: nowrap;
}
.nav__logo span { color: var(--orange); }
.nav__links {
  display: flex; gap: 2rem; align-items: center;
}
.nav__links a {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }
.nav__actions {
  display: flex; align-items: center; gap: 0.75rem; margin-left: 2rem;
}
.nav__theme-btn {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: all 0.2s;
  font-size: 0.9rem;
}
.nav__theme-btn:hover { border-color: var(--border-hover); color: var(--white); }
.nav__menu-btn { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav__menu-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--white); transition: all 0.3s;
}
.nav__mobile {
  display: none; position: fixed; inset: 60px 0 0 0;
  background: var(--bg); z-index: 99; padding: 2rem;
  flex-direction: column; gap: 1.5rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  color: var(--white);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

/* ─── HERO ───────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-rows: 1fr;
  padding-top: 60px;
  position: relative; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(43,140,255,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 70%, rgba(155,107,255,0.07) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}
.hero__noise {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.025;
  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)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero__content {
  position: relative; z-index: 2;
  width: var(--col); margin-inline: auto;
  padding-block: clamp(4rem, 10vh, 7rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero__eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.5); }
}
.hero__label {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(3.8rem, 8.5vw, 6.5rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}
.hero__title .accent { color: var(--orange); }
.hero__title .stroke {
  -webkit-text-stroke: 1.5px var(--white);
  color: transparent;
}
.hero__desc {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--muted);
  max-width: 42ch;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
}
.hero__img-wrap {
  width: 100%; height: 100%;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.hero__img-wrap img{
  height: 100%;
  object-fit: cover;
}
.hero__img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 50%, var(--bg2) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 1.2rem; color: var(--muted2);
  letter-spacing: 0.1em;
}
.hero__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,107,43,0.15) 0%,
    rgba(43,140,255,0.08) 50%,
    transparent 100%
  );
}
.hero__tag-float {
  position: absolute; top: 1.5rem; left: -1.5rem;
  background: var(--bg); border: 1px solid var(--border);
  padding: 0.5rem 1rem; border-radius: var(--radius);
  font-family: var(--ff-mono); font-size: 0.65rem;
  color: var(--cyan); letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero__stats-float {
  position: absolute; bottom: 2rem; right: -1.5rem;
  background: var(--bg2); border: 1px solid var(--border);
  padding: 1rem 1.25rem; border-radius: var(--radius2);
  display: flex; flex-direction: column; gap: 0.25rem;
}
.hero__stats-num {
  font-family: var(--ff-display); font-size: 2rem; color: var(--orange);
}
.hero__stats-label {
  font-family: var(--ff-mono); font-size: 0.6rem;
  color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase;
}

/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--ff-mono); font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease-out);
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: white; opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::before { opacity: 0.05; }
.btn-primary {
  background: var(--orange); color: #0f0f10;
  font-weight: 700;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,107,43,0.35); }
.btn-outline {
  border: 1px solid var(--border-hover); color: var(--white);
}
.btn-outline:hover { border-color: var(--white); transform: translateY(-2px); }
.btn-ghost {
  color: var(--muted); padding: 0;
}
.btn-ghost:hover { color: var(--white); }

/* ─── SECTION HEADERS ────────────────────────── */
.section-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  gap: 1rem; flex-wrap: wrap;
}
.section-eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}

/* ─── ARTICLE CARDS ──────────────────────────── */
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s var(--ease-out);
  display: flex; flex-direction: column;
  position: relative;
}
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.card__thumb {
  aspect-ratio: 16/9; overflow: hidden;
  background: var(--bg3); position: relative;
}
.card__thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 0.9rem;
  color: var(--muted2); letter-spacing: 0.1em; text-align: center; padding: 1rem;
}
.card__thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,15,16,0.8) 100%);
}
.card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.75rem; }
.card__meta {
  display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
}
.card__cat {
  font-family: var(--ff-mono); font-size: 0.6rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.2rem 0.6rem; border-radius: 2px;
  background: rgba(255,107,43,0.12); color: var(--orange);
}
.card__cat.blue  { background: rgba(43,140,255,0.12); color: var(--blue); }
.card__cat.purple{ background: rgba(155,107,255,0.12); color: var(--purple); }
.card__cat.cyan  { background: rgba(61,214,245,0.12); color: var(--cyan); }
.card__read-time {
  font-family: var(--ff-mono); font-size: 0.58rem;
  color: var(--muted); letter-spacing: 0.08em;
}
.card__title {
  font-family: var(--ff-body); font-weight: 700;
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  line-height: 1.35; color: var(--white);
  transition: color 0.2s;
}
.card:hover .card__title { color: var(--orange); }
.card__excerpt {
  font-size: 0.875rem; color: var(--muted); line-height: 1.65;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.card__footer {
  margin-top: auto; padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.card__author {
  font-family: var(--ff-mono); font-size: 0.6rem;
  color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase;
}
.card__arrow { color: var(--muted); font-size: 1rem; transition: all 0.2s; }
.card:hover .card__arrow { color: var(--orange); transform: translateX(4px); }

/* large card variant */
.card--large .card__thumb { aspect-ratio: 3/2; }
.card--large .card__title { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

/* featured hero card */
.card--featured {
  grid-column: span 2;
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.card--featured .card__thumb {
  aspect-ratio: unset; height: auto;
}
.card--featured .card__title { font-size: clamp(1.5rem, 2.5vw, 2rem); }

/* ─── SECTIONS ───────────────────────────────── */
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section--alt { background: var(--bg2); }
.section--border-top { border-top: 1px solid var(--border); }

/* ─── TICKER ─────────────────────────────────── */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0; overflow: hidden; background: var(--bg2);
}
.ticker__inner {
  display: flex; width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker__item {
  white-space: nowrap; padding-inline: 3rem;
  font-family: var(--ff-mono); font-size: 0.65rem;
  color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; align-items: center; gap: 1.5rem;
}
.ticker__item::after {
  content: '◆'; font-size: 0.4rem; color: var(--orange);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── INTERNET TIMELINE ──────────────────────── */
.timeline { padding-block: clamp(4rem, 8vw, 7rem); }
.timeline__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  margin-top: 3rem;
}
.timeline__track::before {
  content: '';
  position: absolute;
  top: 32px; left: 0; right: 0;
  height: 1px; background: var(--border);
}
.timeline__era {
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem; padding: 0 1rem; cursor: pointer;
  position: relative;
}
.timeline__dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg2); border: 2px solid var(--muted2);
  transition: all 0.3s; z-index: 1; flex-shrink: 0;
}
.timeline__era:hover .timeline__dot,
.timeline__era.active .timeline__dot {
  background: var(--orange); border-color: var(--orange);
  box-shadow: 0 0 14px rgba(255,107,43,0.6);
}
.timeline__era-year {
  font-family: var(--ff-mono); font-size: 0.6rem;
  color: var(--muted); letter-spacing: 0.1em;
}
.timeline__era-name {
  font-family: var(--ff-display); font-size: 0.85rem;
  text-transform: uppercase; text-align: center; color: var(--muted);
  transition: color 0.3s;
}
.timeline__era:hover .timeline__era-name,
.timeline__era.active .timeline__era-name { color: var(--white); }
.timeline__panel {
  margin-top: 3rem; padding: 2rem;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius2);
  display: none;
}
.timeline__panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.timeline__panel-title {
  font-family: var(--ff-display); font-size: 2.5rem;
  text-transform: uppercase; margin-bottom: 0.5rem;
}
.timeline__panel-desc { color: var(--muted); line-height: 1.7; }
.timeline__panel-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.timeline__tag {
  font-family: var(--ff-mono); font-size: 0.6rem;
  padding: 0.25rem 0.6rem; border-radius: 2px;
  background: var(--bg3); color: var(--cyan);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.timeline__panel-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; align-content: start;
}
.timeline__stat {
  padding: 1rem; background: var(--bg3);
  border-radius: var(--radius); border: 1px solid var(--border);
}
.timeline__stat-n {
  font-family: var(--ff-display); font-size: 2rem; color: var(--cyan);
}
.timeline__stat-l {
  font-family: var(--ff-mono); font-size: 0.58rem;
  color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase;
}

/* ─── AESTHETIC GRID ─────────────────────────── */
.aesthetic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border-radius: var(--radius2); overflow: hidden;
  border: 1px solid var(--border);
}
.aesthetic-cell {
  background: var(--bg2);
  aspect-ratio: 1;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1.25rem;
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}
.aesthetic-cell::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--cell-color, rgba(255,107,43,0.1));
  opacity: 0; transition: opacity 0.3s;
}
.aesthetic-cell:hover::before { opacity: 1; }
.aesthetic-cell__pattern {
  position: absolute; inset: 0;
  opacity: 0.05; font-family: var(--ff-mono); font-size: 0.6rem;
  color: var(--white); overflow: hidden; line-height: 1.4;
  pointer-events: none; word-break: break-all; padding: 0.5rem;
}
.aesthetic-cell__name {
  font-family: var(--ff-display); font-size: 1.1rem;
  text-transform: uppercase; position: relative; z-index: 1;
  transition: color 0.3s;
}
.aesthetic-cell:hover .aesthetic-cell__name { color: var(--orange); }
.aesthetic-cell__desc {
  font-family: var(--ff-mono); font-size: 0.6rem;
  color: var(--muted); letter-spacing: 0.06em;
  position: relative; z-index: 1;
  max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease-out);
}
.aesthetic-cell:hover .aesthetic-cell__desc { max-height: 4rem; }

/* ─── IDENTITY SECTION ───────────────────────── */
.identity-split {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.identity-number {
  font-family: var(--ff-display); font-size: clamp(6rem, 14vw, 12rem);
  line-height: 1; color: var(--border-hover); margin-bottom: -1rem;
  -webkit-text-stroke: 1px rgba(242,242,242,0.1);
  color: transparent;
}
.identity-title {
  font-family: var(--ff-display); font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase; line-height: 1; margin-bottom: 1.5rem;
}
.identity-body { color: var(--muted); line-height: 1.8; font-size: 1.05rem; }
.identity-body p + p { margin-top: 1rem; }
.identity-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.identity-quote {
  padding: 1.5rem;
  border-left: 3px solid var(--orange);
  background: var(--bg2);
  border-radius: 0 var(--radius2) var(--radius2) 0;
}
.identity-quote p {
  font-size: 1.1rem; font-style: italic; color: var(--white); line-height: 1.6;
}
.identity-quote cite {
  display: block; margin-top: 0.75rem;
  font-family: var(--ff-mono); font-size: 0.6rem;
  color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase;
}
.identity-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.identity-tag {
  font-family: var(--ff-mono); font-size: 0.65rem; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.4rem 0.8rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--muted); transition: all 0.2s; cursor: default;
}
.identity-tag:hover { border-color: var(--orange); color: var(--orange); }

/* ─── SIGNAL VS NOISE ────────────────────────── */
.signal-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 2rem;
}
.signal-item {
  padding: 2rem;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius2);
}
.signal-item__label {
  font-family: var(--ff-mono); font-size: 0.65rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.signal-item__label.signal { color: var(--cyan); }
.signal-item__label.noise  { color: var(--orange); }
.signal-item__title {
  font-family: var(--ff-display); font-size: 1.8rem;
  text-transform: uppercase; margin-bottom: 0.75rem;
}
.signal-item__text { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

/* ─── NEWSLETTER ─────────────────────────────── */
.newsletter {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
  position: relative; overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(43,140,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter__label {
  font-family: var(--ff-mono); font-size: 0.65rem;
  color: var(--blue); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.newsletter__title {
  font-family: var(--ff-display); font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase; line-height: 1; margin-bottom: 1rem;
}
.newsletter__desc { color: var(--muted); line-height: 1.7; }
.newsletter__form {
  display: flex; flex-direction: column; gap: 1rem;
}
.newsletter__input {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.85rem 1.25rem;
  color: var(--white); font-family: var(--ff-body); font-size: 0.9rem;
  transition: border-color 0.2s; outline: none;
}
.newsletter__input:focus { border-color: var(--blue); }
.newsletter__input::placeholder { color: var(--muted2); }
.newsletter__note {
  font-family: var(--ff-mono); font-size: 0.6rem;
  color: var(--muted2); letter-spacing: 0.06em;
}

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 4rem;
}
.footer__brand-name {
  font-family: var(--ff-display); font-size: 2rem;
  letter-spacing: 0.05em; margin-bottom: 0.75rem;
}
.footer__brand-name span { color: var(--orange); }
.footer__brand-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.7; max-width: 34ch; }
.footer__col-title {
  font-family: var(--ff-mono); font-size: 0.62rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted2); margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a {
  font-size: 0.875rem; color: var(--muted);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  padding-top: 2rem; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.footer__copy {
  font-family: var(--ff-mono); font-size: 0.6rem;
  color: var(--muted2); letter-spacing: 0.08em;
}
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a {
  font-family: var(--ff-mono); font-size: 0.6rem;
  color: var(--muted2); letter-spacing: 0.08em;
  transition: color 0.2s;
}
.footer__legal a:hover { color: var(--muted); }

/* ─── COOKIE BANNER ──────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  width: min(700px, 94vw); z-index: 200;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius2); padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: opacity 0.4s, transform 0.4s;
}
.cookie-banner.hidden { opacity: 0; transform: translateX(-50%) translateY(20px); pointer-events: none; }
.cookie-banner__text { font-size: 0.8rem; color: var(--muted); flex: 1; }
.cookie-banner__text a { color: var(--blue); }
.cookie-banner__actions { display: flex; gap: 0.75rem; }

/* ─── READING MODE ───────────────────────────── */
.reading-mode-btn {
  position: fixed; bottom: 5rem; right: 1.5rem; z-index: 80;
  width: 44px; height: 44px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--muted); transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.reading-mode-btn:hover { border-color: var(--orange); color: var(--orange); }
body.reading-mode {
  --bg: #0c0c0c; --bg2: #0c0c0c;
}
body.reading-mode .article__body {
  font-size: 1.2rem; max-width: 58ch;
  margin-inline: auto;
}
body.reading-mode .nav,
body.reading-mode .footer,
body.reading-mode .sidebar { display: none; }

/* ─── SCROLL REVEAL ──────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ─── ARTICLE PAGE ───────────────────────────── */
.article-hero {
  padding-top: 60px;
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.article-hero__inner {
  width: var(--col); margin-inline: auto;
  padding-top: clamp(3rem, 6vw, 5rem);
  max-width: 800px;
}
.article-hero__cat-line {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
}
.article-hero__title {
  font-family: var(--ff-body); font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.15; margin-bottom: 1.5rem; letter-spacing: -0.02em;
}
.article-hero__deck {
  font-size: clamp(1rem, 1.8vw, 1.25rem); color: var(--muted);
  line-height: 1.7; margin-bottom: 2rem; max-width: 55ch;
}
.article-hero__meta {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.25rem 0; border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.article-hero__author {
  display: flex; align-items: center; gap: 0.75rem;
}
.article-hero__author-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-mono); font-size: 0.65rem; color: var(--muted);
}
.article-hero__author-name {
  font-weight: 600; font-size: 0.875rem;
}
.article-hero__author-role {
  font-family: var(--ff-mono); font-size: 0.58rem;
  color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase;
}
.article-meta-sep { color: var(--muted2); }
.article-meta-item {
  font-family: var(--ff-mono); font-size: 0.6rem;
  color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase;
}

.article-layout {
  width: var(--col); margin-inline: auto;
  display: grid; grid-template-columns: 1fr 280px;
  gap: 4rem; padding-block: clamp(3rem, 6vw, 5rem);
  align-items: start;
}
.article__body {
  font-size: 1.05rem; line-height: 1.85; color: var(--white);
  transition: all 0.4s;
}
.article__body h2 {
  font-family: var(--ff-body); font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 2.5rem 0 1rem; letter-spacing: -0.02em;
}
.article__body h3 {
  font-weight: 700; font-size: 1.2rem; margin: 2rem 0 0.75rem;
}
.article__body p { margin-bottom: 1.5rem; color: var(--muted); }
.article__body p strong { color: var(--white); }
.article__body blockquote {
  border-left: 3px solid var(--orange);
  padding: 1.25rem 1.5rem;
  background: var(--bg2);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0; font-style: italic;
  font-size: 1.1rem; color: var(--white);
}
.article__body ul {
  list-style: none; margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.5rem;
}
.article__body ul li::before {
  content: '→ '; color: var(--orange);
}
.article__body ul li { color: var(--muted); }

.sidebar { display: flex; flex-direction: column; gap: 2rem; position: sticky; top: 80px; }
.sidebar__widget {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius2); padding: 1.5rem;
}
.sidebar__widget-title {
  font-family: var(--ff-mono); font-size: 0.62rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.25rem;
  padding-bottom: 0.75rem; border-bottom: 1px solid var(--border);
}
.sidebar__related { display: flex; flex-direction: column; gap: 1rem; }
.sidebar__related-item {
  display: flex; gap: 0.75rem; align-items: flex-start;
}
.sidebar__related-thumb {
  width: 60px; height: 45px; flex-shrink: 0;
  background: var(--bg3); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-mono); font-size: 0.5rem; color: var(--muted2);
  text-align: center;
}
.sidebar__related-title {
  font-size: 0.8rem; font-weight: 600; line-height: 1.4;
  color: var(--white); transition: color 0.2s;
}
.sidebar__related-title:hover { color: var(--orange); }
.sidebar__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.sidebar__tag {
  font-family: var(--ff-mono); font-size: 0.58rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.6rem; border-radius: var(--radius);
  border: 1px solid var(--border); color: var(--muted);
  transition: all 0.2s;
}
.sidebar__tag:hover { border-color: var(--orange); color: var(--orange); }
.progress-bar {
  position: fixed; top: 60px; left: 0; right: 0;
  height: 2px; background: var(--orange);
  transform-origin: left; transform: scaleX(0); z-index: 99;
  transition: transform 0.1s linear;
}

/* ─── TAG EXPLORER ───────────────────────────── */
.tag-explorer { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag-exp-item {
  font-family: var(--ff-mono); font-size: 0.65rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.75rem; border-radius: var(--radius);
  border: 1px solid var(--border); color: var(--muted);
  cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; gap: 0.4rem;
}
.tag-exp-item:hover, .tag-exp-item.active {
  border-color: var(--orange); color: var(--orange);
  background: rgba(255,107,43,0.08);
}
.tag-exp-item .count {
  background: var(--bg3); padding: 0.1rem 0.4rem;
  border-radius: 2px; font-size: 0.55rem;
}

/* ─── ARCHIVE / CATEGORIES ───────────────────── */
.archive-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--gap); }
.category-hero {
  background: var(--bg2); border-bottom: 1px solid var(--border);
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(3rem, 5vw, 4rem);
  margin-top: 60px;
}

/* ─── ABOUT PAGE ─────────────────────────────── */
.about-manifesto {
  font-family: var(--ff-display); font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  text-transform: uppercase; line-height: 1.1; letter-spacing: 0.02em;
  max-width: 900px;
}
.about-manifesto .highlight { color: var(--orange); }
.about-manifesto .ghost {
  -webkit-text-stroke: 1px rgba(242,242,242,0.25);
  color: transparent;
}
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.team-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius2); padding: 1.5rem;
  transition: border-color 0.25s;
}
.team-card:hover { border-color: var(--border-hover); }
.team-card__avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 1.3rem; color: var(--muted);
  margin-bottom: 1rem;
}
.team-card__name { font-weight: 700; margin-bottom: 0.2rem; }
.team-card__role {
  font-family: var(--ff-mono); font-size: 0.6rem;
  color: var(--orange); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.team-card__bio { font-size: 0.8rem; color: var(--muted); line-height: 1.65; }

/* ─── STATS STRIP ────────────────────────────── */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius2); overflow: hidden;
}
.stats-strip__item {
  background: var(--bg2); padding: 2rem 1.5rem;
  text-align: center;
}
.stats-strip__num {
  font-family: var(--ff-display); font-size: 3rem;
  color: var(--orange); line-height: 1;
}
.stats-strip__label {
  font-family: var(--ff-mono); font-size: 0.62rem;
  color: var(--muted); letter-spacing: 0.1em;
  text-transform: uppercase; margin-top: 0.5rem;
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .hero__content { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .card--featured { grid-column: unset; grid-template-columns: 1fr; }
  .identity-split { grid-template-columns: 1fr; }
  .newsletter { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .signal-grid { grid-template-columns: 1fr; }
  .timeline__panel.active { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__actions .btn { display: none; }
  .nav__menu-btn { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .aesthetic-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .timeline__track { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 480px) {
  .aesthetic-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ─── UTILITIES ──────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.color-orange { color: var(--orange); }
.color-blue   { color: var(--blue); }
.color-purple { color: var(--purple); }
.color-cyan   { color: var(--cyan); }
.glow-orange { text-shadow: 0 0 30px rgba(255,107,43,0.4); }


.article__body img{
  margin-bottom: 20px;
}

.card__thumb-placeholder{
  background-size: cover!important;
  background-position: center!important;
}

.article-content >*{
  margin-bottom: 20px;
}