:root {
  --navy: #071b3d;
  --deep-blue: #0b3f91;
  --royal-blue: #1269d3;
  --light-blue: #eaf4ff;
  --pale-blue: #f3f8ff;
  --gold: #f5bd31;
  --gold-dark: #c88a08;
  --white: #ffffff;
  --soft-shadow: 0 20px 55px rgba(7, 27, 61, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--navy);
  background:
    radial-gradient(circle at 15% 10%, rgba(245, 189, 49, 0.18), transparent 26%),
    radial-gradient(circle at 90% 8%, rgba(18, 105, 211, 0.20), transparent 28%),
    linear-gradient(135deg, #ddecff 0%, #f7fbff 45%, #dbeeff 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(18, 105, 211, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 105, 211, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.55), transparent 70%);
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 28px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 30px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 27, 61, 0.98), rgba(11, 63, 145, 0.96) 48%, rgba(18, 105, 211, 0.94));
  box-shadow: var(--soft-shadow);
}

.hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  right: -90px;
  top: -115px;
  background: radial-gradient(circle, rgba(245, 189, 49, 0.44), transparent 64%);
}

.brand-mark {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.22);
}

.brand-mark span {
  color: var(--white);
}

.eyebrow {
  position: relative;
  z-index: 1;
  margin: 20px 0 8px;
  color: #ffe4a0;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

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

.hero h1 {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.03;
  letter-spacing: -1.4px;
}

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-bottom: 28px;
  font-size: 1.17rem;
  line-height: 1.58;
  color: rgba(255,255,255,0.92);
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn, .card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.btn.primary {
  color: var(--navy);
  background: linear-gradient(135deg, #ffe59b, var(--gold));
  box-shadow: 0 12px 25px rgba(245, 189, 49, 0.26);
}

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

.banner-placeholder {
  margin: 24px 0;
  min-height: 250px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
  border: 3px dashed rgba(245, 189, 49, 0.72);
  background:
    linear-gradient(135deg, rgba(18, 105, 211, 0.95), rgba(7, 27, 61, 0.93)),
    var(--deep-blue);
  color: var(--white);
  box-shadow: var(--soft-shadow);
}

.placeholder-title {
  margin-bottom: 8px;
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffe59b;
}

.intro-card, .why-section {
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 105, 211, 0.18);
  box-shadow: 0 14px 36px rgba(7, 27, 61, 0.10);
  backdrop-filter: blur(10px);
}

.intro-card h2, .why-section h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  margin-bottom: 12px;
}

.intro-card p, .why-section p, .choice-card p {
  font-size: 1.03rem;
  line-height: 1.58;
}

.choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 24px 0;
}

.choice-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(234,244,255,0.92));
  border: 1px solid rgba(18, 105, 211, 0.20);
  box-shadow: 0 16px 42px rgba(7, 27, 61, 0.12);
  display: flex;
  flex-direction: column;
}

.choice-card.featured {
  color: var(--white);
  background: linear-gradient(135deg, var(--deep-blue), var(--royal-blue));
  border: 2px solid rgba(245, 189, 49, 0.82);
  transform: scale(1.02);
}

.icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.65rem;
  background: rgba(18, 105, 211, 0.12);
}

.featured .icon {
  background: rgba(255, 255, 255, 0.14);
}

.choice-card h3 {
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.choice-card p {
  margin-bottom: 22px;
}

.card-link {
  margin-top: auto;
  color: var(--white);
  background: linear-gradient(135deg, var(--deep-blue), var(--royal-blue));
}

.featured .card-link {
  color: var(--navy);
  background: linear-gradient(135deg, #ffe59b, var(--gold));
}

.why-section {
  background:
    linear-gradient(135deg, rgba(7, 27, 61, 0.98), rgba(11, 63, 145, 0.94));
  color: var(--white);
  border: 1px solid rgba(245, 189, 49, 0.28);
}

.why-section h2 {
  color: #ffe59b;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-grid div {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.why-grid h3 {
  margin-bottom: 8px;
  color: #ffe59b;
}

footer {
  margin-top: 10px;
  padding: 28px 16px 34px;
  text-align: center;
  color: var(--navy);
}

.footer-brand {
  font-size: 1.45rem;
  font-weight: 800;
}

footer p {
  margin: 6px 0;
}

.copyright {
  font-size: 0.88rem;
  opacity: 0.72;
}

@media (max-width: 880px) {
  .hero {
    padding: 32px 24px;
  }

  .choices, .why-grid {
    grid-template-columns: 1fr;
  }

  .choice-card.featured {
    transform: none;
  }
}

@media (max-width: 540px) {
  .page-shell {
    width: min(100% - 22px, 1120px);
    padding-top: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .btn, .card-link {
    width: 100%;
  }

  .banner-placeholder {
    min-height: 190px;
  }

  .intro-card, .why-section, .choice-card {
    padding: 24px;
  }
}
