:root {
  --ink: #020617;
  --navy: #0f172a;
  --navy-2: #17233c;
  --slate: #475569;
  --muted: #64748b;
  --line: #d8e0ea;
  --soft: #f6f8fb;
  --white: #ffffff;
  --blue: #0369a1;
  --blue-2: #075985;
  --green: #0f766e;
  --amber: #b45309;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 6px;
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(15, 23, 42, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.brand img {
  width: 124px;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 0.65rem 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  outline: none;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 77px);
  display: grid;
  align-items: center;
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 4vw, 4rem) clamp(3rem, 7vw, 5rem);
  background:
    linear-gradient(115deg, rgba(15, 23, 42, 0.97), rgba(23, 35, 60, 0.92)),
    radial-gradient(circle at 78% 20%, rgba(3, 105, 161, 0.28), transparent 34%),
    var(--navy);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.74fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  color: #bae6fd;
  font-weight: 700;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(2.55rem, 6vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.15rem;
}

.lead {
  max-width: 720px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0.8rem 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button--primary {
  background: #e0f2fe;
  color: #082f49;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.hero-panel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: clamp(1.1rem, 3vw, 1.6rem);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.hero-panel__line {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-panel__line:last-child {
  border-bottom: 0;
}

.mark {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: #e0f2fe;
  color: #082f49;
  display: inline-grid;
  place-items: center;
  font-weight: 900;
}

.hero-panel strong {
  display: block;
  margin-bottom: 0.2rem;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.68);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
}

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

.wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.55fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-head p,
.muted {
  color: var(--slate);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.35rem;
  min-height: 220px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.card--soft {
  background: #f8fafc;
}

.card p,
.legal p,
.legal li {
  color: var(--slate);
}

.tag {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  color: var(--blue-2);
  font-size: 0.82rem;
  font-weight: 800;
  background: #f0f9ff;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.6fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.65rem;
  color: var(--slate);
}

.list li::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 5px;
  margin-top: 0.2rem;
  background:
    linear-gradient(135deg, transparent 48%, var(--green) 49% 58%, transparent 59%),
    linear-gradient(45deg, transparent 51%, var(--green) 52% 61%, transparent 62%),
    #ccfbf1;
}

.band {
  background: var(--navy);
  color: var(--white);
}

.band p {
  color: rgba(255, 255, 255, 0.72);
}

.statement {
  max-width: 900px;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1.35;
  font-weight: 700;
}

.legal {
  background: var(--white);
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 4rem);
}

.legal .wrap {
  max-width: 920px;
}

.legal h1 {
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.legal h2 {
  margin-top: 2rem;
  font-size: 1.45rem;
}

.legal a {
  color: var(--blue-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.not-found {
  min-height: 62vh;
  display: grid;
  place-items: center;
  background: var(--white);
  padding: 4rem 1rem;
  text-align: center;
}

.not-found p {
  color: var(--slate);
  max-width: 620px;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 2rem;
  align-items: start;
  padding: 2.4rem clamp(1rem, 4vw, 4rem);
  background: #09111f;
  color: var(--white);
}

.footer img {
  width: 132px;
  height: auto;
}

.footer p,
.footer address {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
}

.footer nav {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--white);
  outline: none;
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 76px 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    width: 100%;
  }

  .hero__inner,
  .section-head,
  .split,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-inline: 1rem;
  }

  .brand img {
    width: 112px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .card {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
