:root {
  color-scheme: light;
  --blue: #1030b0;
  --blue-deep: #101030;
  --teal: #0f948b;
  --ink: #12172f;
  --muted: #58677e;
  --bg: #ffffff;
  --paper: #ffffff;
  --soft: #f4f8fd;
  --line: #dfe8f3;
  --shadow: 0 18px 46px rgba(18, 32, 78, 0.13);
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.utility {
  background: var(--blue-deep);
  color: #ffffff;
  font-size: 13px;
}

.utility .container,
.nav-inner,
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility .container {
  min-height: 38px;
}

.utility-left,
.utility-right,
.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.utility-pill {
  color: #dce7ff;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(16px);
}

.nav-inner {
  min-height: 78px;
}

.site-logo-img {
  display: block;
  width: 230px;
  max-width: 38vw;
  height: auto;
}

.menu {
  color: var(--muted);
  font-size: 14px;
}

.menu a {
  text-decoration: none;
  padding: 10px 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px 16px;
  background: transparent;
  color: var(--ink);
  font-weight: 820;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #2038c7);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(16, 48, 176, 0.23);
}

.btn-outline {
  border-color: color-mix(in srgb, var(--blue) 46%, var(--line));
  background: var(--paper);
  color: var(--blue);
}

.subhero {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(16, 48, 176, 0.1), transparent 45%), linear-gradient(180deg, var(--soft), #ffffff);
}

.subhero-inner {
  min-height: 360px;
  padding: 68px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 42px;
  align-items: center;
}

.kicker {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
}

.lead {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

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

.producer-logo {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: 32px;
}

.producer-logo img {
  display: block;
  max-width: 100%;
  max-height: 92px;
  object-fit: contain;
}

.producer-logo-text {
  color: var(--blue);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 950;
  letter-spacing: 0;
}

.section {
  padding: 70px 0;
}

.section + .section {
  padding-top: 0;
}

.section-title {
  max-width: 780px;
  margin: 0 0 24px;
}

.section-title .kicker {
  margin-bottom: 8px;
}

.section-title h2 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.12;
}

.section-title p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 22px;
  min-height: 172px;
}

.card small {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card strong {
  display: block;
  color: var(--blue-deep);
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 9px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.offer-list {
  display: grid;
  gap: 12px;
}

.offer-item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 20px;
}

.offer-tag {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-item strong {
  display: block;
  color: var(--blue-deep);
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.offer-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.source-links a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--blue);
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), #2038c7);
  color: #ffffff;
  padding: 28px;
  box-shadow: var(--shadow);
}

.cta-panel strong {
  display: block;
  font-size: 24px;
  line-height: 1.2;
}

.cta-panel p {
  margin: 8px 0 0;
  color: #dce7ff;
  line-height: 1.6;
}

.cta-panel .btn {
  background: #ffffff;
  color: var(--blue);
}

.fine-print {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.note {
  margin-top: 18px;
  border-left: 3px solid var(--teal);
  background: var(--soft);
  padding: 14px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--soft);
  color: var(--muted);
  padding: 30px 0;
  font-size: 13px;
}

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

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

.footer strong {
  color: var(--blue-deep);
}

.footer .legal {
  margin-top: 12px;
}

@media (max-width: 900px) {
  .menu {
    display: none;
  }

  .subhero-inner,
  .section-grid,
  .offer-item,
  .cta-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .utility .container,
  .footer .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
  }

  .nav-inner {
    min-height: auto;
    padding: 12px 0;
  }

  .site-logo-img {
    width: 190px;
    max-width: 48vw;
  }

  .subhero-inner,
  .section {
    padding: 52px 0;
  }
}
