:root {
  --black: #050505;
  --ink: #0b0b0d;
  --blue: #1a6fe8;
  --cyan: #4ec8ff;
  --orange: #ff7a18;
  --gold: #ffd24a;
  --white: #f7f7f7;
  --muted: #b8b8c2;
  --line: rgba(255,255,255,.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--black); color: var(--white); font-family: Inter, system-ui, sans-serif; }
body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(900px 500px at 15% -10%, rgba(26,111,232,.28), transparent 60%),
    radial-gradient(800px 480px at 95% 0%, rgba(255,122,24,.18), transparent 55%),
    radial-gradient(700px 400px at 50% 110%, rgba(78,200,255,.12), transparent 50%),
    var(--black);
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.noise {
  pointer-events: none;
  position: fixed; inset: 0;
  opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}

.wrap { position: relative; z-index: 1; max-width: 1120px; margin: 0 auto; padding: 20px 22px 96px; }

.site-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; margin-bottom: 8px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--white); font-weight: 800; letter-spacing: .04em;
  font-size: 13px; text-transform: uppercase;
}
.brand img { width: 42px; height: 42px; object-fit: contain; }

.nav-desk {
  display: none; align-items: center; gap: 16px;
}
.nav-desk a {
  text-decoration: none; font-size: 13px; font-weight: 600; opacity: .82;
}
.nav-desk a:hover { opacity: 1; color: var(--cyan); }

.header-right { display: flex; align-items: center; gap: 10px; }
.menu-btn {
  background: rgba(255,255,255,.06); border: 1px solid var(--line);
  color: var(--white); border-radius: 10px; padding: 8px 10px; cursor: pointer;
}
.nav-mobile {
  display: none;
  background: rgba(8,8,10,.96);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  margin: 8px 0 18px;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block; text-decoration: none; padding: 10px 8px;
  border-bottom: 1px solid var(--line); font-weight: 600;
}
.nav-mobile .socials { border-bottom: 0; padding-top: 12px; }

.btn, button.btn {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  color: #041225; font-weight: 800; border: 0;
  padding: 11px 16px; border-radius: 12px; cursor: pointer;
  font-size: 12px; letter-spacing: .04em; text-transform: uppercase;
  text-decoration: none; display: inline-block;
}
.btn:hover { filter: brightness(1.08); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,.16);
}

.socials { display: flex; flex-wrap: wrap; gap: 8px; }
.socials a {
  width: 36px; height: 36px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 10px;
  background: rgba(255,255,255,.04); color: var(--white);
  text-decoration: none;
}
.socials a:hover { border-color: var(--orange); color: var(--cyan); }
.socials svg { width: 16px; height: 16px; fill: currentColor; }
.socials.compact a { width: 32px; height: 32px; }
.header-socials { display: none; }

.hero { text-align: center; padding: 10px 0 8px; }
.logo-frame {
  width: min(560px, 78vw);
  margin: 0 auto;
  padding: 8px 4px;
}
.logo-frame img,
.logo {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
  filter: drop-shadow(0 14px 28px rgba(26,111,232,.28));
}
.status {
  margin: 16px auto 0; display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted);
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 999px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255,122,24,.7); animation: pulse 1.8s infinite;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(255,122,24,0); } }

h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(42px, 8vw, 86px);
  line-height: .9; letter-spacing: .02em; margin: 26px 0 14px;
}
h1 span {
  background: linear-gradient(90deg, var(--blue), var(--cyan) 40%, var(--orange) 70%, var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
h2 { font-family: "Bebas Neue", sans-serif; font-size: clamp(28px, 5vw, 42px); letter-spacing: .03em; margin-bottom: 10px; }
.lede { max-width: 640px; margin: 0 auto 22px; color: var(--muted); font-size: 17px; line-height: 1.55; }
.lede strong { color: var(--white); font-weight: 600; }

.player {
  max-width: 560px; margin: 0 auto 22px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
  border-radius: 16px; padding: 14px 16px; text-align: left;
}
.player .meta { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 8px; font-size: 13px; }
.player .kicker { color: var(--orange); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: 11px; }
.player audio { width: 100%; margin-top: 6px; }
.player .hint { color: #8a8a96; font-size: 12px; margin-top: 6px; }

.signup, .signup-mini {
  max-width: 560px; margin: 0 auto 10px;
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
}
.signup input, .signup-mini input {
  flex: 1 1 240px; background: #111; border: 1px solid rgba(255,255,255,.14);
  color: white; padding: 14px 16px; border-radius: 12px; font-size: 15px; outline: none;
}
.signup input:focus, .signup-mini input:focus { border-color: var(--cyan); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.fine { font-size: 12px; color: #8a8a96; margin-bottom: 28px; text-align: center; }
.toast {
  display: none; margin: 0 auto 14px; max-width: 560px;
  padding: 10px 14px; border-radius: 10px; font-size: 14px;
}
.toast.ok { display: block; background: rgba(26,111,232,.15); border: 1px solid rgba(78,200,255,.4); color: #d9f3ff; }
.toast.err { display: block; background: rgba(255,122,24,.12); border: 1px solid rgba(255,122,24,.4); color: #ffd7b0; }

.grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px; margin: 18px 0 48px;
}
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--line); border-radius: 18px; padding: 20px 18px 18px;
  text-decoration: none; color: inherit; display: block;
}
.card .kicker { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; font-weight: 700; }
.card h3 { font-size: 20px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14px; line-height: 1.5; }

.quote { text-align: center; font-size: 18px; color: #ddd; margin: 8px 0 36px; }
.quote em { color: var(--gold); font-style: normal; font-weight: 700; }

.section { margin: 10px 0 42px; }
.strip {
  border: 1px solid var(--line); border-radius: 18px; padding: 22px 20px;
  background: rgba(255,255,255,.03);
}
.video-frame {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 9 / 16;
  max-height: 70vh;
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 0 16px;
  border: 1px solid var(--line);
}
.video-frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.video-frame.wide { aspect-ratio: 16 / 9; max-height: none; }

.site-footer {
  text-align: center; color: #7c7c86; font-size: 12px;
  border-top: 1px solid var(--line); padding-top: 22px;
}
.site-footer .motto { color: var(--white); font-weight: 600; margin-bottom: 6px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 10px 14px; justify-content: center; margin: 14px 0; }
.site-footer nav a { color: var(--cyan); text-decoration: none; }
.site-footer .socials { justify-content: center; margin: 12px 0 16px; }
.signup-mini { margin-bottom: 18px; }

.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 20;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  background: rgba(8,8,10,.92); border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.sticky-bar a {
  text-align: center; padding: 12px 8px; text-decoration: none;
  font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.sticky-bar a:hover { color: var(--cyan); }

.page-hero { text-align: left; padding: 18px 0 8px; max-width: 720px; }
.page-hero .kicker { color: var(--orange); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
.prose { max-width: 720px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.prose p { margin: 0 0 16px; }
.prose strong { color: var(--white); font-weight: 600; }
.chapter { margin: 28px 0; }
.chapter h2 { margin-bottom: 10px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 36px; }
.mh a { color: var(--cyan); }
.post-list { display: grid; gap: 12px; margin: 18px 0 40px; }
.post-list a {
  display: block; text-decoration: none; color: inherit;
  border: 1px solid var(--line); border-radius: 16px; padding: 18px 16px;
  background: rgba(255,255,255,.03);
}
.post-list a:hover { border-color: rgba(78,200,255,.35); }
.post-list .meta { display: flex; gap: 12px; font-size: 12px; color: var(--orange); letter-spacing: .12em; text-transform: uppercase; font-weight: 700; margin-bottom: 8px; }
.post-list h3 { margin-bottom: 6px; }
.post-list p { color: var(--muted); font-size: 14px; line-height: 1.5; }
.snippet audio { width: 100%; margin-top: 10px; }
.snippet .waiting { color: #8a8a96; font-size: 14px; margin-top: 10px; }
.note {
  max-width: 720px; font-size: 13px; color: #8a8a96; line-height: 1.5;
  border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px;
  margin: 0 0 28px; background: rgba(255,255,255,.03);
}
.steps { max-width: 720px; margin: 0 0 32px; padding-left: 20px; color: var(--muted); line-height: 1.6; }
.steps li { margin: 0 0 8px; }
.split { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 0 0 32px; }
@media (min-width: 700px) { .split { grid-template-columns: 1fr 1fr; } }
.desk-row {
  display: grid; gap: 8px;
  border: 1px solid rgba(255,255,255,.18);
  border-left: 3px solid var(--orange);
  border-radius: 14px;
  padding: 18px 16px 16px;
  margin: 0 0 22px;
  background: rgba(255,255,255,.05);
}
.desk-row:last-child { margin-bottom: 0; }
.desk-break {
  max-width: 720px;
  margin: 28px 0 16px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,122,24,.35);
}
.desk-break:first-child { border-top: 0; margin-top: 0; padding-top: 0; }
.desk-break h3 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 6px;
}
.desk-break p { color: #8a8a96; font-size: 14px; line-height: 1.5; margin: 0; }
.desk-row .who { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px; }
.desk-row h3 { font-size: 18px; }
.badge {
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase; font-weight: 800;
  color: var(--gold); border: 1px solid rgba(255,210,74,.35); padding: 3px 8px; border-radius: 999px;
}
.desk-row p { color: var(--muted); font-size: 14px; line-height: 1.45; }
.desk-row a { color: var(--cyan); font-size: 13px; }

@media (min-width: 900px) {
  .nav-desk { display: flex; }
  .menu-btn { display: none; }
  .header-socials { display: flex; }
  .sticky-bar { display: none; }
  .wrap { padding-bottom: 60px; }
}
