:root {
  --navy: #0b1b33;
  --navy-deep: #071222;
  --navy-mid: #143056;
  --blue: #1a66e0;
  --blue-bright: #1f7cff;
  --blue-soft: rgba(26, 102, 224, 0.1);
  --red: #d92128;
  --red-soft: rgba(217, 33, 40, 0.1);
  --white: #ffffff;
  --paper: #f4f7fb;
  --paper-2: #eaf0f8;
  --ink: #0b1b33;
  --muted: #5b6b82;
  --line: rgba(11, 27, 51, 0.12);
  --shadow: 0 14px 36px rgba(11, 27, 51, 0.08);
  --serif: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --sans: "Sora", "Segoe UI", sans-serif;
  --container: min(1120px, calc(100% - 2.5rem));
  --header-h: 0rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(1000px 520px at 90% -5%, rgba(26, 102, 224, 0.08), transparent 55%),
    radial-gradient(800px 420px at 0% 20%, rgba(217, 33, 40, 0.05), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 45%, #eef3f9 100%);
  background-attachment: fixed;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--blue);
  color: var(--white);
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Header */
/* Real-site style top bar */
.site-topbar {
  position: relative;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 4.5rem;
  padding: 0.75rem clamp(0.85rem, 2.5vw, 1.5rem);
  background: #000;
  color: #fff;
}

.site-topbar-brand {
  display: inline-flex;
  align-items: center;
}

.site-topbar-logo {
  height: 3rem;
  width: auto;
}

.site-topbar-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1.05rem;
}

.site-topbar-nav a {
  font-size: 0.84rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  opacity: 0.92;
}

.site-topbar-nav a:hover,
.site-topbar-nav a:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 0.35em;
}

.site-topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.site-topbar-icon {
  display: grid;
  place-items: center;
  color: #fff;
  opacity: 0.92;
}

.site-topbar-icon:hover,
.site-topbar-icon:focus-visible {
  opacity: 1;
}

.site-topbar-upgrade {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  border-radius: 3px;
  border: 1px solid rgba(125, 190, 255, 0.85);
  background: #1f7cff;
  color: #fff !important;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow:
    0 0 0 1px rgba(31, 124, 255, 0.35),
    0 0 12px rgba(31, 124, 255, 0.65),
    0 0 22px rgba(125, 190, 255, 0.35);
  animation: upgrade-glow 2.2s ease-in-out infinite;
}

.site-topbar-upgrade:hover,
.site-topbar-upgrade:focus-visible {
  background: #3d93ff;
  box-shadow:
    0 0 0 1px rgba(125, 190, 255, 0.95),
    0 0 16px rgba(61, 147, 255, 0.85),
    0 0 28px rgba(125, 190, 255, 0.5);
}

@keyframes upgrade-glow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(31, 124, 255, 0.35),
      0 0 10px rgba(31, 124, 255, 0.45),
      0 0 18px rgba(125, 190, 255, 0.25);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(125, 190, 255, 0.95),
      0 0 16px rgba(61, 147, 255, 0.9),
      0 0 30px rgba(125, 190, 255, 0.55);
  }
}

.site-topbar-signin {
  color: #fff;
  font-size: 0.84rem;
  font-weight: 500;
  white-space: nowrap;
}

.site-topbar-signin:hover,
.site-topbar-signin:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

@media (max-width: 980px) {
  .site-topbar {
    grid-template-columns: auto 1fr;
  }

  .site-topbar-nav {
    display: none;
  }

  .site-topbar-actions {
    justify-self: end;
  }

  .site-topbar-signin {
    display: none;
  }
}

/* Header (legacy, unused) */
.site-header {
  display: none !important;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(11, 27, 51, 0.06);
}

.brand-logo {
  height: 2.15rem;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--navy);
}

.nav-cta {
  color: var(--white) !important;
  background: var(--blue);
  padding: 0.55rem 0.95rem;
  border-radius: 2px;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--blue-bright);
}

/* Hero */
.hero {
  position: relative;
  min-height: auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-tile {
  position: absolute;
  inset: 0;
  background-color: #f3f6fb;
  background-image:
    linear-gradient(90deg, rgba(26, 102, 224, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(26, 102, 224, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 20% 20%, rgba(217, 33, 40, 0.05), transparent 42%),
    radial-gradient(circle at 80% 10%, rgba(26, 102, 224, 0.07), transparent 40%);
  background-size: 28px 28px, 28px 28px, 100% 100%, 100% 100%;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 35%, rgba(255, 255, 255, 0.75), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(243, 246, 251, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(42rem, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 2.25rem 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: rise-in 0.9s var(--ease) both;
}

.hero-logo {
  width: min(420px, 88vw);
  height: auto;
  margin-bottom: 0.85rem;
}

.hero-title {
  margin: 0 0 0.55rem;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.01em;
  max-width: 18ch;
  color: var(--navy);
}

.hero-title-sheen {
  display: inline;
  background-image: linear-gradient(
    100deg,
    var(--navy) 0%,
    var(--navy) 42%,
    #c8102e 45.5%,
    #ffffff 50%,
    #1a66e0 54.5%,
    var(--navy) 58%,
    var(--navy) 100%
  );
  background-size: 280% 100%;
  background-position: 100% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: rwb-sheen 7.5s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

@keyframes rwb-sheen {
  0%,
  35% {
    background-position: 100% 50%;
  }
  65% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-lede {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* Brand strip */
.brand-strip {
  position: relative;
  z-index: 3;
  border-block: 1px solid var(--line);
  background: var(--white);
  padding: 1rem 1rem;
  text-align: center;
}

.brand-strip-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem 2.25rem;
  width: 100%;
  max-width: min(64rem, 100%);
}

.brand-strip-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 600;
}

.brand-strip-list img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}



.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(31, 124, 255, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--blue-bright);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(11, 27, 51, 0.22);
  color: var(--navy);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--navy);
  background: rgba(11, 27, 51, 0.04);
}

.hero .btn-ghost {
  border-color: rgba(11, 27, 51, 0.28);
  color: var(--navy);
}

.hero .btn-ghost:hover,
.hero .btn-ghost:focus-visible {
  border-color: var(--navy);
  background: rgba(11, 27, 51, 0.05);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: pulse-soft 2.4s ease-in-out infinite;
}

.btn-lg {
  min-height: 3.35rem;
  padding-inline: 1.6rem;
  font-size: 0.95rem;
}

.scroll-line {
  width: 1px;
  height: 2.4rem;
  background: linear-gradient(to bottom, var(--blue), transparent);
}

/* Manifesto */
.reach-intro {
  max-width: 46rem;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.manifesto-kicker {
  margin: 0 0 1.15rem;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
}

.manifesto-quote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.45;
  color: var(--navy);
  font-weight: 400;
}

.period {
  position: relative;
  display: inline-block;
  margin-left: 0.2em;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.period-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.12em;
  background: linear-gradient(90deg, var(--red), #ff5a5f 55%, var(--blue));
  transform: scaleX(0);
  transform-origin: left center;
  display: block;
  font-style: normal;
}

.period.is-underlined .period-underline {
  animation: period-draw 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes period-draw {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

/* Sections shared */
.section-head {
  max-width: 40rem;
  margin-bottom: 2.75rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}

.section-head h2,
.pitch-copy h2,
.contact-inner h2,
.reach-channels h2 {
  margin: 0 0 0.9rem;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.2vw, 2.55rem);
  line-height: 1.18;
  color: var(--navy);
}

.section-head.compact {
  margin: 0 auto 1.5rem;
  max-width: 40rem;
  text-align: center;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Reach */
.reach {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.reach-flow {
  display: grid;
  gap: 0;
}

.reach-funnel {
  position: relative;
  height: clamp(7.5rem, 14vw, 11rem);
  margin: 0.35rem 0 0.15rem;
  display: grid;
  place-items: end center;
}

.reach-funnel-svg {
  position: absolute;
  inset: 0 0 1.6rem;
  width: 100%;
  height: calc(100% - 1.6rem);
  overflow: visible;
}

.funnel-path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.5;
  stroke-linecap: round;
  opacity: 0.55;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}

.funnel-path:nth-child(1) { transition-delay: 0.05s; }
.funnel-path:nth-child(2) { transition-delay: 0.15s; }
.funnel-path:nth-child(3) { transition-delay: 0.25s; }
.funnel-path:nth-child(4) { transition-delay: 0.35s; }

.reach-funnel.is-drawn .funnel-path {
  stroke-dashoffset: 0;
  opacity: 0.85;
}

.funnel-join {
  fill: var(--red);
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
  transform: scale(0.4);
  transition: opacity 0.35s var(--ease) 0.85s, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.85s;
}

.reach-funnel.is-drawn .funnel-join {
  opacity: 1;
  transform: scale(1);
}

.reach-funnel-chevrons {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 0.35rem;
}

.reach-funnel-chevrons span {
  width: 0.85rem;
  height: 0.85rem;
  border-right: 2.5px solid var(--blue);
  border-bottom: 2.5px solid var(--blue);
  transform: rotate(45deg);
  opacity: 0.35;
}

.reach-funnel.is-drawn .reach-funnel-chevrons span {
  animation: funnel-chevron 1.1s var(--ease) infinite;
}

.reach-funnel.is-drawn .reach-funnel-chevrons span:nth-child(2) { animation-delay: 0.12s; }
.reach-funnel.is-drawn .reach-funnel-chevrons span:nth-child(3) { animation-delay: 0.24s; }

@keyframes funnel-chevron {
  0%, 100% { opacity: 0.25; transform: rotate(45deg) translateY(-2px); }
  50% { opacity: 1; transform: rotate(45deg) translateY(3px); }
}

.reach-funnel-label {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.4s var(--ease) 0.95s, transform 0.4s var(--ease) 0.95s;
}

.reach-funnel.is-drawn .reach-funnel-label {
  opacity: 1;
  transform: translateY(0);
}

.key-numbers {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 10px 28px rgba(11, 27, 51, 0.06);
  transform: translateY(8px) scale(0.985);
  opacity: 0.72;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s var(--ease),
    border-color 0.45s var(--ease),
    box-shadow 0.55s var(--ease);
}

.key-numbers.is-ready {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.key-numbers.is-lit {
  border-color: rgba(26, 102, 224, 0.55);
  box-shadow:
    0 0 0 1px rgba(26, 102, 224, 0.18),
    0 18px 48px rgba(11, 27, 51, 0.12),
    0 0 42px rgba(26, 102, 224, 0.22),
    0 0 28px rgba(217, 33, 40, 0.1);
  animation: key-numbers-pop 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes key-numbers-pop {
  0% { transform: scale(0.985); }
  45% { transform: scale(1.025); }
  100% { transform: scale(1); }
}

.key-numbers-sheen {
  pointer-events: none;
  position: absolute;
  inset: -20% -40%;
  z-index: 2;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0) 38%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(31, 124, 255, 0.22) 54%,
    rgba(217, 33, 40, 0.12) 58%,
    transparent 68%
  );
  transform: translateX(-60%) skewX(-12deg);
  opacity: 0;
}

.key-numbers.is-lit .key-numbers-sheen {
  animation: key-sheen 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}

@keyframes key-sheen {
  0% {
    opacity: 0;
    transform: translateX(-70%) skewX(-12deg);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(70%) skewX(-12deg);
  }
}

.key-number {
  position: relative;
  z-index: 1;
  background: var(--white);
  padding: 1.65rem 1.1rem 1.45rem;
  text-align: center;
}

.key-numbers.is-lit .key-number {
  background: linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
}

.key-number-value {
  margin: 0 0 0.45rem;
  font-variant-numeric: tabular-nums;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1;
}

.key-numbers.is-lit .key-number-value {
  color: var(--navy);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .key-numbers.is-lit .key-number-value {
    background: linear-gradient(90deg, var(--navy) 0%, var(--blue) 45%, var(--red) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: key-value-sheen 1.4s var(--ease) 0.15s both;
  }
}

@keyframes key-value-sheen {
  from { background-position: 100% 50%; }
  to { background-position: 0% 50%; }
}

.key-number-label {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
}

.value-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
}

.value-mark {
  width: 0.65rem;
  height: 0.65rem;
  margin-top: 0.4rem;
  background: var(--blue);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.value-mark.red {
  background: var(--red);
}

.value-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.value-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Advertising options */
.options {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  border-top: 1px solid var(--line);
  background-color: #eef2f7;
  background-image:
    radial-gradient(rgba(11, 27, 51, 0.045) 0.7px, transparent 0.7px),
    linear-gradient(180deg, #f5f7fb 0%, #e8eef6 100%);
  background-size: 5px 5px, 100% 100%;
}

.options-title {
  margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
  font-family: var(--serif);
  font-size: clamp(2.75rem, 7.5vw, 5.25rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-wrap: balance;
}

.placement {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
  border-top: 1px solid var(--line);
}

.placement-reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.placement-reverse .placement-copy {
  order: 2;
}

.placement-stack {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
}

.option-tag {
  margin: 0 0 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
}

.placement-copy h3 {
  margin: 0 0 0.7rem;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  color: var(--navy);
  line-height: 1.2;
}

.placement-copy > p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1rem;
}

.placement-points {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.placement-points li {
  position: relative;
  padding-left: 1rem;
  color: var(--navy);
  font-size: 0.92rem;
}

.placement-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--red);
}

.placement-demo {
  display: grid;
  justify-items: center;
  gap: 0.7rem;
}

.demo-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.phone-frame {
  position: relative;
  width: min(250px, 70vw);
  aspect-ratio: 9 / 16;
  border-radius: 1.35rem;
  padding: 0.45rem;
  background: linear-gradient(160deg, #1a2a44, #050d18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 0.55rem;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  z-index: 4;
}

.phone-home {
  position: absolute;
  bottom: 0.55rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 0.28rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  z-index: 4;
}

.short-stage {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  background: #000;
}

.short-embed,
.longform-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.brand-inject {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  text-align: center;
  pointer-events: none;
  opacity: 0;
}

.brand-inject-short {
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%) scale(0.96);
  width: min(88%, 240px);
  padding: 1.05rem 0.95rem 1rem;
  background: linear-gradient(160deg, rgba(0, 28, 68, 0.96), rgba(0, 14, 36, 0.96));
  border: 2px solid #3d9bff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 0 22px rgba(61, 155, 255, 0.55),
    0 14px 32px rgba(0, 0, 0, 0.4);
  animation: inject-short 15s ease-in-out infinite;
}

.brand-inject-long {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: min(80%, 380px);
  padding: 1.2rem 1.3rem 1.1rem;
  background: linear-gradient(160deg, rgba(0, 28, 68, 0.96), rgba(0, 14, 36, 0.96));
  border: 2px solid #3d9bff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 0 26px rgba(61, 155, 255, 0.5),
    0 16px 36px rgba(0, 0, 0, 0.42);
  animation: inject-long 15s ease-in-out infinite;
}

.brand-inject-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  background-image: linear-gradient(
    100deg,
    #7ec2ff 0%,
    #ffffff 35%,
    #ff4d57 50%,
    #4da3ff 65%,
    #7ec2ff 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(77, 163, 255, 0.85));
  animation: inject-kicker-flash 1.6s linear infinite;
}

.brand-inject-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 0 18px rgba(77, 163, 255, 0.45);
}

.brand-inject-sub {
  margin-top: 0.15rem;
  font-size: 0.72rem;
  color: #b7c9e4;
}

.short-ui {
  position: absolute;
  inset: auto 0 0.85rem;
  z-index: 2;
  padding: 0 0.75rem;
  pointer-events: none;
}

.short-handle {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.short-progress,
.longform-progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.short-progress i,
.longform-progress i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--blue-bright);
  animation: progress-15 15s linear infinite;
}

.longform-player {
  width: min(100%, 560px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.longform-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.longform-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.longform-meta {
  padding: 0.85rem 1rem 1rem;
  border-top: 1px solid var(--line);
}

.longform-title {
  margin: 0 0 0.35rem;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}

.longform-channel {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

/* Substack mock */
.substack-mock {
  position: relative;
  width: min(100%, 720px);
  background: #fff;
  color: #111;
  border: 1px solid rgba(11, 27, 51, 0.1);
  box-shadow: 0 18px 40px rgba(11, 27, 51, 0.1);
  overflow: hidden;
}

.ss-cursor {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 28px;
  height: 28px;
  pointer-events: none;
  opacity: 0;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
  transform: translate(-40px, -40px);
  transition: opacity 0.2s ease;
}

.ss-cursor.is-visible {
  opacity: 1;
}

.ss-cursor.is-moving {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
}

.ss-cursor svg {
  display: block;
  position: relative;
  z-index: 1;
}

.ss-cursor-ripple {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(26, 102, 224, 0.35);
  transform: scale(0);
  opacity: 0;
}

.ss-cursor.is-clicking .ss-cursor-ripple {
  animation: ss-click-ripple 0.35s ease-out;
}

.ss-feature.is-pressed {
  transform: scale(0.985);
  box-shadow: 0 4px 14px rgba(11, 27, 51, 0.12);
  border-color: rgba(26, 102, 224, 0.55);
}

@keyframes ss-click-ripple {
  0% {
    transform: scale(0.4);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

.ss-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.7rem;
  background: #000;
  color: #fff;
}

.ss-logo {
  height: 1.7rem;
  width: auto;
}

.ss-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.65rem;
  font-size: 0.68rem;
  letter-spacing: 0.01em;
  overflow: hidden;
}

.ss-nav span {
  white-space: nowrap;
  opacity: 0.92;
}

.ss-nav .is-active {
  border-bottom: 2px solid #fff;
  padding-bottom: 0.1rem;
  opacity: 1;
}

.ss-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.ss-icon {
  display: grid;
  place-items: center;
  color: #fff;
  opacity: 0.9;
}

.ss-upgrade {
  font-size: 0.62rem;
  font-weight: 700;
  background: #1f7cff;
  color: #fff;
  padding: 0.38rem 0.55rem;
  white-space: nowrap;
  border-radius: 2px;
}

.ss-signin {
  font-size: 0.68rem;
  color: #fff;
  white-space: nowrap;
  opacity: 0.95;
}

.ss-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr 0.95fr;
  gap: 0.55rem;
  align-items: start;
  padding: 0.55rem;
  background-color: #e7ecf3;
  background-image:
    radial-gradient(rgba(11, 27, 51, 0.055) 0.65px, transparent 0.65px);
  background-size: 4px 4px;
}

.ss-side {
  display: grid;
  gap: 0.55rem;
}

.ss-card,
.ss-feature,
.ss-popular {
  background: #fff;
  border: 1px solid rgba(11, 27, 51, 0.08);
}

.ss-card {
  padding: 0;
  overflow: hidden;
}

.ss-thumb,
.ss-feature-media,
.ss-mini {
  position: relative;
  background:
    linear-gradient(135deg, #001534, #1f7cff 55%, #d92128);
  aspect-ratio: 16 / 9;
}

.ss-thumb-b {
  background:
    linear-gradient(135deg, #0a2448, #334155 50%, #1f7cff);
}

.ss-thumb-c {
  background:
    linear-gradient(135deg, #1a1030, #d92128 60%, #001534);
}

.ss-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.55rem;
}

.ss-play.large {
  width: 2.2rem;
  height: 2.2rem;
  font-size: 0.7rem;
}

.ss-card h4,
.ss-feature h3 {
  margin: 0.45rem 0.55rem 0.25rem;
  font-size: 0.78rem;
  line-height: 1.3;
  color: #111;
}

.ss-feature h3 {
  font-size: 0.95rem;
  text-align: left;
}

.ss-card p,
.ss-feature-body > p {
  margin: 0 0.55rem 0.35rem;
  font-size: 0.68rem;
  color: #555;
  line-height: 1.35;
}

.ss-meta {
  display: block;
  margin: 0 0.55rem 0.55rem;
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  color: #777;
  text-transform: uppercase;
}

.ss-feature {
  position: relative;
  display: grid;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(11, 27, 51, 0.08);
  background: #fff;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.ss-feature:hover,
.ss-feature:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(26, 102, 224, 0.45);
  box-shadow: 0 10px 24px rgba(11, 27, 51, 0.12);
  outline: 2px solid rgba(26, 102, 224, 0.35);
  outline-offset: 2px;
}

.ss-open-hint {
  color: #1a66e0 !important;
  font-weight: 800 !important;
  animation: ss-hint-pulse 1.8s ease-in-out infinite;
}

.substack-mock.is-reading .ss-stage {
  min-height: 28rem;
}

@keyframes ss-hint-pulse {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

.ss-feature-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.ss-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ss-feature-body {
  padding: 0 0 0.35rem;
}

.ss-sponsored-badge {
  position: absolute;
  top: 0.45rem;
  left: 0.45rem;
  z-index: 2;
  background: #1f7cff;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.24rem 0.4rem;
}

.ss-engage {
  display: flex;
  justify-content: flex-start;
  gap: 0.85rem;
  margin: 0.15rem 0.55rem 0.45rem;
  color: #666;
  font-size: 0.68rem;
}

.ss-sponsor-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.55rem;
  border-top: 1px solid rgba(11, 27, 51, 0.08);
  background: linear-gradient(90deg, rgba(31, 124, 255, 0.1), rgba(217, 33, 40, 0.06));
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a66e0;
}

.ss-sponsor-bar span:last-child {
  color: #777;
  font-weight: 600;
}

.ss-popular {
  padding: 0.55rem 0.5rem;
}

.ss-popular-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.7rem;
}

.ss-popular-head span {
  color: #1f7cff;
  font-size: 0.58rem;
  letter-spacing: 0.06em;
}

.ss-popular ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.ss-popular li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem;
  align-items: start;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(11, 27, 51, 0.06);
}

.ss-popular li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.ss-popular p {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  line-height: 1.3;
  color: #111;
}

.ss-popular span {
  font-size: 0.55rem;
  letter-spacing: 0.04em;
  color: #777;
  text-transform: uppercase;
}

.ss-mini {
  width: 2.5rem;
  height: 2.5rem;
  aspect-ratio: 1;
  flex-shrink: 0;
}

.ss-stage {
  position: relative;
  min-height: 22rem;
  background-color: #e7ecf3;
  background-image: radial-gradient(rgba(11, 27, 51, 0.055) 0.65px, transparent 0.65px);
  background-size: 4px 4px;
}

.ss-view {
  display: none;
}

.ss-view.is-active {
  display: block;
}

.ss-view[hidden] {
  display: none !important;
}

.ss-loading {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem 1.25rem;
  text-align: center;
}

.ss-loading p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
}

.ss-spinner {
  width: 1.75rem;
  height: 1.75rem;
  border: 2px solid rgba(26, 102, 224, 0.2);
  border-top-color: #1a66e0;
  border-radius: 50%;
  animation: ss-spin 0.75s linear infinite;
}

.ss-skel {
  width: min(100%, 28rem);
  display: grid;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.ss-skel-hero {
  height: 8.5rem;
  background: linear-gradient(90deg, #dbe3ee 25%, #eef2f7 50%, #dbe3ee 75%);
  background-size: 200% 100%;
  animation: ss-shimmer 1.1s linear infinite;
}

.ss-skel-line {
  height: 0.7rem;
  background: linear-gradient(90deg, #dbe3ee 25%, #eef2f7 50%, #dbe3ee 75%);
  background-size: 200% 100%;
  animation: ss-shimmer 1.1s linear infinite;
}

.ss-skel-line.short {
  width: 62%;
}

.ss-skel-line.mid {
  width: 78%;
}

.ss-article {
  background: #fff;
  border-top: 1px solid rgba(11, 27, 51, 0.06);
  padding: 0.85rem 0.9rem 0;
}

.ss-back {
  display: inline-flex;
  margin: 0 0 0.75rem;
  padding: 0;
  border: 0;
  background: none;
  color: #1a66e0;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.ss-back:hover,
.ss-back:focus-visible {
  text-decoration: underline;
}

.ss-article-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a66e0;
  font-weight: 700;
}

.ss-article-title {
  margin: 0 0 0.4rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.25;
  color: #0b1b33;
}

.ss-article-byline {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  color: #64748b;
}

.ss-article-hero {
  margin: 0 0 0.85rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0b1b33;
}

.ss-article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ss-article-body {
  display: grid;
  gap: 0.7rem;
  padding-bottom: 0.85rem;
}

.ss-article-body p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: #334155;
}

@keyframes ss-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ss-shimmer {
  from {
    background-position: 100% 0;
  }
  to {
    background-position: -100% 0;
  }
}

@keyframes inject-short {
  0%, 14% { opacity: 0; transform: translate(-50%, -50%) scale(0.94); }
  20%, 78% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  86%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.94); }
}

@keyframes inject-long {
  0%, 16% { opacity: 0; transform: translate(-50%, -50%) scale(0.94); }
  22%, 80% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  88%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.94); }
}

@keyframes inject-kicker-flash {
  0% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes progress-15 {
  from { width: 0%; }
  to { width: 100%; }
}

/* Channels */
.reach-channels {
  padding-top: 0.25rem;
  margin-bottom: 0;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  width: 100%;
}

.channel {
  position: relative;
  display: block;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  min-height: 5.5rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 8px 20px rgba(11, 27, 51, 0.04);
}

.channel:hover,
.channel:focus-visible {
  border-color: rgba(26, 102, 224, 0.45);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.channel-top {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0.9rem;
  padding: 1.25rem 1.3rem;
  min-height: 5.5rem;
}

.channel-preview {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.channel-preview.soft {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
}

.channel-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
  border-radius: 2px;
}

.channel-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.channel[data-platform="youtube"] .channel-icon {
  background: var(--red-soft);
  color: #d92128;
}

.channel[data-platform="tiktok"] .channel-icon {
  color: var(--navy);
}

.channel-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
}

.channel-arrow {
  color: var(--muted);
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}

.channel:hover .channel-arrow,
.channel:focus-visible .channel-arrow {
  color: var(--blue);
  transform: translateX(4px);
}

.channel-panel {
  display: grid;
  gap: 0.45rem;
  max-height: 0;
  opacity: 0;
  padding: 0 1.3rem;
  overflow: hidden;
  border-top: 0 solid transparent;
  transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease), padding 0.35s var(--ease), border-color 0.3s var(--ease);
}

.channel:hover .channel-panel,
.channel:focus-visible .channel-panel,
.channel.is-open .channel-panel {
  max-height: 14rem;
  opacity: 1;
  padding: 0 1.3rem 1.25rem;
  border-top: 1px solid var(--line);
}

.channel-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0.85rem 0 0.75rem;
}

.channel-stat {
  display: grid;
  gap: 0.2rem;
  padding: 0.7rem 0.75rem;
  background: var(--paper);
  border-left: 2px solid var(--blue);
}

.channel-stat:last-child {
  border-left-color: var(--red);
}

.channel-stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}

.channel-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.channel-metric {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.channel-metric strong {
  color: var(--navy);
  font-weight: 600;
}

.channel-cta {
  margin: 0.35rem 0 0;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Sticky contact CTA */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  z-index: 60;
  transform: translate(-50%, 140%);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0.75rem 0.7rem 1.15rem;
  background: var(--white);
  border: 1px solid rgba(26, 102, 224, 0.35);
  box-shadow: 0 16px 40px rgba(11, 27, 51, 0.16);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
  max-width: calc(100% - 1.5rem);
}

.sticky-cta.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta-copy {
  margin: 0;
  font-size: 0.88rem;
  color: var(--navy);
  white-space: nowrap;
}

.sticky-cta .btn {
  min-height: 2.5rem;
  padding-inline: 1.1rem;
  flex-shrink: 0;
}


.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  width: 100%;
}

.channel-square {
  display: grid;
  justify-items: center;
  text-align: center;
  align-content: start;
  gap: 0.3rem;
  min-height: 12.5rem;
  padding: 1.4rem 1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(11, 27, 51, 0.04);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.channel-square:hover,
.channel-square:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(26, 102, 224, 0.4);
  box-shadow: var(--shadow);
}

.channel-square-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.45rem;
  object-fit: contain;
}

.channel-square-name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.channel-square-handle {
  margin: 0;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  word-break: break-word;
}

.channel-square-metric {
  margin: 0.65rem 0 0;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
}

.channel-square-detail {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
  max-width: 16ch;
}

.channel-square-cta {
  margin-top: auto;
  padding-top: 0.85rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reach-funnel-svg {
    display: none;
  }

  .reach-funnel {
    height: auto;
    padding: 1rem 0 0.35rem;
    gap: 0.45rem;
  }

  .reach-funnel-chevrons {
    display: flex;
  }
}

@media (max-width: 640px) {
  .channel-grid {
    grid-template-columns: 1fr;
  }
}

/* Pitch */
.pitch {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.pitch-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(26, 102, 224, 0.06), transparent 45%),
    var(--white);
  box-shadow: var(--shadow);
}

.pitch-copy p:last-child {
  margin: 0;
  color: var(--muted);
}

.pitch-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.pitch-list li {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 0 1rem 1rem;
  border-left: 2px solid var(--blue);
}

.pitch-list li:nth-child(2) {
  border-left-color: var(--red);
}

.pitch-list strong {
  color: var(--navy);
  font-size: 1rem;
}

.pitch-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Contact */
.contact {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 12% 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--red), transparent);
  opacity: 0.35;
}

.contact-inner {
  text-align: center;
  max-width: 42rem;
}

.contact-inner .section-copy {
  margin-bottom: 1.85rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.contact-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-note a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 2.75rem;
  background: var(--navy);
  color: #d7e0ef;
}

.footer-inner {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  text-align: center;
}

.footer-logo {
  height: 2.4rem;
  width: auto;
}

.footer-tagline {
  margin: 0;
  color: #9db0cc;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-copy {
  margin: 0;
  color: rgba(157, 176, 204, 0.85);
  font-size: 0.82rem;
}

/* Reveal + motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.site-header[data-reveal] {
  transform: none;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.2%, -0.8%, 0);
  }
}

@keyframes pulse-soft {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .marquee-track,
  .brand-inject-short,
  .brand-inject-long,
  .brand-inject-kicker,
  .short-progress i,
  .longform-progress i {
    animation: none !important;
  }

  .brand-inject-short,
  .brand-inject-long {
    opacity: 1;
  }

  .brand-inject-kicker {
    background: none;
    color: #4da3ff;
    -webkit-text-fill-color: #4da3ff;
    filter: none;
  }

  .ss-spinner,
  .ss-skel-hero,
  .ss-skel-line,
  .ss-open-hint {
    animation: none !important;
  }

  .period-underline {
    transform: scaleX(1) !important;
    animation: none !important;
  }

  .funnel-path {
    stroke-dashoffset: 0 !important;
    opacity: 0.85;
  }

  .funnel-join,
  .reach-funnel-label {
    opacity: 1 !important;
    transform: none !important;
  }

  .key-numbers {
    opacity: 1 !important;
    transform: none !important;
  }

  .site-topbar-upgrade {
    animation: none !important;
  }

  .hero-title-sheen {
    background: none;
    color: var(--navy);
    -webkit-text-fill-color: var(--navy);
  }
}

@media (max-width: 1100px) {
  .ss-nav span:nth-child(n + 5) {
    display: none;
  }
}

@media (max-width: 980px) {
  .ss-nav {
    display: none;
  }

  .ss-signin {
    display: none;
  }

  .ss-topbar {
    grid-template-columns: auto 1fr;
  }

  .ss-actions {
    justify-self: end;
  }

  .ss-grid {
    grid-template-columns: 1fr;
  }

  .placement,
  .placement-reverse,
  .placement-stack {
    grid-template-columns: 1fr;
  }

  .placement-reverse .placement-copy {
    order: 0;
  }

  .value-row,
  .pitch-inner {
    grid-template-columns: 1fr;
  }

  .channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .placement-demo {
    order: -1;
  }
}

@media (max-width: 720px) {
  .ss-grid {
    gap: 0.65rem;
  }
}

@media (max-width: 640px) {
  .nav a:not(.nav-cta) {
    display: none;
  }

  .hero-content {
    width: min(100%, calc(100% - 2rem));
    padding: 1.75rem 0 1.75rem;
  }

  .hero-image {
    object-position: center center;
  }

  .key-numbers {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    flex-direction: column;
  }

  .btn-lg {
    width: 100%;
  }

  .sticky-cta-copy {
    display: none;
  }

  .sticky-cta {
    padding: 0.65rem;
  }

  .channel-top {
    grid-template-columns: auto 1fr auto;
  }

  .channel-preview {
    display: none;
  }
}
