:root {
  --ink: #0a1829;
  --navy: #071426;
  --navy-2: #0d2745;
  --blue: #0f5fbd;
  --blue-2: #1f7ae0;
  --gold: #c9a45c;
  --paper: #fbfaf6;
  --stone: #ece7df;
  --line: #d8d2c7;
  --muted: #667085;
  --white: #ffffff;
  --green: #14783f;
  --green-bg: #e8f7ee;
  --red: #b42318;
  --red-bg: #fee4e2;
  --shadow: 0 20px 48px rgba(6, 20, 38, 0.2);
  --container: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 40px, var(--container));
  min-height: 78px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: min(250px, 48vw);
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.nav-links a {
  padding: 10px 0;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta {
  padding: 10px 14px !important;
  border: 1px solid var(--blue);
  border-radius: 999px;
  color: var(--blue);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 70px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 20, 38, 0.95), rgba(7, 20, 38, 0.82)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 34px),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), transparent 62%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 84%);
}

.hero-grid {
  position: relative;
  display: grid;
  justify-items: center;
}

.hero-content {
  max-width: 980px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  max-width: 980px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5vw, 4.85rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}

.hero-copy {
  max-width: 650px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 15px 32px rgba(15, 95, 189, 0.32);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.button-full {
  width: 100%;
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.contact-form {
  border: 1px solid rgba(10, 24, 41, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.section-heading .eyebrow,
.contact-copy .eyebrow,
.media-kit-panel .eyebrow {
  color: var(--blue);
}

.card-heading {
  margin-bottom: 18px;
}

.card-heading h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.45rem;
  line-height: 1.15;
}

.lead-form {
  display: grid;
  gap: 13px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 850;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid #cfd6df;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.lead-form input {
  min-height: 44px;
  padding: 0 13px;
}

.lead-form textarea {
  min-height: 104px;
  resize: vertical;
  padding: 12px 13px;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(15, 95, 189, 0.12);
}

.form-note {
  margin: -1px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

.network-section {
  background: var(--stone);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow),
.contact-copy p {
  margin: 14px 0 0;
  color: #475467;
  font-size: 1rem;
}

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

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 118px;
  padding: 18px 20px;
  border: 1px solid rgba(10, 24, 41, 0.09);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(10, 24, 41, 0.08);
}

.logo-card img {
  display: block;
  width: 100%;
  max-width: 190px;
  height: 66px;
  object-fit: contain;
}

.benefits-section {
  background: var(--stone);
}

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

.benefit-card {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 32px rgba(10, 24, 41, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.benefit-card:hover {
  border-color: rgba(15, 95, 189, 0.34);
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(10, 24, 41, 0.1);
}

.benefit-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy-2);
  font-size: 0.75rem;
  font-weight: 900;
}

.media-kit-section {
  padding: 38px 0;
  background: var(--paper);
}

.media-kit-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(10, 24, 41, 0.06);
}

.media-kit-panel h2 {
  max-width: 720px;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
}

.contact-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 20, 38, 0.96), rgba(13, 39, 69, 0.94)),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.contact-stack {
  display: grid;
  justify-items: center;
  gap: 30px;
}

.contact-copy {
  max-width: 780px;
  text-align: center;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  border: 1px solid rgba(20, 120, 63, 0.22);
  color: var(--green);
  background: var(--green-bg);
}

.form-status.is-error {
  border: 1px solid rgba(180, 35, 24, 0.22);
  color: var(--red);
  background: var(--red-bg);
}

.contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 820px);
  padding: 26px;
}

.form-field-wide,
.contact-form .button-full,
.contact-form .form-status {
  grid-column: 1 / -1;
}

.footer {
  color: rgba(255, 255, 255, 0.78);
  background: #050d18;
}

.footer-inner {
  display: grid;
  gap: 10px;
  padding: 26px 0;
  font-size: 0.88rem;
  text-align: center;
}

.footer p {
  margin: 0;
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 14px 0;
  }

  .nav-links {
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .contact-form {
    max-width: 620px;
  }

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

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

@media (max-width: 720px) {
  .container,
  .nav {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 54px 0;
  }

  .site-header {
    position: static;
  }

  .brand img {
    width: min(220px, 70vw);
    max-height: 44px;
  }

  .nav-links {
    gap: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
    white-space: normal;
    font-size: 0.68rem;
  }

  .nav-cta {
    grid-column: 1 / -1;
    padding: 8px 12px !important;
    text-align: center;
  }

  .hero {
    padding: 52px 0 48px;
  }

  h1 {
    max-width: 10.5ch;
    margin-inline: auto;
    font-size: clamp(1.95rem, 10.4vw, 2.65rem);
    line-height: 1;
  }

  .hero-copy {
    max-width: 32ch;
    font-size: 0.98rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .logo-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

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

  .logo-card {
    min-height: 96px;
    padding: 14px;
  }

  .logo-card img {
    height: 54px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .media-kit-panel {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .media-kit-panel .button {
    width: 100%;
  }

}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
