/* =====================================================================
   PRESSURE POINT — site styles
   Brand: near-black navy base · electric-blue streaks · orange accent
   Type:  Archivo (display) + Manrope (body)
   ===================================================================== */

:root{
  --bg:#070A10;
  --bg-1:#0B0F18;
  --bg-2:#101623;
  --bg-3:#161F2E;
  --card:#0F1623;
  --line:rgba(255,255,255,.08);
  --line-2:rgba(255,255,255,.15);

  --orange:#F26A1E;
  --orange-2:#ff8c44;
  --orange-soft:rgba(242,106,30,.14);
  --blue:#2f8fe8;
  --blue-2:#5fb0ff;

  --text:#EEF2F8;
  --muted:#98A4B5;
  --muted-2:#677082;

  --display:'Archivo', system-ui, sans-serif;
  --body:'Manrope', system-ui, sans-serif;

  --maxw:1200px;
  --r:14px;
  --r-lg:22px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0; background:var(--bg); color:var(--text);
  font-family:var(--body); font-size:17px; line-height:1.6;
  -webkit-font-smoothing:antialiased; overflow-x:hidden;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
::selection{ background:var(--orange); color:#fff; }

.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 28px; }

/* ---------- type ---------- */
h1,h2,h3,h4{ font-family:var(--display); font-weight:800; line-height:1.04; margin:0; letter-spacing:-.01em; }
.kicker{
  font-family:var(--display); font-weight:700; font-size:13px;
  text-transform:uppercase; letter-spacing:.22em; color:var(--orange);
  display:inline-flex; align-items:center; gap:9px;
}
.kicker::before{ content:""; width:22px; height:2px; background:var(--orange); display:inline-block; }
.kicker.center::before{ display:none; }
.lede{ color:var(--muted); font-size:18px; line-height:1.65; }
.eyebrow{ font-family:var(--display); font-weight:700; text-transform:uppercase; letter-spacing:.18em; font-size:12px; color:var(--muted-2); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--display); font-weight:700; font-size:15px; letter-spacing:.01em;
  padding:14px 24px; border-radius:999px; cursor:pointer; border:1px solid transparent;
  transition:transform .15s, background .2s, border-color .2s, box-shadow .2s;
  white-space:nowrap;
}
.btn svg{ width:18px; height:18px; }
.btn-primary{ background:var(--orange); color:#fff; box-shadow:0 8px 30px -10px rgba(242,106,30,.7); }
.btn-primary:hover{ background:var(--orange-2); transform:translateY(-2px); }
.btn-ghost{ background:transparent; color:var(--text); border-color:var(--line-2); }
.btn-ghost:hover{ border-color:#fff; background:rgba(255,255,255,.05); }
.btn-dark{ background:rgba(255,255,255,.06); color:var(--text); border-color:var(--line); }
.btn-dark:hover{ background:rgba(255,255,255,.1); }
.btn-sm{ padding:10px 16px; font-size:13px; }

/* ---------- nav ---------- */
.nav{
  position:sticky; top:0; z-index:100;
  background:rgba(7,10,16,.72); backdrop-filter:blur(14px) saturate(1.2);
  border-bottom:1px solid var(--line);
}
.nav-inner{ max-width:var(--maxw); margin:0 auto; padding:14px 28px; display:flex; align-items:center; gap:30px; }
.brand{ display:flex; align-items:center; gap:13px; flex:none; }
.brand img{ width:42px; height:42px; border-radius:50%; }
.brand .wm{ display:flex; flex-direction:column; line-height:1; }
.brand .wm b{ font-family:var(--display); font-weight:800; font-size:18px; letter-spacing:.04em; }
.brand .wm small{ font-size:10px; letter-spacing:.26em; text-transform:uppercase; color:var(--muted-2); margin-top:4px; font-family:var(--display); font-weight:600; }
.nav-links{ display:flex; gap:28px; margin-left:14px; }
.nav-links a{ font-size:15px; color:var(--muted); font-weight:600; transition:color .2s; position:relative; padding:4px 0; }
.nav-links a:hover, .nav-links a.active{ color:var(--text); }
.nav-links a.active::after{ content:""; position:absolute; left:0; right:0; bottom:-2px; height:2px; background:var(--orange); }
.nav-cta{ margin-left:auto; display:flex; align-items:center; gap:12px; }
.nav-toggle{ display:none; background:none; border:1px solid var(--line-2); border-radius:10px; color:var(--text); width:42px; height:42px; cursor:pointer; align-items:center; justify-content:center; }
.nav-toggle svg{ width:22px; height:22px; }

/* mobile menu */
.mobile-menu{ display:none; flex-direction:column; gap:4px; padding:10px 28px 22px; border-bottom:1px solid var(--line); background:var(--bg-1); }
.mobile-menu a{ padding:13px 4px; font-family:var(--display); font-weight:700; font-size:18px; border-bottom:1px solid var(--line); }
.mobile-menu.open{ display:flex; }
.mobile-menu .btn{ margin-top:14px; }

/* ---------- backgrounds / streaks ---------- */
.streaks{ position:absolute; inset:0; overflow:hidden; pointer-events:none; z-index:0; }
.streaks::before, .streaks::after{
  content:""; position:absolute; height:200%; width:2px; left:var(--x,10%); top:-50%;
  background:linear-gradient(to bottom, transparent, var(--blue), transparent);
  opacity:.5; transform:rotate(28deg); filter:blur(.4px);
}
.glow{ position:absolute; border-radius:50%; filter:blur(90px); pointer-events:none; z-index:0; }
.glow.orange{ background:radial-gradient(circle, rgba(242,106,30,.4), transparent 70%); }
.glow.blue{ background:radial-gradient(circle, rgba(47,143,232,.35), transparent 70%); }

.streak-field{ position:absolute; inset:0; z-index:0; pointer-events:none; opacity:.4;
  background-image:
    linear-gradient(115deg, rgba(7,10,16,0), rgba(7,10,16,.9) 62%),
    repeating-linear-gradient(118deg, transparent 0 90px, rgba(95,176,255,.16) 90px 91px);
}

/* ---------- sections ---------- */
section{ position:relative; }
.sec{ padding:96px 0; }
.sec-sm{ padding:64px 0; }
.sec-head{ max-width:720px; margin-bottom:46px; }
.sec-head.center{ margin-inline:auto; text-align:center; }
.sec-head h2{ font-size:clamp(30px,4.4vw,50px); margin:18px 0 0; }
.sec-head .lede{ margin-top:18px; }
.bg-1{ background:var(--bg-1); }
.bg-2{ background:var(--bg-2); }

/* ---------- hero ---------- */
.hero{ position:relative; padding:64px 0 84px; background:
  radial-gradient(1200px 600px at 80% -10%, rgba(47,143,232,.12), transparent 60%),
  radial-gradient(900px 500px at 0% 30%, rgba(10,40,80,.5), transparent 60%),
  var(--bg); overflow:hidden; }
.hero-grid{ display:grid; grid-template-columns:1.45fr 1fr; gap:48px; align-items:center; position:relative; z-index:2; }
.hero-meta .kicker{ margin-bottom:22px; }
.hero h1{ font-size:clamp(34px,4.6vw,58px); }
.hero .hero-sub{ font-size:18px; color:var(--muted); margin-top:20px; max-width:440px; }
.hero-cta{ display:flex; gap:14px; margin-top:30px; flex-wrap:wrap; }

/* video player */
.player{ position:relative; border-radius:var(--r-lg); overflow:hidden; border:1px solid var(--line-2);
  box-shadow:0 40px 90px -30px rgba(0,0,0,.8); background:#000; }
.player .ratio{ position:relative; aspect-ratio:16/9; }
.player .ratio img{ width:100%; height:100%; object-fit:cover; object-position:center 35%; }
.player .scrim{ position:absolute; inset:0; background:linear-gradient(to top, rgba(7,10,16,.85), transparent 55%); }
.player .badge{ position:absolute; top:16px; left:16px; z-index:3; }
.play-btn{ position:absolute; inset:0; margin:auto; width:84px; height:84px; border-radius:50%;
  background:rgba(242,106,30,.95); border:none; cursor:pointer; display:flex; align-items:center; justify-content:center;
  box-shadow:0 12px 40px -8px rgba(242,106,30,.8); transition:transform .2s; z-index:3; }
.play-btn:hover{ transform:scale(1.07); }
.play-btn svg{ width:30px; height:30px; margin-left:5px; fill:#fff; }
.player .pbar{ position:absolute; left:0; right:0; bottom:0; padding:16px 18px; z-index:3; display:flex; align-items:center; gap:14px; }
.player .pbar .t{ font-family:var(--display); font-weight:700; font-size:15px; }
.player .pbar .dur{ color:var(--muted); font-size:13px; margin-left:auto; }

/* watch / listen toggle */
.media-toggle{ display:inline-flex; border:1px solid var(--line-2); border-radius:999px; padding:4px; background:rgba(255,255,255,.04); gap:2px; }
.media-toggle button{ font-family:var(--display); font-weight:700; font-size:13px; color:var(--muted); background:none; border:none; padding:9px 18px; border-radius:999px; cursor:pointer; display:inline-flex; align-items:center; gap:7px; transition:.2s; }
.media-toggle button svg{ width:15px; height:15px; }
.media-toggle button.active{ background:var(--orange); color:#fff; }

/* platform chips */
.platforms{ display:flex; gap:10px; flex-wrap:wrap; }
.plat{ display:inline-flex; align-items:center; gap:8px; padding:9px 15px; border:1px solid var(--line); border-radius:999px;
  font-size:13px; font-weight:600; color:var(--muted); background:rgba(255,255,255,.03); transition:.2s; }
.plat:hover{ border-color:var(--line-2); color:var(--text); }
.plat svg{ width:16px; height:16px; }

/* pills / tags */
.pill{ display:inline-flex; align-items:center; gap:7px; font-family:var(--display); font-weight:700; font-size:11.5px;
  text-transform:uppercase; letter-spacing:.12em; padding:6px 12px; border-radius:999px; }
.pill-orange{ background:var(--orange-soft); color:var(--orange-2); }
.pill-live{ background:var(--orange); color:#fff; }
.pill-line{ border:1px solid var(--line-2); color:var(--muted); }
.pill .dot{ width:7px; height:7px; border-radius:50%; background:currentColor; }

/* ---------- episode cards ---------- */
.ep-row{ display:flex; align-items:center; justify-content:space-between; margin-bottom:36px; gap:20px; flex-wrap:wrap; }
.ep-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.ep-card{ background:var(--card); border:1px solid var(--line); border-radius:var(--r); overflow:hidden; transition:.2s; display:flex; flex-direction:column; }
.ep-card:hover{ border-color:var(--line-2); transform:translateY(-4px); }
.ep-thumb{ position:relative; aspect-ratio:16/9; overflow:hidden;
  background:
    radial-gradient(120% 140% at 85% 15%, rgba(47,143,232,.22), transparent 55%),
    linear-gradient(135deg, #0d1726, #0a1018);
  display:flex; align-items:flex-end; padding:14px; }
.ep-thumb .streak-field{ opacity:.7; }
.ep-thumb .epnum{ position:absolute; top:6px; right:14px; font-family:var(--display); font-weight:800; font-size:74px; color:rgba(255,255,255,.05); letter-spacing:-.04em; line-height:1; }
.ep-thumb .pp{ position:absolute; top:14px; left:14px; width:30px; height:30px; opacity:.9; }
.ep-thumb .play-mini{ position:absolute; inset:0; margin:auto; width:54px; height:54px; border-radius:50%; background:rgba(242,106,30,.92); display:flex; align-items:center; justify-content:center; box-shadow:0 8px 24px -6px rgba(242,106,30,.8); transition:.2s; }
.ep-card:hover .play-mini{ transform:scale(1.1); }
.ep-thumb .play-mini svg{ width:20px; height:20px; fill:#fff; margin-left:3px; }
.ep-thumb .topic{ position:relative; z-index:2; }
.ep-body{ padding:18px; display:flex; flex-direction:column; gap:12px; flex:1; }
.ep-body .meta{ display:flex; align-items:center; gap:10px; }
.ep-body h3{ font-size:20px; line-height:1.2; }
.ep-body p{ color:var(--muted); font-size:14.5px; margin:0; }
.ep-body .foot{ margin-top:auto; display:flex; align-items:center; gap:10px; padding-top:6px; }
.ep-body .dur{ color:var(--muted-2); font-size:13px; font-weight:600; }
.icon-btn{ width:38px; height:38px; border-radius:50%; border:1px solid var(--line-2); background:rgba(255,255,255,.04); display:inline-flex; align-items:center; justify-content:center; cursor:pointer; transition:.2s; }
.icon-btn:hover{ background:var(--orange); border-color:var(--orange); }
.icon-btn svg{ width:16px; height:16px; fill:var(--text); }

/* episode list rows (catalog upcoming) */
.ep-list{ display:flex; flex-direction:column; }
.ep-line{ display:flex; align-items:center; gap:20px; padding:22px 0; border-top:1px solid var(--line); }
.ep-line .n{ font-family:var(--display); font-weight:800; font-size:30px; color:var(--muted-2); width:54px; flex:none; }
.ep-line.released .n{ color:var(--orange); }
.ep-line .info{ flex:1; min-width:0; }
.ep-line .info h3{ font-size:19px; }
.ep-line .info p{ color:var(--muted); font-size:14px; margin:5px 0 0; }
.ep-line .side{ display:flex; align-items:center; gap:14px; flex:none; }

/* ---------- manifesto ---------- */
.manifesto{ position:relative; overflow:hidden; }
.manifesto .quote{ font-family:var(--display); font-weight:800; font-size:clamp(26px,3.6vw,42px); line-height:1.15; max-width:14ch; }
.manifesto .quote .hl{ color:var(--orange); }
.principles{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:14px; }
.principle{ border-top:2px solid var(--orange); padding-top:18px; }
.principle h4{ font-size:19px; margin-bottom:8px; }
.principle p{ color:var(--muted); font-size:15px; margin:0; }

/* ---------- hosts ---------- */
.host-grid{ display:grid; grid-template-columns:1fr 1fr; gap:26px; }
.host-card{ background:var(--card); border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden; display:grid; grid-template-columns:auto 1fr; }
.host-card .ph{ width:170px; }
.host-card .ph img{ width:100%; height:100%; object-fit:cover; object-position:top center; }
.host-card .txt{ padding:24px 26px; display:flex; flex-direction:column; }
.host-card .txt h3{ font-size:24px; }
.host-card .txt .role{ color:var(--orange-2); font-weight:700; font-size:14px; margin-top:5px; font-family:var(--display); letter-spacing:.02em; }
.host-card .txt p{ color:var(--muted); font-size:15px; margin:14px 0 0; }
.host-card .links{ display:flex; gap:10px; margin-top:auto; padding-top:18px; }

/* big bio (about page) */
.bio{ display:grid; grid-template-columns:360px 1fr; gap:48px; align-items:start; padding:60px 0; border-top:1px solid var(--line); }
.bio:first-of-type{ border-top:none; }
.bio .photo{ border-radius:var(--r-lg); overflow:hidden; border:1px solid var(--line-2); position:sticky; top:100px; }
.bio .photo img{ width:100%; aspect-ratio:4/5; object-fit:cover; object-position:top center; }
.bio .photo .tag{ padding:16px 18px; background:var(--card); }
.bio h2{ font-size:34px; }
.bio .role{ color:var(--orange-2); font-family:var(--display); font-weight:700; letter-spacing:.04em; text-transform:uppercase; font-size:13px; margin-top:8px; }
.bio .body p{ color:var(--muted); margin:0 0 18px; line-height:1.75; }
.bio .body p strong{ color:var(--text); font-weight:600; }

/* ---------- season ---------- */
.season-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:14px; }
.season-node{ background:var(--card); border:1px solid var(--line); border-radius:12px; padding:16px; min-height:118px; display:flex; flex-direction:column; gap:8px; transition:.2s; }
.season-node.live{ border-color:var(--orange); background:linear-gradient(160deg, rgba(242,106,30,.12), var(--card)); }
.season-node .sn{ font-family:var(--display); font-weight:800; font-size:15px; color:var(--muted-2); }
.season-node.live .sn{ color:var(--orange); }
.season-node h4{ font-size:15px; line-height:1.2; }
.season-node .st{ margin-top:auto; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--muted-2); }
.season-node.live .st{ color:var(--orange-2); }

/* ---------- AI companion ---------- */
.ai-band{ position:relative; overflow:hidden; border:1px solid var(--line-2); border-radius:var(--r-lg);
  background:radial-gradient(700px 340px at 85% 20%, rgba(47,143,232,.16), transparent), var(--bg-2); padding:48px; }
.ai-cards{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin-top:30px; }
.ai-card{ background:rgba(255,255,255,.03); border:1px solid var(--line); border-radius:var(--r); padding:22px; transition:.2s; }
.ai-card:hover{ border-color:var(--orange); }
.ai-card .ic{ width:42px; height:42px; border-radius:11px; background:var(--orange-soft); display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
.ai-card .ic svg{ width:22px; height:22px; stroke:var(--orange-2); fill:none; stroke-width:1.8; }
.ai-card h4{ font-size:18px; margin-bottom:7px; }
.ai-card p{ color:var(--muted); font-size:14.5px; margin:0; }
.ai-card .soon{ font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--muted-2); margin-top:12px; display:inline-block; }

/* ---------- newsletter ---------- */
.news{ position:relative; overflow:hidden; border-radius:var(--r-lg); padding:56px; text-align:center;
  background:radial-gradient(600px 300px at 50% 0%, rgba(242,106,30,.18), transparent 70%), var(--bg-2); border:1px solid var(--line-2); }
.news h2{ font-size:clamp(28px,3.6vw,42px); }
.news p{ color:var(--muted); max-width:520px; margin:16px auto 30px; }
.news-form{ display:flex; gap:12px; max-width:480px; margin:0 auto; }
.news-form input{ flex:1; background:rgba(255,255,255,.06); border:1px solid var(--line-2); border-radius:999px;
  padding:15px 22px; color:var(--text); font-family:var(--body); font-size:15px; }
.news-form input:focus{ outline:none; border-color:var(--orange); }
.news .micro{ font-size:12.5px; color:var(--muted-2); margin-top:18px; }
.news .ok{ display:none; color:var(--orange-2); font-weight:700; margin-top:18px; font-family:var(--display); }

/* ---------- footer ---------- */
.footer{ border-top:1px solid var(--line); padding:60px 0 40px; background:var(--bg-1); }
.footer-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:40px; }
.footer .brand{ margin-bottom:18px; }
.footer p{ color:var(--muted); font-size:14.5px; max-width:300px; }
.footer h5{ font-family:var(--display); font-weight:700; font-size:13px; text-transform:uppercase; letter-spacing:.14em; color:var(--muted-2); margin:0 0 16px; }
.footer ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:11px; }
.footer ul a{ color:var(--muted); font-size:14.5px; transition:.2s; }
.footer ul a:hover{ color:var(--text); }
.footer-base{ margin-top:46px; padding-top:24px; border-top:1px solid var(--line); display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap; color:var(--muted-2); font-size:13px; }

/* ---------- reveal (gated: visible by default, animates only when JS adds .anim) ---------- */
.pp-reveal{ }
html.anim .pp-reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
html.anim .pp-reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){ html.anim .pp-reveal{ opacity:1; transform:none; transition:none; } }

/* ---------- responsive ---------- */
@media (max-width:980px){
  .hero-grid{ grid-template-columns:1fr; gap:34px; }
  .ep-grid{ grid-template-columns:repeat(2,1fr); }
  .principles{ grid-template-columns:1fr; }
  .host-grid{ grid-template-columns:1fr; }
  .season-grid{ grid-template-columns:repeat(2,1fr); }
  .ai-cards{ grid-template-columns:1fr; }
  .bio{ grid-template-columns:1fr; gap:24px; }
  .bio .photo{ position:static; max-width:340px; }
  .footer-grid{ grid-template-columns:1fr 1fr; gap:28px; }
}
@media (max-width:680px){
  body{ font-size:16px; }
  .wrap{ padding:0 18px; }
  .sec{ padding:64px 0; }
  .nav-links{ display:none; }
  .nav-cta .btn{ display:none; }
  .nav-toggle{ display:inline-flex; }
  .ep-grid{ grid-template-columns:1fr; }
  .host-card{ grid-template-columns:1fr; }
  .host-card .ph{ width:100%; height:220px; }
  .season-grid{ grid-template-columns:1fr 1fr; }
  .news, .ai-band{ padding:30px 22px; }
  .news-form{ flex-direction:column; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}
