:root {
  --navy-950: #03152f;
  --navy-900: #071c3d;
  --navy-800: #0b2b59;
  --navy-700: #123b73;
  --gold: #e9a83b;
  --gold-light: #ffc85b;
  --ink: #0a2145;
  --muted: #53617a;
  --line: #dfe5ed;
  --soft: #f6f8fb;
  --white: #fff;
  --shadow: 0 20px 55px rgba(4, 25, 57, .12);
  --radius: 16px;
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: currentColor; }
.section-heading { margin: 0; color: var(--ink); font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.08; letter-spacing: -.045em; }
.section-heading.center { text-align: center; }
.section-copy { color: var(--muted); max-width: 620px; }
.accent { color: var(--gold); }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 740px;
  color: var(--white);
  background: radial-gradient(circle at 80% 18%, rgba(26, 72, 128, .65), transparent 30%), var(--navy-950);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -45% 35%;
  height: 520px;
  background: radial-gradient(ellipse, rgba(233,168,59,.16), transparent 66%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; min-height: 740px; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 32px; text-decoration: none; }
.brand img { width: 245px; height: auto; object-fit: contain; object-position: left center; }
.hero h1 { max-width: 620px; margin: 0 0 20px; font-size: clamp(2.8rem, 5.4vw, 5rem); line-height: .99; letter-spacing: -.058em; }
.hero-lede { max-width: 540px; margin: 0 0 22px; font-size: 1.08rem; color: rgba(255,255,255,.87); }
.hero-lede em { color: var(--white); }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 18px; margin: 0 0 25px; padding: 0; list-style: none; color: rgba(255,255,255,.92); font-size: .82rem; font-weight: 700; }
.hero-points li { display: inline-flex; align-items: center; gap: 7px; }
.check { display: inline-grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; color: var(--navy-950); background: var(--gold); font-size: .7rem; font-weight: 900; }
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--navy-950);
  background: var(--gold);
  box-shadow: 0 10px 26px rgba(233,168,59,.2);
  font-weight: 850;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.cta:hover, .cta:focus-visible { transform: translateY(-2px); background: var(--gold-light); box-shadow: 0 14px 32px rgba(233,168,59,.32); }
.cta .arrow { font-size: 1.2rem; line-height: 1; }
.hero-note { display: flex; gap: 8px; align-items: center; margin-top: 18px; color: rgba(255,255,255,.76); font-size: .83rem; }
.fine-print { margin: 20px 0 0; color: rgba(255,255,255,.62); font-size: .77rem; }
.hero-visual { position: relative; min-height: 660px; display: flex; align-items: center; justify-content: flex-end; }
.hero-visual::before { content: ""; position: absolute; width: 520px; height: 520px; right: 0; border-radius: 50%; background: rgba(26,78,133,.28); filter: blur(5px); }
.hero-visual img { position: relative; z-index: 1; width: 100%; max-width: 640px; max-height: 650px; object-fit: cover; object-position: right center; border-radius: 20px 0 0 20px; box-shadow: -22px 28px 60px rgba(0,0,0,.28); }

.benefits { padding: 74px 0 80px; background: var(--white); }
.section-title-line { display: flex; align-items: center; justify-content: center; gap: 17px; margin-bottom: 30px; }
.section-title-line::before, .section-title-line::after { content: ""; width: 42px; height: 2px; background: var(--gold); }
.section-title-line h2 { margin: 0; text-align: center; font-size: clamp(1.45rem, 3vw, 2.2rem); letter-spacing: -.03em; }
.benefit-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.benefit-card { min-height: 218px; padding: 24px 14px 20px; border: 1px solid var(--line); border-radius: 7px; background: linear-gradient(#fff, #fbfcfe); box-shadow: 0 8px 20px rgba(14,42,78,.04); text-align: center; }
.benefit-icon { display: grid; place-items: center; height: 58px; margin-bottom: 12px; color: var(--navy-900); font-size: 2.35rem; }
.benefit-card:nth-child(2) .benefit-icon, .benefit-card:nth-child(3) .benefit-icon { color: var(--gold); }
.benefit-card h3 { margin: 0 0 9px; font-size: .98rem; line-height: 1.2; }
.benefit-card p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.42; }

.why { padding: 80px 0; background: #f8fafc; }
.why-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 48px; }
.why h2 { margin-bottom: 26px; }
.why-list { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
.why-list li { display: flex; align-items: center; gap: 13px; font-size: 1.04rem; }
.why-list .check { flex: 0 0 auto; width: 20px; height: 20px; }
.scene-frame { overflow: hidden; border-radius: 13px; box-shadow: var(--shadow); }
.scene-frame img { width: 100%; aspect-ratio: 1.62; object-fit: cover; }

.gift { padding: 74px 0 82px; color: var(--white); background: var(--navy-950); }
.gift-grid { display: grid; grid-template-columns: .83fr 1.17fr; align-items: center; gap: 48px; }
.gift-art { overflow: hidden; border-radius: 14px; }
.gift-art img { width: 100%; aspect-ratio: 1.2; object-fit: cover; object-position: left center; }
.gift h2 { margin: 0 0 10px; color: var(--white); font-size: clamp(1.85rem, 3vw, 2.65rem); line-height: 1.08; }
.gift-copy { margin: 0 0 30px; color: rgba(255,255,255,.84); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; gap: 14px; }
.steps::before { content: ""; position: absolute; top: 33px; left: 11%; right: 11%; border-top: 2px dotted rgba(255,255,255,.72); }
.step { position: relative; z-index: 1; text-align: center; }
.step-icon { display: grid; place-items: center; width: 66px; height: 66px; margin: 0 auto 9px; border-radius: 50%; color: var(--navy-950); background: #fff; font-size: 1.45rem; }
.step-number { display: grid; place-items: center; width: 23px; height: 23px; margin: -3px auto 7px; border-radius: 50%; color: var(--navy-950); background: var(--gold); font-size: .75rem; font-weight: 900; }
.step h3 { margin: 0 0 5px; color: var(--gold); font-size: .98rem; }
.step p { margin: 0; color: rgba(255,255,255,.76); font-size: .76rem; line-height: 1.38; }
.availability { margin: 28px 0 0; color: rgba(255,255,255,.74); text-align: center; font-size: .8rem; }

.courses { padding: 76px 0 82px; background: var(--white); }
.courses-head { display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; gap: 45px; margin-bottom: 30px; }
.courses-copy p { max-width: 390px; margin: 18px 0 26px; color: var(--muted); }
.cta.dark { color: #fff; background: var(--navy-900); box-shadow: none; }
.cta.dark:hover, .cta.dark:focus-visible { background: var(--navy-700); }
.dashboard { display: grid; grid-template-columns: 120px 1fr; overflow: hidden; border: 1px solid #cfd8e5; border-radius: 8px; box-shadow: var(--shadow); background: #f6f8fc; }
.sidebar { padding: 16px 10px; color: #fff; background: var(--navy-900); }
.sidebar-brand { display: grid; place-items: center; width: 36px; height: 36px; margin: 0 auto 15px; border-radius: 10px; color: var(--gold); border: 1px solid rgba(255,255,255,.25); }
.sidebar ul { display: grid; gap: 5px; margin: 0; padding: 0; list-style: none; }
.sidebar li { padding: 8px 6px; border-radius: 5px; color: rgba(255,255,255,.78); font-size: .67rem; }
.sidebar li.active { color: #fff; background: rgba(255,255,255,.11); }
.dashboard-main { padding: 20px 21px; }
.dashboard-title { margin: 0 0 15px; color: var(--navy-900); font-size: .9rem; }
.course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.course-card { min-height: 130px; padding: 11px 9px; border: 1px solid #dbe2eb; border-radius: 5px; background: #fff; }
.course-card i { display: grid; place-items: center; width: 32px; height: 32px; margin-bottom: 7px; border-radius: 5px; color: #fff; background: var(--navy-900); font-size: .8rem; }
.course-card h3 { margin: 0 0 3px; color: var(--navy-900); font-size: .7rem; }
.course-card p { min-height: 31px; margin: 0; color: var(--muted); font-size: .61rem; line-height: 1.3; }
.course-level { display: block; margin-top: 8px; color: var(--muted); font-size: .57rem; }
.progress { height: 4px; margin-top: 4px; border-radius: 99px; background: #e7ecf2; }
.progress::after { content: ""; display: block; width: 48%; height: 100%; border-radius: inherit; background: #35a466; }

.community { padding: 40px 0 42px; color: #fff; background: var(--navy-950); }
.community h2 { margin: 0 0 25px; color: #fff; text-align: center; font-size: clamp(1.45rem, 3vw, 2rem); }
.community-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.community-item { display: grid; grid-template-columns: 48px 1fr; gap: 12px; align-items: start; }
.community-icon { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-size: 1.25rem; }
.community-item h3 { margin: 0 0 3px; color: var(--gold); font-size: .95rem; }
.community-item p { margin: 0; color: rgba(255,255,255,.78); font-size: .76rem; line-height: 1.4; }
.community-note { margin: 28px 0 0; color: rgba(255,255,255,.72); text-align: center; font-size: .74rem; }

.faq { padding: 76px 0 82px; background: var(--white); }
.faq-list { max-width: 1000px; margin: 28px auto 0; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.faq-item + .faq-item { border-top: 1px solid var(--line); }
.faq-item summary { display: grid; grid-template-columns: 42px 1fr 20px; align-items: center; gap: 12px; padding: 16px 18px; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: var(--gold); background: var(--navy-900); font-weight: 900; }
.faq-question { color: var(--navy-900); font-size: .92rem; font-weight: 800; }
.faq-preview { display: block; margin-top: 2px; color: var(--muted); font-size: .78rem; font-weight: 400; }
.faq-chevron { transition: transform .2s ease; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 50px 18px 72px; color: var(--muted); font-size: .84rem; }

.final-cta { position: relative; overflow: hidden; padding: 52px 0 45px; color: #fff; background: var(--navy-950); text-align: center; }
.final-cta::before, .final-cta::after { position: absolute; color: var(--gold); font-family: "Font Awesome 6 Free"; font-size: 7rem; opacity: .18; }
.final-cta::before { content: "\\f02d"; left: 5%; top: 15px; }
.final-cta::after { content: "\\f201"; right: 5%; bottom: 0; }
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 { margin: 0 0 18px; color: var(--white); font-size: clamp(2rem, 5vw, 3.35rem); letter-spacing: -.045em; }
.final-cta p { max-width: 550px; margin: 16px auto 0; color: rgba(255,255,255,.8); font-size: .78rem; line-height: 1.35; }

footer { padding: 20px 0 76px; color: rgba(255,255,255,.72); background: #020f24; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-brand img { width: 225px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; }
.footer-links a { padding: 0 15px; border-right: 1px solid rgba(255,255,255,.4); font-size: .78rem; text-decoration: none; }
.footer-links a:last-child { border: 0; }
.footer-disclaimer { max-width: 180px; margin: 0; font-size: .7rem; line-height: 1.35; }
.mobile-cta { display: none; }
.toast { position: fixed; z-index: 20; left: 50%; bottom: 24px; transform: translate(-50%, 20px); padding: 12px 17px; border-radius: 99px; color: #fff; background: var(--navy-900); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: .2s ease; font-size: .85rem; }
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

@media (max-width: 1050px) {
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-inner { grid-template-columns: .9fr 1.1fr; }
  .hero { min-height: 680px; }
  .hero-inner { min-height: 680px; }
  .hero-visual { min-height: 570px; }
}

@media (max-width: 820px) {
  .container { width: min(var(--max), calc(100% - 30px)); }
  .hero-inner, .why-grid, .gift-grid, .courses-head { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 38px 0 0; }
  .hero-inner { min-height: 0; gap: 25px; }
  .hero-content { padding-bottom: 4px; }
  .hero-visual { min-height: 0; justify-content: center; }
  .hero-visual img { max-width: 720px; max-height: 510px; border-radius: 14px 14px 0 0; }
  .why-grid { gap: 28px; }
  .courses-head { gap: 30px; }
  .courses-copy p { max-width: none; }
  .community-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-disclaimer { max-width: 280px; }
}

@media (max-width: 560px) {
  body { padding-bottom: 74px; }
  .container { width: min(var(--max), calc(100% - 24px)); }
  .hero { padding-top: 25px; }
  .brand { margin-bottom: 24px; }
  .brand img { width: 215px; }
  .hero h1 { font-size: clamp(2.45rem, 12vw, 3.6rem); }
  .hero-lede { font-size: .98rem; }
  .hero-points { display: grid; gap: 9px; }
  .hero .cta { width: 100%; }
  .hero-visual img { width: 112%; max-width: none; margin-left: -6%; }
  .benefits, .why, .gift, .courses, .faq { padding: 54px 0 60px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .benefit-card { min-height: 202px; padding: 18px 10px 14px; }
  .benefit-icon { height: 50px; font-size: 1.9rem; }
  .benefit-card h3 { font-size: .86rem; }
  .benefit-card p { font-size: .74rem; }
  .why-list li { align-items: flex-start; font-size: .93rem; }
  .why-list .check { margin-top: 2px; }
  .gift-grid { gap: 25px; }
  .gift-art img { aspect-ratio: 1.28; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 24px 10px; }
  .steps::before { display: none; }
  .step p { font-size: .74rem; }
  .dashboard { grid-template-columns: 82px 1fr; }
  .sidebar { padding: 13px 6px; }
  .sidebar li { font-size: .58rem; }
  .dashboard-main { padding: 13px 8px; }
  .course-grid { gap: 6px; }
  .course-card { min-height: 122px; padding: 8px 6px; }
  .course-card h3 { font-size: .61rem; }
  .course-card p { font-size: .55rem; }
  .community-grid { grid-template-columns: 1fr; gap: 18px; }
  .faq-item summary { grid-template-columns: 35px 1fr 16px; gap: 9px; padding: 13px 10px; }
  .faq-question { font-size: .8rem; }
  .faq-preview { font-size: .68rem; }
  .faq-answer { padding: 0 17px 16px 54px; font-size: .75rem; }
  .footer-links a { padding: 0 8px; font-size: .7rem; }
  .mobile-cta { display: flex; position: fixed; z-index: 15; right: 12px; bottom: 12px; left: 12px; align-items: center; justify-content: center; min-height: 52px; border-radius: 10px; color: var(--navy-950); background: var(--gold); box-shadow: 0 8px 24px rgba(0,0,0,.28); font-weight: 850; text-decoration: none; }
}

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