:root {
  --ink: #08121c;
  --navy: #07131f;
  --navy-soft: #0c1d2c;
  --blue: #78aeca;
  --blue-bright: #a8d8ef;
  --paper: #f3f0e8;
  --paper-muted: #e8e5dc;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(8, 18, 28, 0.16);
  --text-light: #f7f5ef;
  --text-dim: #b9c4cc;
  --shell: 1180px;
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

p:last-child {
  margin-bottom: 0;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  color: var(--text-light);
  border-bottom: 1px solid var(--line-dark);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark-mark {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--blue-bright);
  font-size: 1.15rem;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  color: var(--text-dim);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text-light);
}

.site-nav .nav-contact {
  padding: 9px 15px;
  border: 1px solid rgba(168, 216, 239, 0.55);
  border-radius: 999px;
  color: var(--blue-bright);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 174px 0 104px;
  background:
    radial-gradient(circle at 88% 18%, rgba(88, 154, 187, 0.22), transparent 28%),
    radial-gradient(circle at 72% 80%, rgba(31, 83, 111, 0.2), transparent 34%),
    var(--navy);
  color: var(--text-light);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 92%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.75fr);
  gap: clamp(54px, 8vw, 108px);
  align-items: end;
}

.eyebrow,
.card-label {
  margin-bottom: 20px;
  color: #315f76;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero .eyebrow,
.status-card .card-label,
.contact-panel .eyebrow {
  color: var(--blue-bright);
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 800px;
  margin-bottom: 30px;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.98;
}

h2 {
  max-width: 740px;
  margin-bottom: 26px;
  font-size: clamp(2.15rem, 4.5vw, 3.8rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 760px;
  margin-bottom: 20px;
  color: #e9edf0;
  font-size: clamp(1.18rem, 2.1vw, 1.46rem);
  line-height: 1.55;
}

.hero-support {
  max-width: 690px;
  margin-bottom: 35px;
  color: var(--text-dim);
  font-size: 1rem;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  background: var(--blue-bright);
  color: var(--navy);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d0effd;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text-light);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.07);
}

.status-card {
  padding: 30px;
  border: 1px solid rgba(168, 216, 239, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.status-card h2 {
  margin-bottom: 25px;
  font-size: 2rem;
}

.status-card dl {
  margin-bottom: 0;
}

.status-card dl > div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line-dark);
}

.status-card dt {
  color: var(--blue-bright);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.status-card dd {
  margin-bottom: 0;
  color: #d9e0e4;
  font-size: 0.92rem;
  line-height: 1.5;
}

.section {
  padding: 100px 0;
  border-bottom: 1px solid var(--line-light);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 9vw, 130px);
  align-items: start;
}

.section-copy {
  padding-top: 5px;
  color: #344451;
  font-size: 1.08rem;
}

.section-copy p + p {
  margin-top: 20px;
}

.section-muted {
  background: var(--paper-muted);
}

.participation-copy {
  color: #344451;
  font-size: 1.08rem;
}

.participation-copy p + p {
  margin-top: 20px;
}

.company-section {
  background: #dfe8e8;
}

.company-note {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(46px, 9vw, 130px);
}

.company-note > div:last-child {
  max-width: 700px;
  color: #30414b;
  font-size: 1.06rem;
}

.company-note > div:last-child p + p {
  margin-top: 18px;
}

.contact-section {
  padding: 42px 0;
  background: var(--paper);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 70px;
  align-items: center;
  padding: clamp(38px, 7vw, 78px);
  border-radius: var(--radius);
  background: var(--navy-soft);
  color: var(--text-light);
}

.contact-panel h2 {
  max-width: 680px;
  margin-bottom: 20px;
}

.contact-panel p {
  color: var(--text-dim);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.button-light {
  background: var(--paper);
  color: var(--navy);
}

.button-light:hover,
.button-light:focus-visible {
  background: white;
}

.email-link {
  color: var(--blue-bright);
  font-weight: 700;
  text-underline-offset: 4px;
}

.contact-actions .contact-note {
  max-width: 340px;
  margin-top: 2px;
  color: #95a6b0;
  font-size: 0.78rem;
}

.site-footer {
  padding: 36px 0;
  background: var(--navy);
  color: var(--text-dim);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.wordmark-footer {
  color: var(--text-light);
}

.footer-inner p {
  margin: 0;
  font-size: 0.78rem;
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 0;
  background: var(--navy);
  color: var(--text-light);
}

.not-found-card {
  width: min(calc(100% - 48px), 760px);
}

.not-found-card p:not(.eyebrow) {
  max-width: 540px;
  color: var(--text-dim);
  font-size: 1.08rem;
}

.not-found-card .button {
  margin-top: 18px;
}

:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 4px;
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 76px;
  }

  .site-nav a:not(.nav-contact) {
    display: none;
  }

  .hero {
    padding: 148px 0 82px;
  }

  .hero-grid,
  .section-grid,
  .company-note,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 56px;
  }

  .status-card {
    max-width: 560px;
  }

  .section {
    padding: 76px 0;
  }

  .section-grid,
  .company-note {
    gap: 30px;
  }

  .contact-panel {
    gap: 36px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .wordmark {
    font-size: 0.7rem;
    letter-spacing: 0.13em;
  }

  .site-nav .nav-contact {
    padding: 8px 12px;
  }

  h2 {
    font-size: 2.25rem;
  }

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

  .status-card {
    padding: 24px;
  }

  .status-card dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .contact-section {
    padding: 18px 0;
  }

  .contact-panel {
    padding: 32px 24px;
  }

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

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

  .button {
    transition: none;
  }
}
