/* ===== LUNARIS — Static build ===== */
:root {
  --background: #0a0a10;
  --foreground: #f5f5f7;
  --card: #14141c;
  --muted: #1c1c26;
  --muted-fg: #8a8a98;
  --border: #26263a;
  --silver: #c4c4ce;
  --chrome: #d8d8e0;
  --electric: #4a7dff;
  --cyan: #62e1ff;
  --gradient-chrome: linear-gradient(135deg, #f0f0f5 0%, #6a6a78 50%, #f0f0f5 100%);
  --gradient-electric: linear-gradient(135deg, #4a7dff 0%, #62e1ff 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; border-color: var(--border); }
html, body {
  background: var(--background);
  color: var(--foreground);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
body { overflow-x: hidden; }
::selection { background: var(--electric); color: var(--background); }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.font-display { font-family: "Space Grotesk", system-ui, sans-serif; font-feature-settings: "ss01"; }
.font-editorial { font-family: "Instrument Serif", Georgia, serif; }
.font-mono { font-family: "JetBrains Mono", monospace; }

.text-electric { color: var(--electric); }
.text-silver { color: var(--silver); }
.text-muted { color: var(--muted-fg); }
.text-chrome { background: var(--gradient-chrome); -webkit-background-clip: text; background-clip: text; color: transparent; }
.text-electric-grad { background: var(--gradient-electric); -webkit-background-clip: text; background-clip: text; color: transparent; }
.text-stroke { -webkit-text-stroke: 1px var(--silver); color: transparent; }
.italic { font-style: italic; }
.bold { font-weight: 700; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.grid-lines {
  background-image:
    linear-gradient(to right, rgba(196,196,206,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(196,196,206,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
}
.glass {
  background: rgba(10,10,16,0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(196,196,206,0.15);
}
.brutal-border {
  border: 1px solid var(--silver);
  box-shadow: 4px 4px 0 0 var(--electric);
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: padding .5s ease;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid rgba(38,38,58,.4);
  transition: all .5s ease;
}
.nav.scrolled { padding: 12px; max-width: 1200px; margin: 0 auto; }
.nav.scrolled .nav-inner {
  border-radius: 4px; padding: 12px 20px; border: 1px solid rgba(196,196,206,0.15);
  background: rgba(10,10,16,0.6); backdrop-filter: blur(20px) saturate(180%);
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { position: relative; width: 36px; height: 36px; }
.logo-mark::before, .logo-mark::after {
  content: ""; position: absolute; inset: 0;
}
.logo-mark::before {
  border: 1px solid rgba(196,196,206,0.6); transform: rotate(45deg);
  transition: transform .7s ease;
}
.logo:hover .logo-mark::before { transform: rotate(225deg); }
.logo-mark::after {
  inset: 6px; background: var(--electric); border-radius: 50%; filter: blur(1px);
}
.logo-mark span {
  position: absolute; inset: 10px; background: var(--background); border-radius: 50%;
  display: block;
}
.logo-text { line-height: 1; }
.logo-text .name { font-family: "Space Grotesk", sans-serif; font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
.logo-text .est { font-family: "JetBrains Mono", monospace; font-size: 9px; color: var(--muted-fg); letter-spacing: 0.3em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative; padding: 8px 16px; font-family: "JetBrains Mono", monospace;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--silver);
  transition: color .2s;
}
.nav-link:hover { color: var(--foreground); }
.nav-link.active { color: var(--foreground); background: rgba(74,125,255,0.15); border: 1px solid rgba(74,125,255,0.4); }
.nav-link::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 1px;
  background: var(--electric); transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-meta { display: flex; align-items: center; gap: 12px; font-family: "JetBrains Mono", monospace; font-size: 10px; color: var(--muted-fg); letter-spacing: 0.25em; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--electric); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.burger { display: none; flex-direction: column; gap: 6px; padding: 8px; background: transparent; border: 0; cursor: pointer; }
.burger span { display: block; width: 24px; height: 1px; background: var(--foreground); transition: transform .3s, opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 40; background: var(--background);
  display: none; flex-direction: column; justify-content: center; padding: 0 32px; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .grid-lines { position: absolute; inset: 0; opacity: 0.3; }
.mobile-menu a {
  position: relative; font-family: "Space Grotesk", sans-serif; font-size: 48px; font-weight: 700;
  letter-spacing: -0.02em; padding: 8px 0; transition: color .2s;
}
.mobile-menu a:hover { color: var(--electric); }
.mobile-menu .num { font-family: "JetBrains Mono", monospace; font-size: 12px; color: var(--muted-fg); margin-right: 16px; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; padding-top: 96px; overflow: hidden; }
.hero .grid-lines { position: absolute; inset: 0; opacity: 0.5; }
.hero-glyph {
  position: absolute; font-family: "Instrument Serif", serif; line-height: 1;
  user-select: none; pointer-events: none;
}
.hero-glyph.g1 { top: 130px; right: 10%; font-size: 180px; color: rgba(196,196,206,0.08); animation: float 8s ease-in-out infinite; }
.hero-glyph.g2 { bottom: 80px; left: 8%; font-size: 140px; color: rgba(74,125,255,0.15); animation: float 10s ease-in-out infinite; }
.hero-glyph.g3 { top: 50%; left: 45%; font-size: 90px; color: rgba(196,196,206,0.10); }
@keyframes float {
  0%,100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-20px) rotate(3deg); }
}
.orbit {
  position: absolute; right: -160px; top: 25%; width: 600px; height: 600px; pointer-events: none;
  animation: spin 60s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.orbit .ring { position: absolute; border-radius: 50%; }
.orbit .r1 { inset: 0; border: 1px solid rgba(196,196,206,0.2); }
.orbit .r2 { inset: 48px; border: 1px solid rgba(74,125,255,0.3); }
.orbit .r3 { inset: 128px; border: 1px solid rgba(196,196,206,0.15); }
.orbit .planet {
  position: absolute; top: -3px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px; background: var(--electric); border-radius: 50%;
  box-shadow: 0 0 30px 5px var(--electric);
}

.hero-meta {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; margin-bottom: 32px;
  position: relative;
}
.hero-meta > div { font-family: "JetBrains Mono", monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em; }
.hero-meta .left { grid-column: span 6; }
.hero-meta .right { grid-column: 10 / span 3; text-align: right; }

.hero-title {
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: clamp(3.2rem, 11vw, 12rem);
  line-height: 0.82; letter-spacing: -0.04em;
  position: relative;
}
.hero-title span { display: block; }

.hero-bottom { margin-top: 48px; display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; align-items: end; position: relative; }
.hero-lead { grid-column: span 5; font-family: "Instrument Serif", serif; font-size: clamp(1.25rem, 2vw, 1.875rem); line-height: 1.3; color: var(--silver); }

.btn-stack { grid-column: 8 / span 5; display: flex; flex-direction: column; gap: 12px; }
.btn {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; font-family: "Space Grotesk", sans-serif; font-size: 20px; font-weight: 700; letter-spacing: -0.02em;
  border: 0; cursor: pointer; transition: background .3s, color .3s;
}
.btn-num { font-family: "JetBrains Mono", monospace; font-size: 12px; }
.btn-primary { background: var(--foreground); color: var(--background); }
.btn-primary:hover { background: var(--electric); color: var(--foreground); }
.btn-primary::after {
  content: ""; position: absolute; inset: 4px -4px -4px 4px; border: 1px solid var(--electric); z-index: -1;
  transition: transform .3s;
}
.btn-primary:hover::after { transform: translate(4px, 4px); }
.btn-outline { background: transparent; color: var(--foreground); border: 1px solid rgba(196,196,206,0.6); }
.btn-outline .btn-num { color: var(--electric); }
.btn-outline:hover { border-color: var(--electric); background: rgba(74,125,255,0.05); }

.planets { margin-top: 80px; padding-top: 24px; border-top: 1px solid rgba(38,38,58,.6);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  font-family: "JetBrains Mono", monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; position: relative;
}

/* ===== SECTIONS ===== */
section { padding: 96px 0; position: relative; }
section + section { border-top: 1px solid rgba(38,38,58,.6); }
.section-label { font-family: "JetBrains Mono", monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.3em; color: var(--electric); margin-bottom: 12px; }
.section-title { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: clamp(3rem, 8vw, 6rem); line-height: 0.85; letter-spacing: -0.03em; }

.section-head { display: flex; flex-direction: column; gap: 24px; margin-bottom: 64px; }
@media (min-width: 768px) { .section-head { flex-direction: row; justify-content: space-between; align-items: end; } }
.section-head p { font-family: "Instrument Serif", serif; font-size: 20px; color: var(--silver); max-width: 420px; }

/* ===== ZODIAC GRID ===== */
.zodiac-grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: rgba(38,38,58,.6); border: 1px solid rgba(38,38,58,.6);
}
@media (min-width: 640px) { .zodiac-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .zodiac-grid { grid-template-columns: repeat(3, 1fr); } }
.zodiac-card {
  position: relative; background: var(--card); padding: 32px; overflow: hidden; transition: background .3s;
  display: block;
}
.zodiac-card:hover { background: var(--background); }
.zodiac-card .index {
  position: absolute; top: 16px; right: 16px; font-family: "JetBrains Mono", monospace;
  font-size: 10px; letter-spacing: 0.2em; color: var(--muted-fg);
}
.zodiac-card .bg-glyph {
  position: absolute; bottom: -40px; right: -24px; font-family: "Instrument Serif", serif;
  font-size: 200px; line-height: 1; color: rgba(74,125,255,0); transition: color .7s;
  pointer-events: none; user-select: none;
}
.zodiac-card:hover .bg-glyph { color: rgba(74,125,255,0.2); }
.zodiac-card .glyph { font-family: "Instrument Serif", serif; font-size: 72px; color: rgba(196,196,206,0.6); margin-bottom: 32px; transition: color .3s; }
.zodiac-card:hover .glyph { color: var(--electric); }
.zodiac-card .row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 4px; }
.zodiac-card h3 { font-family: "Space Grotesk", sans-serif; font-size: 28px; font-weight: 700; letter-spacing: -0.02em; }
.zodiac-card .latin { font-family: "JetBrains Mono", monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted-fg); }
.zodiac-card .meta { font-family: "JetBrains Mono", monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted-fg); margin-bottom: 20px; }
.zodiac-card .desc { font-family: "Instrument Serif", serif; font-size: 18px; color: var(--silver); line-height: 1.3; margin-bottom: 24px; min-height: 56px; }
.energy-row { display: flex; justify-content: space-between; font-family: "JetBrains Mono", monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 6px; }
.energy-row .lbl { color: var(--muted-fg); }
.energy-row .val { color: var(--electric); }
.energy-bar { height: 1px; background: var(--border); position: relative; overflow: hidden; }
.energy-fill { height: 100%; background: var(--electric); box-shadow: 0 0 10px var(--electric); width: 0; transition: width 1.2s ease-out .3s; }
.zodiac-card.in-view .energy-fill { width: var(--w); }
.zodiac-card .footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; margin-top: 20px; border-top: 1px solid rgba(38,38,58,.6);
  font-family: "JetBrains Mono", monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.25em;
}
.zodiac-card .footer .more { color: var(--electric); transition: transform .3s; }
.zodiac-card:hover .footer .more { transform: translateX(4px); }

/* ===== WEEKLY ===== */
.weekly { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .weekly { grid-template-columns: 4fr 8fr; } }
.weekly-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.weekly-row {
  background: var(--card); padding: 24px;
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center;
  transition: background .3s;
}
@media (min-width: 768px) { .weekly-row { grid-template-columns: 80px 200px 1fr 40px; padding: 32px; } }
.weekly-row:hover { background: var(--background); }
.weekly-row .num { font-family: "Space Grotesk", sans-serif; font-size: 64px; font-weight: 700; color: rgba(74,125,255,0.3); transition: color .3s; }
.weekly-row:hover .num { color: var(--electric); }
.weekly-row .day { font-family: "JetBrains Mono", monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em; color: var(--muted-fg); margin-bottom: 4px; }
.weekly-row .sign { font-family: "Space Grotesk", sans-serif; font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.weekly-row .note { font-family: "Instrument Serif", serif; font-size: 20px; color: var(--silver); line-height: 1.3; }
.weekly-row .arr { display: none; font-family: "JetBrains Mono", monospace; font-size: 12px; color: var(--electric); text-align: right; }
@media (min-width: 768px) { .weekly-row .arr { display: block; } }

/* ===== COMPATIBILITY ===== */
.compat { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 1024px) { .compat { grid-template-columns: 5fr 7fr; } }
.compat-selectors { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.compat-selector { background: var(--card); padding: 24px; position: relative; overflow: hidden; }
.compat-selector .label { font-family: "JetBrains Mono", monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em; color: var(--electric); margin-bottom: 16px; }
.compat-selector .glyph { font-family: "Instrument Serif", serif; font-size: 120px; line-height: 1; color: var(--electric); margin-bottom: 8px; }
.compat-selector .name { font-family: "Space Grotesk", sans-serif; font-size: 28px; font-weight: 700; letter-spacing: -0.02em; }
.compat-selector .dates { font-family: "JetBrains Mono", monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted-fg); margin-bottom: 16px; }
.compat-selector select {
  width: 100%; background: var(--background); border: 1px solid rgba(196,196,206,0.4);
  padding: 8px 12px; font-family: "JetBrains Mono", monospace; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--foreground);
}
.compat-selector select:focus { outline: none; border-color: var(--electric); }

.compat-result {
  position: relative; background: var(--card); border: 1px solid var(--border);
  padding: 32px; overflow: hidden;
}
@media (min-width: 768px) { .compat-result { padding: 48px; } }
.compat-result .ring1, .compat-result .ring2 { position: absolute; border-radius: 50%; pointer-events: none; }
.compat-result .ring1 { top: -80px; right: -80px; width: 320px; height: 320px; border: 1px solid rgba(74,125,255,0.2); }
.compat-result .ring2 { top: -40px; right: -40px; width: 240px; height: 240px; border: 1px solid rgba(196,196,206,0.1); }
.compat-result .lbl { font-family: "JetBrains Mono", monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em; color: var(--muted-fg); margin-bottom: 8px; }
.compat-percent { display: flex; align-items: baseline; gap: 16px; margin-bottom: 40px; }
.compat-percent .num {
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: clamp(80px, 14vw, 180px); line-height: 1; letter-spacing: -0.04em;
  background: var(--gradient-electric); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.compat-percent .pct { font-family: "Space Grotesk", sans-serif; font-size: 36px; color: var(--silver); }
.compat-bars { display: flex; flex-direction: column; gap: 20px; }
.compat-bar .row { display: flex; justify-content: space-between; font-family: "JetBrains Mono", monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.25em; margin-bottom: 6px; }
.compat-bar .row .l { color: var(--foreground); }
.compat-bar .row .l span { color: var(--muted-fg); margin-right: 8px; }
.compat-bar .row .v { color: var(--electric); }
.compat-bar .track { height: 4px; background: var(--border); overflow: hidden; }
.compat-bar .fill { height: 100%; background: var(--electric); width: 0; transition: width 1s cubic-bezier(0.22,1,0.36,1); }
.compat-summary { margin-top: 40px; font-family: "Instrument Serif", serif; font-size: 20px; color: var(--silver); line-height: 1.3; }

/* ===== MAGAZINE ===== */
.magazine { display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(38,38,58,.6); }
@media (min-width: 768px) { .magazine { grid-template-columns: repeat(12, 1fr); } }
.mag-card {
  position: relative; background: var(--card); padding: 32px; overflow: hidden;
  transition: background .3s; min-height: 280px;
}
@media (min-width: 768px) { .mag-card { padding: 48px; } }
.mag-card:hover { background: var(--background); }
.mag-card.feature { grid-column: span 7; grid-row: span 2; }
.mag-card.regular { grid-column: span 5; }
.mag-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; font-family: "JetBrains Mono", monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em; }
.mag-meta .n { color: var(--electric); }
.mag-meta .cat { color: var(--muted-fg); }
.mag-meta .read { color: var(--muted-fg); margin-left: auto; }
.mag-card h3 { font-family: "Space Grotesk", sans-serif; font-weight: 700; letter-spacing: -0.02em; line-height: 0.95; margin-bottom: 24px; }
.mag-card.feature h3 { font-size: clamp(36px, 5vw, 72px); }
.mag-card.regular h3 { font-size: clamp(24px, 3vw, 36px); }
.mag-card p { font-family: "Instrument Serif", serif; color: var(--silver); line-height: 1.3; margin-bottom: 32px; }
.mag-card.feature p { font-size: clamp(18px, 2vw, 24px); max-width: 640px; }
.mag-card.regular p { font-size: 18px; }
.mag-card .corner-glyph {
  position: absolute; bottom: -60px; right: -20px; font-family: "Instrument Serif", serif;
  font-size: 280px; line-height: 1; color: rgba(74,125,255,0.1); pointer-events: none; user-select: none;
}
.mag-card .footer {
  position: absolute; bottom: 32px; left: 32px; right: 32px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: "JetBrains Mono", monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.25em;
}
.mag-card .footer .more { color: var(--electric); transition: transform .3s; }
.mag-card:hover .footer .more { transform: translateX(4px); }
.mag-card .footer .by { color: var(--muted-fg); }
.mag-card .h12 { height: 48px; }

/* ===== FOOTER ===== */
footer { position: relative; border-top: 1px solid rgba(38,38,58,.6); margin-top: 128px; }
footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--electric), transparent); }
.ticker-wrap { overflow: hidden; border-bottom: 1px solid rgba(38,38,58,.6); padding: 24px 0; }
.ticker {
  display: flex; gap: 48px; white-space: nowrap;
  font-family: "Space Grotesk", sans-serif; font-size: clamp(48px, 8vw, 80px); font-weight: 700;
  animation: ticker 40s linear infinite; width: max-content;
}
.ticker .star { color: var(--electric); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.footer-grid { max-width: 1280px; margin: 0 auto; padding: 64px 24px; display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-grid .brand { grid-column: span 1; }
@media (min-width: 768px) { .footer-grid .brand { grid-column: span 2; } }
.footer-grid .brand .name { font-family: "Space Grotesk", sans-serif; font-size: 28px; font-weight: 700; margin-bottom: 16px; }
.footer-grid .brand .name .dot { display: inline-block; background: transparent; color: var(--electric); width: auto; height: auto; animation: none; }
.footer-grid .brand p { font-family: "Instrument Serif", serif; font-size: 20px; color: var(--silver); max-width: 420px; line-height: 1.3; }
.footer-col h4 { font-family: "JetBrains Mono", monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em; color: var(--muted-fg); margin-bottom: 16px; font-weight: 400; }
.footer-col ul li { font-family: "Space Grotesk", sans-serif; padding: 4px 0; }
.footer-col p { font-size: 14px; color: var(--silver); margin-bottom: 12px; }
.footer-form { display: flex; border: 1px solid rgba(196,196,206,0.4); }
.footer-form input { flex: 1; background: transparent; border: 0; padding: 8px 12px; font-size: 13px; }
.footer-form input:focus { outline: none; }
.footer-form button { background: var(--electric); color: var(--background); border: 0; padding: 0 16px; font-family: "JetBrains Mono", monospace; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer; }
.footer-bottom { border-top: 1px solid rgba(38,38,58,.6); padding: 20px 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; font-family: "JetBrains Mono", monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.25em; color: var(--muted-fg); }

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  pointer-events: none; position: fixed; z-index: 100;
  width: 400px; height: 400px; border-radius: 50%; opacity: 0.3; mix-blend-mode: screen;
  background: radial-gradient(circle, var(--electric) 0%, transparent 60%);
  filter: blur(40px);
  transform: translate(-200px, -200px);
  transition: transform .3s ease-out;
}
@media (pointer: coarse) { .cursor-glow { display: none; } }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease-out, transform .8s ease-out; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .nav-links, .nav-meta { display: none; }
  .burger { display: flex; }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-lead, .btn-stack { grid-column: span 1; }
  .hero-meta .right { grid-column: 7 / span 6; }
  .hero-meta .left { grid-column: span 6; }
  .planets { grid-template-columns: repeat(2, 1fr); }
  .magazine .mag-card.feature, .magazine .mag-card.regular { grid-column: span 1; grid-row: auto; }
  .compat-result { padding: 24px; }
}
