@import url('./colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; background: #001520; }
body { font-family: var(--font-body); color: var(--fg-1); }

/* ---------- shared ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.eyebrow-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-orange);
}

/* ---------- top nav (slim) ---------- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  color: #fff;
  pointer-events: none;
  transition: background 300ms var(--ease-out), backdrop-filter 300ms var(--ease-out);
}
.topbar.scrolled {
  background: rgba(0, 21, 32, 0.72);
  backdrop-filter: blur(12px);
}
.topbar img { height: 26px; pointer-events: auto; }
.topbar .meta {
  font-family: var(--font-display);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  pointer-events: auto;
}
.topbar .meta b { color: var(--c-orange); font-weight: 700; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(247, 149, 32, 0.18) 0%, rgba(239, 65, 55, 0.06) 35%, transparent 70%),
    radial-gradient(ellipse at 50% 110%, #003a52 0%, #001520 60%);
  color: #fff;
  overflow: hidden;
}
/* Sky-strip at top is gone — replaced by the subtle bottom glow above
   plus a tiny vignette to keep the topbar readable. */
.hero-skystrip {
  position: absolute; top: 0; left: 0; right: 0; height: 140px;
  overflow: hidden;
  background: linear-gradient(180deg,
    rgba(0, 21, 32, 0.85) 0%,
    rgba(0, 21, 32, 0.0) 100%);
  pointer-events: none;
}
.celestial {
  position: absolute; top: 56px;
  width: 28px; height: 28px;
  border-radius: 50%;
  filter: blur(0.3px);
  opacity: 0.55;
  box-shadow: 0 0 24px 4px rgba(255, 220, 160, 0.28);
  background: radial-gradient(circle at 30% 30%, #ffe9b8, #f79520 60%, #d65a1a 100%);
  transition: none;
  will-change: transform;
}
.celestial.moon {
  background: radial-gradient(circle at 35% 35%, #f4f0e3, #c9c4b3 70%, #6e6a5a 100%);
  box-shadow: 0 0 22px 3px rgba(220, 220, 240, 0.22);
  opacity: 0.45;
}
.stars {
  position: absolute; top: 0; left: 0; right: 0; bottom: 35%;
  pointer-events: none; opacity: 0.55;
  transition: opacity 1500ms var(--ease-out);
}
.stars.on { opacity: 0.85; }
.star {
  position: absolute; width: 2px; height: 2px;
  background: #fff; border-radius: 50%;
  animation: twinkle 3s var(--ease-in-out) infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

.hero-content {
  text-align: center; max-width: 980px; padding: 0 24px;
  position: relative; z-index: 2;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6.4vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0;
  color: #fff;
}
.hero h1 .accent {
  background: var(--c-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .sub {
  margin-top: 28px;
  font-size: 19px; line-height: 1.55;
  color: rgba(255,255,255,0.72);
  max-width: 640px; margin-left: auto; margin-right: auto;
}
.hero .scroll-cue {
  position: absolute;
  bottom: 36px; left: 50%; transform: translateX(-50%);
  text-align: center; color: rgba(255,255,255,0.55);
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
}
.scroll-cue .arrow {
  width: 1px; height: 36px; background: rgba(255,255,255,0.4);
  margin: 12px auto 0;
  animation: scrollPulse 1.8s var(--ease-in-out) infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0.2; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.2; }
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(247, 149, 32, 0.4);
  border-radius: 999px;
  background: rgba(247, 149, 32, 0.08);
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #f79520;
  margin-bottom: 28px;
}
.hero-tag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #f79520;
  box-shadow: 0 0 10px #f79520;
  animation: pulse 1.6s var(--ease-in-out) infinite;
}
@keyframes pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ---------- SARAH ---------- */
.sarah {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(180deg, #001520 0%, #00131c 100%);
  color: #fff;
  padding: 100px 0;
}
.sarah-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.sarah-avatar-wrap {
  position: relative; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.sarah-avatar-wrap svg { width: 100%; height: 100%; max-width: 460px; }
.sarah-text .eyebrow-mark { margin-bottom: 18px; }
.sarah-text h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.02; letter-spacing: -0.02em;
  color: #fff; margin: 0 0 18px;
}
.sarah-lead {
  margin: 0 0 36px;
  font-size: 17px; line-height: 1.55;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
}
.sarah-bullets { list-style: none; padding: 0; margin: 0; }
.sarah-bullets li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  color: rgba(255,255,255,0.85);
  opacity: 0; transform: translateY(12px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.sarah-bullets li.in { opacity: 1; transform: translateY(0); }
.sarah-bullets li b { color: #fff; font-weight: 700; }
.bullet-num {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  color: var(--c-orange);
  letter-spacing: 0.1em;
  flex: 0 0 28px;
  padding-top: 4px;
}

/* ---------- DAY (Tagesverlauf) ---------- */
.day-section {
  position: relative;
  background: #00131c;
  color: #fff;
}
.day-intro {
  text-align: center;
  padding: 120px 24px 80px;
}
.day-intro h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1; letter-spacing: -0.02em;
  color: #fff; margin: 18px auto 0; max-width: 800px;
}
.day-intro p { color: rgba(255,255,255,0.6); margin-top: 18px; }

.day-stage {
  position: relative;
}

/* sticky stage area: phone + sun rail stay; right column scrolls */
.day-track {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

/* sun rail */
.sun-rail {
  position: sticky; top: 0;
  height: 100vh;
  display: flex; align-items: center; justify-content: center;
}
.sun-rail-inner {
  position: relative;
  width: 2px; height: 70vh;
  background: linear-gradient(180deg,
    rgba(247,149,32,0.05) 0%,
    rgba(247,149,32,0.6) 50%,
    rgba(0,42,60,0.6) 100%);
  border-radius: 2px;
}
.sun-rail-marker {
  position: absolute; left: 50%;
  width: 36px; height: 36px;
  margin-left: -18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffe9b8, #f79520 60%, #d65a1a 100%);
  box-shadow: 0 0 30px 6px rgba(247, 149, 32, 0.6);
  transition: top 600ms var(--ease-out), background 600ms var(--ease-out), box-shadow 600ms var(--ease-out);
}
.sun-rail-marker.evening {
  background: radial-gradient(circle at 35% 35%, #ffd9a3, #ef4137 70%);
  box-shadow: 0 0 30px 6px rgba(239, 65, 55, 0.5);
}
.sun-rail-marker.night {
  background: radial-gradient(circle at 35% 35%, #f4f0e3, #c9c4b3 70%, #6e6a5a 100%);
  box-shadow: 0 0 30px 6px rgba(200, 200, 240, 0.3);
}
.sun-rail-time {
  position: absolute; left: 100%; margin-left: 18px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-weight: 700;
  white-space: nowrap;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.sun-rail-time small { display: block; font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 2px; letter-spacing: 0.16em; }

/* phone column */
.phone-col {
  position: sticky; top: 0;
  height: 100vh;
  display: flex; align-items: center; justify-content: center;
}
.phone {
  width: 320px; height: 660px;
  border-radius: 44px;
  background: #1a1a1a;
  border: 12px solid #0a0a0a;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 0 1.5px rgba(255,255,255,0.05),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}
.phone-notch {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 26px; background: #0a0a0a; border-radius: 14px;
  z-index: 10;
}
.phone-glare {
  position: absolute; inset: 0;
  border-radius: 32px;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(255,255,255,0.08) 0%, transparent 30%, transparent 70%, rgba(255,255,255,0.04) 100%);
  transition: opacity 400ms var(--ease-out);
}
.phone-screen {
  position: absolute; inset: 0;
  border-radius: 32px;
  overflow: hidden;
  background: #fff;
}
.phone-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
  display: flex; flex-direction: column;
  transform: translateY(24px) scale(0.98);
  pointer-events: none;
}
.phone-slide.active { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

/* status bar */
.status-bar {
  height: 44px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px 0 28px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  flex-shrink: 0;
}
.status-bar .icons { display: flex; gap: 5px; align-items: center; }
.status-bar .icons span { display: inline-block; }
.bars { display: flex; gap: 1.5px; align-items: end; height: 9px; }
.bars i { display: block; width: 2.5px; background: currentColor; border-radius: 0.5px; }
.bars i:nth-child(1) { height: 30%; }
.bars i:nth-child(2) { height: 55%; }
.bars i:nth-child(3) { height: 80%; }
.bars i:nth-child(4) { height: 100%; }
.battery { width: 22px; height: 10px; border: 1px solid currentColor; border-radius: 2.5px; padding: 1px; position: relative; }
.battery::after { content: ''; position: absolute; right: -3px; top: 3px; width: 1.5px; height: 4px; background: currentColor; border-radius: 0 1px 1px 0; }
.battery i { display: block; height: 100%; width: 78%; background: currentColor; border-radius: 1px; }

/* WEATHER APP slide */
.s-weather { background: linear-gradient(180deg, #4a7eb0 0%, #2c5078 100%); color: #fff; }
.s-weather .status-bar { color: #fff; }
.weather-body { padding: 14px 20px 0; flex: 1; display: flex; flex-direction: column; }
.weather-loc { font-family: var(--font-display); font-weight: 600; font-size: 14px; opacity: 0.9; }
.weather-temp { font-family: var(--font-display); font-weight: 200; font-size: 96px; line-height: 1; margin: 6px 0 0; letter-spacing: -0.04em; }
.weather-cond { font-family: var(--font-display); font-weight: 500; font-size: 17px; opacity: 0.92; margin-top: 4px; }
.weather-hi { font-size: 13px; opacity: 0.7; margin-top: 2px; }
.weather-hours { display: flex; gap: 14px; margin-top: 28px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.18); border-bottom: 1px solid rgba(255,255,255,0.18); }
.weather-hours div { flex: 1; text-align: center; font-family: var(--font-display); font-size: 11px; opacity: 0.85; }
.weather-hours div b { display: block; font-size: 14px; font-weight: 700; margin-top: 6px; }
.weather-ad-slot { margin-top: auto; padding-bottom: 18px; }

/* INSTAGRAM FEED slide */
.s-ig { background: #fff; color: #000; }
.s-ig .status-bar { color: #000; }
.ig-header { display: flex; align-items: center; justify-content: space-between; padding: 6px 16px; border-bottom: 1px solid #efefef; }
.ig-logo { font-family: 'Red Hat Display'; font-weight: 800; font-style: italic; font-size: 22px; }
.ig-stories { display: flex; gap: 10px; padding: 12px 14px; border-bottom: 1px solid #efefef; overflow: hidden; }
.ig-story { display: flex; flex-direction: column; align-items: center; gap: 4px; flex-shrink: 0; }
.ig-story .ring {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  padding: 2px;
}
.ig-story .ring div {
  width: 100%; height: 100%; border-radius: 50%;
  background: #ddd;
  border: 2px solid #fff;
}
.ig-story span { font-size: 9.5px; max-width: 60px; overflow: hidden; text-overflow: ellipsis; }
.ig-feed { flex: 1; overflow: hidden; }
.ig-post { padding: 0; }
.ig-post-head { display: flex; align-items: center; gap: 8px; padding: 8px 14px; }
.ig-post-head .av { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, #f79520, #ef4137); }
.ig-post-head .meta { flex: 1; font-size: 12px; }
.ig-post-head .meta b { font-weight: 700; display: block; font-size: 12px; }
.ig-post-head .meta span { color: #888; font-size: 10.5px; }
.ig-post-img { width: 100%; aspect-ratio: 1; }
.ig-post-actions { display: flex; gap: 14px; padding: 8px 14px 4px; font-size: 22px; }

/* INSTAGRAM REEL slide */
.s-reel { background: #000; color: #fff; }
.s-reel .status-bar { color: #fff; }
.reel-stage { flex: 1; position: relative; overflow: hidden; }

/* YOUTUBE slide */
.s-yt { background: #0f0f0f; color: #fff; }
.s-yt .status-bar { color: #fff; }
.yt-header { padding: 8px 14px; display: flex; align-items: center; justify-content: space-between; }
.yt-logo { font-family: 'Red Hat Display'; font-weight: 800; font-size: 17px; letter-spacing: -0.04em; }
.yt-logo span { color: #ff0033; }
.yt-player {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}
.yt-skip {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(0,0,0,0.7); color: #fff;
  padding: 4px 10px; font-size: 9.5px; border-radius: 2px;
  font-family: var(--font-display); font-weight: 600;
}
.yt-ad-tag {
  position: absolute; bottom: 8px; left: 8px;
  background: #ffd600; color: #0f0f0f;
  padding: 2px 6px; font-size: 9px; border-radius: 1px;
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: 0.04em;
}
.yt-meta { padding: 12px 14px; }
.yt-meta h4 { font-size: 14px; font-weight: 600; margin: 0 0 6px; line-height: 1.3; color: #fff; }
.yt-meta p { font-size: 11px; color: #aaa; margin: 0; }
.yt-progress { height: 3px; background: #444; }
.yt-progress div { width: 32%; height: 100%; background: #ff0033; }

/* right text col — pinned descriptions per station */
.day-text {
  display: flex; flex-direction: column;
  padding-top: 25vh;
  padding-bottom: 25vh;
  gap: 70vh;
}
.station {
  min-height: 75vh;
  display: flex; flex-direction: column; justify-content: center;
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}
.station > * {
  opacity: 0; transform: translateY(24px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.station.in > * { opacity: 1; transform: translateY(0); }
.station.in > *:nth-child(1) { transition-delay: 0ms; }
.station.in > *:nth-child(2) { transition-delay: 90ms; }
.station.in > *:nth-child(3) { transition-delay: 180ms; }
.station.in > *:nth-child(4) { transition-delay: 280ms; }
.station.in > *:nth-child(5) { transition-delay: 380ms; }
.station .time-tag {
  display: inline-block;
  font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--c-orange);
  padding: 6px 12px;
  border: 1px solid rgba(247,149,32,0.35);
  border-radius: 999px;
  margin-bottom: 22px;
  align-self: flex-start;
  background: rgba(247,149,32,0.06);
}
.station h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05; letter-spacing: -0.02em;
  margin: 0 0 18px; color: #fff;
}
.station p {
  font-size: 17px; line-height: 1.55;
  color: rgba(255,255,255,0.7);
  max-width: 460px;
}
.station .quote {
  margin-top: 24px;
  padding: 18px 22px;
  border-left: 2px solid var(--c-orange);
  background: rgba(247,149,32,0.05);
  font-family: var(--font-display); font-style: italic;
  font-size: 15px; line-height: 1.45;
  color: rgba(255,255,255,0.85);
}
.station .creative-meta {
  margin-top: 26px;
  display: grid; grid-template-columns: auto 1fr; gap: 6px 16px;
  font-size: 13px;
  font-family: var(--font-display);
}
.station .creative-meta dt { color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.12em; font-size: 10.5px; padding-top: 3px; }
.station .creative-meta dd { margin: 0; color: rgba(255,255,255,0.9); }

/* ad creatives — schematic placeholders */
.ad-creative {
  position: relative; overflow: hidden;
  border-radius: 4px;
  font-family: var(--font-display);
}
.ad-creative .city-line {
  position: absolute; left: 0; right: 0;
  bottom: 0; height: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 200' preserveAspectRatio='xMidYMax meet'><g fill='none' stroke='rgba(255,255,255,0.35)' stroke-width='1.5'><path d='M0,180 L40,180 L40,140 L70,140 L70,160 L100,160 L100,110 L130,110 L130,90 L150,90 L150,70 L165,70 L165,90 L185,90 L185,80 L185,40 L195,40 L195,80 L215,80 L215,110 L260,110 L260,130 L290,130 L290,150 L330,150 L330,120 L360,120 L360,170 L400,170 L400,200 L0,200 Z'/><path d='M152,90 L152,55 M158,90 L158,60' /><circle cx='180' cy='35' r='3'/></g></svg>");
  background-size: cover;
  background-position: bottom;
  opacity: 0.85;
}

/* weather ad in-feed (small banner) */
.ad-banner {
  background: linear-gradient(135deg, #f79520 0%, #ef4137 100%);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex; gap: 12px; align-items: center;
  color: #fff;
  position: relative;
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}
.ad-banner .ad-tag-mini {
  position: absolute; top: 6px; right: 8px;
  font-size: 8px; opacity: 0.7; letter-spacing: 0.1em; text-transform: uppercase;
}
.ad-banner .av { width: 38px; height: 38px; border-radius: 8px; background: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--c-navy); font-size: 15px; flex-shrink: 0; }
.ad-banner h5 { font-size: 13px; font-weight: 700; margin: 0 0 2px; line-height: 1.15; }
.ad-banner p { font-size: 11px; margin: 0; opacity: 0.92; line-height: 1.3; }
.ad-banner .cta-mini { font-size: 10px; padding: 4px 10px; background: rgba(255,255,255,0.96); color: var(--c-navy); border-radius: 6px; font-weight: 700; flex-shrink: 0; }

/* IG square ad creative */
.ad-square {
  width: 100%; aspect-ratio: 1;
  position: relative;
  background: linear-gradient(155deg, #002a3c 0%, #00405c 60%, #176c73 100%);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 18px 18px 14px;
  color: #fff;
}
.ad-square .ribbon {
  align-self: flex-start;
  font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase;
  background: rgba(247,149,32,0.18); color: #f79520;
  padding: 4px 8px; border-radius: 999px; font-weight: 700;
}
.ad-square h5 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 18px; line-height: 1.1; margin: 8px 0;
  letter-spacing: -0.01em;
}
.ad-square .opener { font-size: 10.5px; line-height: 1.4; opacity: 0.85; max-width: 90%; }
.ad-square .meta-row { display: flex; justify-content: space-between; align-items: end; margin-top: auto; gap: 8px; }
.ad-square .from { font-size: 9px; opacity: 0.7; letter-spacing: 0.1em; text-transform: uppercase; }

/* Reel full-bleed ad */
.ad-reel {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.ad-reel .bg-blob {
  position: absolute; top: -20%; right: -30%;
  width: 90%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(247,149,32,0.45), rgba(239,65,55,0) 70%);
  filter: blur(20px);
}
.ad-reel .bg-blob-2 {
  position: absolute; bottom: -10%; left: -20%;
  width: 70%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(23,108,115,0.5), transparent 70%);
  filter: blur(20px);
}
.ad-reel .top-strip {
  display: flex; gap: 4px; padding: 8px 12px;
  position: relative; z-index: 2;
}
.ad-reel .top-strip span {
  flex: 1; height: 2px; background: rgba(255,255,255,0.3); border-radius: 1px;
}
.ad-reel .top-strip span:first-child { background: #fff; }
.ad-reel .ad-label {
  position: relative; z-index: 2;
  align-self: flex-start; margin: 0 12px;
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.ad-reel .hook {
  font-family: var(--font-display); font-weight: 800;
  font-size: 21px; line-height: 1.15;
  color: #fff;
  padding: 0 18px;
  letter-spacing: -0.01em;
  position: relative; z-index: 2;
  margin-top: auto;
  text-wrap: balance;
}
.ad-reel .hook .hl {
  background: linear-gradient(180deg, transparent 60%, rgba(247,149,32,0.45) 60%);
  padding: 0 2px;
}
.ad-reel .caption {
  position: relative; z-index: 2;
  padding: 14px 18px 14px;
  font-size: 11.5px; color: rgba(255,255,255,0.7);
  line-height: 1.35;
}
.ad-reel .reel-side {
  position: absolute; right: 8px; bottom: 50%; transform: translateY(50%);
  display: flex; flex-direction: column; gap: 16px; z-index: 3;
  align-items: center;
}
.ad-reel .reel-side .ic {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
}
.ad-reel .reel-side .ic small {
  font-size: 9px; margin-top: 2px;
}
.ad-reel .cta-pill {
  position: relative; z-index: 2;
  margin: 6px 18px 18px;
  background: var(--c-gradient);
  color: #fff; font-weight: 700;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  box-shadow: 0 8px 24px rgba(247,149,32,0.35);
}

/* YT preroll ad */
.ad-yt {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #002a3c 0%, #003a52 60%, #ef4137 130%);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 14px;
  overflow: hidden;
}
.ad-yt .city-line { opacity: 0.4; }
.ad-yt .top-line { font-size: 9px; color: rgba(255,255,255,0.6); letter-spacing: 0.16em; text-transform: uppercase; position: relative; z-index: 2; }
.ad-yt .hook {
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; line-height: 1.25; color: #fff;
  position: relative; z-index: 2;
  max-width: 90%;
  letter-spacing: -0.01em;
}
.ad-yt .sub {
  position: relative; z-index: 2;
  font-size: 11px; color: rgba(255,255,255,0.85);
  font-style: italic;
  margin-top: 4px;
}
.ad-yt .badge {
  position: relative; z-index: 2;
  align-self: flex-start;
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-orange);
  padding: 3px 8px;
  border: 1px solid rgba(247,149,32,0.5);
  border-radius: 999px;
}

/* ---------- TRANSITION TEXT ---------- */
.transition {
  background: #00131c;
  padding: 200px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.transition .big-line {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 6vw, 92px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.35em;
}
.transition .big-line span {
  display: inline-block;
  opacity: 0; transform: translateY(40px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.transition .big-line span.in {
  opacity: 1; transform: translateY(0);
}
.transition .big-line span.accent { color: var(--c-orange); }

/* ---------- KPI ---------- */
.kpi-section {
  background: linear-gradient(180deg, #00131c 0%, #001a26 100%);
  padding: 140px 0 160px;
  color: #fff;
}
.kpi-section .head { text-align: center; max-width: 820px; margin: 0 auto 70px; padding: 0 24px; }
.kpi-section h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1; letter-spacing: -0.02em;
  margin: 18px 0 16px; color: #fff;
}
.kpi-section .head p { color: rgba(255,255,255,0.6); font-size: 16px; }
.kpi-section .head p b { color: rgba(255,255,255,0.85); font-weight: 600; }

.kpi-grid-big {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.kpi-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 400ms var(--ease-out), border-color 400ms var(--ease-out);
}
.kpi-card.hero-card {
  background: linear-gradient(165deg, rgba(247,149,32,0.18) 0%, rgba(247,149,32,0.02) 60%);
  border-color: rgba(247,149,32,0.35);
}
.kpi-card .label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.kpi-card.hero-card .label { color: var(--c-orange); }
.kpi-card .value {
  font-family: var(--font-display); font-weight: 800;
  font-size: 56px; line-height: 1; letter-spacing: -0.03em;
  color: #fff;
}
.kpi-card .value .unit { font-size: 22px; color: rgba(255,255,255,0.6); margin-left: 6px; font-weight: 600; }
.kpi-card .sub { margin-top: 10px; font-size: 13px; color: rgba(255,255,255,0.55); }
.kpi-card .spark {
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--c-orange), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 1500ms var(--ease-out) 200ms;
}
.kpi-card.in .spark { transform: scaleX(1); }

.kpi-grid-small {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 1200px; margin: 16px auto 0; padding: 0 24px;
}
.kpi-card.small { padding: 24px 22px; }
.kpi-card.small .value { font-size: 32px; }
.kpi-card.small .value .unit { font-size: 14px; }
.kpi-card.small .label { margin-bottom: 12px; }

.kpi-note {
  max-width: 1152px; margin: 36px auto 0; padding: 24px 28px;
  border-left: 3px solid var(--c-orange);
  background: rgba(255,255,255,0.02);
  border-radius: 0 12px 12px 0;
  color: rgba(255,255,255,0.78);
  font-size: 14px; line-height: 1.55;
}
.kpi-note b { color: #fff; font-weight: 700; }

/* ---------- CTA FOOTER ---------- */
.cta-footer {
  background: #00131c;
  padding: 160px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-footer::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(247,149,32,0.12), transparent 60%);
  pointer-events: none;
}
.cta-footer h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(40px, 5.4vw, 80px);
  line-height: 1; letter-spacing: -0.03em;
  color: #fff; margin: 0 0 36px;
  position: relative;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--c-gradient);
  color: #fff;
  font-family: var(--font-display); font-weight: 700;
  font-size: 17px;
  padding: 20px 36px;
  border-radius: 999px;
  border: none; cursor: pointer;
  box-shadow: 0 12px 36px rgba(247,149,32,0.4);
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
  position: relative;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(247,149,32,0.5); }
.cta-btn:active { transform: scale(0.97); }
.cta-btn .arrow { display: inline-block; transition: transform 250ms var(--ease-out); }
.cta-btn:hover .arrow { transform: translateX(4px); }
.cta-footer .sub {
  margin-top: 22px;
  font-size: 14px; color: rgba(255,255,255,0.55);
  position: relative;
}
.cta-footer .footer-mark {
  margin-top: 80px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  position: relative;
}

/* ---------- THEME BADGE (used inside ad creatives) ---------- */
.theme-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 5;
}
.theme-badge .dot { width: 5px; height: 5px; border-radius: 50%; }
.theme-badge.pop {
  animation: badge-pop 400ms var(--ease-spring) both;
}
@keyframes badge-pop {
  0% { transform: scale(0.6); opacity: 0; }
  60% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); }
}

/* ---------- WEEK NAV ---------- */
.days-condensed-wrap { background: #00131c; position: relative; }
.week-nav {
  position: sticky; top: 0;
  z-index: 50;
  background: rgba(0, 13, 19, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 14px 24px 12px;
}
.week-pills {
  display: flex; gap: 6px; justify-content: center;
  max-width: 760px; margin: 0 auto;
}
.week-pill {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  padding: 8px 6px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  color: rgba(255,255,255,0.6);
  border-radius: 10px;
  font-family: var(--font-display);
  cursor: pointer;
  transition: all 200ms var(--ease-out);
}
.week-pill:hover { color: #fff; border-color: rgba(255,255,255,0.18); }
.week-pill.active {
  background: var(--c-orange);
  color: #002a3c;
  border-color: var(--c-orange);
  box-shadow: 0 6px 18px rgba(247,149,32,0.35);
}
.week-pill-day { font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7; }
.week-pill-label { font-size: 14px; font-weight: 800; }

.freq-counter {
  display: flex; gap: 24px; justify-content: center;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 12px;
}
.freq-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5);
}
.freq-item .freq-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-orange);
  box-shadow: 0 0 8px var(--c-orange);
}
.freq-label { letter-spacing: 0.08em; text-transform: uppercase; font-size: 10px; }
.freq-value { color: #fff; font-weight: 800; font-size: 14px; }
.freq-value .of { color: rgba(255,255,255,0.4); font-weight: 500; }

/* ---------- CONDENSED DAYS (Tag 2-7) ---------- */
.cday {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 60px 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.cday-grid {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 2fr; gap: 60px;
  align-items: center;
}
.cday-left { color: #fff; }
.cday-stamp {
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 18px;
}
.cday-stamp .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95; letter-spacing: -0.03em;
  color: #fff;
  opacity: 0; transform: translateX(-24px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.cday-stamp .day-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-orange);
  opacity: 0; transform: translateX(-12px);
  transition: opacity 700ms var(--ease-out) 100ms, transform 700ms var(--ease-out) 100ms;
}
.cday.in .cday-stamp .num,
.cday.in .cday-stamp .day-name { opacity: 1; transform: translateX(0); }
.cday-meta {
  font-size: 14px; color: rgba(255,255,255,0.6);
  font-family: var(--font-display);
  margin-bottom: 18px;
}
.cday-meta b { color: #fff; font-weight: 700; }
.cday-thought {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px; line-height: 1.4;
  color: rgba(255,255,255,0.85);
  padding: 14px 18px;
  border-left: 2px solid var(--c-orange);
  background: rgba(247,149,32,0.06);
  margin-top: 14px;
  opacity: 0; transform: translateY(12px);
  transition: opacity 700ms var(--ease-out) 300ms, transform 700ms var(--ease-out) 300ms;
}
.cday.in .cday-thought { opacity: 1; transform: translateY(0); }

.cday-right {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}
.tp-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px 14px 14px;
  display: flex; flex-direction: column; gap: 10px;
  opacity: 0; transform: translateY(20px) scale(0.96);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out), border-color 300ms var(--ease-out);
}
.cday.in .tp-card { opacity: 1; transform: translateY(0) scale(1); }
.tp-card:hover { border-color: rgba(247,149,32,0.4); }
.tp-card.click-card {
  background: linear-gradient(165deg, rgba(247,149,32,0.18), rgba(239,65,55,0.08));
  border-color: rgba(247,149,32,0.5);
}
.tp-platform {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  color: rgba(255,255,255,0.85);
}
.tp-glyph {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  font-weight: 700; font-size: 11px;
}
.tp-platform-name { font-weight: 600; letter-spacing: 0.02em; }
.tp-time {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  color: #fff; letter-spacing: -0.01em;
  line-height: 1;
}
.mini-creative {
  position: relative; aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 8px;
}
/* ---------- Inline platform mockups (used in compact day-cards) ----------
   Die Karte selbst ist die Plattform-Ansicht. Kein Iframe, kein Phone-Bezel. */
.mc {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  overflow: hidden;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, sans-serif;
  font-size: 9px;
  line-height: 1.2;
  color: #fff;
}

/* ============ IG Feed ============ */
.mc-igfeed { background: #fff; color: #000; display: flex; flex-direction: column; }
.mc-ig-top { display: flex; justify-content: space-between; align-items: center; padding: 5px 8px; border-bottom: 0.5px solid #eee; }
.mc-ig-logo { font: italic 700 11px "Brush Script MT", "Lucida Handwriting", cursive; }
.mc-ig-icons { font-size: 9px; letter-spacing: 1px; }
.mc-ig-stories { display: flex; gap: 4px; padding: 4px 6px; border-bottom: 0.5px solid #eee; }
.mc-ig-circle { width: 14px; height: 14px; border-radius: 50%;
  background: linear-gradient(135deg, #f09433, #dc2743, #bc1888); }
.mc-ig-posthead { display: flex; align-items: center; gap: 5px; padding: 4px 6px; }
.mc-ig-posthead b { font-size: 8px; font-weight: 700; display: block; }
.mc-ig-posthead small { font-size: 7px; color: #888; }
.mc-av { width: 14px; height: 14px; border-radius: 50%; flex: none; }
.mc-ad-square { flex: 1; min-height: 0; position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; padding: 12px; }
.mc-ad-line { display: block; height: 5px; width: 70%; background: rgba(255,255,255,0.7); border-radius: 2px; }
.mc-ad-line.short { width: 45%; height: 4px; opacity: 0.6; }
.mc-ig-actions { display: flex; gap: 7px; padding: 3px 6px; font-size: 9px; }

/* ============ Story ============ */
.mc-story { background: #000; }
.mc-story-bg { position: absolute; inset: 0; }
.mc-story-bars { position: relative; z-index: 2; display: flex; gap: 2px; padding: 4px 6px 0; }
.mc-story-bars span { flex: 1; height: 1.5px; background: rgba(255,255,255,0.35); border-radius: 1px; }
.mc-story-bars .active { background: linear-gradient(90deg, #fff 60%, rgba(255,255,255,0.35) 60%); }
.mc-story-bars .done { background: #fff; }
.mc-story-head { position: relative; z-index: 2; display: flex; align-items: center; gap: 4px; padding: 4px 6px; font-size: 8px; }
.mc-story-head b { font-weight: 700; display: block; }
.mc-story-head small { font-size: 6.5px; opacity: 0.75; }
.mc-story-head .x { margin-left: auto; font-size: 12px; opacity: 0.85; }
.mc-av-sm { width: 12px; height: 12px; border-radius: 50%; flex: none; }
.mc-story-cta { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.55); border: 1px solid rgba(255,255,255,0.2);
  padding: 3px 9px; border-radius: 999px; font-size: 8px; font-weight: 600; z-index: 3; }

/* ============ Reel ============ */
.mc-reel { background: #000; }
.mc-reel-bg { position: absolute; inset: 0; }
.mc-reel-side { position: absolute; right: 4px; bottom: 22px; display: flex; flex-direction: column; gap: 6px; align-items: center; z-index: 2; font-size: 9px; }
.mc-reel-side > span:not(.mc-av-sm) { line-height: 1; }
.mc-reel-bottom { position: absolute; left: 0; right: 0; bottom: 6px; padding: 0 8px; z-index: 2; font-size: 8px; }
.mc-reel-bottom b { font-weight: 700; }
.mc-reel-bottom small { opacity: 0.8; margin-left: 4px; font-size: 7px; }
.mc-reel-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 1.2px; background: rgba(255,255,255,0.3); z-index: 2; }
.mc-reel-progress > div { height: 100%; width: 45%; background: #fff; }

/* ============ YouTube ============ */
.mc-yt { background: #000; }
.mc-yt-bg { position: absolute; inset: 0; }
.mc-yt-tag { position: absolute; top: 5px; left: 5px; z-index: 2;
  background: rgba(0,0,0,0.65); padding: 2px 5px; border-radius: 2px; font-size: 7px; font-weight: 600; }
.mc-yt-skip { position: absolute; bottom: 6px; right: 5px; z-index: 2;
  background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.7);
  padding: 3px 7px; font-size: 7px; font-weight: 600; border-radius: 2px; }
.mc-yt-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 1.5px; background: rgba(255,255,255,0.2); z-index: 2; }
.mc-yt-progress > div { height: 100%; width: 35%; background: #ff0033; }

/* ============ News ============ */
.mc-news { background: #f3f3f3; color: #111; display: flex; flex-direction: column; }
.mc-news-top { background: #fff; padding: 4px 6px; display: flex; align-items: center; justify-content: space-between; border-bottom: 0.5px solid #ddd; }
.mc-news-logo { background: #d0021b; color: #fff; font-weight: 800; font-size: 7px; padding: 2px 5px; border-radius: 2px; letter-spacing: 0.04em; }
.mc-news-search { color: #777; font-size: 9px; }
.mc-news-tabs { display: flex; gap: 8px; padding: 3px 6px; background: #fff; font-size: 7px; font-weight: 600; color: #777; border-bottom: 0.5px solid #ddd; }
.mc-news-tabs .active { color: #000; border-bottom: 1.5px solid #d0021b; padding-bottom: 2px; }
.mc-news-card-thin { margin: 4px 6px; height: 16px; background: #fff; border-radius: 3px; }
.mc-news-ad { flex: 1; min-height: 0; margin: 0 6px 6px; border-radius: 4px; position: relative; }
.mc-news-ad-tag { position: absolute; top: 4px; left: 4px; background: rgba(255,255,255,0.92); color: #555; padding: 1.5px 4px; border-radius: 2px; font-size: 6.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }

/* ============ Wetter ============ */
.mc-wetter { background: linear-gradient(180deg, #2a4a6a 0%, #1a3650 50%, #0e2438 100%); display: flex; flex-direction: column; }
.mc-we-top { padding: 8px 6px 4px; text-align: center; flex: none; }
.mc-we-city { font-size: 12px; font-weight: 600; }
.mc-we-temp { font-size: 28px; font-weight: 200; line-height: 1; margin-top: 1px; }
.mc-we-cond { font-size: 8px; opacity: 0.85; margin-top: 1px; }
.mc-we-ad { flex: 1; min-height: 0; margin: 6px; border-radius: 4px; position: relative; }

/* ============ Spotify ============ */
.mc-spotify { background: #121212; display: flex; flex-direction: column; padding: 6px; gap: 5px; }
.mc-sp-art { flex: 1; min-height: 0; border-radius: 4px; }
.mc-sp-track { font-size: 8px; }
.mc-sp-track b { display: block; font-weight: 700; }
.mc-sp-track small { color: #aaa; font-size: 7px; }
.mc-sp-bar { margin-top: 3px; height: 1.5px; background: rgba(255,255,255,0.2); border-radius: 1px; }
.mc-sp-bar > div { height: 100%; width: 30%; background: #1db954; border-radius: 1px; }
.mc-sp-controls { display: flex; justify-content: space-around; font-size: 11px; padding-top: 1px; }
.mc-sp-controls .play { font-size: 14px; }

/* fallback */
.mc-fallback { display: flex; align-items: flex-start; padding: 6px; }
.mini-badge {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 7px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 8px; font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mini-badge .dot { width: 4px; height: 4px; border-radius: 50%; }
.mini-cta {
  align-self: flex-end;
  width: 26px; height: 26px;
  border-radius: 50%; background: rgba(0,42,60,0.5);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 14px;
}
.tp-hook {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.35;
}
.tp-click-cta {
  margin-top: 4px;
  background: var(--c-gradient);
  border: none;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}
.tp-click-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(247,149,32,0.4); }

/* ---------- HOOK MAP ---------- */
.hook-map {
  background: linear-gradient(180deg, #00131c 0%, #001a26 100%);
  padding: 140px 32px 120px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hook-map-head { text-align: center; max-width: 880px; margin: 0 auto 70px; }
.hook-map-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1; letter-spacing: -0.02em;
  margin: 18px 0 16px; color: #fff;
}
.hook-map-head p { color: rgba(255,255,255,0.6); font-size: 17px; }

.hook-map-body {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 280px; gap: 48px;
  align-items: start;
}
.hook-grid-cols {
  display: grid;
  grid-template-columns: 100px repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 6px;
}
.hook-grid-col-label {
  text-align: center;
  font-family: var(--font-display);
  padding: 6px 0;
}
.hook-grid-col-label small {
  display: block; font-size: 9px; color: rgba(255,255,255,0.4);
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 2px;
}
.hook-grid-col-label b { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.85); }

.hook-grid {
  display: grid;
  grid-template-columns: 100px repeat(7, 1fr);
  gap: 6px;
}
.hook-grid-row-label {
  display: flex; align-items: center;
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding-right: 10px;
}
.hook-tile {
  aspect-ratio: 1;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 6px;
  opacity: 0; transform: scale(0.5);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-spring);
  cursor: default;
}
.hook-tile.in { opacity: 1; transform: scale(1); }
.hook-tile.empty { opacity: 0.5; }
.hook-tile.in.empty { opacity: 1; }
.hook-tile.filled {
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.hook-tile.filled.pulse {
  animation: tile-pulse 600ms var(--ease-out) both;
}
@keyframes tile-pulse {
  0% { filter: brightness(1); transform: scale(1); }
  40% { filter: brightness(1.4); transform: scale(1.06); }
  100% { filter: brightness(1); transform: scale(1); }
}
.hook-tile-time {
  font-family: var(--font-display); font-weight: 800;
  font-size: 10px; color: rgba(0,42,60,0.7);
  letter-spacing: -0.01em;
}
.hook-tile-label {
  font-family: var(--font-display); font-weight: 800;
  font-size: 10px; color: #002a3c;
  letter-spacing: 0.04em; text-transform: uppercase;
  align-self: flex-end;
}

.hook-legend {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px 22px 18px;
}
.hook-legend-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.hook-legend-item {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-display);
}
.hook-legend-item:last-child { border-bottom: none; }
.hook-pill {
  width: 22px; height: 22px;
  border-radius: 6px;
  flex-shrink: 0;
}
.hook-legend-label { flex: 1; color: #fff; font-weight: 600; font-size: 14px; }
.hook-legend-count {
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.hook-map-foot {
  max-width: 720px; margin: 60px auto 0;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-family: var(--font-body);
}

/* ---------- KLICK BRIDGE ---------- */
.klick-bridge {
  background: #00131c;
  padding: 100px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 40px;
}
.klick-line {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 22px);
  color: var(--c-orange);
  text-align: center;
}
.klick-line b { color: #fff; font-weight: 800; }
.klick-line .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-orange);
  box-shadow: 0 0 12px var(--c-orange);
  animation: pulse 1.6s var(--ease-in-out) infinite;
  flex-shrink: 0;
}
.klick-phone {
  width: 280px; height: 580px;
  border-radius: 38px;
  background: #1a1a1a;
  border: 10px solid #0a0a0a;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1.5px rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.klick-phone .phone-screen { background: #fff; }
.kf {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
  transform: translateY(20px);
}
.kf.active { opacity: 1; transform: translateY(0); }
.kf-hero {
  height: 100%;
  background: linear-gradient(165deg, #002a3c 0%, #003a52 100%);
  color: #fff;
  padding: 60px 24px 24px;
  position: relative;
  display: flex; flex-direction: column; gap: 8px;
}
.kf-bg { position: absolute; bottom: 0; left: 0; right: 0; height: 50%; }
.kf-eyebrow {
  font-family: var(--font-display); font-weight: 700;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-orange);
}
.kf-hero h4 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 22px; line-height: 1.1; letter-spacing: -0.01em;
  margin: 8px 0 8px; color: #fff;
}
.kf-hero p { font-size: 12px; color: rgba(255,255,255,0.7); margin: 0 0 16px; }
.kf-cta {
  background: var(--c-gradient);
  color: #fff;
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  position: relative; z-index: 2;
  margin-top: auto;
  box-shadow: 0 8px 24px rgba(247,149,32,0.4);
}
.kf-q {
  height: 100%;
  background: #fff;
  color: #002a3c;
  padding: 60px 24px 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.kf-step {
  font-family: var(--font-display); font-weight: 700;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-orange);
}
.kf-q h4 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 18px; line-height: 1.2;
  color: #002a3c;
  margin: 0;
}
.kf-options { display: flex; flex-direction: column; gap: 8px; }
.kf-opt {
  padding: 12px 14px;
  border: 1px solid #e0e6ea;
  border-radius: 10px;
  font-size: 13px;
  font-family: var(--font-display);
  font-weight: 600;
  color: #002a3c;
  transition: all 200ms var(--ease-out);
}
.kf-opt.selected {
  background: rgba(247,149,32,0.1);
  border-color: var(--c-orange);
  color: var(--c-orange);
}
.kf-done {
  height: 100%;
  background: linear-gradient(165deg, #002a3c 0%, #176c73 100%);
  color: #fff;
  padding: 80px 24px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center;
}
.kf-check {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--c-gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(247,149,32,0.4);
  animation: check-in 600ms var(--ease-spring) both;
}
@keyframes check-in {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}
.kf-done h4 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 24px; color: #fff; margin: 0;
}
.kf-done p { font-size: 13px; color: rgba(255,255,255,0.8); }
.kf-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
}
.kf-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(0,42,60,0.2);
  transition: all 300ms var(--ease-out);
}
.kf-dots span.on { background: var(--c-orange); width: 18px; border-radius: 3px; }

@media (max-width: 960px) {
  .hook-map-body { grid-template-columns: 1fr; }
  .cday-grid { grid-template-columns: 1fr; gap: 28px; }
  .hook-grid-cols, .hook-grid { grid-template-columns: 60px repeat(7, 1fr); gap: 4px; }
  .hook-tile-time, .hook-tile-label { font-size: 8px; }
  .week-pill-day { display: none; }
}
@media (max-width: 960px) {
  .sarah-grid { grid-template-columns: 1fr; gap: 40px; }
  .day-track { grid-template-columns: 50px 1fr; }
  .day-track .day-text { display: none; }
  .kpi-grid-big, .kpi-grid-small { grid-template-columns: repeat(2, 1fr); }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .sarah-bullets li, .transition .big-line span { opacity: 1 !important; transform: none !important; }
}
