/* surch — brand tokens (see /design for source references) */
:root {
  --coral: #FF6F59;
  --teal: #1F9E93;
  --sunshine: #FFC93C;
  --grape: #7C5CFC;
  --ink: #241C3C;
  --ink-soft: #6E6580;
  --cream: #FFF8EC;
  --cream-line: #F0E4CE;
  --white: #FFFFFF;

  --font-display: 'Baloo 2', sans-serif;
  --font-body: 'Quicksand', sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-card: 0 1px 2px rgba(36, 28, 60, 0.10);
  --shadow-lift: 0 18px 40px rgba(36, 28, 60, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.6;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; }

.wrap {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0;
  line-height: 1.12;
}

p { margin: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--teal);
  padding: 8px 18px;
  border-radius: 999px;
}

.eyebrow.on-cream { color: var(--white); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(255, 111, 89, 0.35);
}
.btn-primary:hover { box-shadow: 0 14px 30px rgba(255, 111, 89, 0.45); }

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

.btn-outline.on-dark {
  border-color: var(--cream);
  color: var(--cream);
}
.btn-outline.on-dark:hover { background: var(--cream); color: var(--ink); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 248, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand img { width: 34px; height: 36px; }
.brand span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--ink);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  opacity: 0.8;
}
.site-nav a:hover { opacity: 1; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  padding: 0;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: background 0.15s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.15s ease, top 0.15s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.site-header.nav-open .nav-toggle span { background: transparent; }
.site-header.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.site-header.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* Hero */
.hero {
  padding: 76px 0 88px;
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: 52px;
  font-weight: 800;
  margin: 22px 0 20px;
}
.hero .lede {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-card-top .dot-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}
.dot-live::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(31, 158, 147, 0.18);
}
.mention-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  border: 1px solid var(--cream-line);
}
.mention-tag {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  padding: 5px 10px;
  border-radius: 999px;
}
.mention-tag.tv { background: var(--coral); }
.mention-tag.news { background: var(--grape); }
.mention-tag.podcast { background: var(--teal); }
.mention-tag.social { background: var(--ink); }
.mention-body strong { display: block; font-size: 14.5px; color: var(--ink); margin-bottom: 3px; }
.mention-body span { font-size: 13px; color: var(--ink-soft); }

/* Section scaffolding */
section { padding: 84px 0; }
.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 16px 0 14px;
}
.section-head p {
  font-size: 17.5px;
  color: var(--ink-soft);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Pitch */
.pitch { padding-top: 8px; padding-bottom: 8px; }
.pitch .wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  box-shadow: var(--shadow-card);
}
.pitch p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 27px;
  line-height: 1.5;
  color: var(--ink);
  max-width: 62ch;
}
.pitch p em { color: var(--teal); font-style: normal; }

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.audience-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  border: 1px solid var(--cream-line);
}
.audience-card.featured {
  background: var(--ink);
  border-color: var(--ink);
}
.audience-card.featured h3,
.audience-card.featured p { color: var(--cream); }
.audience-card .badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 10px;
}
.audience-card.featured .badge { color: var(--sunshine); }
.audience-card h3 {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-body);
  margin-bottom: 8px;
}
.audience-card p { font-size: 14.5px; color: var(--ink-soft); }

/* Channels */
.channels { background: var(--white); }
.channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 22px;
}
.channel-card {
  border-radius: var(--radius-lg);
  padding: 30px;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 260px;
}
.channel-card .icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
}
.channel-card h3 { color: var(--cream); font-size: 22px; font-weight: 700; font-family: var(--font-body); }
.channel-card ul { margin: 0; padding-left: 18px; font-size: 14.5px; opacity: 0.94; display: flex; flex-direction: column; gap: 6px; }
.channel-tv { background: linear-gradient(160deg, #FF6F59, #E85A45); }
.channel-news { background: linear-gradient(160deg, #7C5CFC, #6746DE); }
.channel-podcast { background: linear-gradient(160deg, #1F9E93, #17847A); }
.channel-social { background: linear-gradient(160deg, #3A2F5C, #241C3C); }

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 8px;
}
.step .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--white);
  background: var(--ink);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step h3 { font-size: 19px; font-weight: 700; font-family: var(--font-body); margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--ink-soft); }

/* Engine */
.engine {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
}
.engine-inner {
  max-width: 1112px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.engine h2 { color: var(--cream); font-size: 34px; font-weight: 800; margin: 16px 0 16px; }
.engine p.lede { color: rgba(255, 248, 236, 0.78); font-size: 17px; max-width: 48ch; }
.engine-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.engine-list li {
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: rgba(255, 248, 236, 0.9);
  padding: 16px 18px;
  background: rgba(255, 248, 236, 0.06);
  border: 1px solid rgba(255, 248, 236, 0.14);
  border-radius: var(--radius-sm);
}
.engine-list li::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--coral);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--cream-line);
  padding: 48px 0 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 32px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 26px; height: 28px; }
.footer-brand span { font-family: var(--font-display); font-weight: 800; font-size: 19px; }
.footer-note { font-size: 14px; color: var(--ink-soft); max-width: 42ch; margin-top: 10px; }
.footer-links { display: flex; gap: 36px; flex-wrap: wrap; }
.footer-links div { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong { font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 4px; }
.footer-links a { font-size: 14.5px; text-decoration: none; color: var(--ink); opacity: 0.85; }
.footer-links a:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid var(--cream-line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13.5px;
  color: var(--ink-soft);
}

/* Responsive */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-card { order: -1; }
  .audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .channel-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .engine-inner { grid-template-columns: 1fr; }

  .site-nav { display: none; }
  .nav-toggle { display: inline-flex; }

  .site-header.nav-open .site-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100vh - 100%);
    overflow-y: auto;
    background: var(--cream);
    border-bottom: 1px solid var(--cream-line);
    box-shadow: var(--shadow-card);
    padding: 6px 24px 24px;
  }
  .site-header.nav-open .site-nav > a {
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--cream-line);
    opacity: 1;
  }
  .site-header.nav-open .site-nav > a:last-child { border-bottom: none; }
}

@media (max-width: 620px) {
  .wrap { padding: 0 18px; }
  .hero { padding: 48px 0 56px; }
  .hero h1 { font-size: 36px; }
  .pitch .wrap { padding: 32px 24px; }
  .pitch p { font-size: 21px; }
  .audience-grid { grid-template-columns: 1fr; }
  .engine { padding: 40px 26px; }
  .section-head h2 { font-size: 28px; }
}

@media (max-width: 420px) {
  .brand span { font-size: 20px; }
  .brand img { width: 28px; height: 30px; }
  .hero h1 { font-size: 30px; }
  .hero .lede { font-size: 17px; }
  .btn { font-size: 15px; padding: 13px 22px; }
}
