:root {
  --black: #000000;
  --white: #ffffff;
  --amber: #E66000;
  --cerise: #E93F6F;
  --ucla-blue: #2275A5;
  --sea-green: #339470;
  --french-violet: #6A15CB;

  --ink: var(--black);
  --muted: rgba(0, 0, 0, 0.62);
  --paper: var(--white);
  --surface: var(--white);
  --soft: rgba(51, 148, 112, 0.06);
  --line: rgba(0, 0, 0, 0.1);
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--ink);
  background: var(--paper);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  color: rgba(0, 0, 0, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  transition: color 160ms ease;
}

.nav a:hover {
  color: var(--french-violet);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background 160ms ease;
}

.nav-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.is-nav-open {
  overflow: hidden;
}

.header-logo-link {
  flex-shrink: 0;
  margin-right: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.header-logo-link:not([hidden]) {
  visibility: visible;
}

.site-header.is-logo-visible .header-logo-link {
  opacity: 1;
}

.header-logo {
  display: block;
  height: 36px;
  width: auto;
}

.hero {
  padding: clamp(72px, 10vh, 96px) 0 clamp(48px, 8vh, 72px);
  color: var(--ink);
  background: var(--paper);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 560px) auto;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero-copy {
  max-width: 560px;
  overflow: visible;
}

.hero-media {
  justify-self: end;
}

.hero-image {
  width: auto;
  max-width: 100%;
  height: auto;
}

.hero h1 {
  position: relative;
  z-index: 2;
  width: max-content;
  max-width: 100%;
  line-height: 1;
}

.hero-logo {
  width: min(100%, 520px);
  height: auto;
}

.hero-lead {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.5;
}

.eyebrow,
.section-kicker {
  margin: 20px 0 14px;
  color: var(--sea-green);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sea-green);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(56px, 11vw, 126px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 20px;
  font: inherit;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.button-primary {
  color: var(--white);
  background: var(--cerise);
}

.button-primary:hover {
  background: color-mix(in srgb, var(--cerise) 85%, var(--black));
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.68);
}

.button-secondary:hover {
  border-color: rgba(0, 0, 0, 0.34);
  background: rgba(255, 255, 255, 0.88);
}

.section,
.section-band,
.feature-section,
.cta-section {
  padding: clamp(72px, 10vw, 52px) 0;
}

.section-band {
  background: var(--surface);
}

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

/* .intro-copy {
  max-width: 780px;
} */

.intro-copy p,
.section-heading p,
.cta-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.intro-copy p + p {
  margin-top: 20px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-heading p:last-child {
  margin-top: 20px;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card,
.gallery-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-height: 240px;
  padding: 24px;
}

.benefit-card h3 {
  margin: 0;
}

.benefit-card p,
.feature-list p {
  margin: 0;
  color: var(--muted);
}

.benefit-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
}

.benefit-icon-green {
  color: var(--sea-green);
  background: rgba(51, 148, 112, 0.12);
}

.benefit-icon-amber {
  color: var(--amber);
  background: rgba(230, 96, 0, 0.12);
}

.benefit-icon-blue {
  color: var(--ucla-blue);
  background: rgba(34, 117, 165, 0.12);
}

.benefit-icon-violet {
  color: var(--french-violet);
  background: rgba(106, 21, 203, 0.12);
}

.data-scale {
  background:
    radial-gradient(circle at top left, rgba(51, 148, 112, 0.1), transparent 42%),
    radial-gradient(circle at top right, rgba(106, 21, 203, 0.08), transparent 38%),
    radial-gradient(circle at bottom center, rgba(34, 117, 165, 0.08), transparent 46%),
    var(--paper);
}

.data-scale .section-heading {
  max-width: none;
}

.data-scale-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 48px);
  align-items: stretch;
}

.data-scale-metrics {
  display: grid;
  gap: 14px;
}

.data-metric {
  position: relative;
  overflow: hidden;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.data-metric::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
}

.data-metric-journalists::before {
  background: linear-gradient(180deg, var(--sea-green), #1f6b52);
}

.data-metric-publications::before {
  background: linear-gradient(180deg, var(--ucla-blue), #16557a);
}

.data-metric-categories::before {
  background: linear-gradient(180deg, var(--amber), var(--cerise));
}

.data-metric-value {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.data-metric-journalists .data-metric-value {
  color: var(--sea-green);
}

.data-metric-publications .data-metric-value {
  color: var(--ucla-blue);
}

.data-metric-categories .data-metric-value {
  color: var(--amber);
}

.data-metric-label {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.data-chart {
  margin: 0;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at top right, rgba(233, 63, 111, 0.08), transparent 40%);
  box-shadow: var(--shadow);
}

.data-chart-bars {
  display: grid;
  gap: 22px;
}

.data-chart-row {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) 72px;
  gap: 14px;
  align-items: center;
}

.data-chart-label,
.data-chart-figure {
  font-size: 14px;
  font-weight: 700;
}

.data-chart-label {
  color: rgba(0, 0, 0, 0.72);
  white-space: nowrap;
}

.data-chart-figure {
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

.data-chart-track {
  height: 28px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
}

.data-chart-bar {
  width: calc(var(--bar-scale) * 100%);
  height: 100%;
  border-radius: inherit;
  transform-origin: left center;
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.data-chart-bar-journalists {
  background: linear-gradient(90deg, var(--sea-green), #4ec49a);
}

.data-chart-bar-publications {
  background: linear-gradient(90deg, var(--ucla-blue), #4aa3d4);
}

.data-chart-bar-categories {
  background: linear-gradient(90deg, var(--amber), var(--cerise));
}

.data-chart-caption {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.feature-section {
  background: var(--soft);
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.feature-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.feature-list article {
  padding-left: 22px;
  border-left: 4px solid var(--sea-green);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-height: 220px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.pricing-card-featured {
  border-color: rgba(51, 148, 112, 0.35);
  background: linear-gradient(180deg, rgba(51, 148, 112, 0.08), var(--surface) 42%);
}

.pricing-badge {
  margin: 0;
  padding: 8px 14px;
  border: 1px solid rgba(51, 148, 112, 0.28);
  border-radius: 999px;
  color: var(--sea-green);
  background: rgba(51, 148, 112, 0.18);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-badge-muted {
  color: var(--ucla-blue);
  border-color: rgba(34, 117, 165, 0.28);
  background: rgba(34, 117, 165, 0.18);
}

.pricing-card h3 {
  margin: 4px 0 0;
}

.pricing-amount {
  margin: 8px 0 0;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  line-height: 1;
}

.pricing-note {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.cta-section {
  color: var(--ink);
  background: rgba(51, 148, 112, 0.08);
}

.cta-section .section-kicker {
  color: var(--sea-green);
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 48px);
  align-items: center;
}

.cta-copy p {
  max-width: 760px;
  margin-top: 20px;
  color: var(--muted);
}

.cta-aside {
  display: flex;
  justify-content: center;
  width: 100%;
}

.cta-visual {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.cta-image {
  width: 100%;
  height: auto;
}

.cta-visual .button {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: clamp(18px, 4vw, 32px);
  width: auto;
}

.cta-visual .button:hover {
  transform: translateY(-2px);
}

.contact-form-panel {
  margin-top: clamp(40px, 6vw, 64px);
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(51, 148, 112, 0.22);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-form-panel + .contact-form-panel {
  margin-top: clamp(24px, 4vw, 36px);
}

.contact-form-heading {
  max-width: 640px;
  margin-bottom: 28px;
}

.contact-form-heading h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 28px);
}

.contact-form-heading p {
  margin: 0;
  color: var(--muted);
}

#journalist-register .contact-form-heading {
  max-width: none;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 14px;
  font-weight: 700;
}

.form-field label span {
  color: var(--cerise);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(51, 148, 112, 0.55);
  box-shadow: 0 0 0 3px rgba(51, 148, 112, 0.14);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-widget {
  min-height: 0;
}

.turnstile-widget:not(:empty) {
  min-height: 65px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.form-status {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.form-status-success {
  color: var(--sea-green);
}

.form-status-error {
  color: var(--cerise);
}

.site-footer {
  color: var(--muted);
  background: var(--white);
}

.site-footer-copy {
  padding: 24px 20px;
  text-align: center;
}

.site-footer-copy p {
  margin: 0;
  font-size: 14px;
}

.site-footer-image {
  display: block;
  margin: 0 auto;
}

@media (max-width: 920px) {
  .site-header {
    gap: 12px;
  }

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

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px clamp(20px, 5vw, 64px) 20px;
    border-top: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
    font-size: 15px;
  }

  .site-header.is-nav-open .nav {
    display: flex;
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .header-logo {
    height: 30px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-media {
    justify-self: center;
  }

  .hero h1 {
    width: auto;
    max-width: none;
  }

  .feature-layout,
  .cta-layout {
    grid-template-columns: 1fr;
  }

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

  .data-scale-layout {
    grid-template-columns: 1fr;
  }

  .data-scale-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .data-chart-row {
    grid-template-columns: max-content minmax(0, 1fr) 64px;
  }

  .cta-layout {
    justify-items: start;
  }

  .cta-aside {
    justify-content: flex-start;
  }

  .cta-visual {
    max-width: 100%;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
    gap: 10px;
  }

  .nav {
    padding: 8px 16px 16px;
    font-size: 14px;
  }

  .header-logo {
    height: 26px;
  }

  .hero-logo {
    width: min(100%, 360px);
  }

  .eyebrow,
  .section-kicker {
    font-size: 12px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .benefit-grid,
  .gallery-grid,
  .pricing-grid,
  .data-scale-metrics {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .pricing-card {
    min-height: 0;
  }

  .data-chart-row {
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
  }

  .data-chart-label {
    grid-column: 1;
  }

  .data-chart-figure {
    grid-column: 2;
  }

  .data-chart-track {
    grid-column: 1 / -1;
    height: 22px;
  }
}
