/* =========================================================
   RevolutionRP — Neon Noir Editorial
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=IBM+Plex+Sans:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,900&display=swap');

:root {
  /* Palette — ancrée sur le bleu du logo, neutres chauds-froids */
  --bg: #0d1117;
  --bg-2: #0a0e13;
  --surface: #151a22;
  --surface-2: #1c222b;
  --line: #232a36;
  --line-strong: #2e3645;

  --ink: #e6edf3;
  --ink-2: #b3bdc9;
  --muted: #7d8694;
  --muted-2: #5a6470;

  /* Un seul accent — la couleur du logo. Pas de magenta, pas de vert acide. */
  --orange: #6BC0DC;
  --orange-2: #94d4eb;
  --magenta: #4a92b3;
  --acid: #6BC0DC;
  --gold: #94d4eb;

  /* Type */
  --display: 'Anton', 'Bebas Neue', sans-serif;
  --serif: 'Fraunces', 'Times New Roman', serif;
  --body: 'IBM Plex Sans', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', 'Courier New', monospace;

  /* Layout */
  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 4px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* Background grain overlay — gives the cinematic feel */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.85 0 0 0 0 0.92 0 0 0 0 1 0 0 0 0.10 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .25;
  mix-blend-mode: overlay;
}

/* Subtle vignette */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 2;
  background: radial-gradient(120% 80% at 50% 0%, transparent 50%, rgba(0,0,0,.55) 100%);
}

main, header, footer, section { position: relative; z-index: 3; }

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

/* ========== Topbar ========== */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(10,8,6,.55);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.topbar .row { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-size: 18px; letter-spacing: .04em; text-transform: uppercase; line-height: 1; }
.brand-mark {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
}
.brand-mark img, .brand-mark svg {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain; display: block;
}
.brand-name { display: flex; align-items: baseline; gap: 6px; }
.brand-name b { font-weight: 400; }
.brand-name span { color: var(--orange); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-2); transition: color .25s; }
.nav a:hover, .nav a.active { color: var(--orange); }
.nav .pill { padding: 10px 18px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--ink); }
.nav .pill:hover { background: var(--orange); color: #000; border-color: var(--orange); }

.menu-btn { display: none; }

@media (max-width: 880px) {
  .nav { display: none; position: fixed; top: 64px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--bg-2); padding: 16px var(--gutter) 28px; border-bottom: 1px solid var(--line); }
  .nav.open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); width: 100%; font-size: 13px; }
  .nav .pill { margin-top: 14px; text-align: center; }
  .menu-btn { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--line-strong); border-radius: 4px; }
}

/* ========== Hero ========== */
.hero {
  padding: 180px 0 140px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(70% 90% at 75% 15%, rgba(107,192,220,.10), transparent 60%),
    linear-gradient(180deg, #0d1117 0%, #0a0e13 100%);
}
.hero-bg::after {
  /* grid lines */
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(80% 80% at 50% 50%, black 30%, transparent 80%);
}

.hero-grid { display: grid; grid-template-columns: 1fr; gap: 48px; position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-2);
  padding: 8px 14px;
  background: rgba(0,0,0,.4);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 12px var(--acid);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.85); }
}

.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 96px);
  line-height: .95;
  letter-spacing: -.005em;
  text-transform: uppercase;
  margin: 32px 0 0;
  max-width: 920px;
}
.hero h1 .line { display: block; }
.hero h1 .line.italic { font-family: var(--serif); font-style: italic; font-weight: 900; font-size: .82em; letter-spacing: -.03em; text-transform: none; color: var(--orange); }
.hero h1 .strike { position: relative; display: inline-block; }
.hero h1 .strike::after {
  content: ''; position: absolute; left: -4%; right: -4%; top: 52%;
  height: .12em; background: var(--magenta);
  transform: rotate(-2deg);
}

.hero-tagline {
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  border-left: 2px solid var(--orange);
  padding-left: 12px;
  max-width: 560px;
  line-height: 1.5;
}

.hero-sub {
  margin-top: 20px;
  max-width: 560px;
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.6;
}

.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 28px;
  font-family: var(--mono); font-weight: 600;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  border-radius: 2px; transition: transform .25s, box-shadow .25s, background .25s, color .25s;
  position: relative; overflow: hidden;
}
.btn-primary { background: var(--orange); color: #0d1117; box-shadow: 0 8px 24px -8px rgba(107,192,220,.4); }
.btn-primary:hover { transform: translateY(-2px); background: var(--orange-2); }
.btn-ghost { color: var(--ink); border: 1px solid var(--line-strong); background: rgba(0,0,0,.25); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(255,255,255,.06); }
.btn .arrow { display: inline-block; transition: transform .3s; }
.btn:hover .arrow { transform: translateX(4px); }

/* Hero stats strip */
.hero-stats {
  margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-stats .cell { padding-right: 16px; }
.hero-stats .num {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1;
  color: var(--ink);
}
.hero-stats .num.acc { color: var(--orange); }
.hero-stats .lbl {
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
}
@media (max-width: 720px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats .cell:nth-child(2) { border-right: 0; }
  .hero-stats .cell:nth-child(1), .hero-stats .cell:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* ========== Section header pattern ========== */
.section { padding: clamp(96px, 13vw, 180px) 0; border-bottom: 1px solid var(--line); }
.section.alt { background: var(--bg-2); }

.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 80px; }
.section-head .num {
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--orange);
  display: flex; align-items: center; gap: 14px;
}
.section-head .num::before { content:''; width: 32px; height: 1px; background: var(--orange); }
.section-head h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.005em;
  margin-top: 20px;
}
.section-head h2 em { font-family: var(--serif); font-style: italic; font-weight: 900; color: var(--orange); text-transform: none; }
.section-head .lede { font-size: 16px; color: var(--ink-2); line-height: 1.65; max-width: 440px; justify-self: end; }

@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .section-head .lede { justify-self: start; }
}

/* ========== Pillars (why us) ========== */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pillar {
  padding: 56px 36px 44px;
  background: var(--bg);
  position: relative;
  transition: background .3s;
}
.pillar .num-tag {
  display: block;
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em;
  color: var(--orange); text-transform: uppercase;
  margin-bottom: 28px;
}
.pillar:hover { background: var(--surface); }
.pillar h3 {
  font-family: var(--display); font-weight: 400; font-size: 22px;
  text-transform: uppercase; letter-spacing: .01em;
  margin-bottom: 14px;
}
.pillar p { color: var(--ink-2); font-size: 14.5px; line-height: 1.6; }
.pillar .tag { display: none; }
@media (max-width: 980px) { .pillars { grid-template-columns: repeat(2, 1fr); } .pillar:nth-child(2){border-right:0;} .pillar:nth-child(1),.pillar:nth-child(2){border-bottom:1px solid var(--line);} }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } .pillar { border-right: 0; border-bottom: 1px solid var(--line); } .pillar:last-child { border-bottom: 0; } }

/* ========== Activities grid ========== */
.activities { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.act-card {
  position: relative;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 40px 36px;
  min-height: 300px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.act-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.act-card .num {
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em; color: var(--muted); text-transform: uppercase;
}
.act-card h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px); text-transform: uppercase;
  margin: 12px 0 16px; line-height: 1;
}
.act-card p { color: var(--ink-2); font-size: 14.5px; line-height: 1.6; max-width: 380px; }
.act-card .tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 22px; }
.act-card .chip { font-family: var(--mono); font-size: 10px; color: var(--ink-2); border: 1px solid var(--line-strong); padding: 5px 11px; border-radius: 999px; letter-spacing: .12em; text-transform: uppercase; }
.act-card .deco {
  position: absolute; right: -16px; bottom: -28px;
  font-family: var(--display); font-size: 160px; line-height: .8;
  color: rgba(255,255,255,.02);
  pointer-events: none;
}
.act-card.large { grid-column: span 7; min-height: 380px; background: linear-gradient(135deg, #1a2330 0%, #151a22 100%); }
.act-card.large h3 { font-size: clamp(28px, 3vw, 40px); }
.act-card.med { grid-column: span 5; }
.act-card.med-l { grid-column: span 4; }
.act-card.med-r { grid-column: span 8; }
.act-card.col { grid-column: span 4; }

@media (max-width: 980px) {
  .activities { grid-template-columns: 1fr; }
  .act-card.large, .act-card.med, .act-card.med-l, .act-card.med-r, .act-card.col { grid-column: span 1; }
}

/* ========== Quote / immersion strip ========== */
.quote {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(22px, 2.8vw, 38px);
  line-height: 1.25;
  letter-spacing: -.01em;
  max-width: 920px;
  color: var(--ink);
}
.quote em { color: var(--orange); font-style: italic; }
.quote-meta {
  margin-top: 36px;
  display: flex; align-items: center; gap: 16px;
  font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .14em;
  color: var(--muted);
}
.quote-meta::before { content: ''; width: 48px; height: 1px; background: var(--orange); }

/* ========== Steps (How to play) ========== */
.steps { display: grid; gap: 0; border-top: 1px solid var(--line); }
.step {
  display: grid; grid-template-columns: 80px 1fr 240px;
  gap: 36px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: padding .3s;
}
.step:hover { padding-left: 16px; padding-right: 16px; background: var(--surface); }
.step .n {
  font-family: var(--display); font-size: 44px; line-height: 1; color: var(--orange);
}
.step h3 { font-family: var(--display); font-weight: 400; font-size: 22px; text-transform: uppercase; margin-bottom: 12px; letter-spacing: .01em; }
.step p { color: var(--ink-2); font-size: 15px; line-height: 1.65; max-width: 560px; }
.step .meta { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 880px) {
  .step { grid-template-columns: 56px 1fr; }
  .step .meta { grid-column: span 2; padding-top: 8px; }
  .step .n { font-size: 44px; }
}

/* ========== Testimonials ========== */
.testis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testi {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  min-height: 240px;
}
.testi .stars { color: var(--orange); letter-spacing: 4px; font-size: 12px; margin-bottom: 18px; }
.testi p { color: var(--ink); font-family: var(--serif); font-size: 16px; line-height: 1.55; flex: 1; }
.testi .who { margin-top: 28px; display: flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.testi .avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--magenta)); display: grid; place-items: center; color: #001525; font-family: var(--display); font-size: 14px; }
@media (max-width: 880px) { .testis { grid-template-columns: 1fr; } }

/* ========== FAQ ========== */
.faq { max-width: 980px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  cursor: pointer;
}
.faq summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: var(--display); font-size: clamp(17px, 1.8vw, 22px);
  text-transform: uppercase; line-height: 1.2;
  color: var(--ink);
  letter-spacing: .01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--mono); font-size: 28px; color: var(--orange);
  transition: transform .3s;
}
.faq details[open] summary::after { content: '×'; transform: rotate(0); }
.faq details[open] summary { color: var(--orange); }
.faq .ans { padding-top: 18px; color: var(--ink-2); font-size: 16px; max-width: 760px; }

/* ========== Final CTA ========== */
.cta-final {
  position: relative;
  padding: clamp(96px, 12vw, 160px) 0;
  text-align: center;
  background: linear-gradient(180deg, #0d1117, #0a0e13);
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 50% at 50% 50%, rgba(107,192,220,.07), transparent 60%);
}
.cta-final h2 {
  position: relative;
  font-family: var(--display); font-weight: 400;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.05; text-transform: uppercase;
  letter-spacing: 0;
  max-width: 720px; margin: 0 auto;
}
.cta-final h2 em { font-family: var(--serif); font-style: italic; font-weight: 900; color: var(--orange); text-transform: none; }
.cta-final p { position: relative; max-width: 480px; margin: 32px auto 40px; color: var(--ink-2); font-size: 16px; line-height: 1.65; }
.cta-final .actions { position: relative; display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ========== Footer ========== */
.footer {
  background: #03060c;
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px; margin-bottom: 56px; }
.footer-brand { font-family: var(--display); font-size: 26px; text-transform: uppercase; line-height: 1; letter-spacing: .04em; display: flex; align-items: baseline; gap: 4px; }
.footer-brand em { font-family: var(--display); font-style: normal; font-weight: 400; color: var(--orange); }
.footer-brand + p { margin-top: 16px; color: var(--muted); max-width: 380px; font-size: 14px; }
.footer h4 { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--orange); margin-bottom: 18px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer li a { font-size: 14px; color: var(--ink-2); transition: color .2s; }
.footer li a:hover { color: var(--orange); }
.footer-base {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted-2);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: span 2; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } .footer-brand { grid-column: 1; } }

/* ========== Scroll marquee ========== */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  padding: 14px 0;
}
.marquee-track {
  display: flex; gap: 48px;
  animation: scroll 50s linear infinite;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-track .dot { width: 5px; height: 5px; background: var(--orange); border-radius: 50%; }
.marquee-track em { font-family: var(--serif); font-style: italic; color: var(--orange); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========== Inner page hero ========== */
.page-hero {
  padding: 160px 0 100px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 80% 20%, rgba(107,192,220,.07), transparent 60%);
}
.page-hero .container { position: relative; }
.crumb { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--orange); margin-bottom: 24px; }
.page-hero h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1; text-transform: uppercase; letter-spacing: -.005em;
  max-width: 880px;
}
.page-hero h1 em { font-family: var(--serif); font-style: italic; color: var(--orange); text-transform: none; }
.page-hero .lede { margin-top: 32px; font-size: 16px; color: var(--ink-2); max-width: 580px; line-height: 1.65; }

/* ========== Long-form (blog) ========== */
.prose { max-width: 760px; margin: 0 auto; padding: 80px 0 120px; }
.prose h2 { font-family: var(--display); font-size: clamp(32px, 4vw, 48px); text-transform: uppercase; margin: 48px 0 18px; line-height: 1; }
.prose h3 { font-family: var(--display); font-size: 26px; text-transform: uppercase; margin: 36px 0 12px; }
.prose p { font-size: 17px; line-height: 1.7; color: var(--ink-2); margin-bottom: 18px; }
.prose p:first-of-type::first-letter { font-family: var(--display); font-size: 64px; float: left; line-height: .85; padding: 6px 12px 0 0; color: var(--orange); }
.prose ul, .prose ol { margin: 12px 0 24px 24px; color: var(--ink-2); font-size: 16px; line-height: 1.7; }
.prose li { margin-bottom: 6px; }
.prose blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: 24px; line-height: 1.3; color: var(--ink);
  border-left: 3px solid var(--orange);
  padding: 12px 0 12px 24px;
  margin: 32px 0;
}
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--orange); border-bottom: 1px solid var(--orange); }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 48px 0; }

.article-meta {
  display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
  font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted);
  margin-top: 24px;
}
.article-meta .tag { color: var(--orange); border: 1px solid var(--line-strong); padding: 6px 10px; border-radius: 999px; }

/* ========== Blog index cards ========== */
.posts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.post {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 36px;
  transition: border-color .3s, transform .3s;
  display: flex; flex-direction: column;
  min-height: 320px;
}
.post:hover { border-color: var(--orange); transform: translateY(-4px); }
.post .meta { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); }
.post h2 { font-family: var(--display); font-weight: 400; font-size: clamp(28px, 3.4vw, 42px); text-transform: uppercase; line-height: .95; margin: 12px 0 14px; }
.post p { color: var(--ink-2); font-size: 15px; flex: 1; }
.post .more { margin-top: 24px; font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); }
@media (max-width: 880px) { .posts { grid-template-columns: 1fr; } }

/* ========== Two-col content ========== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col h2 { font-family: var(--display); font-weight: 400; font-size: clamp(32px, 4.5vw, 60px); text-transform: uppercase; line-height: .95; }
.two-col h2 em { font-family: var(--serif); font-style: italic; color: var(--orange); text-transform: none; }
.two-col p { color: var(--ink-2); font-size: 17px; line-height: 1.6; margin-bottom: 16px; }
.two-col ul { color: var(--ink-2); font-size: 16px; margin: 12px 0 0 18px; }
.two-col li { margin-bottom: 8px; }
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

/* ========== Reveal animation ========== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s ease; }
.reveal.show { opacity: 1; transform: none; }

/* ========== Visually-hidden ========== */
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ========== Selection ========== */
::selection { background: var(--orange); color: #000; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #0a0806; }
::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }
