/* ----------------------------------------------------------
   Snacka om AI — site styles
   ---------------------------------------------------------- */

:root {
  --bg: #000000;
  --bg-2: #0a0a0a;
  --fg: #ffffff;
  --muted: #9ca3a3;
  --muted-2: #6b6f6f;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --green: #1ed760;
  --green-2: #1db954;
  --green-soft: rgba(30, 215, 96, 0.16);
  --radius: 18px;
  --easing: cubic-bezier(0.2, 0.8, 0.2, 1);
  --max: 1320px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
em { font-style: normal; color: var(--green); }

::selection { background: var(--green); color: #000; }

/* Grain overlay */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 70;
  mix-blend-mode: overlay;
  opacity: 0.18;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: 80; background: transparent;
}
.scroll-progress span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--green), #75ffae);
  box-shadow: 0 0 18px var(--green);
  transition: width 0.05s linear;
}

/* Custom cursor */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  pointer-events: none;
  z-index: 90;
  transform: translate(-50%, -50%);
  transition: width .25s var(--easing), height .25s var(--easing),
              background .2s var(--easing), border-color .2s var(--easing);
  mix-blend-mode: difference;
}
.cursor.hover {
  width: 56px; height: 56px;
  background: var(--green);
  border-color: var(--green);
}
@media (hover: none) { .cursor { display: none; } body { cursor: auto; } }

/* ----------------------------------------------------------
   Nav
   ---------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  transition: backdrop-filter .4s var(--easing), background .4s var(--easing),
              border-color .4s var(--easing), padding .4s var(--easing);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
  padding: 12px var(--pad);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; letter-spacing: -0.01em; font-size: 16px;
}
.brand-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 50% { transform: scale(1.35); opacity: 0.6; } }
.bang { color: var(--green); }

.nav-links {
  display: flex; gap: 28px;
  font-size: 14px; color: var(--muted);
}
.nav-links a {
  position: relative; padding: 6px 0;
  transition: color .2s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0; background: var(--green);
  transition: width .35s var(--easing);
}
.nav-links a:hover { color: var(--fg); }
.nav-links a:hover::after { width: 100%; }
@media (max-width: 820px) { .nav-links { display: none; } }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #000;
  font-weight: 700; font-size: 13px;
  padding: 10px 16px; border-radius: 999px;
  transition: transform .25s var(--easing), background .25s ease,
              box-shadow .25s ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
  background: #75ffae;
  box-shadow: 0 10px 30px -8px var(--green);
}

/* ----------------------------------------------------------
   Hero
   ---------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(110px, 14vh, 160px) var(--pad) 60px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(120px); opacity: .55;
  will-change: transform;
}
.blob.b1 {
  width: 620px; height: 620px;
  top: -160px; left: -160px;
  background: radial-gradient(circle, rgba(30,215,96,.6), transparent 60%);
  animation: float 18s ease-in-out infinite;
}
.blob.b2 {
  width: 540px; height: 540px;
  bottom: -160px; right: -120px;
  background: radial-gradient(circle, rgba(60,120,255,.35), transparent 60%);
  animation: float 22s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(40px, -30px); }
}
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

.hero-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--green);
  font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; font-size: 12px;
  margin-bottom: 22px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.hero-title {
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.04em;
  font-size: clamp(64px, 10vw, 168px);
  margin-bottom: 28px;
}
.hero-title .word {
  display: block;
  overflow: hidden;
  padding-bottom: 0.04em;
}

.hero-lede {
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 19px);
  margin-bottom: 28px;
}

.pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: #000;
  font-weight: 700; letter-spacing: 0.04em;
  font-size: 13px; text-transform: uppercase;
  padding: 14px 22px; border-radius: 999px;
  transition: transform .3s var(--easing), box-shadow .3s ease;
  will-change: transform;
}
.pill:hover {
  box-shadow: 0 18px 40px -10px var(--green);
}

.hero-stats {
  display: flex; align-items: stretch; gap: 36px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 460px;
}
.stat-num {
  font-size: 44px; font-weight: 800; letter-spacing: -0.02em;
  font-family: "Space Grotesk", "Inter", sans-serif;
}
.stat-label {
  color: var(--muted-2); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.18em;
  margin-top: 6px;
}
.stat-div { width: 1px; background: var(--line); }

.scroll-hint {
  position: absolute; left: 50%; bottom: 28px;
  transform: translateX(-50%);
  color: var(--muted-2);
  font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.scroll-hint span {
  width: 1px; height: 38px; background: var(--line-strong);
  position: relative; overflow: hidden;
}
.scroll-hint span::after {
  content: ""; position: absolute; top: -38px; left: 0;
  width: 100%; height: 100%;
  background: var(--green);
  animation: scrollLine 2.4s var(--easing) infinite;
}
@keyframes scrollLine {
  0%   { top: -100%; }
  60%  { top: 100%; }
  100% { top: 100%; }
}

/* ----------------------------------------------------------
   Phone mockup (CSS only)
   ---------------------------------------------------------- */
.hero-phone {
  position: relative; justify-self: center;
  perspective: 1400px;
}
.phone {
  position: relative;
  width: clamp(260px, 32vw, 360px);
  aspect-ratio: 9 / 19.5;
  background: #0a0a0a;
  border-radius: 46px;
  border: 8px solid #0d0d0d;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 30px 80px -10px rgba(0,0,0,0.8),
    0 0 0 1px rgba(255,255,255,0.06);
  transform: rotate(-3deg);
  transition: transform .8s var(--easing);
  overflow: hidden;
}
.hero-phone:hover .phone { transform: rotate(0deg); }

.phone-glow {
  position: absolute; inset: -20%;
  background: radial-gradient(circle at 50% 50%, rgba(30,215,96,0.35), transparent 60%);
  filter: blur(60px);
  z-index: -1;
  animation: glow 5s ease-in-out infinite;
}
@keyframes glow { 50% { opacity: 0.55; } 0%,100% { opacity: 0.85; } }

.phone-notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 26px; border-radius: 999px;
  background: #000; z-index: 2;
}
.phone-screen {
  position: absolute; inset: 0; padding: 18px 14px 14px;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 10.5px; color: #fff;
  background:
    radial-gradient(circle at 50% 0%, #1c1c1c, #050505 60%);
}
.app-top {
  display: flex; justify-content: space-between;
  font-size: 11px; padding: 4px 14px 8px;
}
.app-status { letter-spacing: 1px; }

.app-header {
  display: grid; grid-template-columns: 20px 1fr 20px;
  align-items: center; padding: 0 4px;
  font-weight: 600;
}
.app-header .app-title { text-align: center; }
.app-header .chev { font-size: 14px; }

.app-video {
  position: relative;
  margin-top: 4px;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #111;
}
.app-video img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.app-tabs {
  display: flex; gap: 8px;
  font-size: 10px;
}
.tab {
  flex: 1; padding: 8px 10px;
  background: rgba(255,255,255,0.07);
  border-radius: 999px;
  text-align: center;
}

.app-meta {
  display: grid; grid-template-columns: 28px 1fr 22px;
  gap: 10px; align-items: center;
  padding: 4px 2px;
}
.cover {
  width: 28px; height: 28px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--green), #064a23);
}
.ep-title { font-weight: 700; font-size: 12px; }
.ep-show { color: var(--muted); font-size: 10px; }
.check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green); color: #000;
  display: grid; place-items: center; font-size: 11px; font-weight: 800;
}

.app-progress { padding: 0 2px; }
.app-progress .bar {
  height: 2px; background: rgba(255,255,255,0.18); border-radius: 999px;
  overflow: hidden;
}
.app-progress .bar span {
  display: block; height: 100%; width: 4%;
  background: #fff;
  animation: progress 8s linear infinite;
}
@keyframes progress { to { width: 96%; } }
.app-progress .time {
  display: flex; justify-content: space-between;
  color: var(--muted); font-size: 9px; margin-top: 4px;
}

.app-controls {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 2px;
}
.play {
  width: 36px; height: 36px; border-radius: 50%;
  background: #fff; color: #000;
  display: grid; place-items: center; font-size: 14px;
}
.ctl { font-size: 10px; }

.app-comments {
  margin-top: auto;
  padding: 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
}
.ck-head {
  display: flex; justify-content: space-between;
  font-size: 11px; font-weight: 700; margin-bottom: 8px;
}
.ck-head .link { color: var(--green); font-weight: 500; }
.ck-row {
  display: flex; gap: 8px; font-size: 10px;
  margin-bottom: 8px;
}
.ck-row:last-child { margin-bottom: 0; }
.ck-av {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #064a23);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff;
}
.ck-av.violet { background: linear-gradient(135deg, #a78bfa, #5b21b6); }
.ck-av.coral { background: linear-gradient(135deg, #fb7185, #9f1239); }
.ck-av.amber { background: linear-gradient(135deg, #fbbf24, #92400e); }
.ck-av.teal { background: linear-gradient(135deg, #5eead4, #0f766e); }
.ck-name { color: var(--muted); font-size: 9px; margin-bottom: 3px; }
.ck-text { line-height: 1.35; }
.ck-react { color: var(--muted); font-size: 9px; margin-top: 4px; }

/* ----------------------------------------------------------
   Topic ticker
   ---------------------------------------------------------- */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: #050505;
  padding: 24px 0;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 4vw, 44px);
  color: var(--muted-2);
  animation: marquee 50s linear infinite;
}
.ticker-track span {
  display: inline-block;
  padding-right: 56px;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ----------------------------------------------------------
   Sections (shared)
   ---------------------------------------------------------- */
section { padding: clamp(80px, 12vh, 140px) var(--pad); }
@media (max-width: 720px) {
  section { padding: clamp(56px, 8vh, 88px) var(--pad); }
}
.section-eyebrow {
  color: var(--green);
  font-weight: 700; letter-spacing: 0.22em;
  font-size: 11px; text-transform: uppercase;
  margin-bottom: 22px;
}
.section-title {
  font-size: clamp(36px, 5.6vw, 80px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 1100px;
  margin-bottom: 28px;
}

/* ----------------------------------------------------------
   Om
   ---------------------------------------------------------- */
.om-grid { max-width: var(--max); margin: 0 auto; }
.om-lede {
  max-width: 720px; color: var(--muted);
  font-size: clamp(16px, 1.4vw, 20px);
  margin-bottom: 60px;
}
.bullets {
  list-style: none;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 880px) { .bullets { grid-template-columns: 1fr; } }
.bullets li {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  transition: border-color .35s var(--easing), transform .35s var(--easing),
              background .35s var(--easing);
}
.bullets li:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  background: linear-gradient(180deg, var(--green-soft), transparent);
}
.b-num {
  display: inline-block;
  color: var(--green);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700; font-size: 13px;
  margin-bottom: 16px; letter-spacing: 0.1em;
}
.bullets h3 {
  font-size: 22px; font-weight: 700; margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.bullets p { color: var(--muted); }

/* ----------------------------------------------------------
   Episodes
   ---------------------------------------------------------- */
.section-head { max-width: var(--max); margin: 0 auto; }
.ep-list {
  max-width: var(--max); margin: 40px auto 30px;
  border-top: 1px solid var(--line);
}
.ep {
  display: grid;
  grid-template-columns: 70px 1fr 90px 40px;
  gap: 28px;
  align-items: center;
  padding: 28px 12px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background .35s var(--easing), padding .35s var(--easing);
}
.ep:hover { background: rgba(255,255,255,0.03); padding-left: 28px; }
.ep:hover .ep-arrow { transform: translateX(8px); color: var(--green); }
.ep:hover .ep-info h3 { color: var(--green); }

.ep-num {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700; color: var(--muted-2);
  font-size: 13px; letter-spacing: 0.06em;
}
.ep-info h3 {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color .25s ease;
  margin-bottom: 4px;
}
.ep-info p { color: var(--muted); font-size: 14px; }
.ep-len { color: var(--muted-2); font-size: 13px; text-align: right; }
.ep-arrow {
  font-size: 22px; color: var(--muted-2);
  transition: transform .35s var(--easing), color .25s ease;
}
@media (max-width: 720px) {
  .ep { grid-template-columns: 50px 1fr 30px; }
  .ep-len { display: none; }
}

/* Episode skeleton placeholder (used until real RSS data is wired in) */
.ep.skeleton {
  pointer-events: none;
  opacity: .6;
}
.ep.skeleton .ep-num,
.ep.skeleton .ep-info h3,
.ep.skeleton .ep-info p,
.ep.skeleton .ep-len {
  display: block;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.04) 0%,
    rgba(255,255,255,0.10) 40%,
    rgba(255,255,255,0.04) 80%);
  background-size: 200% 100%;
  border-radius: 6px;
  animation: shimmer 1.6s linear infinite;
  color: transparent;
  height: 14px;
}
.ep.skeleton .ep-num { width: 32px; }
.ep.skeleton .ep-info h3 { height: 22px; width: 70%; margin-bottom: 8px; }
.ep.skeleton .ep-info p { height: 12px; width: 45%; }
.ep.skeleton .ep-len { height: 12px; width: 56px; margin-left: auto; }
.ep.skeleton:hover { background: transparent; padding-left: 12px; }
@keyframes shimmer { to { background-position: -200% 0; } }

.ghost-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px; border-radius: 999px;
  border: 1px solid var(--line-strong); color: var(--fg);
  font-weight: 600; font-size: 14px;
  margin: 30px auto 0; max-width: var(--max);
  transition: border-color .3s ease, background .3s ease;
}
.ghost-btn:hover { border-color: var(--green); background: var(--green-soft); }

/* ----------------------------------------------------------
   Numbers
   ---------------------------------------------------------- */
.numbers {
  background:
    radial-gradient(ellipse at top, rgba(30,215,96,0.08), transparent 60%),
    #050505;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.num-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.num-grid.num-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .num-grid, .num-grid.num-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .num-grid, .num-grid.num-grid-3 { grid-template-columns: 1fr; }
}
.big {
  padding: 36px 20px;
  border-left: 1px solid var(--line);
}
.big:first-child { border-left: 0; }
@media (max-width: 900px) { .big { border-left: 0; padding: 20px 0; } }
.big-num {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700; letter-spacing: -0.03em;
  font-size: clamp(56px, 7vw, 110px);
  line-height: 1;
  background: linear-gradient(180deg, #fff, #6e6e6e);
  -webkit-background-clip: text;
  background-clip: text; color: transparent;
  margin-bottom: 14px;
}
.big-label {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* ----------------------------------------------------------
   Hosts
   ---------------------------------------------------------- */
.hostar { max-width: var(--max); margin: 0 auto; }
.host-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  margin-top: 50px;
}
@media (max-width: 800px) { .host-grid { grid-template-columns: 1fr; } }

.host {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #070707;
  transition: border-color .3s ease;
}
.host:hover { border-color: var(--green); }
.host-img {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  background: #0e0e0e;
}
.ph {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 35%, rgba(30,215,96,0.4), transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(60,120,255,0.25), transparent 55%),
    linear-gradient(135deg, #1c1c1c, #050505);
}
.ph.alt {
  background:
    radial-gradient(ellipse at 70% 35%, rgba(255,180,80,0.3), transparent 55%),
    radial-gradient(ellipse at 30% 70%, rgba(30,215,96,0.35), transparent 55%),
    linear-gradient(135deg, #1c1c1c, #050505);
}
.host-text { padding: 24px 26px 28px; }
.host-text h3 {
  font-size: 28px; font-weight: 800; margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.host-text p { color: var(--muted); }
.host-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--fg);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.02em;
  transition: border-color .25s ease, color .25s ease, background .25s ease, transform .25s ease;
}
.host-link:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-1px);
}

/* ----------------------------------------------------------
   Annonsera
   ---------------------------------------------------------- */
.annons-card {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(36px, 5vw, 70px);
  border-radius: 28px;
  background:
    radial-gradient(ellipse at top right, rgba(30,215,96,0.18), transparent 60%),
    #070707;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.annons-card::before {
  content: ""; position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,215,96,.2), transparent 60%);
  filter: blur(60px);
}
.annons-lede {
  color: var(--muted); max-width: 640px;
  font-size: clamp(16px, 1.3vw, 19px);
  margin-bottom: 36px;
}
.annons-list {
  list-style: none;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 28px 0 38px;
  border-top: 1px solid var(--line);
}
.annons-list li {
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 16px; color: var(--fg);
  display: flex; align-items: center; gap: 12px;
}
.annons-list li::before {
  content: "★"; color: var(--green); font-size: 12px;
}
@media (max-width: 640px) { .annons-list { grid-template-columns: 1fr; } }

.solid-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  background: var(--fg); color: #000;
  font-weight: 700;
  transition: transform .3s var(--easing), background .3s ease;
}
.solid-btn:hover { background: var(--green); transform: translateY(-2px); }

/* ----------------------------------------------------------
   Lyssna / CTA
   ---------------------------------------------------------- */
.lyssna {
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(30,215,96,0.08), transparent 60%);
}
.lyssna-title {
  font-size: clamp(40px, 6vw, 96px);
  font-weight: 900; line-height: 0.96;
  letter-spacing: -0.03em;
  max-width: 1000px; margin: 0 auto 50px;
}
.platforms {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}
.platform {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-weight: 600;
  transition: border-color .3s ease, background .3s ease, color .3s ease,
              transform .3s var(--easing);
}
.platform:hover {
  border-color: var(--green);
  background: var(--green);
  color: #000;
  transform: translateY(-3px);
}
.p-ico { color: var(--green); transition: color .3s ease; }
.platform:hover .p-ico { color: #000; }

/* ----------------------------------------------------------
   Footer
   ---------------------------------------------------------- */
.foot {
  border-top: 1px solid var(--line);
  padding: 60px var(--pad) 30px;
  background: #030303;
}
.foot-top {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.foot-brand {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900; letter-spacing: -0.03em;
}
.foot-top p { color: var(--muted); max-width: 360px; }
.foot-bot {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  padding-top: 24px;
  color: var(--muted-2); font-size: 13px;
}

/* ----------------------------------------------------------
   Reveal animations
   ---------------------------------------------------------- */
.reveal,
.reveal-word {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--easing), transform 0.9s var(--easing);
}
.reveal.in,
.reveal-word.in { opacity: 1; transform: translateY(0); }

.reveal-word {
  transform: translateY(110%);
  transition: transform 1s var(--easing), opacity 1s var(--easing);
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-word { opacity: 1; transform: none; }
  .blob, .scroll-hint span::after, .ticker-track,
  .app-progress .bar span, .brand-dot, .phone-glow {
    animation: none !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Sections added to surface real media-kit data
   ============================================================ */

.section-title.jumbo {
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

/* Om 2-col */
.om-2col {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px;
  align-items: start;
}
@media (max-width: 880px) { .om-2col { grid-template-columns: 1fr; gap: 32px; } }
.om-text p { color: var(--muted); margin-bottom: 18px; max-width: 56ch; }
.om-text p b { color: var(--fg); font-weight: 700; }
.om-kicker {
  color: var(--fg) !important;
  font-weight: 700; font-size: 20px;
  margin-top: 16px;
}

/* Numbers card grid */
.num-head { max-width: var(--max); margin: 0 auto 56px; }
.stat-cards {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 980px) { .stat-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .stat-cards { grid-template-columns: 1fr; } }
.card {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), transparent);
  display: flex; flex-direction: column; gap: 18px;
  min-height: 220px;
  transition: border-color .35s var(--easing), transform .35s var(--easing);
}
.card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.card-eyebrow {
  color: var(--muted-2); text-transform: uppercase;
  letter-spacing: 0.18em; font-size: 11px; font-weight: 700;
}
.card-num {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700; letter-spacing: -0.03em;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1;
  margin-top: auto;
}
.card-num .card-unit { font-size: 0.6em; opacity: 0.7; }
.card-foot { color: var(--muted); font-size: 14px; }

.card.card--accent {
  background: var(--green);
  border-color: var(--green);
  color: #000;
}
.card.card--accent .card-eyebrow { color: rgba(0,0,0,0.6); }
.card.card--accent .card-foot { color: rgba(0,0,0,0.75); }
.card.card--accent:hover { transform: translateY(-3px); }

/* Position section */
.position {
  background: #050505;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pos-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
@media (max-width: 920px) { .pos-grid { grid-template-columns: 1fr; gap: 40px; } }
.pos-list {
  list-style: none;
  display: flex; flex-direction: column;
}
.pos-list li {
  display: grid; grid-template-columns: 200px 1fr; gap: 28px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.pos-list li:first-child { padding-top: 0; }
.pos-list li:last-child  { border-bottom: 0; }
.pos-num {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700; font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
}
.pos-text { color: var(--muted); font-size: 15px; line-height: 1.55; }
@media (max-width: 560px) {
  .pos-list li { grid-template-columns: 1fr; gap: 8px; }
}

/* Latest episode embed */
.latest {
  background:
    radial-gradient(ellipse at top right, rgba(30,215,96,0.10), transparent 60%),
    var(--bg);
}
.latest-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px;
  align-items: center;
}
@media (max-width: 920px) { .latest-grid { grid-template-columns: 1fr; gap: 32px; } }
.latest-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #050505;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6),
              0 0 0 1px rgba(255,255,255,0.04) inset;
}
.latest-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* Demografi */
.demo-head { max-width: var(--max); margin: 0 auto 56px; }
.demo-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 760px) { .demo-grid { grid-template-columns: 1fr; } }
.demo-row {
  display: grid; grid-template-columns: 180px 1fr; gap: 32px;
  align-items: baseline;
  padding: 28px 24px 28px 0;
  border-bottom: 1px solid var(--line);
}
.demo-row:nth-child(odd):not(:last-child)  { border-right: 1px solid var(--line); padding-right: 40px; }
.demo-row:nth-child(even) { padding-left: 40px; }
@media (max-width: 760px) {
  .demo-row, .demo-row:nth-child(odd):not(:last-child),
  .demo-row:nth-child(even) {
    padding: 24px 0;
    border-right: 0;
  }
}
.demo-num {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700; letter-spacing: -0.02em;
  color: var(--green);
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
}
.demo-text { color: var(--muted); font-size: 16px; line-height: 1.5; }
.demo-text b { color: var(--fg); font-weight: 700; }

/* Arketyp */
.arketyp { background: #050505; border-top: 1px solid var(--line); }
.ark-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px;
  align-items: start;
}
@media (max-width: 920px) { .ark-grid { grid-template-columns: 1fr; gap: 40px; } }
.ark-list {
  list-style: none;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.ark-list li {
  display: flex; align-items: baseline; gap: 18px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.45;
}
.ark-arrow {
  color: var(--green); font-weight: 700;
  flex-shrink: 0;
}

/* Host updates: real photos overlay gradient */
.host-img { position: relative; }
.host-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.host-head { max-width: var(--max); margin: 0 auto 56px; }
.host-tag {
  color: var(--green); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; margin-bottom: 8px;
}
.host-text { padding: 28px 30px 32px; }
.host-text h3 {
  font-size: clamp(26px, 2.4vw, 34px);
  margin-bottom: 12px;
}
.host-text p {
  color: var(--muted);
  font-size: 15px; line-height: 1.6;
}

/* Sponsorpaket table */
.sponsor-head { max-width: var(--max); margin: 0 auto 48px; }
.pkg-table {
  max-width: var(--max); margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #060606;
}
.pkg-row {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 1fr 0.7fr;
  align-items: center;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
  gap: 16px;
  transition: background .25s ease;
}
.pkg-row:last-child { border-bottom: 0; }
.pkg-row:not(.pkg-head):not(.pkg-row--featured):hover {
  background: rgba(255,255,255,0.025);
}
.pkg-head {
  background: #040404;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-2);
  font-weight: 700;
}
.pkg-name { font-weight: 700; font-size: 17px; }
.pkg-eps b {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 26px; font-weight: 700;
  letter-spacing: -0.02em;
  display: block;
}
.pkg-eps small { color: var(--muted); font-size: 12px; }
.pkg-price {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 22px; font-weight: 700;
}
.pkg-each { color: var(--muted); font-size: 16px; }
.pkg-save {
  display: inline-flex; align-items: center;
  background: var(--green); color: #000;
  font-weight: 700; font-size: 13px;
  padding: 6px 14px; border-radius: 999px;
  width: fit-content;
}
.pkg-save.pkg-save--zero {
  background: transparent;
  color: var(--muted-2);
  padding-left: 0;
}
.pkg-row--featured {
  background: var(--green);
  color: #000;
}
.pkg-row--featured .pkg-each { color: rgba(0,0,0,0.7); }
.pkg-row--featured .pkg-eps small { color: rgba(0,0,0,0.65); }
.pkg-row--featured .pkg-save {
  background: #000; color: var(--green);
}
@media (max-width: 820px) {
  .pkg-table { font-size: 14px; }
  .pkg-row {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "name save"
      "eps  eps"
      "price each";
    padding: 20px 18px;
  }
  .pkg-head { display: none; }
  .pkg-name { grid-area: name; }
  .pkg-eps  { grid-area: eps; display: flex; gap: 8px; align-items: baseline; }
  .pkg-eps b { font-size: 20px; }
  .pkg-price { grid-area: price; font-size: 18px; }
  .pkg-each  { grid-area: each; text-align: right; font-size: 14px; }
  .pkg-save  { grid-area: save; justify-self: end; }
}

.pkg-foot {
  max-width: var(--max); margin: 32px auto 0;
  padding: 22px 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px; color: var(--muted);
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  align-items: center; justify-content: center;
  text-align: center;
}
.pkg-foot > span {
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
}
.pkg-foot a { color: var(--fg); border-bottom: 1px solid var(--line-strong); padding-bottom: 1px; }
.pkg-foot a:hover { color: var(--green); border-color: var(--green); }
@media (max-width: 640px) {
  .pkg-foot { border-radius: 18px; padding: 22px; }
}

/* Footer production credit */
.foot-prod {
  max-width: var(--max); margin: 0 auto;
  padding: 30px 0;
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  border-bottom: 1px solid var(--line);
}
.foot-prod-label {
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.22em; font-size: 11px;
  font-weight: 700;
}
.foot-prod-names {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700; font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.01em;
}
.foot-bot a {
  color: var(--muted-2);
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.foot-bot a:hover { color: var(--green); border-color: var(--green); }

/* ----------------------------------------------------------
   Mobile fixes
   ---------------------------------------------------------- */
@media (max-width: 640px) {
  .hero-title { font-size: clamp(48px, 13vw, 80px); }
  .pill {
    font-size: 11px; padding: 12px 18px;
    white-space: nowrap;
  }
  .hero-stats {
    gap: 20px;
    margin-top: 36px;
    padding-top: 22px;
  }
  .stat-num { font-size: 32px; }
  .stat-label { font-size: 10px; letter-spacing: 0.14em; }
  .scroll-hint { display: none; }
  /* Un-rotate phone on mobile so corners don't push past viewport edges */
  .phone { transform: none; }
}

/* On touch devices: stop the heavy infinite animations (giant blurred
   blobs etc.) that choke the mobile GPU and stall the JS main thread.
   The reveal/parallax effects ARE kept — they weren't the actual problem,
   the layout-shifting paints were. */
@media (hover: none) {
  [data-parallax] { transform: none !important; }
  .blob,
  .blob.b1, .blob.b2,
  .scroll-hint span::after,
  .app-progress .bar span,
  .brand-dot,
  .phone-glow {
    animation: none !important;
  }
  .blob { filter: blur(60px); opacity: 0.35; }
  /* Ticker text shrinks via clamp() on mobile, so the same duration
     reads as too slow — speed it up so the perceived pace matches desktop. */
  .ticker-track { animation-duration: 24s; }
}

/* ----------------------------------------------------------
   Odometer (live-ticking counter)
   ---------------------------------------------------------- */
.odo {
  display: inline-flex;
  align-items: baseline;
  font-variant-numeric: tabular-nums;
}
.odo-static { display: inline-block; }
.odo-digit {
  display: inline-block;
  height: 1em;
  line-height: 1;
  overflow: hidden;
  vertical-align: baseline;
}
.odo-track {
  display: block;
  transform: translateY(calc(var(--d, 0) * -1em));
  transition: transform 0.7s cubic-bezier(.34, 1.2, .5, 1);
  will-change: transform;
}
.odo-track > span {
  display: block;
  height: 1em;
  line-height: 1;
  text-align: center;
}
@media (prefers-reduced-motion: reduce) {
  .odo-track { transition: none; }
}
