:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-muted: #eef4f7;
  --text: #152132;
  --muted: #5f6f82;
  --line: #d8e1ea;
  --navy: #12395a;
  --blue: #2e6f9e;
  --green: #3f7668;
  --gold: #c28b2c;
  --shadow: 0 20px 55px rgba(18, 57, 90, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(46, 111, 158, 0.12), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 48%, #ffffff 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Arial, "Helvetica Neue", sans-serif;
  line-height: 1.6;
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: center;
  padding: 80px 0 56px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--navy);
  line-height: 1.12;
}

h1 {
  max-width: 800px;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  letter-spacing: -0.035em;
}

.lede {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.notice {
  max-width: 870px;
  margin-top: 32px;
  padding: 20px 22px;
  border: 1px solid #f0d39b;
  border-left: 6px solid var(--gold);
  border-radius: 18px;
  background: #fff8ec;
  color: #3b2d17;
}

.hero-card {
  min-height: 360px;
  padding: 32px;
  border: 1px solid rgba(18, 57, 90, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(18, 57, 90, 0.94), rgba(46, 111, 158, 0.88)),
    radial-gradient(circle at top right, rgba(255,255,255,0.24), transparent 12rem);
  box-shadow: var(--shadow);
  color: white;
}

.card-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.11);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.card-line {
  height: 1px;
  margin: 110px 0 26px;
  background: rgba(255,255,255,0.28);
}

.hero-card p {
  margin: 12px 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.section,
.grid,
.contact,
.coming-soon {
  margin: 28px 0;
}

.section,
.contact,
.coming-soon,
.panel {
  border: 1px solid rgba(18, 57, 90, 0.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.86);
  box-shadow: 0 12px 32px rgba(18, 57, 90, 0.06);
}

.section {
  padding: 38px;
}

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

.mission {
  max-width: 920px;
  margin-top: 24px;
  columns: 2 360px;
  column-gap: 48px;
}

.mission p {
  break-inside: avoid;
  margin: 0 0 18px;
  color: #2e3b4d;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.panel {
  padding: 32px;
}

.panel-muted {
  background: var(--surface-muted);
}

ul {
  margin: 20px 0 0;
  padding-left: 1.2rem;
}

li {
  margin: 10px 0;
  color: #2e3b4d;
}

.resources .small {
  max-width: 820px;
  margin: 22px 0 0;
  color: var(--muted);
}

.resource-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.resource-list div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
}

.resource-list strong,
.resource-list span {
  display: block;
}

.resource-list strong {
  color: var(--navy);
}

.resource-list span {
  margin-top: 6px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
  padding: 38px;
  background:
    linear-gradient(135deg, rgba(18, 57, 90, 0.96), rgba(46, 111, 158, 0.9));
  color: white;
}

.contact h2,
.contact .eyebrow {
  color: white;
}

.contact p {
  color: rgba(255,255,255,0.8);
}

.contact-card {
  display: grid;
  gap: 14px;
}

.contact-card a {
  display: block;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
  color: white;
  text-decoration: none;
  word-break: break-word;
}

.contact-card a:hover {
  background: rgba(255,255,255,0.16);
}

.contact-card span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255,255,255,0.72);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coming-soon {
  padding: 34px 38px;
}

.coming-soon p:last-child {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
}

footer {
  width: min(1120px, calc(100% - 32px));
  margin: 24px auto 0;
  padding: 26px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

footer p {
  margin: 4px 0;
}

@media (max-width: 860px) {
  main,
  footer {
    width: min(100% - 24px, 1120px);
  }

  .hero,
  .grid,
  .contact,
  .resource-list {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-card {
    min-height: auto;
  }

  .card-line {
    margin-top: 54px;
  }

  .section,
  .contact,
  .coming-soon,
  .panel {
    padding: 24px;
  }

  .mission {
    columns: 1;
  }
}
