:root {
  --paper: #f7fbfa;
  --paper-soft: #ffffff;
  --navy: #063a70;
  --navy-deep: #042b54;
  --orange: #f58212;
  --aqua-strong: #b8ded9;
  --ink: #10253d;
  --line: rgba(6, 58, 112, 0.14);
  --shadow: 0 22px 60px rgba(6, 58, 112, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
  overflow-x: hidden;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Nunito Sans", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  overflow-x: hidden;
}

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

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

.site-shell {
  min-height: 100svh;
  overflow: hidden;
}

.topbar {
  background: var(--aqua-strong);
  color: var(--navy-deep);
  font-size: 15px;
  font-weight: 700;
}

.topbar-inner {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1280px, 100% - 48px);
  margin: 0 auto;
}

.topbar-status {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  padding: 0 18px;
  font-size: 14px;
}

.site-header {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 36px;
  min-height: 96px;
  width: min(1280px, 100% - 48px);
  margin: 0 auto;
  background: var(--paper-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.brand img {
  width: 54px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  color: var(--navy-deep);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  opacity: 0;
  transform: scaleX(0.7);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.mobile-menu {
  display: none;
}

.mobile-menu summary {
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 142px);
  padding: 64px 0 84px;
  background: linear-gradient(180deg, #fff 0%, var(--paper) 100%);
}

.hero::before {
  position: absolute;
  inset: 0 auto 0 -20vw;
  width: 76vw;
  min-width: 760px;
  border-radius: 0 999px 999px 0;
  background: var(--aqua-strong);
  content: "";
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: min(1280px, 100% - 48px);
  min-height: 560px;
  margin: 0 auto;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: #061f3c;
  font-size: clamp(48px, 5.8vw, 86px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}

.description {
  max-width: 660px;
  margin: 30px 0 0;
  color: #294057;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 42px;
}

.status-pill {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  padding: 0 24px;
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(245, 130, 18, 0.22);
}

.status-note {
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
}

@media (max-width: 1240px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu {
    position: relative;
    z-index: 10;
    display: block;
  }

  .mobile-menu summary {
    display: flex;
    width: 46px;
    height: 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
  }

  .mobile-menu summary span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .mobile-menu[open] summary span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu[open] summary span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu[open] summary span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu nav {
    position: absolute;
    top: 56px;
    right: 0;
    display: grid;
    min-width: 230px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .mobile-menu nav a {
    display: flex;
    min-height: 46px;
    align-items: center;
    padding: 0 18px;
    color: var(--navy-deep);
    font-size: 16px;
    font-weight: 800;
  }

  .mobile-menu nav a + a {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 860px) {
  .site-header,
  .hero-panel {
    width: min(100% - 48px, 680px);
  }

  .topbar {
    display: none;
  }

  .site-header {
    min-height: 88px;
  }

  .brand {
    font-size: 22px;
  }

  .hero {
    min-height: auto;
    padding: 50px 0 76px;
  }

  .hero::before {
    inset: 0 auto 0 -32vw;
    width: 128vw;
    min-width: 0;
  }

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

  .hero-copy {
    max-width: 360px;
  }

  .eyebrow {
    margin-bottom: 26px;
    font-size: 15px;
    line-height: 1.35;
  }

  h1 {
    line-height: 1.08;
  }

  .description {
    max-width: 350px;
    margin-top: 34px;
    font-size: 18px;
    line-height: 1.62;
  }

  .hero-actions {
    gap: 18px;
    margin-top: 44px;
  }
}

@media (max-width: 460px) {
  .brand {
    gap: 8px;
    font-size: 19px;
  }

  .brand img {
    width: 44px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}
