
:root {
  --navy: #07152f;
  --navy-2: #0d2148;
  --blue: #2b59ff;
  --teal: #00a6a6;
  --mint: #4fd1c5;
  --sky: #eef4ff;
  --paper: #ffffff;
  --ink: #12213d;
  --muted: #5f6f89;
  --line: #dfe7f2;
  --success: #087f5b;
  --shadow: 0 20px 60px rgba(7, 21, 47, .10);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: #fff; color: #000; padding: .8rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }
.narrow { width: min(840px, calc(100% - 2rem)); margin-inline: auto; }
.section { padding: 88px 0; }
.section-sm { padding: 54px 0; }
.bg-soft { background: linear-gradient(180deg, #f7faff 0%, #eef5ff 100%); }
.bg-navy { background: var(--navy); color: #fff; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem; padding: .42rem .75rem;
  border-radius: 999px; background: #e8efff; color: #2445b7;
  font-weight: 750; font-size: .82rem; letter-spacing: .02em;
}
.eyebrow::before { content: ""; width: .55rem; height: .55rem; border-radius: 50%; background: var(--teal); }
h1, h2, h3 { color: var(--navy); line-height: 1.12; letter-spacing: -.025em; margin-top: 0; }
h1 { font-size: clamp(2.55rem, 7vw, 5.4rem); margin-bottom: 1.25rem; }
h2 { font-size: clamp(2rem, 4.3vw, 3.45rem); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }
.lead { font-size: clamp(1.08rem, 2vw, 1.3rem); color: var(--muted); max-width: 760px; }
.bg-navy .lead { color: #cbd7ee; }
.muted { color: var(--muted); }
.kicker { font-weight: 800; color: var(--blue); text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; }
.note {
  border-left: 4px solid var(--teal); background: #effcf9;
  padding: 1rem 1.1rem; border-radius: 0 14px 14px 0;
}
.badge {
  display: inline-flex; align-items: center; gap: .45rem; padding: .42rem .75rem;
  border-radius: 999px; background: #eef2ff; color: #3344a5; font-weight: 700; font-size: .85rem;
}

.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px); border-bottom: 1px solid rgba(223,231,242,.9);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 188px; height: auto; border-radius: 9px; }
.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  text-decoration: none; padding: .72rem .86rem; border-radius: 12px;
  color: #243453; font-weight: 700; font-size: .94rem;
}
.nav a:hover, .nav a[aria-current="page"] { background: #eef3ff; color: var(--blue); }
.nav-toggle {
  display: none; border: 1px solid var(--line); background: #fff; border-radius: 12px;
  padding: .68rem .8rem; color: var(--navy); font-weight: 800;
}

.btns { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 48px; padding: .78rem 1.1rem; border-radius: 14px;
  text-decoration: none; font-weight: 800; border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--blue), #1740d2); color: #fff; box-shadow: 0 12px 30px rgba(43,89,255,.24); }
.btn-secondary { background: #fff; color: var(--navy); border-color: var(--line); }
.btn-teal { background: linear-gradient(135deg, var(--teal), #047f88); color: #fff; }

.hero {
  position: relative; overflow: hidden; min-height: 690px; display: grid; align-items: center;
  background:
    radial-gradient(circle at 80% 15%, rgba(79,209,197,.23), transparent 30%),
    radial-gradient(circle at 22% 0%, rgba(43,89,255,.19), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #fff 72%);
}
.hero::after {
  content: ""; position: absolute; inset: auto -8% -52% 44%; height: 680px;
  background: linear-gradient(135deg, rgba(43,89,255,.08), rgba(0,166,166,.08));
  transform: rotate(-10deg); border-radius: 90px;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.18fr .82fr; gap: 4rem; align-items: center; }
.hero h1 span { background: linear-gradient(135deg, var(--blue), var(--teal)); -webkit-background-clip: text; color: transparent; }
.hero-panel {
  background: rgba(255,255,255,.88); border: 1px solid rgba(217,228,243,.95);
  border-radius: 32px; padding: 1.3rem; box-shadow: var(--shadow); backdrop-filter: blur(8px);
}
.dashboard {
  border-radius: 24px; background: var(--navy); color: #fff; padding: 1.4rem;
  min-height: 420px; position: relative; overflow: hidden;
}
.dashboard::before {
  content: ""; position: absolute; width: 250px; height: 250px; border-radius: 50%;
  background: rgba(43,89,255,.34); right: -90px; top: -80px; filter: blur(2px);
}
.dashboard h3 { margin: .3rem 0 1.2rem; }
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.mini-card {
  position: relative; z-index: 1; min-height: 120px; border-radius: 18px;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.12); padding: 1rem;
}
.mini-card strong { display: block; font-size: 1.55rem; color: #fff; }
.mini-card span { color: #b9c7df; font-size: .9rem; }
.progress { height: 8px; background: rgba(255,255,255,.12); border-radius: 999px; overflow: hidden; margin-top: 1rem; }
.progress i { display: block; height: 100%; background: linear-gradient(90deg, var(--mint), #fff); border-radius: inherit; }

.trustbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.25rem 0; }
.trust-item { display: flex; align-items: center; gap: .8rem; color: #33445f; font-weight: 750; }
.icon {
  flex: 0 0 auto; display: inline-grid; place-items: center; width: 42px; height: 42px;
  border-radius: 13px; background: #edf3ff; color: var(--blue); font-weight: 900;
}

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.45rem; box-shadow: 0 14px 40px rgba(7,21,47,.05);
}
.card:hover { border-color: #bdccf4; box-shadow: var(--shadow); }
.card .icon { margin-bottom: 1rem; }
.card p { color: var(--muted); }
.card-link { color: var(--blue); font-weight: 850; text-decoration: none; }
.card-link:hover { text-decoration: underline; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.founder-figure { margin: 0; text-align: center; }
.founder-photo { width: 100%; max-width: 380px; aspect-ratio: 551/696; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); display: block; margin: 0 auto; }
.founder-figure figcaption { margin-top: 1rem; font-weight: 800; color: var(--navy); }
.founder-figure figcaption .muted { font-weight: 500; }
.contact-person { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.6rem; }
.contact-person img { width: 84px; height: 84px; object-fit: cover; object-position: center top; border-radius: 50%; box-shadow: var(--shadow); flex: 0 0 auto; }
.contact-person strong { color: var(--navy); }
.list-check { list-style: none; padding: 0; margin: 1.35rem 0; }
.list-check li { position: relative; padding-left: 2rem; margin: .75rem 0; }
.list-check li::before {
  content: "✓"; position: absolute; left: 0; top: .05rem; width: 1.35rem; height: 1.35rem;
  display: grid; place-items: center; border-radius: 50%; background: #dff8f1; color: var(--success);
  font-size: .8rem; font-weight: 900;
}
.feature-panel {
  padding: 2rem; border-radius: 30px; background:
  radial-gradient(circle at 15% 5%, rgba(79,209,197,.2), transparent 28%),
  linear-gradient(145deg, var(--navy), #10295a);
  color: #fff; box-shadow: var(--shadow);
}
.feature-panel h3 { color: #fff; }
.feature-panel p { color: #cbd7ee; }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.step { counter-increment: step; padding: 1.35rem; border-top: 3px solid #cbd8f8; background: #fff; border-radius: 0 0 20px 20px; }
.step::before {
  content: counter(step, decimal-leading-zero); display: block; color: var(--blue);
  font-size: 1.8rem; font-weight: 900; margin-bottom: .7rem;
}

.quote {
  padding: 2rem; border-radius: 28px; background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow); font-size: 1.18rem;
}

.page-hero {
  padding: 92px 0 68px; background:
  radial-gradient(circle at 85% 0%, rgba(79,209,197,.18), transparent 28%),
  linear-gradient(180deg, #f5f9ff, #fff);
}
.page-hero h1 { font-size: clamp(2.45rem, 6vw, 4.6rem); max-width: 900px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .5rem; color: var(--muted); font-size: .92rem; margin-bottom: 1.2rem; }
.breadcrumbs a { color: var(--blue); text-decoration: none; }

.course-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.course-card { display: flex; flex-direction: column; min-height: 100%; }
.course-meta { display: flex; flex-wrap: wrap; gap: .45rem; margin: .8rem 0 1rem; }
.course-card .card-link { margin-top: auto; }
.course-code { font-size: .82rem; font-weight: 900; color: var(--teal); letter-spacing: .08em; }

.program-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 2.4rem; align-items: start; }
.program-aside { position: sticky; top: 100px; }
.summary-box { background: var(--navy); color: #fff; border-radius: 24px; padding: 1.4rem; }
.summary-box h3 { color: #fff; }
.summary-row { display: flex; justify-content: space-between; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.summary-row span:first-child { color: #c2cee2; }
.module { padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
.module h3 { margin-bottom: .35rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: .5rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: grid; gap: .4rem; }
.form-field.full { grid-column: 1 / -1; }
label { font-weight: 800; color: #233553; }
input, select, textarea {
  width: 100%; border: 1px solid #cfd9e7; border-radius: 13px; padding: .82rem .9rem;
  background: #fff; color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(43,89,255,.15); border-color: var(--blue); }
textarea { min-height: 150px; resize: vertical; }
.checkline { display: flex; align-items: flex-start; gap: .7rem; }
.checkline input { width: auto; margin-top: .34rem; }
.form-status { min-height: 1.5rem; font-weight: 750; }

.legal h2 { margin-top: 2.7rem; font-size: 1.7rem; }
.legal h3 { margin-top: 1.7rem; }
.legal a { color: var(--blue); }
.legal table { width: 100%; border-collapse: collapse; margin: 1.3rem 0; }
.legal td, .legal th { border: 1px solid var(--line); padding: .75rem; text-align: left; vertical-align: top; }

.cta {
  border-radius: 34px; padding: clamp(2rem, 5vw, 4rem);
  background:
    radial-gradient(circle at 92% 5%, rgba(79,209,197,.25), transparent 29%),
    linear-gradient(135deg, var(--navy), #11306d);
  color: #fff; box-shadow: var(--shadow);
}
.cta h2 { color: #fff; max-width: 820px; }
.cta p { color: #cbd7ee; max-width: 700px; }

.site-footer { background: #061126; color: #c7d2e6; padding: 64px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 2rem; }
.site-footer h3 { color: #fff; font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; }
.site-footer a { color: #dce7fa; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-links { display: grid; gap: .5rem; }
.footer-legal { margin-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.3rem; font-size: .88rem; color: #9eacc5; }
.footer-brand { width: 210px; border-radius: 10px; margin-bottom: 1rem; }

.cookie-note {
  position: fixed; z-index: 60; right: 1rem; bottom: 1rem; width: min(430px, calc(100% - 2rem));
  background: #fff; color: var(--ink); border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow); padding: 1rem; display: none;
}
.cookie-note.is-visible { display: block; }
.cookie-note p { margin: 0 0 .75rem; font-size: .9rem; }

.print-only { display: none; }

@media (max-width: 980px) {
  .hero-grid, .split, .program-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 80px 0; }
  .hero-panel { max-width: 700px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .program-aside { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none; position: absolute; left: 1rem; right: 1rem; top: 70px; padding: .7rem;
    background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow);
    flex-direction: column; align-items: stretch;
  }
  .nav.is-open { display: flex; }
  .nav a { width: 100%; }
  .cards, .course-grid, .steps, .trust-grid, .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .section { padding: 68px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .mini-grid { grid-template-columns: 1fr; }
  .dashboard { min-height: auto; }
  .brand img { width: 160px; }
}
@media print {
  .site-header, .site-footer, .btns, .cookie-note, .no-print { display: none !important; }
  .print-only { display: block; }
  body { font-size: 11pt; }
  .page-hero, .section { padding: 20px 0; }
  .program-layout { display: block; }
  .summary-box { color: #000; background: #fff; border: 1px solid #bbb; }
  .summary-box h3 { color: #000; }
  .summary-row span:first-child { color: #333; }
  .card { box-shadow: none; }
}
