:root {
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
    "Segoe UI", Helvetica, Arial, sans-serif;
  --marine: #003c5f;
  --marine-deep: #0f2940;
  --violet: #77177b;
  --green: #47c430;
  --pink: #f30097;
  --ink: #173047;
  --muted: #54687b;
  --soft: #eef3f6;
  --panel: #ffffff;
  --line: rgba(0, 60, 95, 0.12);
  --shadow: 0 20px 40px rgba(0, 60, 95, 0.12);
  --radius-lg: 28px;
  --radius-md: 22px;
  --content-width: 1200px;
  --section-space: 96px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: #ffffff;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main {
  overflow: clip;
}

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

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

p,
li {
  font-size: 18px;
  line-height: 1.6;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.03em;
}

.content-shell {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
}

.hero-banner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 78vh;
  padding: 120px 0 112px;
  background:
    linear-gradient(135deg, rgba(0, 60, 95, 0.9), rgba(17, 39, 61, 0.78)),
    url("assets/hero-background.jpeg") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.28)),
    radial-gradient(circle at top right, rgba(243, 0, 151, 0.2), transparent 28%),
    radial-gradient(circle at bottom left, rgba(71, 196, 48, 0.14), transparent 30%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: #ffffff;
  text-align: left;
}

.hero-logo {
  width: clamp(220px, 28vw, 360px);
  margin: 0 0 28px;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.75);
}

.hero-inner h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 5.25rem);
  font-weight: 800;
  line-height: 1.02;
}

.hero-summary {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.92);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
}

.hero-actions {
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(119, 23, 123, 0.28);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.section {
  padding: var(--section-space) 0;
}

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

.section-dark {
  background: linear-gradient(180deg, #16324a, #102639);
  color: #ffffff;
}

.section-cta {
  background: linear-gradient(180deg, #ffffff, #eef3f6);
}

.urgency-shell,
.about-card,
.split-feature,
.cta-panel {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.section-urgency {
  background: linear-gradient(180deg, #ffffff 0%, #eef3f6 100%);
}

.urgency-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  background: var(--panel);
}

.urgency-intro,
.urgency-content,
.about-card,
.feature-copy,
.cta-panel {
  padding: 48px;
}

.urgency-intro {
  background: linear-gradient(135deg, #17324b, #092338);
  color: #ffffff;
}

.urgency-intro h2,
.about-card h2,
.section-heading h2,
.feature-copy h2,
.cta-panel h2 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
}

.urgency-summary {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.urgency-content {
  background: #ffffff;
}

.why-now-conclusion {
  margin: 28px 0 0;
  font-weight: 700;
  color: var(--marine);
}

.about-card {
  background: linear-gradient(180deg, #ffffff, #f7fafc);
  border: 1px solid var(--line);
}

.about-card p:not(.eyebrow) {
  margin: 18px 0 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 0 48px;
  text-align: left;
}

.section-heading-center {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2 {
  color: var(--marine);
}

.section-heading p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
}

.section-heading-light h2,
.section-heading-light p:last-child {
  color: #ffffff;
}

.icon-grid,
.program-grid,
.engage-grid,
.mini-panels,
.contact-strip {
  display: grid;
  gap: 30px;
}

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

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

.icon-card,
.program-card,
.engage-card,
.mini-panel {
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
  text-align: left;
}

.icon-badge {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 60, 95, 0.08);
  color: var(--marine);
  font-size: 14px;
  font-weight: 800;
}

.icon-card h3,
.program-card h3,
.engage-card h3 {
  margin-top: 18px;
  font-size: 1.35rem;
  font-weight: 750;
  color: var(--marine);
}

.icon-card p,
.program-card p,
.engage-card p,
.mini-panel p {
  margin: 14px 0 0;
}

.program-card {
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
}

.program-card p {
  color: var(--muted);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  overflow: hidden;
  background: #ffffff;
}

.feature-media {
  min-height: 100%;
}

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

.feature-copy h2 {
  color: var(--marine);
}

.feature-copy {
  padding: 48px 44px 56px 36px;
}

.mini-panels {
  display: flex;
  align-items: stretch;
  margin-top: 34px;
  gap: 20px;
}

.mini-panel {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px 22px;
  background: var(--soft);
  box-shadow: none;
  border-radius: 20px;
}

.mini-panel p {
  margin-top: 10px;
  color: var(--ink);
}

.panel-label,
.contact-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(23, 48, 71, 0.6);
}

.key-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.key-list.compact-list {
  margin-top: 76px;
}

.key-list li {
  position: relative;
  padding-left: 22px;
}

.key-list li + li {
  margin-top: 18px;
}

.key-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--pink));
}

.cta-panel {
  background: linear-gradient(135deg, rgba(0, 60, 95, 0.95), rgba(119, 23, 123, 0.92));
  color: #ffffff;
  text-align: left;
}

.cta-text {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.cta-panel .button {
  margin-top: 30px;
}

.contact-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-strip strong,
.contact-link {
  display: block;
  color: #ffffff;
  font-weight: 700;
}

.contact-link {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 540ms ease, transform 540ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

@media (max-width: 1024px) {
  .hero-banner {
    min-height: auto;
    padding: 104px 0 96px;
  }

  .urgency-shell,
  .split-feature,
  .contact-strip {
    grid-template-columns: 1fr;
  }

  .mini-panels {
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  :root {
    --section-space: 80px;
  }

  .content-shell {
    width: min(var(--content-width), calc(100% - 32px));
  }

  .icon-grid-four,
  .program-grid,
  .engage-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-banner {
    padding: 88px 0 80px;
  }

  .urgency-intro,
  .urgency-content,
  .about-card,
  .feature-copy,
  .cta-panel,
  .icon-card,
  .program-card,
  .engage-card,
  .mini-panel {
    padding: 28px;
  }

  .hero-inner h1 {
    max-width: 100%;
  }

  .button {
    width: 100%;
  }
}
