
:root {
  --blue: #0047ba;
  --blue-dark: #062b4f;
  --blue-deep: #071936;
  --blue-soft: #eaf1ff;
  --white: #ffffff;
  --off-white: #f6f6f6;
  --text: #101828;
  --muted: #667085;
  --line: rgba(16, 24, 40, 0.1);
  --glass: rgba(255, 255, 255, 0.09);
  --glass-border: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 80px rgba(6, 43, 79, 0.16);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "Inter", Arial, sans-serif; background: var(--off-white); color: var(--text); line-height: 1.5; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 800; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 840px; }
.hero {
  position: relative;
  min-height: 760px;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.10), transparent 26%),
    radial-gradient(circle at 82% 34%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(135deg, #0a4aae 0%, #123f8a 40%, #09295b 70%, #071936 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent 92%);
  pointer-events: none;
}
.hero-glow { position: absolute; border-radius: 999px; filter: blur(10px); pointer-events: none; }
.hero-glow-one { width: 520px; height: 520px; right: -200px; top: 120px; background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 68%); }
.hero-glow-two { width: 360px; height: 360px; left: -160px; bottom: -140px; background: radial-gradient(circle, rgba(74, 144, 255, 0.20), transparent 70%); }
.header { position: relative; z-index: 5; padding: 28px 0; }
.header-content { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo-link { display: inline-flex; align-items: center; }
.logo { width: 156px; max-height: 56px; object-fit: contain; display:block; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.header-link, .header-cta {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px;
  padding: 0 18px; border-radius: 999px; font-size: 14px; font-weight: 700; transition: 0.2s ease;
}
.header-link { color: rgba(255,255,255,0.78); }
.header-link:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.header-cta { border: 1px solid var(--glass-border); background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(12px); }
.header-cta:hover { background: rgba(255, 255, 255, 0.14); }
.hero-grid { position: relative; z-index: 3; display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 60px; align-items: center; padding: 74px 0 116px; }
.eyebrow, .section-label {
  display: inline-flex; align-items: center; width: fit-content; padding: 8px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase;
}
.eyebrow { background: rgba(255, 255, 255, 0.12); color: var(--white); }
.section-label { margin-bottom: 18px; background: var(--blue-soft); color: var(--blue); }
.hero-title { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; line-height: 0.96; }
.hero-title-kicker { font-size: clamp(26px, 3vw, 40px); font-weight: 700; letter-spacing: -0.05em; color: rgba(255,255,255,0.96); }
.hero-title-year { font-size: clamp(64px, 8vw, 110px); font-weight: 800; letter-spacing: -0.08em; }
.hero-subtitle { margin-top: 28px; font-size: clamp(22px, 2.45vw, 30px); line-height: 1.14; font-weight: 700; max-width: 660px; }
.hero-text { margin-top: 20px; max-width: 640px; color: rgba(255, 255, 255, 0.82); font-size: 18px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 24px; border-radius: 999px; font-weight: 800; transition: 0.2s ease; }
.btn-primary { background: var(--white); color: var(--blue); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14); }
.btn-secondary { color: var(--white); border: 1px solid var(--glass-border); background: rgba(255, 255, 255, 0.06); }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.12); }
.hero-note { margin-top: 20px; max-width: 720px; color: rgba(255, 255, 255, 0.68); font-size: 13px; }
.hero-card {
  position: relative; padding: 34px; border-radius: var(--radius-lg); background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16); backdrop-filter: blur(16px); box-shadow: var(--shadow);
}
.card-badge { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,0.14); font-weight: 800; font-size: 12px; }
.hero-card h2 { margin-top: 24px; font-size: clamp(24px, 2.7vw, 34px); letter-spacing: -0.04em; line-height: 1.08; }
.hero-card p { margin-top: 16px; color: rgba(255, 255, 255, 0.82); font-size: 16px; }
.hero-card ul { display: grid; gap: 14px; margin-top: 24px; list-style: none; }
.hero-card li { position: relative; padding-left: 28px; color: rgba(255, 255, 255, 0.94); font-weight: 600; }
.hero-card li::before { content: "✓"; position: absolute; left: 0; top: 0; font-weight: 900; }
.hero-card-actions { margin-top: 26px; display: grid; gap: 10px; }
.mini-link { color: #fff; font-weight: 700; font-size: 14px; opacity: 0.92; }
.mini-link:hover { opacity: 1; text-decoration: underline; }
.section { padding: 96px 0; background: var(--white); }
.section-light, .support-section { background: var(--off-white); }
.section h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.05; letter-spacing: -0.055em; font-weight: 800; color: var(--text); }
.section p { margin-top: 18px; color: var(--muted); font-size: 18px; }
.section-heading { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 34px; align-items: end; margin-bottom: 34px; }
.section-heading .section-label { grid-column: 1 / -1; margin-bottom: 0; }
.section-heading p { max-width: 560px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-card { min-height: 250px; padding: 30px; border-radius: var(--radius-md); background: var(--off-white); border: 1px solid var(--line); transition: 0.2s ease; }
.step-card:hover { transform: translateY(-3px); box-shadow: 0 18px 45px rgba(16, 24, 40, 0.08); }
.step-card span { display: inline-flex; margin-bottom: 24px; color: var(--blue); font-size: 14px; font-weight: 900; }
.step-card h3 { font-size: 24px; letter-spacing: -0.035em; }
.step-card p { font-size: 15px; }
.support-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: 44px; align-items: start; }
.info-box { margin-top: 28px; padding: 20px; border-radius: var(--radius-sm); background: var(--blue-soft); color: var(--blue-dark); font-size: 15px; }
.support-card { padding: 30px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line); box-shadow: 0 20px 60px rgba(16, 24, 40, 0.08); }
.support-card h3 { margin-bottom: 18px; font-size: 26px; letter-spacing: -0.04em; }
.resource-link { display: grid; gap: 4px; padding: 18px; border-radius: var(--radius-sm); border: 1px solid rgba(0, 71, 186, 0.18); color: var(--blue); font-weight: 800; transition: 0.2s ease; }
.resource-link + .resource-link { margin-top: 12px; }
.resource-link span { color: var(--muted); font-size: 13px; font-weight: 600; }
.resource-link:hover { background: var(--blue-soft); }
.resource-link.disabled { color: var(--text); background: #fafafa; opacity: 0.78; cursor: not-allowed; }
.resource-link.disabled:hover { background: #fafafa; }
.footer { background: var(--blue-deep); color: rgba(255,255,255,0.78); }
.footer-main { display: grid; grid-template-columns: 1fr 0.95fr; gap: 56px; padding: 46px 0 30px; }
.footer-brand { max-width: 520px; }
.footer-logo { width: 168px !important; height: auto !important; max-width: 168px !important; max-height: 54px !important; object-fit: contain; display:block; margin-bottom: 18px; }
.footer-tagline { color: rgba(255,255,255,0.78); font-size: 16px; line-height: 1.6; }
.footer-meta { margin-top: 18px; color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; }
.footer-contact h3 { margin-bottom: 18px; color: var(--white); font-size: 28px; letter-spacing: -0.03em; }
.footer-contact p { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.7; }
.footer-contact-link { display: block; margin-top: 18px; color: var(--white); font-size: 16px; font-weight: 600; }
.footer-contact-link:hover { text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0 28px; border-top: 1px solid rgba(255,255,255,0.14); font-size: 13px; color: rgba(255,255,255,0.58); }
@media (max-width: 920px) {
  .hero { min-height: auto; }
  .hero-grid, .support-grid, .section-heading { grid-template-columns: 1fr; }
  .hero-grid { padding: 54px 0 80px; }
  .steps { grid-template-columns: 1fr; }
  .section-heading { gap: 10px; }
}

@media (max-width: 920px) {
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { display: grid; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .header { padding: 20px 0; }
  .logo { width: 138px; }
  .nav-actions { gap: 8px; }
  .header-link { display: none; }
  .header-cta { min-height: 40px; padding: 0 14px; font-size: 12px; }
  .hero-card, .support-card { padding: 24px; }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .section { padding: 68px 0; }
  .footer-main, .footer-bottom { grid-template-columns: 1fr; display: grid; }
}
