/* =====================================================================
   ADTV MEDIA — shared design system  (v2, real brand)
   Palette, fonts and assets pulled from the live adtvmedia.ai.
   Light site with dark navy feature bands. Native scroll + GSAP.
   ===================================================================== */

:root {
  /* brand blues (from live site) */
  --blue:     #057ec0;   /* signature blue — primary actions, links */
  --blue-br:  #38b8ea;   /* bright cyan — glows, accents */
  --blue-sky: #7dd3fc;   /* light sky */
  --blue-dk:  #015176;   /* deep blue */
  --gold:     #f4b400;   /* amber/gold accent (sparingly) */
  --gold-2:   #fbbf24;

  /* dark surfaces (navy bands + hero) */
  --navy:     #0b1628;
  --navy-2:   #0f1924;
  --navy-3:   #15233b;

  /* light surfaces (default page) */
  --paper:    #ffffff;
  --surface:  #f8fafc;
  --surface-2:#f1f6f8;
  --line:     #e2e8f0;

  /* text */
  --ink:      #0f172a;   /* headings/body on light */
  --muted:    #475569;   /* body on light */
  --muted-2:  #64748b;
  --on-dark:  #f4f8fb;   /* text on navy */
  --on-dark-muted: #a8b4c0;
  --line-dark: rgba(255,255,255,.12);

  /* one ease, durations scale with element size */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: .22s; --dur-base: .5s; --dur-slow: 1s;

  --display:   'Fraunces', Georgia, serif;
  --sans:      'DM Sans', system-ui, -apple-system, sans-serif;
  --condensed: 'Bebas Neue', 'DM Sans', sans-serif;
  --wrap: 1200px; --radius: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans); background: var(--paper); color: var(--ink);
  line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- type ---------- */
h1,h2,h3,h4 { font-family: var(--display); font-weight: 400; line-height: 1.05; letter-spacing: -0.015em; color: var(--ink); }
.display { font-size: clamp(46px, 7.2vw, 108px); font-weight: 400; }
h2.section-title { font-size: clamp(32px, 4.6vw, 62px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); }
.serif-it { font-style: italic; }
.lead { font-size: clamp(17px, 1.45vw, 21px); color: var(--muted); max-width: 60ch; }

.label { font-family: var(--condensed); font-size: 17px; font-weight: 400; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue); display: inline-flex; align-items: center; gap: 12px; }
.label::before { content: ""; width: 30px; height: 2px; background: var(--blue); opacity: .55; }
.label.center::before { display: none; }
.label.on-dark { color: var(--blue-br); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
section { padding: clamp(72px, 11vw, 150px) 0; position: relative; }

/* dark band helper */
.band-dark { background: var(--navy); color: var(--on-dark); }
.band-dark h1,.band-dark h2,.band-dark h3,.band-dark h4 { color: var(--on-dark); }
.band-dark .lead { color: var(--on-dark-muted); }
.band-soft { background: var(--surface); }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 28px; border-radius: 999px;
  font-weight: 600; font-size: 15px; font-family: var(--sans); cursor: pointer; border: 1px solid transparent;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
  will-change: transform; }
.btn .arr { transition: transform var(--dur-fast) var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 12px 30px -12px rgba(5,126,192,.7); }
.btn-primary:hover { transform: translateY(-2px); background: #0a8fd6; box-shadow: 0 18px 40px -14px rgba(56,184,234,.8); }
.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--blue); color: var(--blue); }
.btn-ghost.on-dark { border-color: rgba(255,255,255,.28); color: #fff; }
.btn-ghost.on-dark:hover { border-color: #fff; background: rgba(255,255,255,.06); color:#fff; }
.btn-gold { background: var(--gold); color: #2a1e00; }
.btn-gold:hover { transform: translateY(-2px); background: var(--gold-2); }

/* ---------- nav ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px; transition: background var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease),
    padding var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease); border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(255,255,255,.86); backdrop-filter: blur(16px); border-bottom-color: var(--line);
  padding: 10px 28px; box-shadow: 0 8px 30px -20px rgba(15,23,42,.4); }
.nav .brand { display: flex; align-items: center; }
.nav .brand img { height: 38px; width: auto; transition: height var(--dur-base) var(--ease); }
.nav.scrolled .brand img { height: 32px; }
/* hero is dark, so before scroll show the WHITE logo + light links; after scroll (white bg) show BLUE logo + dark links */
.nav .brand .logo-blue { display: none; } .nav .brand .logo-white { display: block; }
.nav.scrolled .brand .logo-blue { display: block; } .nav.scrolled .brand .logo-white { display: none; }
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 15px; font-weight: 500; }
.nav-links a:not(.btn) { color: rgba(255,255,255,.82); transition: color var(--dur-fast) var(--ease); }
.nav-links a:not(.btn):hover, .nav-links a.active { color: #fff; }
.nav.scrolled .nav-links a:not(.btn) { color: var(--muted); }
.nav.scrolled .nav-links a:not(.btn):hover, .nav.scrolled .nav-links a.active { color: var(--ink); }
.nav-toggle { display: none; background: none; border: 0; color: #fff; font-size: 24px; cursor: pointer; }
.nav.scrolled .nav-toggle { color: var(--ink); }
@media (max-width: 900px) {
  .nav-links { position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 26px;
    background: var(--navy); font-size: 22px; transform: translateY(-100%); transition: transform var(--dur-base) var(--ease); }
  .nav-links.open { transform: translateY(0); }
  .nav-links a:not(.btn), .nav.scrolled .nav-links a:not(.btn) { color: #fff; }
  .nav-toggle { display: block; z-index: 101; }
}

/* ---------- reveal primitive (visible by default) ---------- */
[data-reveal], [data-reveal-stagger] > * { }

/* ---------- network banner ---------- */
.asseen { display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap; }
.asseen .lab { font-family: var(--condensed); letter-spacing: .2em; color: var(--on-dark-muted); font-size: 20px; }
.asseen img { height: 64px; width: auto; opacity: 1; filter: brightness(1.15); }
@media (max-width: 700px){ .asseen img { height: 40px; } }

/* ---------- stats ---------- */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat .num { font-family: var(--condensed); font-weight: 400; font-size: clamp(56px,7.5vw,104px); line-height: .9;
  color: var(--blue); letter-spacing: .01em; }
.band-dark .stat .num { color: var(--blue-br); }
.stat .cap { margin-top: 8px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; }
.band-dark .stat .cap { color: var(--on-dark-muted); }
@media (max-width: 760px){ .stats-row { grid-template-columns: repeat(2,1fr); gap: 40px 16px; } }

/* ---------- cards ---------- */
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px;
  transition: transform var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
  will-change: transform; position: relative; overflow: hidden; }
.card:hover { transform: translateY(-6px); border-color: var(--blue-sky); box-shadow: 0 30px 60px -34px rgba(5,126,192,.45); }
.card .kicker { font-family: var(--display); font-size: 38px; color: var(--blue-sky); line-height: 1; }
.card h3 { margin: 14px 0 10px; } .card p { color: var(--muted); font-size: 15.5px; }
.band-dark .card { background: var(--navy-2); border-color: var(--line-dark); }
.band-dark .card p { color: var(--on-dark-muted); }

/* ---------- pillars ---------- */
.pillar { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px;
  transition: transform var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease); }
.pillar:hover { transform: translateY(-6px); border-color: var(--blue-sky); box-shadow: 0 30px 60px -34px rgba(5,126,192,.4); }
.pillar .ic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; font-size: 22px;
  background: linear-gradient(135deg, var(--blue), var(--blue-br)); color: #fff; margin-bottom: 20px;
  box-shadow: 0 10px 24px -10px rgba(5,126,192,.6); }
.pillar h3 { font-size: 23px; margin-bottom: 10px; } .pillar p { color: var(--muted); font-size: 15px; }
.band-dark .pillar { background: var(--navy-2); border-color: var(--line-dark); }
.band-dark .pillar h3 { color: var(--on-dark); } .band-dark .pillar p { color: var(--on-dark-muted); }

/* ---------- numbered feature list ---------- */
.feat { display: grid; gap: 2px; }
.feat .row { display: grid; grid-template-columns: 64px 1fr; gap: 18px; padding: 26px 0; border-top: 1px solid var(--line); align-items: start; }
.band-dark .feat .row { border-top-color: var(--line-dark); }
.feat .row .n { font-family: var(--condensed); font-size: 34px; color: var(--blue); }
.feat .row h3 { font-size: clamp(20px,2.2vw,26px); margin-bottom: 8px; }
.feat .row p { color: var(--muted); max-width: 60ch; }
.band-dark .feat .row p { color: var(--on-dark-muted); }

/* ---------- price ---------- */
.price { background: var(--navy); color: var(--on-dark); border: 1px solid var(--line-dark); border-radius: 22px;
  padding: clamp(36px,5vw,56px); text-align: center; max-width: 640px; margin: 0 auto; position: relative; overflow: hidden; }
.price .amt { font-family: var(--condensed); font-weight: 400; font-size: clamp(72px,11vw,128px); line-height: .9; color: #2fe08a; text-shadow: 0 0 38px rgba(47,224,138,.45); display: inline-flex; align-items: baseline; }
.price .amt #v-price { font-size: 1em; }
.price .amt .per { font-size: .34em; color: var(--on-dark-muted); font-family: var(--sans); text-shadow: none; margin-left: 2px; }
.price ul { list-style: none; display: grid; gap: 12px; text-align: left; max-width: 380px; margin: 26px auto; }
.price ul li { display: flex; gap: 12px; color: var(--on-dark); font-size: 15.5px; }
.price ul li::before { content: "✓"; color: var(--blue-br); font-weight: 700; }
.price .fine { color: var(--on-dark-muted); font-size: 12.5px; margin-top: 16px; }

/* ---------- frames / media ---------- */
.frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); position: relative; }
.frame img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- footer ---------- */
.footer { background: var(--navy); color: var(--on-dark-muted); padding: 72px 0 36px; border-top: 1px solid var(--line-dark); }
.footer .grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand img { height: 40px; }
.footer p { color: var(--on-dark-muted); font-size: 14.5px; margin-top: 16px; max-width: 34ch; }
.footer h5 { font-family: var(--condensed); font-size: 16px; letter-spacing: .12em; color: var(--on-dark); margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a { color: var(--on-dark-muted); font-size: 14.5px; transition: color var(--dur-fast) var(--ease); }
.footer ul a:hover { color: #fff; }
.footer .base { margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line-dark); display: flex;
  justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--on-dark-muted); font-size: 13px; }
@media (max-width: 760px){ .footer .grid { grid-template-columns: 1fr 1fr; } }

/* ---------- helpers ---------- */
.center { text-align: center; }
.section-head { max-width: 720px; } .section-head.center { margin: 0 auto; } .section-head h2 { margin: 16px 0 18px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,72px); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 900px){ .grid-2,.grid-3 { grid-template-columns: 1fr; } }
.glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; pointer-events: none; z-index: 0; }
.glow.blue { background: radial-gradient(circle, rgba(56,184,234,.5), transparent 70%); }
.glow.gold { background: radial-gradient(circle, rgba(244,180,0,.28), transparent 70%); }

/* ---------- shared subpage hero ---------- */
.page-hero { position: relative; min-height: 72vh; display: flex; align-items: flex-end; overflow: hidden;
  padding-bottom: clamp(44px,6vw,84px); background: var(--navy); color: var(--on-dark); }
.page-hero .bg { position: absolute; inset: -14% 0; z-index: 0; }
.page-hero .bg img { width: 100%; height: 128%; object-fit: cover; opacity: .55; }
.page-hero .scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, var(--navy) 5%, rgba(11,22,40,.4) 60%, rgba(11,22,40,.7) 100%); }
.page-hero .inner { position: relative; z-index: 2; max-width: 860px; padding-top: 110px; }
.page-hero h1 { color: var(--on-dark); font-size: clamp(42px,6.6vw,92px); margin: 20px 0; }
.page-hero h1 [data-line] { display: block; overflow: hidden; margin-bottom: -.1em; } .page-hero h1 [data-line] > span { display: block; padding-bottom: .22em; }

/* ---------- Media AI product wordmark ---------- */
.medialogo { font-family: var(--sans); font-weight: 600; letter-spacing: -.01em; white-space: nowrap; }
.medialogo .ai { font-weight: 800; margin-left: .1em; position: relative;
  background: linear-gradient(100deg, var(--blue), var(--blue-br)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.medialogo .ai::after { content: ""; position: absolute; top: -.02em; right: -.5em; width: .17em; height: .17em;
  border-radius: 1px; background: var(--blue-br); transform: rotate(45deg); }
.page-hero .lead { color: var(--on-dark-muted); } .page-hero .actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

/* ---------- hero FX layers ---------- */
#heroCanvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero .bg img, .page-hero .bg img { animation: kenburns 26s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.05); } to { transform: scale(1.12) translate3d(-1.5%,-1%,0); } }
.hero .pulse, .page-hero .pulse { position: absolute; z-index: 1; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(56,184,234,.32), transparent 68%); filter: blur(40px);
  animation: pulse 7s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: .35; transform: scale(1); } 50% { opacity: .7; transform: scale(1.18); } }
.hero .scanline, .page-hero .scanline { position: absolute; inset: 0; z-index: 1; pointer-events: none; mix-blend-mode: overlay; opacity: .25;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,.05) 3px 4px); }

/* ---------- TV ticker marquee ---------- */
.ticker { background: var(--blue); color: #fff; overflow: hidden; white-space: nowrap; padding: 14px 0;
  border-block: 1px solid rgba(255,255,255,.18); position: relative; }
.ticker .track { display: inline-flex; gap: 0; will-change: transform; animation: marquee 28s linear infinite; }
.ticker span { font-family: var(--condensed); font-size: 22px; letter-spacing: .12em; padding: 0 26px; opacity: .96; }
.ticker span .dot { color: var(--blue-sky); margin-left: 52px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- gradient text accent ---------- */
.grad { background: linear-gradient(100deg, var(--blue), var(--blue-br) 60%, var(--blue-sky));
  -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- decorative grid + corner ticks ---------- */
.deco-grid { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(circle at 50% 40%, #000, transparent 72%); }
.band-dark .deco-grid { background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); }

/* ---------- episode image cards (real imagery + zoom) ---------- */
.ep .thumb.has-img { background: var(--navy); }
.ep .thumb .img { position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform .7s var(--ease); }
.ep .item:hover .thumb .img { transform: scale(1.08); }
.ep .thumb .grad-ov { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,16,30,.7), transparent 55%); }
.ep .thumb .play { position: relative; z-index: 2; }

/* ---------- host cards ---------- */
.hosts { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.host { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--paper);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.host:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -34px rgba(5,126,192,.45); }
.host .ph { aspect-ratio: 3/4; overflow: hidden; position: relative; background: var(--navy); }
.host .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.host:hover .ph img { transform: scale(1.06); }
.host .info { padding: 18px 18px 22px; }
.host .info .nm { font-family: var(--display); font-size: 20px; }
.host .info .mk { font-family: var(--condensed); color: var(--blue); letter-spacing: .1em; font-size: 15px; margin-top: 4px; }
@media (max-width: 900px){ .hosts { grid-template-columns: repeat(2,1fr); } }

/* ---------- where-to-watch logos ---------- */
.watch-on { display: flex; flex-wrap: wrap; gap: 14px; }
.watch-on .chip { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 999px;
  border: 1px solid var(--line); font-weight: 600; font-size: 14.5px; transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease); }
.watch-on .chip:hover { border-color: var(--blue); color: var(--blue); }
.band-dark .watch-on .chip { border-color: var(--line-dark); color: var(--on-dark); }
.band-dark .watch-on .chip:hover { border-color: var(--blue-br); color: var(--blue-br); }

/* ---------- forms ---------- */
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(28px,4vw,44px); box-shadow: 0 40px 80px -50px rgba(15,23,42,.4); }
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 13px; font-weight: 600; color: var(--muted); }
.field input, .field select, .field textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--line);
  border-radius: 10px; font: inherit; background: var(--surface); color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue);
  background: var(--paper); box-shadow: 0 0 0 3px rgba(5,126,192,.15); }
.field textarea { min-height: 120px; resize: vertical; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px){ .row2 { grid-template-columns: 1fr; } }
.contact-list { display: grid; gap: 22px; }
.contact-list .it { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .it .ic { width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-br)); color: #fff; font-size: 18px; }
.contact-list .it h4 { font-family: var(--display); font-size: 19px; } .contact-list .it p { color: var(--muted); font-size: 14.5px; }

/* ---------- journal / posts ---------- */
.posts { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.post { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease); display: flex; flex-direction: column; }
.post:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -34px rgba(5,126,192,.4); }
.post .ph { aspect-ratio: 16/10; overflow: hidden; position: relative; background: var(--navy); }
.post .ph .img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .7s var(--ease); }
.post:hover .ph .img { transform: scale(1.06); }
.post .b { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post .cat { font-family: var(--condensed); color: var(--blue); letter-spacing: .1em; font-size: 14px; }
.post h3 { font-size: 22px; margin: 8px 0 10px; } .post p { color: var(--muted); font-size: 14.5px; flex: 1; }
.post .meta { color: var(--muted-2); font-size: 13px; margin-top: 16px; }
.post.feature { grid-column: span 3; flex-direction: row; }
.post.feature .ph { flex: 1.2; aspect-ratio: auto; } .post.feature .b { flex: 1; justify-content: center; padding: clamp(28px,4vw,52px); }
.post.feature h3 { font-size: clamp(26px,3vw,40px); }
@media (max-width: 900px){ .posts { grid-template-columns: 1fr; } .post.feature { grid-column: auto; flex-direction: column; } .post.feature .ph { aspect-ratio: 16/10; } }

/* ---------- events ---------- */
.events { display: grid; gap: 16px; }
.event { display: grid; grid-template-columns: 110px 1fr auto; gap: 24px; align-items: center; padding: 22px 26px;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper);
  transition: border-color var(--dur-base) var(--ease), transform var(--dur-base) var(--ease); }
.event:hover { border-color: var(--blue-sky); transform: translateX(5px); }
.event .date { text-align: center; line-height: 1; }
.event .date .d { font-family: var(--condensed); font-size: 46px; color: var(--blue); }
.event .date .m { font-family: var(--condensed); letter-spacing: .12em; color: var(--muted-2); font-size: 16px; }
.event .info h3 { font-size: 22px; } .event .info .loc { color: var(--muted); font-size: 14px; margin-top: 4px; }
.event .type { font-family: var(--condensed); letter-spacing: .08em; font-size: 14px; color: var(--blue);
  border: 1px solid var(--blue-sky); padding: 8px 16px; border-radius: 999px; white-space: nowrap; }
@media (max-width: 700px){ .event { grid-template-columns: 70px 1fr; } .event .type { display: none; } }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .hero .bg img, .hero .pulse, .ticker .track { animation: none !important; }
}
