:root {
  --bg: #061a44;
  --bg-soft: #0d2b68;
  --primary: #0f4fa8;
  --primary-light: #2f8fe8;
  --accent: #f4c21f;
  --text: #f5f8ff;
  --muted: #d9e5ff;
  --card: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(47, 143, 232, 0.28), transparent 30%),
    linear-gradient(135deg, #04112d 0%, #082256 45%, #0b57ad 100%);
  min-height: 100vh;
}

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

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 36px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ffd95a);
  box-shadow: 0 0 0 6px rgba(244, 194, 31, 0.14);
}

.topbar-link {
  color: var(--muted);
  font-weight: 500;
}

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(520px, 72vh, 760px);
  padding: 44px;
  border-radius: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background:
    linear-gradient(90deg, rgba(4, 17, 45, 0.92) 0%, rgba(4, 17, 45, 0.78) 34%, rgba(4, 17, 45, 0.34) 68%, rgba(4, 17, 45, 0.08) 100%),
    linear-gradient(180deg, rgba(11, 87, 173, 0.08), rgba(6, 26, 68, 0.22)),
    url("assets/hero.png") center right / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 600px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 14%, rgba(47, 143, 232, 0.28), transparent 18%),
    linear-gradient(to top, rgba(6, 26, 68, 0.32), transparent 28%);
  pointer-events: none;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff2b3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

h1,
h2,
p,
ul {
  margin: 0;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

.lead {
  margin-top: 22px;
  max-width: 58ch;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #f7d553);
  color: #15223d;
  box-shadow: 0 16px 34px rgba(244, 194, 31, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border);
  color: var(--text);
}

.hero-highlights {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding: 0;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-highlights li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ffe27d);
  box-shadow: 0 0 0 5px rgba(244, 194, 31, 0.12);
}

.message-card {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 26px;
  align-items: start;
  padding: 28px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.message-card h2 {
  margin-top: 14px;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  line-height: 1.15;
  max-width: 16ch;
}

.message-card p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--muted);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
  padding: 8px 0;
  color: rgba(245, 248, 255, 0.82);
  font-size: 0.96rem;
}

.footer-note {
  color: rgba(217, 229, 255, 0.72);
}

@media (max-width: 920px) {
  .message-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 34px 28px;
    background:
      linear-gradient(180deg, rgba(4, 17, 45, 0.9) 0%, rgba(4, 17, 45, 0.7) 42%, rgba(4, 17, 45, 0.38) 100%),
      url("assets/hero.png") 72% center / cover no-repeat;
  }

  h1 {
    max-width: 12ch;
  }

  .message-card h2 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 18px;
  }

  .topbar {
    padding-bottom: 18px;
  }

  .topbar,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 500px;
    padding: 26px 18px;
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(4, 17, 45, 0.92) 0%, rgba(4, 17, 45, 0.72) 46%, rgba(4, 17, 45, 0.42) 100%),
      url("assets/hero.png") 78% center / cover no-repeat;
  }

  .hero-content {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
    max-width: 10ch;
  }

  .lead,
  .message-card p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .message-card {
    padding: 22px 18px;
  }

  .btn {
    width: 100%;
  }
}
