/* ============================================================
   Uman Solutions — Workplace-Ready HR Generalist Program
   Static production stylesheet (no build step required)
   ============================================================ */

@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-normal.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-italic.woff2') format('woff2');
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('../fonts/source-sans-3-normal.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('../fonts/source-sans-3-italic.woff2') format('woff2');
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #16283a;
  --navy: #1c3a5b;
  --navy-deep: #0f2233;
  --navy-soft: #24466b;
  --teal: #2e8b9d;
  --teal-dark: #1d6475;
  --gold: #a87f3d;
  --gold-bright: #c9a86a;
  --gold-soft: #efe3cb;
  --paper: #faf6ef;
  --paper-2: #f3ecdf;
  --white: #ffffff;
  --line: rgba(22, 40, 58, 0.14);
  --line-light: rgba(250, 246, 239, 0.16);
  --shadow-lg: 0 30px 60px -18px rgba(15, 34, 51, 0.22);
  --shadow-md: 0 16px 36px -14px rgba(15, 34, 51, 0.18);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold-soft); color: var(--navy-deep); }

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

a { color: var(--teal-dark); text-underline-offset: 3px; }
a:hover { color: var(--navy); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 200;
  background: var(--navy-deep);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; color: var(--paper); }

.wrap {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  color: var(--navy-deep);
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 5.6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
p { margin: 0 0 1.1rem; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: rgba(22, 40, 58, 0.82); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: '';
  width: 2.2rem;
  height: 2px;
  background: var(--gold);
  flex: none;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: '';
  width: 2.2rem;
  height: 2px;
  background: var(--gold);
  flex: none;
}

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--navy-deep);
  color: var(--paper);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0.55rem 1rem;
}
.announce span + span::before {
  content: '|';
  margin: 0 0.75rem;
  color: var(--gold-bright);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -18px rgba(15, 34, 51, 0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: clamp(46px, 4.2vw, 58px); width: auto; }

.main-nav { margin-left: auto; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.8vw, 1.7rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  position: relative;
  display: inline-block;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.main-nav a:hover::after,
.main-nav a.is-active::after { transform: scaleX(1); }
.main-nav a.is-active { color: var(--navy); }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--navy-deep);
  transition: transform 0.3s var(--ease-out), top 0.3s var(--ease-out), opacity 0.2s;
}
.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 23px; }
.nav-toggle span:nth-child(3) { top: 29px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn .arrow { transition: transform 0.3s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--primary {
  background: var(--navy-deep);
  color: var(--paper);
  box-shadow: 0 14px 28px -12px rgba(15, 34, 51, 0.45);
}
.btn--primary:hover {
  background: var(--navy);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 20px 34px -12px rgba(15, 34, 51, 0.5);
}
.btn--gold {
  background: var(--gold-bright);
  color: var(--navy-deep);
}
.btn--gold:hover { background: var(--gold-soft); color: var(--navy-deep); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: var(--navy-deep);
  border-color: rgba(22, 40, 58, 0.35);
}
.btn--outline:hover { border-color: var(--navy-deep); color: var(--navy-deep); transform: translateY(-2px); }
.btn--sm { padding: 0.6rem 1.2rem; font-size: 0.92rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(3.5rem, 7vw, 6.5rem) 0 clamp(4rem, 7vw, 6rem);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -12%;
  width: 55vw;
  height: 55vw;
  max-width: 780px;
  max-height: 780px;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.22) 0%, rgba(201, 168, 106, 0) 62%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-copy .eyebrow { animation: fadeUp 0.8s var(--ease-out) 0.1s backwards; }

.hero-programme {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy-deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 0.55rem 1.1rem;
  margin: 0 0 1.2rem;
  box-shadow: 0 8px 20px -12px rgba(15, 34, 51, 0.25);
  animation: fadeUp 0.8s var(--ease-out) 0.25s backwards;
}

.mask { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.mask-inner {
  display: block;
  transform: translateY(115%);
  animation: lineUp 1s var(--ease-out) forwards;
}
.mask:nth-child(1) .mask-inner { animation-delay: 0.15s; }
.mask:nth-child(2) .mask-inner { animation-delay: 0.27s; }
.mask:nth-child(3) .mask-inner { animation-delay: 0.39s; }
.hero-title em { font-style: italic; color: var(--teal-dark); }

.hero-sub {
  max-width: 34rem;
  animation: fadeUp 0.9s var(--ease-out) 0.55s backwards;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0 2.2rem;
  animation: fadeUp 0.9s var(--ease-out) 0.7s backwards;
}
.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.85s backwards;
}
.proof-strip li {
  position: relative;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  padding-left: 1.1rem;
}
.proof-strip li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

/* Hero document collage */
.hero-visual { position: relative; min-height: 520px; animation: fadeUp 1.1s var(--ease-out) 0.4s backwards; }
.doc-stack { position: absolute; inset: 0; }
.doc-card {
  position: absolute;
  background: var(--white);
  border: 1px solid rgba(22, 40, 58, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 1.4rem 1.5rem;
  width: min(320px, 72vw);
}
.doc-card .doc-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(46, 139, 157, 0.1);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  margin-bottom: 0.8rem;
}
.doc-card h4 { font-size: 1.15rem; margin-bottom: 0.9rem; }
.doc-line {
  height: 8px;
  border-radius: 4px;
  background: var(--paper-2);
  margin-bottom: 0.55rem;
}
.doc-line.w-90 { width: 90%; } .doc-line.w-75 { width: 75%; }
.doc-line.w-60 { width: 60%; } .doc-line.w-45 { width: 45%; }

.doc-check {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0.4rem 0;
}
.doc-check .box {
  flex: none;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid var(--teal);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 0.75rem;
  line-height: 1;
}
.doc-check.done .box { background: var(--teal); border-color: var(--teal); color: var(--white); }

.doc-seal {
  position: absolute;
  right: 1.2rem;
  bottom: 1.1rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
  transform: rotate(-8deg);
}

.doc-card--a { top: 0; left: 0; transform: rotate(-2.5deg); }
.doc-card--b { top: 31%; right: 0; transform: rotate(2deg); }
.doc-card--c { bottom: 0; left: 7%; transform: rotate(-1.5deg); }

.parallax { position: absolute; inset: 0; will-change: transform; }
.float-slow { animation: floaty 7s ease-in-out infinite alternate; }
.float-slower { animation: floaty 9s ease-in-out 1s infinite alternate; }

@keyframes floaty {
  from { translate: 0 -6px; }
  to { translate: 0 10px; }
}
@keyframes lineUp {
  to { transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--navy-deep);
  color: var(--paper);
  overflow: hidden;
  padding: 1.4rem 0;
  border-block: 1px solid var(--navy-deep);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  white-space: nowrap;
  padding-right: 3.2rem;
  color: rgba(250, 246, 239, 0.9);
}
.marquee-track span i {
  font-style: normal;
  color: var(--gold-bright);
  padding-right: 3.2rem;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Dark sections ---------- */
.section--dark { background: var(--navy-deep); color: rgba(250, 246, 239, 0.86); }
.section--dark h2, .section--dark h3 { color: var(--paper); }
.section--dark .eyebrow { color: var(--gold-bright); }
.section--dark .lead { color: rgba(250, 246, 239, 0.82); }

/* ---------- Gap section ---------- */
.gap-statement {
  max-width: 56rem;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-style: italic;
}
.gap-body { max-width: 46rem; font-size: 1.1rem; }
.ai-note {
  margin-top: 2.6rem;
  padding: 1.8rem 2rem;
  border-left: 3px solid var(--gold-bright);
  background: rgba(250, 246, 239, 0.05);
  border-radius: 0 14px 14px 0;
  max-width: 52rem;
}
.ai-note .kicker {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.7rem;
}
.ai-note p { margin: 0; }

/* ---------- Audience cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2.6rem;
}
.aud-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.8rem 1.6rem;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}
.aud-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.aud-card .num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.aud-card p { margin: 0; font-size: 1rem; font-weight: 600; color: var(--navy-deep); line-height: 1.5; }

.note-box {
  margin-top: 1.6rem;
  padding: 1.4rem 1.8rem;
  background: var(--gold-soft);
  border-radius: 14px;
  font-size: 1rem;
  color: var(--navy-deep);
}
.note-box strong { display: block; font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.4rem; color: var(--gold); }
.note-box p { margin: 0; }

/* ---------- Outcomes ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.split > * { min-width: 0; }
.tick-list { list-style: none; margin: 1.8rem 0 0; padding: 0; display: grid; gap: 1.05rem; }
.tick-list li {
  position: relative;
  padding-left: 2.2rem;
  font-size: 1.02rem;
}
.tick-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.34em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    linear-gradient(var(--paper), var(--paper)) padding-box,
    var(--teal) border-box;
  border: 1.5px solid var(--teal);
}
.tick-list li::after {
  content: '';
  position: absolute;
  left: 4.5px;
  top: calc(0.34em + 4px);
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

/* ---------- Tables ---------- */
.table-scroll { overflow-x: auto; border-radius: 16px; border: 1px solid var(--line); background: var(--white); }
table { width: 100%; border-collapse: collapse; font-size: 0.98rem; min-width: 520px; }
caption { text-align: left; padding: 1rem 1.4rem 0; font-weight: 700; color: var(--navy-deep); }
th, td { text-align: left; padding: 1rem 1.4rem; vertical-align: top; }
thead th {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  border-bottom: 1.5px solid var(--line);
  background: var(--paper-2);
}
tbody tr + tr td { border-top: 1px solid var(--line); }
tbody th { font-weight: 700; color: var(--navy-deep); white-space: nowrap; }
.table-note { margin-top: 1rem; font-size: 0.95rem; color: rgba(22, 40, 58, 0.75); font-style: italic; }

/* ---------- Curriculum ---------- */
.module {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--line);
}
.module-num {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 7vw, 5.6rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--teal);
  user-select: none;
}
@supports not (-webkit-text-stroke: 1px black) {
  .module-num { color: rgba(46, 139, 157, 0.35); }
}
.module h3 { margin-bottom: 0.6rem; }
.module-purpose { color: rgba(22, 40, 58, 0.78); max-width: 46rem; }
.module-topics {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 2rem;
}
.module-topics li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.98rem;
}
.module-topics li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 2px;
  transform: rotate(45deg);
}
.module-output {
  margin-top: 1.5rem;
  padding: 1.1rem 1.4rem;
  background: rgba(46, 139, 157, 0.08);
  border-radius: 12px;
  font-size: 0.95rem;
}
.module-output strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.3rem;
}
.module-output p { margin: 0; }

.capstone {
  margin-top: 1rem;
  background: var(--navy-deep);
  color: rgba(250, 246, 239, 0.88);
  border-radius: 22px;
  padding: clamp(2rem, 5vw, 3.4rem);
  position: relative;
  overflow: hidden;
}
.capstone::after {
  content: '';
  position: absolute;
  right: -90px;
  top: -90px;
  width: 260px;
  height: 260px;
  border: 1.5px solid rgba(201, 168, 106, 0.4);
  border-radius: 50%;
}
.capstone::before {
  content: '';
  position: absolute;
  right: -30px;
  top: -30px;
  width: 140px;
  height: 140px;
  border: 1.5px solid rgba(201, 168, 106, 0.55);
  border-radius: 50%;
}
.capstone h3 { color: var(--paper); }
.capstone .kicker {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.8rem;
}
.capstone p { max-width: 52rem; margin: 0; position: relative; z-index: 1; }

/* ---------- How it works stages ---------- */
.stages {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2.8rem;
  counter-reset: stage;
}
.stage {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.7rem 1.3rem 1.5rem;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}
.stage:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stage .stage-num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}
.stage h4 { margin: 0 0 0.5rem; font-size: 1.12rem; }
.stage p { margin: 0; font-size: 0.92rem; color: rgba(22, 40, 58, 0.75); line-height: 1.55; }

.subsection { margin-top: clamp(3.5rem, 7vw, 5.5rem); }

/* ---------- Certificate ---------- */
.cert-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
  background: var(--navy-deep);
  border-radius: 24px;
  padding: clamp(2.2rem, 5vw, 3.6rem);
  color: rgba(250, 246, 239, 0.88);
}
.cert-card h3 { color: var(--paper); }
.cert-seal {
  width: clamp(120px, 16vw, 170px);
  height: clamp(120px, 16vw, 170px);
  border-radius: 50%;
  border: 1.5px solid var(--gold-bright);
  display: grid;
  place-items: center;
  position: relative;
  flex: none;
}
.cert-seal::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(201, 168, 106, 0.6);
  border-radius: 50%;
}
.cert-seal span {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-bright);
}
.cert-clarify {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-light);
  font-size: 0.95rem;
  color: rgba(250, 246, 239, 0.7);
}
.cert-clarify p { margin: 0; }

/* ---------- Career support ---------- */
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.2rem; }
.support-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.6rem;
  background: var(--white);
}
.support-item .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(46, 139, 157, 0.1);
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  margin-bottom: 1rem;
}
.support-item h4 { margin: 0 0 0.4rem; font-size: 1.1rem; }
.support-item p { margin: 0; font-size: 0.95rem; color: rgba(22, 40, 58, 0.75); }

.no-guarantee {
  margin-top: 1.6rem;
  border: 1.5px dashed var(--gold);
  border-radius: 14px;
  padding: 1.4rem 1.8rem;
  background: rgba(201, 168, 106, 0.08);
}
.no-guarantee strong { color: var(--navy-deep); }
.no-guarantee p { margin: 0; }

/* ---------- Fees ---------- */
.fee-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem 3rem;
  margin-bottom: 2.5rem;
}
.fee-price {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 6rem);
  line-height: 1;
  color: var(--navy-deep);
}
.fee-price small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.fee-note { max-width: 26rem; font-size: 1rem; color: rgba(22, 40, 58, 0.78); }
.fee-notes { display: grid; gap: 1rem; margin-top: 1.8rem; }
.fee-callout {
  border-left: 3px solid var(--teal);
  background: var(--white);
  border-radius: 0 12px 12px 0;
  padding: 1.2rem 1.6rem;
  font-size: 0.98rem;
}
.fee-callout p { margin: 0; }
.fee-callout strong { color: var(--navy-deep); }

/* ---------- Trainer ---------- */
.trainer-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.trainer-name {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: 0.3rem;
}
.trainer-role { color: var(--teal-dark); font-weight: 700; font-size: 1.05rem; margin-bottom: 1.8rem; }
.trainer-bio p { color: rgba(22, 40, 58, 0.82); }
.philosophy {
  border-left: 3px solid var(--gold);
  padding-left: 1.4rem;
  margin: 1.6rem 0;
}
.philosophy .kicker {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.markers { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.8rem 0 2rem; padding: 0; list-style: none; }
.markers li {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

/* ---------- FAQs ---------- */
.faq-list { max-width: 56rem; margin-top: 2.4rem; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1.3rem 0.2rem;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--navy-deep);
  list-style: none;
  transition: color 0.25s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--teal-dark); }
.faq-list summary .plus {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  transition: transform 0.35s var(--ease-out), background-color 0.3s ease, border-color 0.3s ease;
}
.faq-list summary .plus::before {
  content: '+';
  font-size: 1.15rem;
  line-height: 1;
  color: var(--teal-dark);
}
.faq-list details[open] summary .plus { transform: rotate(45deg); background: var(--navy-deep); border-color: var(--navy-deep); }
.faq-list details[open] summary .plus::before { color: var(--gold-bright); }
.faq-answer { padding: 0 3rem 1.4rem 0.2rem; color: rgba(22, 40, 58, 0.8); }
.faq-answer p { margin: 0; }

/* ---------- Contact ---------- */
.contact-band {
  background: var(--navy-deep);
  color: rgba(250, 246, 239, 0.88);
  border-radius: 28px;
  padding: clamp(2.6rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.contact-band::before {
  content: '';
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 340px;
  height: 340px;
  border: 1.5px solid rgba(201, 168, 106, 0.35);
  border-radius: 50%;
}
.contact-band h2 { color: var(--paper); }
.contact-band .lead { color: rgba(250, 246, 239, 0.82); max-width: 44rem; }
.email-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.4rem;
  margin: 1.8rem 0;
}
.email-value {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1.5px solid var(--gold-bright);
  padding-bottom: 0.15rem;
}
.email-value:hover { color: var(--gold-bright); }
.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: transparent;
  border: 1.5px solid rgba(250, 246, 239, 0.35);
  color: var(--paper);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.copy-btn:hover { border-color: var(--gold-bright); background: rgba(201, 168, 106, 0.12); }
.response-note { font-size: 0.95rem; color: rgba(250, 246, 239, 0.68); margin-top: 1.4rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(250, 246, 239, 0.75); padding: 3.5rem 0 2rem; border-top: 1px solid rgba(201, 168, 106, 0.25); }
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--line-light);
}
.footer-brand img { height: 54px; width: auto; margin-bottom: 1rem; filter: drop-shadow(0 0 12px rgba(250,246,239,0.12)); }
.footer-brand p { margin: 0 0 0.8rem; max-width: 26rem; font-size: 0.98rem; }
.footer-brand a { color: var(--paper); }
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; }
.footer-nav a { color: rgba(250, 246, 239, 0.75); text-decoration: none; font-size: 0.95rem; }
.footer-nav a:hover { color: var(--gold-bright); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.6rem;
  font-size: 0.88rem;
  color: rgba(250, 246, 239, 0.55);
}

/* ---------- Legal pages ---------- */
.legal-hero { background: var(--navy-deep); color: var(--paper); padding: clamp(3rem, 6vw, 5rem) 0; }
.legal-hero h1 { color: var(--paper); font-size: clamp(2.2rem, 4.6vw, 3.4rem); margin-bottom: 0.6rem; }
.legal-hero .effective { color: var(--gold-bright); font-size: 0.95rem; letter-spacing: 0.06em; }
.legal-body { max-width: 50rem; padding: clamp(3rem, 6vw, 5rem) 0; }
.legal-body h2 { font-size: 1.45rem; margin-top: 2.6rem; display: flex; gap: 0.8rem; align-items: baseline; }
.legal-body h2 .sec-num { color: var(--gold); font-size: 1rem; font-family: var(--font-body); font-weight: 700; }
.legal-body p { color: rgba(22, 40, 58, 0.82); }
.legal-caution {
  background: var(--gold-soft);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  font-size: 0.92rem;
  color: var(--navy-deep);
}

/* ---------- Reveal on scroll ---------- */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s var(--ease-out);
  transition-delay: var(--d, 0s);
}
html.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 480px; max-width: 560px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .stages { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr; }
  .trainer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .main-nav.is-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 1rem 4vw 1.6rem;
  }
  .main-nav.is-open ul { flex-direction: column; align-items: flex-start; gap: 0.2rem; }
  .main-nav.is-open a { display: block; padding: 0.65rem 0; font-size: 1.05rem; }
  .header-cta { display: none; }
  .main-nav.main-nav--legal { display: block; }
  .support-grid { grid-template-columns: 1fr; }
  .cert-card { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 1rem; }
  .card-grid { grid-template-columns: 1fr; }
  .stages { grid-template-columns: 1fr; }
  .module { grid-template-columns: 1fr; gap: 0.8rem; }
  .module-topics { grid-template-columns: 1fr; }
  .hero-visual { min-height: 560px; }
  .doc-card { width: min(290px, 82vw); }
  .doc-card--b { top: 34%; }
  .announce { font-size: 0.78rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .mask-inner { transform: none; animation: none; }
  .marquee-track { animation: none; flex-wrap: wrap; width: 100%; }
  .float-slow, .float-slower { animation: none; }
  html.js [data-reveal] { opacity: 1; transform: none; }
}
