.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  color: var(--brand-strong);
}

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: 64px;
  line-height: 1.04;
}

h2 {
  margin-bottom: 14px;
  font-size: 42px;
  line-height: 1.1;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 44px;
  align-items: center;
  padding: 44px 0 72px;
}

.hero-copy {
  padding: 28px 0;
}

.public-holding {
  min-height: 62vh;
}

.hero-lead {
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 700;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--teal));
  box-shadow: var(--shadow);
}

.button-secondary {
  color: var(--brand);
  background: rgba(255, 255, 255, 0.62);
  border-color: var(--line);
}

.hero-panel {
  border: 1px solid rgba(23, 58, 90, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58)),
    linear-gradient(135deg, rgba(30, 107, 104, 0.12), rgba(23, 58, 90, 0.12));
  box-shadow: var(--shadow);
  padding: 26px;
}

.public-note p {
  margin-bottom: 0;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.panel-header span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-warm);
  box-shadow: 18px 0 0 var(--accent), 36px 0 0 var(--teal);
}

.content-band {
  padding: 74px 0;
}

.compact-band {
  padding-top: 34px;
}

.muted-band {
  width: 100%;
  max-width: none;
  padding: 74px max(20px, calc((100vw - var(--max-width)) / 2));
  background: linear-gradient(135deg, rgba(18, 34, 53, 0.96), rgba(30, 107, 104, 0.94));
}

.section-heading {
  max-width: 880px;
  margin-bottom: 30px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.muted-band .eyebrow {
  color: #f1bd62;
}

.muted-band h2,
.muted-band p,
.muted-band li,
.muted-band .checklist p {
  color: #f4f7fb;
}

.checklist {
  padding: 24px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.checklist p {
  margin-bottom: 14px;
  font-weight: 700;
}

.checklist ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.checklist li {
  padding-left: 20px;
  position: relative;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  background: var(--accent);
}

@media (max-width: 1040px) {
  .hero-section,
  .split-section {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  p {
    font-size: 16px;
  }

  .hero-section,
  .content-band,
  .muted-band {
    padding-top: 42px;
    padding-bottom: 52px;
  }

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

}
