:root {
  color-scheme: dark;
  --bg: #09060c;
  --ink: #f7f0e8;
  --muted: #b7a99a;
  --line: rgba(255, 232, 210, 0.12);
  --glow: #ff6b4a;
  --glow2: #c084fc;
  --glow3: #5eead4;
  --card: rgba(255, 247, 237, 0.04);
  --serif: "Fraunces", Georgia, serif;
  --sans: "IBM Plex Sans", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html, body {
  margin: 0; min-height: 100%;
  background: var(--bg); color: var(--ink);
  font-family: var(--sans);
}
a { color: var(--glow3); text-underline-offset: 0.18em; }
a:hover { color: #fff; }
.noise {
  pointer-events: none; position: fixed; inset: 0; z-index: 0; opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.orb {
  pointer-events: none; position: fixed; border-radius: 50%; filter: blur(60px); z-index: 0;
  animation: drift 18s ease-in-out infinite alternate;
}
.orb-a { width: 42vw; height: 42vw; left: -10vw; top: -12vw; background: rgba(255,107,74,.28); }
.orb-b { width: 36vw; height: 36vw; right: -8vw; top: 20vh; background: rgba(192,132,252,.22); animation-delay: -6s; }
@keyframes drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(4vw, 3vh, 0) scale(1.08); }
}
.shell { position: relative; z-index: 1; width: min(980px, calc(100% - 2rem)); margin: 0 auto; }
.top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 0 0.5rem; gap: 1rem;
}
.logo {
  display: inline-flex; align-items: center; gap: .65rem;
  color: inherit; text-decoration: none; font-weight: 600; letter-spacing: .01em;
}
.logo-mark {
  width: 2rem; height: 2rem; display: grid; place-items: center;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--glow));
  color: #2a0c08; font-size: 1rem; box-shadow: 0 0 30px rgba(255,107,74,.45);
}
nav { display: flex; gap: 1.1rem; color: var(--muted); font-size: .92rem; }
nav a { color: inherit; text-decoration: none; }
nav a:hover { color: var(--ink); }
.hero { padding: 3.5rem 0 2.5rem; }
.pill {
  display: inline-block; margin: 0 0 1.1rem; padding: .4rem .8rem;
  border: 1px solid var(--line); border-radius: 999px;
  color: #ffd0c4; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(255,107,74,.08);
}
h1 {
  margin: 0; font-family: var(--serif);
  font-size: clamp(2.8rem, 8vw, 5.4rem); line-height: .98;
  letter-spacing: -0.035em; font-weight: 700;
}
h1 em {
  font-style: italic; color: transparent;
  background: linear-gradient(120deg, var(--glow), var(--glow2) 45%, var(--glow3));
  -webkit-background-clip: text; background-clip: text;
}
.lede {
  max-width: 34rem; margin: 1.35rem 0 0; color: var(--muted);
  font-size: 1.12rem; line-height: 1.65;
}
.section-head { margin: 2rem 0 1.25rem; }
.section-head h2, .share h2, .note h2 {
  margin: 0; font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.section-head p { margin: .4rem 0 0; color: var(--muted); }
.story {
  border: 1px solid var(--line); background: var(--card);
  border-radius: 1.4rem; padding: 1.35rem 1.4rem 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
}
.story.featured {
  padding: 1.7rem 1.7rem 1.9rem;
  background:
    linear-gradient(135deg, rgba(255,107,74,.12), transparent 42%),
    linear-gradient(225deg, rgba(192,132,252,.1), transparent 40%),
    var(--card);
}
.meta {
  display: flex; gap: .75rem; align-items: center; flex-wrap: wrap;
  color: var(--muted); font-size: .82rem; margin-bottom: .7rem;
}
.tag {
  padding: .2rem .55rem; border-radius: 999px;
  border: 1px solid rgba(94,234,212,.35); color: var(--glow3);
}
.story h3 {
  margin: 0 0 .7rem; font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem); letter-spacing: -0.02em;
}
.story p { margin: 0 0 .85rem; color: #d9cfc4; line-height: 1.65; }
.story p:last-child { margin-bottom: 0; }
.dek { font-size: 1.05rem; color: #efe4d8 !important; }
.pull {
  margin-top: 1rem !important; padding: 1rem 1.1rem;
  border-left: 3px solid var(--glow);
  font-family: var(--serif); font-style: italic; font-size: 1.25rem;
  color: var(--ink) !important; background: rgba(255,107,74,.06);
}
.story-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-top: 1rem;
}
.share { margin: 2.5rem 0; }
.share-card {
  border-radius: 1.6rem; padding: 1.8rem;
  border: 1px solid rgba(192,132,252,.28);
  background:
    radial-gradient(600px 200px at 10% 0%, rgba(192,132,252,.18), transparent 60%),
    rgba(255,247,237,.03);
}
.share-card p { color: var(--muted); max-width: 36rem; line-height: 1.6; }
.btn {
  display: inline-flex; margin-top: 1.1rem; padding: .9rem 1.2rem;
  border-radius: 999px; text-decoration: none; font-weight: 600; color: #1a0b08;
  background: linear-gradient(120deg, #ff8f75, #ffd0a8 55%, #f0abfc);
  box-shadow: 0 10px 40px rgba(255,107,74,.25);
}
.btn:hover { color: #1a0b08; filter: brightness(1.05); }
.note {
  margin: 1rem 0 3rem; padding: 1.3rem 1.4rem; border-radius: 1.2rem;
  border: 1px dashed var(--line); color: var(--muted); line-height: 1.6;
}
.note h2 { margin-bottom: .6rem; color: var(--ink); }
.note strong { color: #ffe8d8; font-weight: 600; }
footer {
  padding: 0 0 2.5rem; color: #8b7f74; font-size: .88rem;
}
footer a { color: inherit; }
@media (max-width: 860px) {
  .story-grid { grid-template-columns: 1fr; }
  nav { display: none; }
  .hero { padding-top: 2rem; }
}
