:root {
  --ink: #09111f;
  --ink-2: #13243d;
  --ink-soft: #44546b;
  --muted: #6e7d91;
  --paper: #ffffff;
  --paper-soft: #f6f9fc;
  --paper-warm: #fbf7ee;
  --ivory: #f8f1e3;
  --navy: #050b18;
  --navy-2: #07152b;
  --navy-3: #0d2447;
  --blue: #1d5cff;
  --blue-2: #6bdcff;
  --violet: #7067ff;
  --gold: #c99735;
  --gold-light: #f6dc96;
  --emerald: #1fb981;
  --line: rgba(14, 38, 72, .12);
  --line-strong: rgba(14, 38, 72, .2);
  --glass: rgba(255, 255, 255, .09);
  --glass-line: rgba(255, 255, 255, .16);
  --shadow-card: rgba(8, 19, 38, .12) 0 28px 70px -46px, rgba(8, 19, 38, .08) 0 0 0 1px;
  --shadow-float: rgba(0, 0, 0, .26) 0 42px 110px -60px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --max: 1188px;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif: Georgia, 'Times New Roman', serif;
  --mono: 'SFMono-Regular', 'SF Mono', Consolas, 'Liberation Mono', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(29, 92, 255, .05), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 46%, #ffffff 100%);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
::selection { color: white; background: var(--blue); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow-float);
}
.skip-link:focus { top: 1rem; }
.container { width: min(var(--max), calc(100% - 44px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, .76);
  border-bottom: 1px solid rgba(9, 17, 31, .08);
  backdrop-filter: saturate(170%) blur(22px);
  transition: background .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.9);
  border-bottom-color: rgba(9, 17, 31, .12);
  box-shadow: rgba(9,17,31,.08) 0 18px 42px -32px;
}
.nav-shell {
  width: min(1250px, calc(100% - 36px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  isolation: isolate;
}
.brand-mark-wrap {
  position: relative;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
}
.brand-mark-wrap::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 22px;
  background: radial-gradient(circle at 50% 46%, rgba(216,168,74,.13), transparent 61%);
  z-index: -1;
}
.brand-logo { width: 50px; height: 50px; filter: drop-shadow(0 12px 18px rgba(7, 22, 45, .16)); }
.brand-type { display: flex; flex-direction: column; gap: 4px; line-height: 1; }
.brand-line { display: flex; align-items: baseline; gap: 7px; letter-spacing: -.038em; white-space: nowrap; }
.brand-line strong { color: var(--ink); font-size: 25px; font-weight: 760; }
.brand-line em { color: #9a6a20; font-family: var(--sans); font-size: 25px; font-style: normal; font-weight: 640; letter-spacing: -.035em; }
.brand-type small { color: var(--muted); font-family: var(--mono); font-size: 9.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 20px; color: var(--ink-soft); font-size: 14px; font-weight: 600; }
.nav-links a { position: relative; min-height: 44px; display: inline-flex; align-items: center; transition: color .18s ease, transform .18s ease; }
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0;
  transform: scaleX(.5);
  transition: opacity .18s ease, transform .18s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { opacity: .85; transform: scaleX(1); }
.nav-cta {
  justify-content: center;
  min-height: 44px !important;
  padding: 0 17px;
  border-radius: 999px;
  color: white !important;
  background: linear-gradient(135deg, var(--navy), #163869 58%, var(--blue));
  box-shadow: rgba(7, 22, 45, .18) 0 18px 38px -24px, rgba(246, 220, 150, .32) 0 0 0 1px inset;
}
.nav-cta:hover { transform: translateY(-1px); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 82% 12%, rgba(107,220,255,.24), transparent 26rem),
    radial-gradient(circle at 14% 4%, rgba(246,220,150,.15), transparent 28rem),
    radial-gradient(circle at 54% 108%, rgba(29,92,255,.28), transparent 32rem),
    linear-gradient(135deg, #050b18 0%, #07152b 48%, #0b2449 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,11,24,.72), rgba(5,11,24,.18) 58%, rgba(5,11,24,.44)),
    linear-gradient(180deg, rgba(5,11,24,0) 68%, rgba(5,11,24,.9));
  pointer-events: none;
}
.hero-mesh {
  position: absolute;
  inset: 0;
  opacity: .23;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at 62% 28%, black 0%, transparent 66%);
}
.ambient {
  position: absolute;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  opacity: .34;
}
.ambient-one { right: 0; top: 3rem; background: rgba(29,92,255,.58); }
.ambient-two { left: 12%; bottom: -17rem; background: rgba(201,151,53,.45); }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(500px, 1.02fr);
  gap: clamp(48px, 5.4vw, 80px);
  align-items: start;
  padding: clamp(84px, 8vw, 118px) 0 100px;
}
.hero-copy { max-width: 760px; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow {
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(246,220,150,.38);
  background: rgba(255,255,255,.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), rgba(0,0,0,.18) 0 18px 44px -34px;
  backdrop-filter: blur(14px);
}
.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 0 5px rgba(107,220,255,.12), 0 0 18px rgba(107,220,255,.46);
}
h1, h2, h3, p { margin: 0; }
h1 {
  margin-top: 30px;
  max-width: 780px;
  color: white;
  font-size: clamp(50px, 4.8vw, 76px);
  font-weight: 650;
  line-height: .98;
  letter-spacing: -.066em;
  text-wrap: balance;
}
.hero-subtitle {
  margin-top: 24px;
  max-width: 620px;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.66;
}
.hero-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 13px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: -.01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .nav-links a:focus-visible, .nav-toggle:focus-visible, input:focus-visible { outline: 3px solid rgba(107,220,255,.5); outline-offset: 3px; }
.button-primary {
  color: #08111f;
  background: linear-gradient(135deg, #fff3bd, var(--gold) 72%);
  box-shadow: rgba(201,151,53,.34) 0 26px 50px -24px, rgba(255,255,255,.32) 0 1px inset;
}
.button-secondary {
  color: white;
  background: rgba(255,255,255,.09);
  box-shadow: rgba(255,255,255,.24) 0 0 0 1px inset, rgba(0,0,0,.16) 0 18px 36px -24px;
  backdrop-filter: blur(10px);
}
.trust-row { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.trust-row span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(12px);
}
.trust-row span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 12px rgba(246,220,150,.45); }

.hero-studio {
  position: relative;
  min-height: 690px;
  perspective: 1800px;
  isolation: isolate;
}
.hero-studio::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 52px -18px 40px 34px;
  border-radius: 56px;
  background:
    radial-gradient(circle at 78% 16%, rgba(107,220,255,.18), transparent 25%),
    radial-gradient(circle at 14% 82%, rgba(246,220,150,.14), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.028));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), rgba(0,0,0,.28) 0 46px 100px -68px;
  transform: rotateZ(-1.5deg);
}
.hero-studio::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 16%;
  right: 2%;
  bottom: 24px;
  height: 76px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.48), transparent 68%);
  filter: blur(9px);
  opacity: .6;
}
.device-ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(38px);
  pointer-events: none;
  opacity: .7;
}
.device-ambient-one { width: 360px; height: 360px; right: -4%; top: 0; background: rgba(107,220,255,.25); }
.device-ambient-two { width: 390px; height: 240px; left: 2%; bottom: 6%; background: rgba(246,220,150,.2); }
.studio-beam {
  position: absolute;
  z-index: 0;
  inset: 24px 8% auto auto;
  width: 420px;
  height: 540px;
  transform: rotate(15deg);
  background: linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,0));
  filter: blur(18px);
  opacity: .28;
  clip-path: polygon(40% 0, 72% 0, 100% 100%, 0 100%);
}
.studio-plinth {
  position: absolute;
  z-index: 1;
  left: 7%;
  right: 0;
  bottom: 56px;
  height: 118px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(246,220,150,.18), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.02));
  border-top: 1px solid rgba(255,255,255,.12);
  transform: rotateX(68deg) rotateZ(-2deg);
  transform-origin: center;
  opacity: .86;
}
.studio-plinth span:first-child { position: absolute; inset: 26px 13% auto; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent); }
.studio-plinth span:last-child { position: absolute; inset: 58px 23% auto; height: 1px; background: linear-gradient(90deg, transparent, rgba(246,220,150,.28), transparent); }
.hero-credential-ribbon {
  position: absolute;
  z-index: 5;
  left: 12px;
  top: 34px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  width: 278px;
  padding: 12px 14px;
  border-radius: 24px;
  color: white;
  background: rgba(5,11,24,.62);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: rgba(0,0,0,.22) 0 26px 58px -36px, inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
}
.hero-credential-ribbon > span {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255,240,184,.96), rgba(210,162,71,.88));
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72), rgba(210,162,71,.22) 0 14px 24px -16px;
}
.hero-credential-ribbon > span::before {
  content: "";
  position: absolute;
  inset: 10px 12px;
  border: 3px solid #07172f;
  border-bottom-width: 5px;
  border-radius: 14px 14px 4px 4px;
}
.hero-credential-ribbon strong { display: block; font-size: 14px; letter-spacing: -.02em; }
.hero-credential-ribbon small { display: block; margin-top: 2px; color: rgba(255,255,255,.62); font-size: 11px; line-height: 1.2; }
.laptop-device {
  position: relative;
  z-index: 3;
  width: min(100%, 690px);
  margin: 72px 0 0 auto;
  padding-top: 12px;
  transform: rotateX(5deg) rotateY(-7deg) rotateZ(.5deg);
  transform-style: preserve-3d;
  filter: drop-shadow(0 60px 78px rgba(0,0,0,.42));
}
.laptop-lid {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(238,244,255,.98), rgba(106,124,154,.58) 48%, rgba(11,24,47,.98));
  border: 1px solid rgba(255,255,255,.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72), inset 0 -22px 46px rgba(5,11,24,.3);
}
.laptop-lid::before {
  content: "";
  position: absolute;
  inset: 1px 1px auto;
  height: 42%;
  border-radius: 33px 33px 80px 80px;
  background: linear-gradient(180deg, rgba(255,255,255,.42), transparent);
  pointer-events: none;
}
.screen-glass {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 25px;
  background: #f6f9fc;
  box-shadow: rgba(2,7,19,.52) 0 0 0 1px, inset 0 0 0 1px rgba(255,255,255,.18);
}
.screen-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255,255,255,.24), transparent 32%, transparent 62%, rgba(255,255,255,.12));
  mix-blend-mode: screen;
  pointer-events: none;
}
.device-browser-bar {
  position: relative;
  z-index: 1;
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  color: rgba(255,255,255,.7);
  background: linear-gradient(180deg, rgba(5,11,24,.94), rgba(8,22,43,.9));
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.device-browser-bar span { margin-right: auto; }
.device-browser-bar i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.28); }
.device-browser-bar i:nth-of-type(1) { background: #ffbf5f; }
.device-browser-bar i:nth-of-type(2) { background: #5ee0a5; }
.device-browser-bar i:nth-of-type(3) { background: #6bdcff; }
.exam-sim {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 136px 1fr;
  min-height: 374px;
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 6%, rgba(29,92,255,.1), transparent 13rem),
    linear-gradient(180deg, rgba(255,255,255,.99), rgba(246,249,252,.97));
}
.exam-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 11px;
  padding: 20px 16px;
  color: white;
  background:
    radial-gradient(circle at 30% 12%, rgba(246,220,150,.14), transparent 50%),
    linear-gradient(180deg, #0b2447, #050b18);
  border-right: 1px solid rgba(14,38,72,.12);
}
.academy-seal {
  position: absolute;
  top: 20px;
  left: 18px;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(246,220,150,.42);
  background: rgba(255,255,255,.06);
}
.academy-seal::before {
  content: "";
  position: absolute;
  inset: 12px 13px 11px;
  border: 3px solid var(--gold-light);
  border-bottom-width: 5px;
  border-radius: 14px 14px 4px 4px;
}
.exam-sidebar b { margin-top: auto; font-size: 16px; line-height: 1.05; letter-spacing: -.035em; }
.exam-sidebar small { color: rgba(255,255,255,.56); font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.exam-sidebar i { display: block; width: 100%; height: 6px; border-radius: 99px; background: linear-gradient(90deg, var(--gold-light) var(--h), rgba(255,255,255,.12) 0); }
.exam-main { padding: 22px; display: flex; flex-direction: column; min-width: 0; }
.exam-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.exam-header strong { display: block; margin-top: 7px; color: var(--ink); font-size: clamp(23px, 2.15vw, 31px); line-height: .98; letter-spacing: -.06em; }
.timer-chip { min-height: 40px; display: inline-flex; align-items: center; padding: 0 13px; border-radius: 999px; color: #092047; background: #eef5ff; border: 1px solid rgba(29,92,255,.12); font-family: var(--mono); font-weight: 700; }
.question-panel { margin-top: 16px; padding: 16px; border-radius: 19px; background: #f8fbff; border: 1px solid rgba(14,38,72,.1); box-shadow: rgba(8,19,38,.05) 0 16px 32px -26px; }
.question-tag { display: inline-flex; margin-bottom: 10px; color: var(--blue); font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.question-panel p { color: var(--ink-soft); font-size: 13.5px; line-height: 1.45; }
.simulation-options { margin-top: 14px; display: grid; gap: 9px; }
.sim-option {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 44px;
  padding: 8px 10px;
  border-radius: 16px;
  background: white;
  border: 1px solid rgba(14,38,72,.09);
  box-shadow: rgba(8,19,38,.06) 0 14px 28px -22px;
}
.sim-option span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: var(--ink-soft); background: #edf5ff; font-weight: 800; }
.sim-option b { color: var(--ink-soft); font-size: 12px; }
.sim-option.selected { background: linear-gradient(135deg, rgba(29,92,255,.12), rgba(107,220,255,.11)); border-color: rgba(29,92,255,.22); }
.sim-option.selected span { color: #07152b; background: var(--gold-light); }
.exam-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 16px; border-radius: 18px; color: white; background: linear-gradient(135deg, #0d2447, #07152b); }
.exam-footer span { display: block; color: rgba(255,255,255,.58); font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.exam-footer strong { display: block; margin-top: 5px; font-size: 16px; letter-spacing: -.04em; }
.mini-bars { height: 34px; min-width: 96px; display: flex; align-items: end; gap: 7px; }
.mini-bars i { width: 16px; height: var(--h); border-radius: 8px 8px 3px 3px; background: linear-gradient(180deg, var(--blue-2), var(--gold-light)); box-shadow: 0 10px 18px rgba(107,220,255,.16); }
.laptop-base {
  position: relative;
  width: 90%;
  height: 28px;
  margin: -2px auto 0;
  border-radius: 0 0 40px 40px;
  background: linear-gradient(180deg, rgba(231,239,251,.98), rgba(73,88,114,.94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.78), rgba(0,0,0,.3) 0 22px 40px -24px;
  transform: perspective(650px) rotateX(62deg);
  transform-origin: top;
}
.laptop-base span { position: absolute; left: 41%; right: 41%; top: 5px; height: 3px; border-radius: 99px; background: rgba(7,21,43,.22); }
.tablet-device {
  position: absolute;
  z-index: 4;
  right: 4px;
  bottom: 58px;
  width: 244px;
  padding: 13px;
  border-radius: 32px;
  background: linear-gradient(145deg, #1b345e, #07101f 72%);
  border: 1px solid rgba(255,255,255,.23);
  box-shadow: rgba(0,0,0,.36) 0 38px 74px -44px, inset 0 1px 0 rgba(255,255,255,.18);
  transform: rotateZ(5deg) rotateY(-4deg) translateZ(34px);
}
.tablet-camera { width: 44px; height: 5px; margin: 0 auto 10px; border-radius: 99px; background: rgba(255,255,255,.22); }
.tablet-screen { position: relative; overflow: hidden; padding: 20px; border-radius: 23px; background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(242,247,255,.97)); color: var(--ink); }
.tablet-screen::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(255,255,255,.24), transparent 42%); pointer-events: none; }
.tablet-screen strong { position: relative; display: block; max-width: 150px; margin: 7px 0 16px; font-size: 24px; line-height: 1; letter-spacing: -.055em; }
.tablet-score-ring {
  position: absolute;
  right: 15px;
  top: 47px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 82%, rgba(14,38,72,.09) 0);
}
.tablet-score-ring::before { content: ""; position: absolute; inset: 7px; border-radius: 50%; background: white; }
.tablet-score-ring span, .tablet-score-ring small { position: relative; z-index: 1; grid-area: 1/1; }
.tablet-score-ring span { color: var(--ink); font-family: var(--mono); font-size: 17px; font-weight: 800; transform: translateY(-5px); }
.tablet-score-ring small { color: var(--muted); font-size: 8px; font-weight: 700; text-transform: uppercase; transform: translateY(10px); }
.tablet-metric { position: relative; display: grid; gap: 8px; margin-top: 13px; color: var(--ink-soft); font-size: 12px; font-weight: 700; }
.tablet-metric i { height: 8px; width: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--blue) var(--w), rgba(14,38,72,.1) 0); box-shadow: inset 0 0 0 1px rgba(14,38,72,.05); }
.device-insight-card {
  position: absolute;
  z-index: 5;
  left: -2px;
  bottom: 90px;
  width: 294px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  padding: 15px;
  border-radius: 24px;
  color: white;
  background: rgba(5,11,24,.7);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: rgba(0,0,0,.24) 0 30px 72px -40px, inset 0 1px 0 rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
}
.device-insight-card p { margin-top: 6px; color: rgba(255,255,255,.74); font-size: 13px; line-height: 1.45; }
.insight-icon {
  position: relative;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  background: linear-gradient(145deg, #fff5cf 0%, #d8a84a 48%, #173a68 100%);
  box-shadow: rgba(216,168,74,.2) 0 18px 34px -18px, inset 0 1px 0 rgba(255,255,255,.76), inset 0 -12px 20px rgba(5,11,24,.18);
}
.insight-icon::before { content: ""; width: 27px; height: 24px; border-radius: 4px 12px 12px 4px; border: 4px solid white; border-left-width: 7px; box-shadow: inset 8px 0 0 rgba(255,255,255,.22); }
.insight-icon::after { content: ""; position: absolute; width: 24px; height: 3px; border-radius: 99px; background: white; transform: translate(2px, 0); opacity: .86; }
.mono-label { color: var(--gold-light); font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.exam-sim .mono-label, .tablet-screen .mono-label { color: var(--blue); }


.proof-band { position: relative; z-index: 2; padding: 30px 0; margin-top: -1px; background: #f8fbff; border-block: 1px solid rgba(9,17,31,.08); overflow: hidden; }
.proof-band::before { content: ""; position: absolute; inset: -120px 0; background-image: url('assets/academy-pattern.svg'); background-size: 360px 360px; opacity: .42; pointer-events: none; }
.proof-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(14,38,72,.13);
  box-shadow: rgba(8,19,38,.08) 0 22px 46px -34px;
}
.proof-grid article { position: relative; min-height: 182px; padding: 26px; background: rgba(255,255,255,.96); }
.proof-grid article > i {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 17px;
  background: linear-gradient(135deg, #edf5ff, #fff7df);
  box-shadow: inset 0 0 0 1px rgba(14,38,72,.08);
}
.proof-grid article > i::before, .proof-grid article > i::after { content: ""; display: block; }
.proof-simulation i::before { width: 23px; height: 23px; border-radius: 50%; border: 3px solid var(--blue); box-shadow: inset 0 0 0 5px white; }
.proof-simulation i::after { position: absolute; width: 9px; height: 2px; border-radius: 99px; background: var(--gold); transform: translate(4px, -7px) rotate(42deg); }
.proof-diagnostics i::before { width: 25px; height: 21px; border-left: 4px solid var(--blue); border-bottom: 4px solid var(--blue); transform: skewX(-10deg); }
.proof-diagnostics i::after { position: absolute; width: 24px; height: 3px; border-radius: 99px; background: var(--gold); transform: translate(0, 7px) rotate(-24deg); }
.proof-rationale i::before { width: 25px; height: 18px; border-radius: 6px 6px 9px 9px; border: 3px solid var(--blue); }
.proof-rationale i::after { position: absolute; width: 12px; height: 3px; border-radius: 99px; background: var(--gold); transform: translate(7px, 13px) rotate(45deg); }
.proof-trust i::before { width: 25px; height: 30px; clip-path: polygon(50% 0, 92% 16%, 88% 64%, 50% 100%, 12% 64%, 8% 16%); background: linear-gradient(135deg, var(--gold), var(--blue)); }
.proof-grid span { color: var(--blue); font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: .12em; }
.proof-grid strong { display: block; margin-top: 12px; font-size: 19px; letter-spacing: -.035em; }
.proof-grid p { margin-top: 8px; color: var(--muted); font-size: 14px; line-height: 1.55; }

.proof-grid article > i,
.signal-icon,
.method-icon {
  transform-style: preserve-3d;
  background:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,.82), transparent 26%),
    linear-gradient(145deg, #fff5cf 0%, #dff5ff 38%, #8edfff 64%, #2a67ff 100%);
  box-shadow:
    rgba(29,92,255,.18) 0 22px 42px -22px,
    rgba(201,151,53,.14) 0 10px 24px -18px,
    inset 0 1px 0 rgba(255,255,255,.88),
    inset 0 -15px 24px rgba(5,11,24,.12);
}
.proof-grid article > i::before,
.proof-grid article > i::after,
.signal-icon::before,
.signal-icon::after,
.method-icon::before,
.method-icon::after {
  filter: drop-shadow(0 7px 8px rgba(5,11,24,.16));
}
.proof-grid article > i { width: 58px; height: 58px; border-radius: 20px; }
.signal-icon { width: 62px; height: 62px; border-radius: 21px; }
.method-icon { background: radial-gradient(circle at 28% 18%, rgba(255,255,255,.72), transparent 28%), linear-gradient(145deg, #fff5cf 0%, #baf0ff 42%, #1d5cff 100%); box-shadow: rgba(29,92,255,.2) 0 24px 44px -24px, inset 0 1px 0 rgba(255,255,255,.82), inset 0 -18px 26px rgba(5,11,24,.16); }
.method-card.featured .method-icon { background: radial-gradient(circle at 28% 18%, rgba(255,255,255,.32), transparent 28%), linear-gradient(145deg, rgba(246,220,150,.96), rgba(107,220,255,.86) 48%, rgba(255,255,255,.14)); box-shadow: rgba(0,0,0,.24) 0 24px 44px -24px, inset 0 1px 0 rgba(255,255,255,.5); }

.learner-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(216,168,74,.12), transparent 25rem),
    radial-gradient(circle at 88% 20%, rgba(42,103,255,.1), transparent 28rem),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.learner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/academy-pattern.svg');
  background-size: 420px 420px;
  opacity: .26;
  pointer-events: none;
}
.learner-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(440px, .94fr) minmax(0, 1fr); gap: 62px; align-items: center; }
.learner-art {
  position: relative;
  min-height: 620px;
  border-radius: 44px;
  overflow: hidden;
  background: #edf5ff;
  border: 1px solid rgba(14,38,72,.12);
  box-shadow: rgba(8,19,38,.2) 0 46px 110px -68px, rgba(42,103,255,.16) 0 0 0 1px inset;
}
.learner-art img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; }
.learner-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(5,11,24,.62)); pointer-events: none; }
.mentor-note {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 24px;
  border-radius: 28px;
  color: white;
  background: rgba(5,11,24,.72);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(18px);
}
.mentor-note span { color: var(--gold-light); font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.mentor-note strong { display: block; margin-top: 10px; max-width: 510px; font-size: 27px; line-height: 1.08; letter-spacing: -.045em; }
.learner-copy h2 { font-size: clamp(42px, 5vw, 74px); font-weight: 600; line-height: .96; letter-spacing: -.067em; text-wrap: balance; }
.learner-copy > p { margin-top: 20px; color: var(--muted); font-size: 19px; line-height: 1.68; }
.learner-signal-grid { margin-top: 30px; display: grid; gap: 14px; }
.learner-signal-grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(14,38,72,.1);
  box-shadow: var(--shadow-card);
}
.signal-icon { position: relative; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 19px; background: linear-gradient(135deg, #edf5ff, #fff7df); box-shadow: inset 0 0 0 1px rgba(14,38,72,.08); }
.signal-icon::before, .signal-icon::after { content: ""; display: block; }
.signal-mentor::before { width: 25px; height: 25px; border-radius: 50%; background: var(--gold); box-shadow: 0 17px 0 -6px var(--blue); }
.signal-campus::before { width: 31px; height: 25px; border: 4px solid var(--blue); border-bottom-width: 5px; border-radius: 16px 16px 3px 3px; }
.signal-progress::before { width: 30px; height: 18px; border-left: 4px solid var(--blue); border-bottom: 4px solid var(--blue); transform: skewX(-12deg); }
.signal-progress::after { position: absolute; width: 26px; height: 3px; border-radius: 99px; background: var(--gold); transform: translate(1px, 7px) rotate(-24deg); }
.learner-signal-grid strong { display: block; font-size: 21px; letter-spacing: -.04em; }
.learner-signal-grid p { grid-column: 2; margin-top: -24px; color: var(--muted); line-height: 1.56; }

.section { padding: 116px 0; }
.section-heading { max-width: 880px; margin-inline: auto; margin-bottom: 54px; text-align: center; }
.section-kicker { margin-bottom: 15px; color: var(--gold); }
.section-kicker.inverse { color: var(--gold-light); }
.section h2, .platform-copy h2, .standards-copy h2, .updates-card h2, .ecosystem-heading h2, .outcomes-shell h2 {
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.067em;
  text-wrap: balance;
}
.section-heading p, .platform-copy > p, .standards-copy p, .updates-card p, .ecosystem-heading p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.68;
}

.experience-section { background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%); }
.experience-grid { display: grid; grid-template-columns: minmax(420px, .9fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.experience-visual {
  position: relative;
  min-height: 640px;
  border-radius: 42px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5,11,24,.02), rgba(5,11,24,.2)),
    url('assets/realistic/digital-campus-workflow.jpg');
  background-size: cover;
  background-position: center right;
  border: 1px solid rgba(107,220,255,.24);
  box-shadow: rgba(8,19,38,.18) 0 42px 100px -62px, rgba(107,220,255,.2) 0 0 0 1px inset;
}
.experience-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 22%, rgba(107,220,255,.18), transparent 30%), linear-gradient(0deg, rgba(5,11,24,.72), transparent 48%);
}
.visual-caption {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 24px;
  border-radius: 26px;
  color: white;
  background: rgba(5,11,24,.7);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(18px);
}
.visual-caption span { color: var(--gold-light); font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.visual-caption strong { display: block; margin-top: 10px; max-width: 500px; font-size: 27px; line-height: 1.08; letter-spacing: -.045em; }
.experience-stack { display: grid; gap: 15px; }
.feature-panel {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(14,38,72,.1);
  box-shadow: var(--shadow-card);
}
.panel-index { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; color: var(--blue); background: #edf5ff; font-family: var(--mono); font-weight: 600; }
.feature-panel h3 { font-size: 24px; letter-spacing: -.045em; }
.feature-panel p { margin-top: 9px; color: var(--muted); line-height: 1.62; }

.platform-section {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 16% 10%, rgba(107,220,255,.16), transparent 26rem),
    radial-gradient(circle at 82% 16%, rgba(112,103,255,.2), transparent 30rem),
    linear-gradient(180deg, #050b18 0%, #07152b 100%);
}
.platform-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: url('assets/academy-hall.svg');
  background-size: cover;
  background-position: center;
  mix-blend-mode: screen;
}
.platform-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .88fr) minmax(430px, .82fr); gap: 68px; align-items: center; }
.platform-copy p { color: rgba(255,255,255,.72); }
.check-list { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 34px; color: rgba(255,255,255,.84); font-weight: 600; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .1em; width: 23px; height: 23px; border-radius: 50%; background: rgba(246,220,150,.14); box-shadow: inset 0 0 0 1px rgba(246,220,150,.22); }
.check-list li::after { content: ""; position: absolute; left: 8px; top: .62em; width: 7px; height: 11px; border-right: 2px solid var(--gold-light); border-bottom: 2px solid var(--gold-light); transform: rotate(42deg); }
.readiness-board {
  padding: 22px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow-float), inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
}
.board-nav { height: 44px; display: flex; align-items: center; gap: 8px; padding: 0 12px; border-radius: 16px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); }
.board-nav span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.25); }
.board-nav b { margin-left: auto; color: rgba(255,255,255,.56); font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.board-hero { margin-top: 16px; padding: 24px; border-radius: 24px; background: rgba(255,255,255,.94); color: var(--ink); }
.board-hero strong { display: block; margin-top: 10px; font-size: 34px; line-height: .98; letter-spacing: -.06em; }
.board-hero p { margin-top: 12px; color: var(--muted); line-height: 1.55; }
.board-columns { margin-top: 14px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; }
.board-columns div { position: relative; overflow: hidden; min-height: 118px; padding: 16px; border-radius: 20px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); }
.board-columns span { display: block; color: rgba(255,255,255,.54); font-family: var(--mono); font-size: 11px; letter-spacing: .11em; text-transform: uppercase; }
.board-columns strong { display: block; margin-top: 18px; font-size: 19px; letter-spacing: -.04em; }
.board-columns i { position: absolute; left: 0; bottom: 0; width: var(--w); height: 3px; background: linear-gradient(90deg, var(--gold), var(--blue-2), var(--violet)); }
.board-footer { margin-top: 14px; padding: 17px; border-radius: 20px; color: white; background: rgba(0,0,0,.2); border: 1px solid rgba(255,255,255,.1); }
.board-footer span { color: var(--gold-light); font-family: var(--mono); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.board-footer p { margin-top: 6px; color: rgba(255,255,255,.78); }

.method-section { background: var(--paper); }
.method-timeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.method-card {
  position: relative;
  overflow: hidden;
  min-height: 314px;
  padding: 26px;
  border-radius: 28px;
  background: white;
  border: 1px solid rgba(14,38,72,.1);
  box-shadow: var(--shadow-card);
}
.method-card::before { content: ""; position: absolute; right: -42px; top: -42px; width: 150px; height: 150px; border-radius: 50%; background: radial-gradient(circle, rgba(29,92,255,.13), transparent 70%); }
.method-card span { position: relative; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; color: var(--blue); background: #edf5ff; font-family: var(--mono); font-weight: 600; }
.method-icon {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(29,92,255,.1), rgba(246,220,150,.16));
  box-shadow: inset 0 0 0 1px rgba(14,38,72,.08);
}
.method-icon::before, .method-icon::after { content: ""; display: block; }
.method-simulate::before { width: 34px; height: 34px; border-radius: 50%; border: 4px solid var(--blue); box-shadow: inset 0 0 0 7px white; }
.method-simulate::after { position: absolute; width: 13px; height: 3px; border-radius: 99px; background: var(--gold); transform: translate(5px, -10px) rotate(42deg); }
.method-diagnose::before { width: 38px; height: 27px; border-left: 5px solid var(--blue); border-bottom: 5px solid var(--blue); transform: skewX(-12deg); }
.method-diagnose::after { position: absolute; width: 35px; height: 4px; border-radius: 99px; background: var(--gold); transform: translate(0, 9px) rotate(-24deg); }
.method-understand::before { width: 36px; height: 26px; border-radius: 8px 8px 13px 13px; border: 4px solid var(--gold-light); }
.method-understand::after { position: absolute; width: 18px; height: 4px; border-radius: 99px; background: var(--blue-2); transform: translate(11px, 18px) rotate(45deg); }
.method-retest::before { width: 35px; height: 35px; border-radius: 50%; border: 4px solid var(--blue); border-right-color: transparent; transform: rotate(-30deg); }
.method-retest::after { position: absolute; width: 13px; height: 13px; border-top: 4px solid var(--blue); border-right: 4px solid var(--blue); transform: translate(13px, -15px) rotate(20deg); }
.method-card.featured .method-icon { background: rgba(255,255,255,.08); box-shadow: inset 0 0 0 1px rgba(255,255,255,.14); }
.method-card h3 { position: relative; margin-top: 80px; font-size: 36px; line-height: 1; letter-spacing: -.06em; }
.method-card p { position: relative; margin-top: 14px; color: var(--muted); line-height: 1.6; }
.method-card.featured { color: white; background: linear-gradient(180deg, #102a52, #050b18); border-color: rgba(246,220,150,.28); box-shadow: rgba(5,11,24,.28) 0 38px 90px -54px; }
.method-card.featured::before { background: radial-gradient(circle, rgba(246,220,150,.2), transparent 70%); }
.method-card.featured span { color: var(--ink); background: var(--gold-light); }
.method-card.featured p { color: rgba(255,255,255,.72); }

.ecosystem-section {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 12% 8%, rgba(107,220,255,.16), transparent 24rem),
    radial-gradient(circle at 88% 20%, rgba(246,220,150,.16), transparent 27rem),
    linear-gradient(180deg, #07152b 0%, #050b18 100%);
}
.ecosystem-section::before { content: ""; position: absolute; inset: 0; background-image: url('assets/academy-hall.svg'); background-size: cover; background-position: center; opacity: .16; mix-blend-mode: screen; }
.ecosystem-section > * { position: relative; z-index: 1; }
.ecosystem-heading { max-width: 940px; text-align: center; margin-inline: auto; margin-bottom: 48px; }
.ecosystem-heading p { color: rgba(255,255,255,.72); }
.provider-stage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
  border-radius: 38px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: rgba(0,0,0,.24) 0 40px 90px -60px, inset 0 1px 0 rgba(255,255,255,.1);
}
.provider-card {
  position: relative;
  min-height: 344px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 24px;
  padding: 18px;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.065));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}
.provider-card:hover { transform: translateY(-4px); border-color: rgba(246,220,150,.34); background: linear-gradient(180deg, rgba(255,255,255,.19), rgba(255,255,255,.08)); }
.provider-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,.13), transparent 32%), radial-gradient(circle at 16% 0%, var(--provider-glow-soft, rgba(255,255,255,.12)), transparent 28%);
}
.provider-card::after { content: ""; position: absolute; inset: auto -58px -72px auto; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, var(--provider-glow, rgba(107,220,255,.25)), transparent 70%); }
.provider-aws { --provider-glow: rgba(255,190,72,.42); --provider-glow-soft: rgba(255,190,72,.2); }
.provider-msft { --provider-glow: rgba(80,160,255,.38); --provider-glow-soft: rgba(80,160,255,.2); }
.provider-google { --provider-glow: rgba(107,220,255,.38); --provider-glow-soft: rgba(107,220,255,.18); }
.featured-provider { background: linear-gradient(180deg, rgba(29,92,255,.34), rgba(255,255,255,.08)); border-color: rgba(107,220,255,.42); }
.provider-logo-plate {
  position: relative;
  z-index: 1;
  block-size: 150px;
  min-height: 150px;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  padding: 24px 28px;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,.99), rgba(244,248,253,.96));
  border: 1px solid rgba(255,255,255,.74);
  box-shadow: rgba(0,0,0,.2) 0 26px 46px -30px, rgba(107,220,255,.18) 0 0 0 1px, inset 0 1px 0 rgba(255,255,255,.96);
}
.provider-logo-plate::after { content: ""; position: absolute; inset: 12px; border-radius: 18px; border: 1px solid rgba(14,38,72,.06); pointer-events: none; }
.provider-logo { position: relative; z-index: 1; width: auto; max-width: 100%; max-height: 88px; height: auto; object-fit: contain; filter: drop-shadow(0 12px 18px rgba(6,23,47,.1)); }
.provider-logo-plate-aws {
  background: linear-gradient(145deg, rgba(255,255,255,.995), rgba(244,248,253,.97));
  border-color: rgba(255,255,255,.76);
  box-shadow: rgba(0,0,0,.2) 0 26px 46px -30px, rgba(255,153,0,.14) 0 0 0 1px, inset 0 1px 0 rgba(255,255,255,.98);
}
.provider-logo-plate-aws::before {
  content: "";
  position: absolute;
  inset: -42% auto auto -20%;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,153,0,.1), transparent 68%);
}
.provider-logo-plate-aws::after { border-color: rgba(14,38,72,.06); }
.aws-official-logo { width: min(236px, 84%); max-height: 92px; border-radius: 18px; box-shadow: rgba(6,23,47,.08) 0 14px 22px -18px; }
.microsoft-official-logo { width: min(240px, 86%); max-height: 58px; }
.google-cloud-official-logo { width: min(238px, 90%); max-height: 52px; }
.provider-logo-plate-microsoft::before,
.provider-logo-plate-google::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -18%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,92,255,.09), transparent 68%);
}
.provider-copy { position: relative; z-index: 1; align-self: start; padding: 0 8px 8px; }
.provider-badge {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(246,220,150,.18);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.provider-card strong { display: block; margin-top: 18px; font-size: 30px; line-height: 1; letter-spacing: -.058em; }
.provider-card p { margin-top: 12px; color: rgba(255,255,255,.72); line-height: 1.55; }
.pathway-cloud { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; margin-top: 18px; }
.pathway-cloud span { min-height: 82px; display: grid; place-items: center; border-radius: 22px; color: white; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); font-weight: 700; letter-spacing: -.025em; }
.provider-disclaimer { margin-top: 23px; color: rgba(255,255,255,.58); font-size: 13px; text-align: center; line-height: 1.6; }

.standards-section { background: linear-gradient(180deg, var(--paper-warm), #fff 100%); }
.standards-layout { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1fr); gap: 56px; align-items: start; }
.standards-copy p { color: #786c5a; }
.standards-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.standards-grid article { min-height: 218px; padding: 25px; border-radius: 25px; background: rgba(255,255,255,.82); border: 1px solid rgba(201,151,53,.22); box-shadow: rgba(117,82,20,.08) 0 24px 54px -40px; }
.standards-grid span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 15px; background: rgba(201,151,53,.13); box-shadow: inset 0 0 0 1px rgba(201,151,53,.16); }
.standards-grid span::before { content: ""; width: 17px; height: 17px; clip-path: polygon(50% 0%, 62% 28%, 92% 30%, 70% 49%, 78% 82%, 50% 64%, 22% 82%, 30% 49%, 8% 30%, 38% 28%); background: linear-gradient(135deg, var(--gold), var(--blue)); }
.standards-grid strong { display: block; margin-top: 28px; font-size: 20px; letter-spacing: -.035em; }
.standards-grid p { margin-top: 9px; color: #766b59; line-height: 1.58; }

.outcomes-section { color: white; background-image: linear-gradient(180deg, rgba(5,11,24,.9), rgba(5,11,24,.96)), url('assets/learning-studio.svg'); background-size: cover; background-position: center; }
.outcomes-shell { display: grid; grid-template-columns: minmax(0, .62fr) minmax(0, 1fr); gap: 48px; align-items: start; padding: clamp(28px, 5vw, 46px); border-radius: 40px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); backdrop-filter: blur(10px); }
.outcomes-shell h2 { margin-top: 14px; font-size: clamp(38px, 4.4vw, 64px); }
.outcome-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.outcome-grid article { min-height: 180px; padding: 22px; border-radius: 24px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); }
.outcome-grid span { color: var(--gold-light); font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: .13em; }
.outcome-grid p { margin-top: 52px; font-size: 20px; line-height: 1.36; letter-spacing: -.035em; }

.updates-section { padding-top: 84px; background: linear-gradient(180deg, #ffffff, #f7fbff); }
.updates-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .7fr);
  gap: 44px;
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 40px;
  background: white;
  border: 1px solid rgba(14,38,72,.1);
  box-shadow: rgba(8,19,38,.16) 0 42px 100px -66px;
}
.publication-form, .updates-action-card { padding: 24px; border-radius: 28px; background: var(--paper-soft); border: 1px solid rgba(14,38,72,.1); }
.publication-form label, .contact-label { display: block; margin-bottom: 10px; color: var(--ink-soft); font-weight: 700; font-size: 14px; }
.form-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
input[type="email"] { width: 100%; min-height: 52px; border: 0; border-radius: 999px; padding: 0 18px; color: var(--ink); background: white; box-shadow: rgba(14,38,72,.12) 0 0 0 1px; }
.form-note { margin-top: 11px !important; color: var(--muted); font-size: 13px !important; line-height: 1.45 !important; }
.form-note.success { color: #11805b; }
.updates-action-card .button { width: 100%; }
.contact-note { margin-top: 12px !important; color: var(--muted); font-size: 13px !important; line-height: 1.5 !important; }

.site-footer { padding: 64px 0 36px; color: rgba(255,255,255,.72); background: #050b18; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(160px, .35fr)); gap: 42px; }
.footer-brand .brand-line strong { color: white; }
.footer-brand .brand-type small { color: rgba(255,255,255,.48); }
.footer-grid p { max-width: 540px; margin-top: 17px; color: rgba(255,255,255,.58); }
.footer-grid strong { display: block; color: white; margin-bottom: 14px; }
.footer-grid a:not(.brand) { min-height: 44px; display: flex; align-items: center; color: rgba(255,255,255,.65); }
.footer-grid a:hover { color: white; }
.footer-legal { margin-top: 38px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; color: rgba(255,255,255,.52); line-height: 1.6; }

.legal-document { background: linear-gradient(180deg, #f8fbff, #ffffff 48%, #f8f1e3 100%); }
.legal-main { padding: 92px 0 96px; }
.legal-card {
  max-width: 880px;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 36px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(14,38,72,.1);
  box-shadow: rgba(8,19,38,.14) 0 42px 100px -66px;
}
.legal-card h1 { margin-top: 18px; font-size: clamp(44px, 7vw, 76px); }
.legal-card h2 { margin-top: 34px; font-size: clamp(24px, 3vw, 34px); letter-spacing: -.045em; }
.legal-card p { margin-top: 14px; color: var(--ink-soft); font-size: 17px; line-height: 1.72; }
.legal-card a { color: var(--blue); font-weight: 700; }
.legal-updated { color: var(--muted) !important; font-family: var(--mono); font-size: 13px !important; letter-spacing: .04em; text-transform: uppercase; }
.legal-nav-links { display: flex; }


/* Earlier icon polish retained for fallback; the research-led refinement below supersedes it with flatter premium glyph plates. */
.proof-grid article > i,
.signal-icon,
.method-icon {
  transform-style: preserve-3d;
  background:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,.86), transparent 27%),
    linear-gradient(145deg, #fff5cf 0%, #def6ff 38%, #8edfff 62%, #2a67ff 100%);
  box-shadow:
    rgba(29,92,255,.22) 0 24px 44px -24px,
    rgba(201,151,53,.16) 0 12px 26px -18px,
    inset 0 1px 0 rgba(255,255,255,.9),
    inset 0 -16px 26px rgba(5,11,24,.13);
}
.proof-grid article > i { width: 58px; height: 58px; border-radius: 20px; }
.signal-icon { width: 62px; height: 62px; border-radius: 21px; }
.method-card.featured .method-icon {
  background:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,.36), transparent 28%),
    linear-gradient(145deg, rgba(246,220,150,.98), rgba(107,220,255,.86) 48%, rgba(255,255,255,.14));
  box-shadow: rgba(0,0,0,.24) 0 24px 44px -24px, inset 0 1px 0 rgba(255,255,255,.52), inset 0 -16px 28px rgba(5,11,24,.18);
}
.proof-grid article > i::before,
.proof-grid article > i::after,
.signal-icon::before,
.signal-icon::after,
.method-icon::before,
.method-icon::after { filter: drop-shadow(0 7px 8px rgba(5,11,24,.16)); }


/* Research-led premium visual-system refinement: quieter logo pairing, product-shot hero, and flatter institutional iconography inspired by Apple/Stripe/Linear/Vercel/Mintlify principles. */
.hero {
  background:
    radial-gradient(circle at 78% 12%, rgba(107,220,255,.18), transparent 24rem),
    radial-gradient(circle at 21% 7%, rgba(246,220,150,.12), transparent 29rem),
    radial-gradient(circle at 58% 110%, rgba(29,92,255,.22), transparent 34rem),
    linear-gradient(135deg, #040914 0%, #07152b 54%, #092248 100%);
}
.hero::before {
  background:
    linear-gradient(90deg, rgba(4,9,20,.76), rgba(4,9,20,.13) 56%, rgba(4,9,20,.42)),
    linear-gradient(180deg, rgba(4,9,20,0) 66%, rgba(4,9,20,.9));
}
.hero-mesh { opacity: .15; background-size: 96px 96px; mask-image: radial-gradient(circle at 63% 28%, black 0%, transparent 64%); }
.hero-studio { min-height: 700px; }
.hero-studio::before {
  inset: 50px -6px 48px 28px;
  border-radius: 48px;
  background:
    radial-gradient(circle at 76% 18%, rgba(107,220,255,.14), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(246,220,150,.1), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.026));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), rgba(0,0,0,.24) 0 42px 98px -70px;
  transform: none;
}
.hero-studio::after {
  left: 8%;
  right: 5%;
  bottom: 32px;
  height: 92px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.42), transparent 70%);
  filter: blur(12px);
  opacity: .58;
}
.device-ambient { opacity: .5; filter: blur(44px); }
.device-ambient-one { right: 0; top: 10px; background: rgba(107,220,255,.19); }
.device-ambient-two { left: 5%; bottom: 7%; background: rgba(246,220,150,.16); }
.studio-beam {
  inset: 28px 8% auto auto;
  width: 380px;
  height: 520px;
  transform: rotate(13deg);
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0));
  opacity: .22;
}
.studio-plinth {
  left: 8%;
  right: 4%;
  bottom: 54px;
  background:
    radial-gradient(ellipse at center, rgba(246,220,150,.13), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.018));
}
.hero-credential-ribbon,
.device-insight-card {
  background: rgba(5,11,24,.68);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: rgba(0,0,0,.22) 0 26px 64px -38px, inset 0 1px 0 rgba(255,255,255,.11);
}
.hero-credential-ribbon { left: 18px; top: 32px; width: 282px; }
.hero-credential-ribbon > span {
  border-radius: 15px;
  background: linear-gradient(145deg, #fff0bd, #d5a64f 58%, #9a6a20);
}
.hero-credential-ribbon > span::before {
  inset: 10px 12px;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: inset 0 0 0 2.4px #07172f;
  clip-path: polygon(50% 0, 87% 17%, 82% 65%, 50% 100%, 18% 65%, 13% 17%);
}
.laptop-device {
  width: min(100%, 710px);
  margin: 84px -8px 0 auto;
  padding-top: 10px;
  transform: rotateX(4deg) rotateY(-4.8deg) rotateZ(-.7deg);
  filter: drop-shadow(0 56px 74px rgba(0,0,0,.38));
}
.laptop-lid {
  border-radius: 30px;
  padding: 10px;
  background: linear-gradient(145deg, rgba(246,250,255,.98), rgba(118,136,166,.62) 46%, rgba(8,20,42,.96));
  border-color: rgba(255,255,255,.36);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.68), inset 0 -20px 44px rgba(5,11,24,.27);
}
.laptop-lid::before { height: 36%; opacity: .82; }
.screen-glass {
  border-radius: 22px;
  background: #f7faff;
  box-shadow: rgba(2,7,19,.48) 0 0 0 1px, inset 0 0 0 1px rgba(255,255,255,.22);
}
.screen-glass::after { background: linear-gradient(112deg, rgba(255,255,255,.2), transparent 30%, transparent 68%, rgba(255,255,255,.1)); }
.device-browser-bar {
  min-height: 38px;
  color: rgba(255,255,255,.68);
  background: linear-gradient(180deg, rgba(4,11,24,.96), rgba(8,23,45,.9));
}
.device-browser-bar i { background: rgba(255,255,255,.24) !important; }
.device-browser-bar i:nth-of-type(1) { background: rgba(246,220,150,.72) !important; }
.exam-sim {
  grid-template-columns: 132px 1fr;
  min-height: 366px;
  background:
    radial-gradient(circle at 86% 4%, rgba(29,92,255,.08), transparent 12rem),
    linear-gradient(180deg, #ffffff, #f7faff 100%);
}
.exam-sidebar {
  background: linear-gradient(180deg, #0b2447, #061326);
  border-right-color: rgba(14,38,72,.1);
}
.academy-seal { border-radius: 14px; background: rgba(255,255,255,.045); }
.academy-seal::before {
  border: 0;
  border-radius: 0;
  background: var(--gold-light);
  clip-path: polygon(50% 0, 88% 17%, 82% 65%, 50% 100%, 18% 65%, 12% 17%);
}
.question-panel,
.sim-option,
.exam-footer,
.tablet-screen,
.device-insight-card,
.hero-credential-ribbon {
  box-shadow: rgba(8,19,38,.1) 0 20px 44px -34px, inset 0 1px 0 rgba(255,255,255,.14);
}
.sim-option { border-color: rgba(14,38,72,.08); }
.sim-option.selected { background: linear-gradient(135deg, rgba(29,92,255,.1), rgba(255,245,207,.66)); border-color: rgba(29,92,255,.18); }
.exam-footer { background: linear-gradient(135deg, #0b2447, #06172f); }
.laptop-base { height: 26px; background: linear-gradient(180deg, rgba(239,246,255,.98), rgba(83,101,130,.92)); }
.tablet-device {
  right: 18px;
  bottom: 62px;
  width: 238px;
  border-radius: 30px;
  background: linear-gradient(145deg, #1b355f, #06101f 72%);
  transform: rotateZ(3deg) rotateY(-3deg) translateZ(38px);
}
.tablet-screen { border-radius: 22px; }
.device-insight-card { left: 18px; bottom: 94px; width: 292px; }
.insight-icon {
  border-radius: 17px;
  background: linear-gradient(180deg, #fff8df, #f4e1aa);
  box-shadow: rgba(216,168,74,.16) 0 16px 28px -18px, inset 0 0 0 1px rgba(154,106,32,.18), inset 0 1px 0 rgba(255,255,255,.86);
}
.insight-icon::before { width: 27px; height: 22px; border-radius: 4px 10px 10px 4px; border: 3px solid #0b2447; border-left-width: 6px; box-shadow: none; }
.insight-icon::after { width: 21px; height: 2px; background: #0b2447; opacity: .62; transform: translate(2px, 0); }
.proof-grid article,
.learner-signal-grid article,
.feature-panel,
.method-card,
.standards-grid article,
.outcome-grid article {
  border-color: rgba(14,38,72,.095);
  box-shadow: rgba(8,19,38,.1) 0 20px 46px -36px, rgba(255,255,255,.9) 0 1px inset;
}
.proof-grid article > i,
.signal-icon,
.method-icon {
  overflow: hidden;
  transform-style: flat;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  border: 1px solid rgba(14,38,72,.105);
  box-shadow:
    rgba(8,19,38,.1) 0 16px 32px -26px,
    inset 0 1px 0 rgba(255,255,255,.94);
}
.proof-grid article > i::before,
.proof-grid article > i::after,
.signal-icon::before,
.signal-icon::after,
.method-icon::before,
.method-icon::after {
  box-shadow: none;
  filter: none;
  border-color: var(--blue);
}
.proof-simulation i::before,
.method-simulate::before {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  border: 2.6px solid var(--blue);
  background: transparent;
  transform: none;
}
.proof-simulation i::after,
.method-simulate::after {
  position: absolute;
  width: 2.6px;
  height: 12px;
  border-radius: 99px;
  background: var(--gold);
  transform: translate(1px, -5px) rotate(0deg);
}
.proof-diagnostics i::before,
.signal-progress::before,
.method-diagnose::before {
  width: 31px;
  height: 27px;
  border: 0;
  background:
    linear-gradient(to top, var(--blue) 0 56%, transparent 56%) 0 0/6px 100% no-repeat,
    linear-gradient(to top, var(--gold) 0 82%, transparent 82%) 12px 0/6px 100% no-repeat,
    linear-gradient(to top, var(--blue) 0 66%, transparent 66%) 24px 0/6px 100% no-repeat;
  transform: none;
}
.proof-diagnostics i::after,
.signal-progress::after,
.method-diagnose::after {
  position: absolute;
  width: 32px;
  height: 2px;
  border: 0;
  border-radius: 99px;
  background: rgba(9,17,31,.14);
  transform: translate(0, 15px) rotate(0deg);
}
.proof-rationale i::before,
.method-understand::before {
  width: 31px;
  height: 24px;
  border: 2.5px solid var(--blue);
  border-left-width: 5px;
  border-radius: 4px 10px 10px 4px;
  background: transparent;
  transform: none;
}
.proof-rationale i::after,
.method-understand::after {
  position: absolute;
  width: 22px;
  height: 2px;
  border: 0;
  border-radius: 99px;
  background: var(--gold);
  transform: translate(3px, 0) rotate(0deg);
}
.proof-trust i::before {
  width: 27px;
  height: 32px;
  border: 0;
  clip-path: polygon(50% 0, 88% 16%, 83% 64%, 50% 100%, 17% 64%, 12% 16%);
  background: linear-gradient(180deg, var(--blue), #0b2447);
  transform: none;
}
.proof-trust i::after {
  position: absolute;
  width: 13px;
  height: 15px;
  border: 2px solid #fff1c8;
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: transparent;
  transform: translateY(2px);
}
.signal-mentor::before {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  transform: translateY(-8px);
}
.signal-mentor::after {
  position: absolute;
  width: 34px;
  height: 16px;
  border: 2.5px solid var(--gold);
  border-top: 0;
  border-radius: 0 0 20px 20px;
  background: transparent;
  transform: translateY(11px);
}
.signal-campus::before {
  width: 34px;
  height: 26px;
  border: 0;
  background:
    linear-gradient(135deg, transparent 47%, var(--gold) 48% 53%, transparent 54%) top center/34px 9px no-repeat,
    linear-gradient(90deg, var(--blue) 0 4px, transparent 4px 9px, var(--blue) 9px 13px, transparent 13px 21px, var(--blue) 21px 25px, transparent 25px 30px, var(--blue) 30px 34px) bottom center/34px 17px no-repeat;
  transform: none;
}
.signal-campus::after {
  position: absolute;
  width: 38px;
  height: 2px;
  border: 0;
  border-radius: 99px;
  background: rgba(9,17,31,.16);
  transform: translateY(16px);
}
.method-retest::before {
  width: 32px;
  height: 32px;
  border: 2.7px solid var(--blue);
  border-right-color: transparent;
  border-radius: 50%;
  background: transparent;
  transform: rotate(-26deg);
}
.method-retest::after {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 0;
  border-top: 2.7px solid var(--blue);
  border-right: 2.7px solid var(--blue);
  background: transparent;
  transform: translate(11px, -13px) rotate(22deg);
}
.panel-index,
.method-card span {
  background: #ffffff;
  color: var(--blue);
  border: 1px solid rgba(14,38,72,.1);
  box-shadow: rgba(8,19,38,.08) 0 14px 28px -24px, inset 0 1px 0 rgba(255,255,255,.9);
}
.check-list li::before {
  border-radius: 9px;
  background: rgba(246,220,150,.12);
  box-shadow: inset 0 0 0 1px rgba(246,220,150,.22);
}
.check-list li::after {
  left: 7px;
  top: .77em;
  width: 9px;
  height: 2px;
  border: 0;
  border-radius: 99px;
  background: var(--gold-light);
  transform: none;
}

/* Final formal identity and hero realism pass: simpler crest, stronger product-shot composition, calmer light, and consistent institutional glyph plates. */
.brand-mark-wrap::before {
  inset: -5px;
  border-radius: 20px;
  background: radial-gradient(circle at 50% 46%, rgba(216,168,74,.1), transparent 66%);
}
.brand-logo {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 10px 16px rgba(7, 22, 45, .13));
}
.footer-brand .brand-logo { filter: drop-shadow(0 10px 16px rgba(0, 0, 0, .22)); }

.hero {
  min-height: 880px;
  background:
    radial-gradient(circle at 79% 10%, rgba(107,220,255,.16), transparent 24rem),
    radial-gradient(circle at 21% 8%, rgba(246,220,150,.1), transparent 29rem),
    radial-gradient(circle at 55% 112%, rgba(29,92,255,.2), transparent 34rem),
    linear-gradient(135deg, #030813 0%, #06152c 54%, #092144 100%);
}
.hero::before {
  background:
    linear-gradient(90deg, rgba(3,8,19,.78), rgba(3,8,19,.1) 57%, rgba(3,8,19,.42)),
    linear-gradient(180deg, rgba(3,8,19,0) 65%, rgba(3,8,19,.91));
}
.hero-grid {
  grid-template-columns: minmax(0, .96fr) minmax(540px, 1.04fr);
  gap: clamp(58px, 5.8vw, 88px);
  align-items: center;
  padding: clamp(92px, 8vw, 124px) 0 108px;
}
.hero-studio { min-height: 730px; }
.hero-studio::before {
  inset: 38px -10px 34px 20px;
  border-radius: 54px;
  background:
    radial-gradient(circle at 74% 15%, rgba(107,220,255,.12), transparent 31%),
    radial-gradient(circle at 19% 83%, rgba(246,220,150,.09), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.082), rgba(255,255,255,.022));
  border-color: rgba(255,255,255,.11);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.15),
    inset 0 -24px 80px rgba(4,9,20,.18),
    rgba(0,0,0,.23) 0 44px 104px -72px;
}
.hero-studio::after {
  left: 5%;
  right: 3%;
  bottom: 20px;
  height: 112px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.43), rgba(0,0,0,.1) 44%, transparent 72%);
  filter: blur(14px);
  opacity: .66;
}
.device-ambient { opacity: .43; filter: blur(48px); }
.device-ambient-one { right: -2%; top: 6px; background: rgba(107,220,255,.17); }
.device-ambient-two { left: 7%; bottom: 4%; background: rgba(246,220,150,.14); }
.studio-beam {
  inset: 20px 7% auto auto;
  width: 430px;
  height: 565px;
  transform: rotate(12deg);
  opacity: .2;
  filter: blur(20px);
}
.studio-plinth {
  left: 4%;
  right: 2%;
  bottom: 42px;
  height: 132px;
  background:
    radial-gradient(ellipse at center, rgba(246,220,150,.115), transparent 58%),
    radial-gradient(ellipse at 48% 42%, rgba(107,220,255,.06), transparent 66%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.014));
}
.hero-credential-ribbon {
  left: 26px;
  top: 28px;
  width: 284px;
  padding: 13px 15px;
  border-radius: 23px;
}
.hero-credential-ribbon > span::before {
  box-shadow: none;
  clip-path: polygon(50% 0, 87% 17%, 82% 65%, 50% 100%, 18% 65%, 13% 17%);
}
.laptop-device {
  width: min(100%, 735px);
  margin: 80px -18px 0 auto;
  transform: rotateX(4deg) rotateY(-5.4deg) rotateZ(-.45deg);
  filter: drop-shadow(0 70px 88px rgba(0,0,0,.39));
}
.laptop-lid {
  border-radius: 32px;
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(252,254,255,.98), rgba(130,148,176,.62) 43%, rgba(8,20,42,.96));
  border-color: rgba(255,255,255,.38);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.72),
    inset 0 -22px 46px rgba(5,11,24,.28),
    rgba(0,0,0,.18) 0 22px 56px -38px;
}
.laptop-lid::before { height: 34%; opacity: .78; }
.laptop-lid::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.16);
  pointer-events: none;
}
.screen-glass {
  border-radius: 23px;
  box-shadow:
    rgba(2,7,19,.5) 0 0 0 1px,
    inset 0 0 0 1px rgba(255,255,255,.2),
    inset 0 26px 70px rgba(255,255,255,.05);
}
.screen-glass::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: -20% auto auto 52%;
  width: 42%;
  height: 150%;
  transform: rotate(17deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  opacity: .22;
  pointer-events: none;
}
.screen-glass::after { opacity: .72; }
.device-browser-bar {
  min-height: 39px;
  padding-inline: 16px;
  letter-spacing: .075em;
}
.exam-sim {
  grid-template-columns: 142px 1fr;
  min-height: 382px;
  background:
    radial-gradient(circle at 86% 4%, rgba(29,92,255,.075), transparent 12rem),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}
.exam-sidebar { padding: 22px 17px; }
.exam-main { padding: 24px; }
.exam-header strong { letter-spacing: -.055em; }
.question-panel {
  margin-top: 18px;
  background: linear-gradient(180deg, #fbfdff, #f5f9ff);
  box-shadow: rgba(8,19,38,.08) 0 18px 38px -28px;
}
.sim-option {
  min-height: 46px;
  background: rgba(255,255,255,.94);
}
.exam-footer {
  padding: 14px 17px;
  background: linear-gradient(135deg, #0c294e, #061326);
}
.laptop-base {
  width: 91.5%;
  height: 30px;
  border-radius: 0 0 46px 46px;
  background: linear-gradient(180deg, rgba(244,249,255,.98), rgba(81,99,128,.92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.78), rgba(0,0,0,.34) 0 24px 44px -24px;
}
.laptop-base::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.64), transparent);
}
.laptop-base::after {
  content: "";
  position: absolute;
  left: 33%;
  right: 33%;
  bottom: 5px;
  height: 2px;
  border-radius: 99px;
  background: rgba(5,11,24,.16);
}
.tablet-device {
  right: 8px;
  bottom: 56px;
  width: 252px;
  border-radius: 32px;
  transform: rotateZ(2.2deg) rotateY(-2.8deg) translateZ(40px);
  box-shadow: rgba(0,0,0,.34) 0 40px 78px -44px, inset 0 1px 0 rgba(255,255,255,.2);
}
.tablet-screen { padding: 21px; }
.device-insight-card {
  left: 12px;
  bottom: 112px;
  width: 304px;
  border-radius: 24px;
}
.insight-icon {
  background: linear-gradient(180deg, #fff9e5, #f1dc9d);
}

.proof-grid article > i,
.signal-icon,
.method-icon {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
  border: 1px solid rgba(14,38,72,.105);
  box-shadow: rgba(8,19,38,.09) 0 16px 32px -26px, inset 0 1px 0 rgba(255,255,255,.96);
}
.proof-grid article > i::before,
.proof-grid article > i::after,
.signal-icon::before,
.signal-icon::after,
.method-icon::before,
.method-icon::after {
  filter: none;
  box-shadow: none;
}
.standards-grid span::before {
  width: 21px;
  height: 25px;
  clip-path: polygon(50% 0, 88% 17%, 82% 66%, 50% 100%, 18% 66%, 12% 17%);
  background: linear-gradient(180deg, var(--gold), #0b2447);
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s cubic-bezier(.2,.8,.2,1), transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
@keyframes slow-spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .nav-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    border: 0;
    border-radius: 50%;
    background: var(--paper-soft);
    box-shadow: rgba(14,38,72,.12) 0 0 0 1px;
  }
  .nav-toggle span { width: 19px; height: 2px; border-radius: 99px; background: var(--ink); transition: transform .18s ease; }
  .nav-open .nav-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav-open .nav-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .nav-links {
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,.96);
    box-shadow: rgba(14,38,72,.14) 0 0 0 1px, rgba(14,38,72,.22) 0 28px 80px -34px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    backdrop-filter: blur(18px);
  }
  .nav-open .nav-links { display: flex; }
  .nav-links a { padding: 14px; border-radius: 15px; }
  .nav-links a::after { display: none; }
  .nav-cta { justify-content: center; }
  .hero-grid, .learner-layout, .experience-grid, .platform-layout, .standards-layout, .updates-card, .outcomes-shell { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 90px; }
  .hero-studio { min-height: 610px; max-width: 700px; margin-inline: auto; }
  .provider-stage { grid-template-columns: 1fr; }
  .provider-card { min-height: 300px; }
  .proof-grid, .method-timeline, .pathway-cloud { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .platform-layout { gap: 48px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav-shell { width: min(100% - 24px, 1250px); min-height: 70px; }
  .nav-links { top: 70px; }
  .brand-mark-wrap { width: 46px; height: 46px; }
  .brand-logo { width: 44px; height: 44px; }
  .brand-line strong, .brand-line em { font-size: 22px; }
  .brand-type small { display: none; }
  .hero { min-height: auto; }
  .hero-grid { padding: 56px 0 70px; gap: 42px; }
  .eyebrow, .section-kicker { font-size: 11px; letter-spacing: .11em; }
  h1 { font-size: clamp(48px, 15.6vw, 66px); line-height: .92; letter-spacing: -.064em; }
  .hero-subtitle { font-size: 17px; line-height: 1.62; }
  .hero-actions, .form-row { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; min-height: 54px; }
  .trust-row { display: flex; gap: 10px; }
  .trust-row span { min-height: 34px; padding: 0 11px; font-size: 12px; }
  .hero-studio { min-height: auto; display: grid; gap: 14px; }
  .ambient, .device-ambient, .studio-beam, .studio-plinth { display: none; }
  .hero-studio::before, .hero-studio::after { display: none; }
  .laptop-device { width: 100%; margin: 0; padding-top: 0; transform: none; filter: drop-shadow(0 32px 46px rgba(0,0,0,.26)); }
  .laptop-lid { border-radius: 27px; padding: 11px; }
  .device-browser-bar { min-height: 38px; border-radius: 19px 19px 10px 10px; font-size: 9.5px; }
  .exam-sim { grid-template-columns: 1fr; min-height: auto; padding: 0; border-radius: 20px; }
  .exam-sidebar { display: none; }
  .exam-main { padding: 18px; }
  .exam-header, .exam-footer { align-items: stretch; flex-direction: column; }
  .timer-chip { align-self: flex-start; }
  .question-panel { padding: 16px; border-radius: 18px; }
  .sim-option { grid-template-columns: 30px 1fr; }
  .sim-option b { font-size: 12px; }
  .mini-bars { min-width: 100%; justify-content: flex-start; }
  .tablet-device, .device-insight-card, .hero-credential-ribbon { position: relative; inset: auto; left: auto; right: auto; top: auto; bottom: auto; width: 100%; transform: none; }
  .tablet-device { max-width: 100%; }
  .device-insight-card { grid-template-columns: 54px 1fr; }
  .hero-credential-ribbon { margin-top: 4px; }
  .diagnostic-grid, .board-columns { grid-template-columns: 1fr; }
  .proof-grid, .method-timeline, .pathway-cloud, .standards-grid, .outcome-grid, .footer-grid { grid-template-columns: 1fr; }
  .proof-grid { border-radius: 20px; }
  .proof-grid article { min-height: auto; }
  .learner-layout { gap: 34px; }
  .learner-art { min-height: 430px; border-radius: 30px; }
  .learner-art img { min-height: 430px; }
  .mentor-note { left: 16px; right: 16px; bottom: 16px; padding: 18px; border-radius: 22px; }
  .mentor-note strong { font-size: 21px; }
  .learner-copy h2 { font-size: clamp(39px, 11.8vw, 52px); letter-spacing: -.058em; }
  .learner-copy > p { font-size: 16.5px; line-height: 1.64; }
  .learner-signal-grid article { grid-template-columns: 1fr; padding: 21px; }
  .learner-signal-grid p { grid-column: auto; margin-top: 7px; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 38px; }
  .section h2, .platform-copy h2, .standards-copy h2, .updates-card h2, .ecosystem-heading h2, .outcomes-shell h2 { font-size: clamp(39px, 11.8vw, 52px); letter-spacing: -.058em; }
  .section-heading p, .platform-copy > p, .standards-copy p, .updates-card p, .ecosystem-heading p { font-size: 16.5px; line-height: 1.64; }
  .experience-visual { min-height: 430px; border-radius: 30px; }
  .visual-caption { left: 16px; right: 16px; bottom: 16px; padding: 18px; border-radius: 22px; }
  .visual-caption strong { font-size: 21px; }
  .feature-panel { grid-template-columns: 1fr; padding: 21px; }
  .readiness-board { padding: 15px; border-radius: 26px; }
  .board-hero { padding: 20px; border-radius: 20px; }
  .board-hero strong { font-size: 29px; }
  .method-card { min-height: auto; padding: 23px; }
  .method-card h3 { margin-top: 52px; }
  .provider-stage { padding: 12px; border-radius: 29px; }
  .provider-card { padding: 14px; gap: 18px; }
  .provider-logo-plate { block-size: 124px; min-height: 124px; padding: 22px 18px; border-radius: 21px; }
  .aws-official-logo { width: min(204px, 78%); max-height: 80px; }
  .provider-card strong { font-size: 28px; }
  .provider-badge { font-size: 9.5px; letter-spacing: .08em; }
  .standards-grid article, .outcome-grid article { min-height: auto; }
  .outcomes-shell { padding: 24px; border-radius: 28px; }
  .outcome-grid p { margin-top: 36px; }
  .updates-card { padding: 24px; border-radius: 28px; }
  .publication-form, .updates-action-card { padding: 18px; border-radius: 22px; }
}

@media (max-width: 390px) {
  .container { width: min(100% - 22px, var(--max)); }
  .brand-line strong, .brand-line em { font-size: 20px; }
  .eyebrow { padding: 8px 10px; }
  h1 { font-size: 46px; }
  .studio-brand strong { font-size: 17px; }
  .studio-brand span { font-size: 10px; }
  .provider-logo-plate { block-size: 112px; min-height: 112px; padding-block: 18px; }
  .aws-official-logo { width: min(194px, 72%); max-height: 76px; }
}

/* Premium restrained 3D-style icon exploration: modern dimensional plates, institutional glyphs, and consistent blue/gold lighting without toy-like gradients. */
.proof-grid article > i,
.signal-icon,
.method-icon {
  position: relative;
  isolation: isolate;
  overflow: visible;
  transform-style: preserve-3d;
  transform: perspective(180px) rotateX(7deg) rotateY(-7deg);
  background:
    radial-gradient(circle at 24% 18%, rgba(255,255,255,.98), rgba(255,255,255,0) 31%),
    radial-gradient(circle at 72% 78%, rgba(29,92,255,.13), rgba(29,92,255,0) 46%),
    linear-gradient(145deg, #ffffff 0%, #f7fbff 42%, #e9f2ff 100%);
  border: 1px solid rgba(14,38,72,.12);
  box-shadow:
    rgba(8,19,38,.18) 0 26px 44px -30px,
    rgba(29,92,255,.16) 0 12px 24px -22px,
    inset 0 1px 0 rgba(255,255,255,.98),
    inset 0 -13px 20px rgba(6,23,47,.08),
    inset -1px -1px 0 rgba(6,23,47,.06);
}
.proof-grid article > i { width: 60px; height: 60px; border-radius: 21px; }
.signal-icon { width: 64px; height: 64px; border-radius: 22px; }
.method-icon { border-radius: 24px; }
.method-card.featured .method-icon {
  background:
    radial-gradient(circle at 24% 18%, rgba(255,255,255,.82), rgba(255,255,255,0) 31%),
    radial-gradient(circle at 78% 80%, rgba(107,220,255,.18), rgba(107,220,255,0) 48%),
    linear-gradient(145deg, rgba(255,249,229,.96), rgba(242,249,255,.72) 45%, rgba(29,92,255,.18));
  border-color: rgba(246,220,150,.26);
  box-shadow:
    rgba(0,0,0,.2) 0 28px 48px -31px,
    rgba(246,220,150,.22) 0 14px 28px -22px,
    inset 0 1px 0 rgba(255,255,255,.86),
    inset 0 -14px 22px rgba(5,11,24,.11);
}
.proof-grid article > i::before,
.proof-grid article > i::after,
.signal-icon::before,
.signal-icon::after,
.method-icon::before,
.method-icon::after {
  z-index: 1;
  filter: drop-shadow(0 8px 8px rgba(5,11,24,.14));
  box-shadow: none;
}
.proof-grid article > i::before,
.signal-icon::before,
.method-icon::before { transform: translateZ(18px); }
.proof-grid article > i::after,
.signal-icon::after,
.method-icon::after { transform: translateZ(24px); }

/* Time / attempt glyph: dimensional clock without check/tick styling. */
.proof-simulation i::before,
.method-simulate::before {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  border: 3px solid var(--blue);
  background:
    radial-gradient(circle at 50% 50%, #ffffff 0 17%, transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(246,220,150,.16));
  box-shadow:
    inset 0 0 0 4px rgba(255,255,255,.82),
    inset 0 -5px 9px rgba(29,92,255,.11);
}
.proof-simulation i::after,
.method-simulate::after {
  position: absolute;
  width: 3px;
  height: 14px;
  border-radius: 99px;
  border: 0;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  transform: translate(1px, -6px) translateZ(24px) rotate(0deg);
}

/* Diagnostics / progress glyph: raised analytics bars on a quiet baseline. */
.proof-diagnostics i::before,
.signal-progress::before,
.method-diagnose::before {
  width: 34px;
  height: 29px;
  border: 0;
  border-radius: 6px;
  background:
    linear-gradient(to top, #0b2447 0 54%, transparent 54%) 1px bottom/7px 100% no-repeat,
    linear-gradient(to top, var(--gold) 0 83%, transparent 83%) 13px bottom/7px 100% no-repeat,
    linear-gradient(to top, var(--blue) 0 66%, transparent 66%) 25px bottom/7px 100% no-repeat;
  filter: drop-shadow(0 8px 8px rgba(5,11,24,.13));
}
.proof-diagnostics i::after,
.signal-progress::after,
.method-diagnose::after {
  position: absolute;
  width: 36px;
  height: 3px;
  border: 0;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(6,23,47,.18), rgba(6,23,47,.06));
  transform: translate(0, 16px) translateZ(24px) rotate(0deg);
}

/* Rationale / understanding glyph: formal book/rationale card, no diagonal check motif. */
.proof-rationale i::before,
.method-understand::before {
  width: 32px;
  height: 25px;
  border: 2.6px solid var(--blue);
  border-left-width: 6px;
  border-radius: 5px 11px 11px 5px;
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(107,220,255,.08));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.76);
}
.proof-rationale i::after,
.method-understand::after {
  position: absolute;
  width: 21px;
  height: 3px;
  border: 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transform: translate(4px, 0) translateZ(24px) rotate(0deg);
}

/* Trust glyph: raised shield/lock, deliberately formal and not tick-like. */
.proof-trust i::before {
  width: 28px;
  height: 33px;
  border: 0;
  clip-path: polygon(50% 0, 88% 16%, 83% 64%, 50% 100%, 17% 64%, 12% 16%);
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), transparent 22%),
    linear-gradient(180deg, #1d5cff, #0b2447 86%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.34), inset 0 -7px 10px rgba(0,0,0,.2);
}
.proof-trust i::after {
  position: absolute;
  width: 13px;
  height: 14px;
  border: 2.2px solid #fff1c8;
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: transparent;
  transform: translateY(2px) translateZ(24px);
}

/* Learner-signal glyphs: instructor, academy, and progress cues as consistent dimensional system icons. */
.signal-mentor::before {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  transform: translateY(-8px) translateZ(18px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.42), inset 0 -4px 8px rgba(154,106,32,.2);
}
.signal-mentor::after {
  position: absolute;
  width: 34px;
  height: 16px;
  border: 2.6px solid var(--blue);
  border-top: 0;
  border-radius: 0 0 20px 20px;
  background: transparent;
  transform: translateY(11px) translateZ(24px);
}
.signal-campus::before {
  width: 36px;
  height: 27px;
  border: 0;
  background:
    linear-gradient(135deg, transparent 46%, var(--gold) 47% 54%, transparent 55%) top center/36px 10px no-repeat,
    linear-gradient(90deg, #0b2447 0 5px, transparent 5px 10px, var(--blue) 10px 15px, transparent 15px 21px, var(--blue) 21px 26px, transparent 26px 31px, #0b2447 31px 36px) bottom center/36px 18px no-repeat;
  filter: drop-shadow(0 8px 8px rgba(5,11,24,.13));
}
.signal-campus::after {
  position: absolute;
  width: 39px;
  height: 3px;
  border: 0;
  border-radius: 99px;
  background: rgba(9,17,31,.16);
  transform: translateY(16px) translateZ(24px);
}

/* Retest glyph: restrained circular-arrow cue; not a pass/check symbol. */
.method-retest::before {
  width: 33px;
  height: 33px;
  border: 3px solid var(--blue);
  border-right-color: rgba(29,92,255,.18);
  border-radius: 50%;
  background: transparent;
  transform: rotate(-28deg) translateZ(18px);
}
.method-retest::after {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 0;
  border-top: 3px solid var(--blue);
  border-right: 3px solid var(--blue);
  background: transparent;
  transform: translate(11px, -13px) translateZ(24px) rotate(22deg);
}

.rendered-3d-icon {
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
  overflow: visible !important;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  line-height: 0;
  font-size: 0;
}
.rendered-3d-icon::before,
.rendered-3d-icon::after {
  content: none !important;
  display: none !important;
}
.rendered-3d-icon img {
  display: block;
  width: 124%;
  height: auto;
  aspect-ratio: 1 / 1;
  max-width: none;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 17px 18px rgba(6,23,47,.16));
}
.proof-grid article > .rendered-3d-icon {
  width: 70px;
  height: 70px;
  margin: -8px 0 0 -8px;
}
.learner-signal-grid .rendered-3d-icon {
  width: 66px;
  height: 66px;
  margin-left: -5px;
}
.method-icon.rendered-3d-icon {
  width: 96px;
  height: 96px;
  right: 11px;
  top: 14px;
  border-radius: 30px;
}
.method-icon.rendered-3d-icon img { width: 118%; height: auto; }
.method-card h3 { margin-top: 92px; }
.method-card.featured .rendered-3d-icon img { filter: drop-shadow(0 18px 20px rgba(0,0,0,.24)); }

@media (max-width: 1080px) {
  .method-icon.rendered-3d-icon { width: 88px; height: 88px; right: 16px; top: 16px; }
  .method-card h3 { margin-top: 82px; }
}
@media (max-width: 720px) {
  .proof-grid article > .rendered-3d-icon { width: 66px; height: 66px; margin: -6px 0 0 -6px; }
  .learner-signal-grid .rendered-3d-icon { width: 62px; height: 62px; margin-left: -4px; }
  .method-icon.rendered-3d-icon { width: 80px; height: 80px; right: 14px; top: 14px; }
  .method-card h3 { margin-top: 66px; }
}

.rendered-3d-icon img {
  width: 122%;
  filter: drop-shadow(0 20px 22px rgba(6,23,47,.17));
  transform: translateY(-1px);
}
.proof-grid article {
  min-height: 214px;
  padding: 30px 28px 28px;
}
.proof-grid article > .rendered-3d-icon {
  width: 94px;
  height: 94px;
  margin: -17px 0 18px -17px;
}
.learner-signal-grid article {
  grid-template-columns: 88px 1fr;
  gap: 3px 22px;
  align-items: start;
  padding: 24px;
}
.learner-signal-grid .rendered-3d-icon {
  width: 92px;
  height: 92px;
  grid-row: 1 / span 2;
  margin: -14px 0 -10px -14px;
}
.learner-signal-grid p {
  grid-column: 2;
  margin-top: 5px;
}
.method-card {
  min-height: 350px;
  padding: 28px;
}
.method-icon.rendered-3d-icon {
  position: absolute;
  width: 126px;
  height: 126px;
  right: 6px;
  top: 8px;
  border-radius: 34px;
}
.method-icon.rendered-3d-icon img { width: 124%; }
.method-card h3 { margin-top: 112px; }
.method-card.featured .rendered-3d-icon img { filter: drop-shadow(0 22px 26px rgba(0,0,0,.25)); }

@media (max-width: 1080px) {
  .proof-grid article { min-height: 206px; }
  .proof-grid article > .rendered-3d-icon { width: 88px; height: 88px; margin: -14px 0 16px -14px; }
  .learner-signal-grid article { grid-template-columns: 84px 1fr; }
  .learner-signal-grid .rendered-3d-icon { width: 88px; height: 88px; }
  .method-icon.rendered-3d-icon { width: 116px; height: 116px; right: 8px; top: 8px; }
  .method-card h3 { margin-top: 104px; }
}
@media (max-width: 720px) {
  .proof-grid article { min-height: auto; padding: 24px; }
  .proof-grid article > .rendered-3d-icon { width: 88px; height: 88px; margin: -14px 0 15px -14px; }
  .learner-signal-grid article { grid-template-columns: 1fr; gap: 10px; padding: 22px; }
  .learner-signal-grid .rendered-3d-icon { width: 86px; height: 86px; grid-row: auto; margin: -12px 0 16px -12px; }
  .learner-signal-grid p { grid-column: auto; margin-top: 0; }
  .method-card { min-height: 300px; padding: 24px; }
  .method-icon.rendered-3d-icon { width: 104px; height: 104px; right: 8px; top: 8px; }
  .method-card h3 { margin-top: 96px; }
}
@media (max-width: 390px) {
  .rendered-3d-icon img { width: 120%; }
  .proof-grid article > .rendered-3d-icon { width: 82px; height: 82px; margin: -12px 0 14px -12px; }
  .learner-signal-grid .rendered-3d-icon { width: 82px; height: 82px; }
  .method-icon.rendered-3d-icon { width: 96px; height: 96px; }
  .method-card h3 { margin-top: 88px; }
}

/* Dribbble-informed polish pass: cleaner icon composition, less intrusive white hardware/base panels,
   and more deliberate spacing/elevation so the academy identity feels premium rather than decorative. */
.hero-studio {
  min-height: 676px;
}
.hero-studio::before {
  inset: 46px -6px 72px 28px;
  border-radius: 52px;
  background:
    radial-gradient(circle at 76% 18%, rgba(107,220,255,.14), transparent 26%),
    radial-gradient(circle at 18% 78%, rgba(246,220,150,.105), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.082), rgba(255,255,255,.018));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    inset 0 -26px 84px rgba(4,9,20,.12),
    rgba(0,0,0,.2) 0 42px 96px -70px;
}
.hero-studio::after {
  left: 10%;
  right: 8%;
  bottom: 30px;
  height: 78px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.34), rgba(0,0,0,.08) 48%, transparent 74%);
  filter: blur(18px);
  opacity: .54;
}
.studio-plinth {
  left: 10%;
  right: 7%;
  bottom: 56px;
  height: 74px;
  opacity: .62;
  background:
    radial-gradient(ellipse at center, rgba(246,220,150,.08), transparent 60%),
    radial-gradient(ellipse at 52% 48%, rgba(107,220,255,.045), transparent 66%),
    linear-gradient(180deg, rgba(255,255,255,.042), rgba(255,255,255,.008));
  border-top-color: rgba(255,255,255,.075);
}
.laptop-device {
  width: min(100%, 714px);
  margin: 78px -8px 0 auto;
  transform: rotateX(4.4deg) rotateY(-5deg) rotateZ(-.38deg);
  filter: drop-shadow(0 62px 82px rgba(0,0,0,.36));
}
.laptop-lid {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.72),
    inset 0 -18px 42px rgba(5,11,24,.25),
    rgba(0,0,0,.16) 0 20px 50px -38px;
}
.laptop-base {
  width: 78%;
  height: 18px;
  margin-top: -1px;
  border-radius: 0 0 34px 34px;
  background: linear-gradient(180deg, rgba(236,243,252,.94), rgba(82,101,131,.9));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.7),
    rgba(0,0,0,.28) 0 16px 30px -22px;
  opacity: .92;
}
.laptop-base::after { bottom: 3px; opacity: .62; }
.tablet-device {
  right: -2px;
  bottom: 38px;
  width: 236px;
  transform: rotateZ(2.8deg) rotateY(-2.6deg) translateZ(46px);
  box-shadow:
    rgba(0,0,0,.3) 0 34px 72px -44px,
    rgba(107,220,255,.08) 0 0 0 1px,
    inset 0 1px 0 rgba(255,255,255,.2);
}
.device-insight-card {
  left: 20px;
  bottom: 46px;
  width: 288px;
  padding: 14px;
  border-radius: 23px;
  background: rgba(5,11,24,.66);
  box-shadow:
    rgba(0,0,0,.22) 0 26px 66px -42px,
    inset 0 1px 0 rgba(255,255,255,.1);
}
.insight-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 18%, rgba(255,255,255,.62), transparent 32%),
    linear-gradient(150deg, #fff4c8 0%, #d9a64d 48%, #0d2447 100%);
}

.proof-band {
  padding: 46px 0 44px;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  border-block-color: rgba(9,17,31,.06);
}
.proof-grid {
  gap: 18px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.proof-grid article {
  min-height: 206px;
  padding: 28px 26px 26px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 6%, rgba(29,92,255,.055), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,255,.94));
  border: 1px solid rgba(14,38,72,.096);
  box-shadow:
    rgba(50,50,93,.16) 0 26px 48px -36px,
    rgba(8,19,38,.06) 0 10px 24px -20px;
}
.proof-grid article:nth-child(even) {
  background:
    radial-gradient(circle at 84% 8%, rgba(201,151,53,.075), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(249,251,255,.94));
}
.rendered-3d-icon img {
  width: 112%;
  filter: drop-shadow(0 16px 18px rgba(6,23,47,.14));
  transform: translateY(-1px);
}
.proof-grid article > .rendered-3d-icon {
  width: 86px;
  height: 86px;
  margin: -9px 0 8px -10px;
}
.proof-grid strong { margin-top: 10px; font-size: 20px; line-height: 1.12; }
.proof-grid p { margin-top: 9px; }
.learner-signal-grid article {
  grid-template-columns: 76px 1fr;
  gap: 4px 19px;
  align-items: start;
  padding: 22px 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 94% 8%, rgba(29,92,255,.045), transparent 38%),
    rgba(255,255,255,.94);
  box-shadow: rgba(50,50,93,.13) 0 24px 46px -34px, rgba(8,19,38,.05) 0 0 0 1px;
}
.learner-signal-grid .rendered-3d-icon {
  width: 82px;
  height: 82px;
  grid-row: 1 / span 2;
  margin: -10px 0 -5px -12px;
}
.learner-signal-grid strong { align-self: end; }
.learner-signal-grid p { margin-top: 4px; }
.method-card {
  min-height: 328px;
  padding: 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 7%, rgba(29,92,255,.07), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow:
    rgba(50,50,93,.15) 0 28px 52px -38px,
    rgba(8,19,38,.055) 0 0 0 1px;
}
.method-card.featured {
  background:
    radial-gradient(circle at 86% 2%, rgba(246,220,150,.18), transparent 32%),
    linear-gradient(180deg, #102c55 0%, #050b18 100%);
}
.method-icon.rendered-3d-icon {
  width: 112px;
  height: 112px;
  right: 14px;
  top: 13px;
}
.method-icon.rendered-3d-icon img { width: 112%; }
.method-card h3 { margin-top: 100px; }
.method-card p { line-height: 1.58; }
.standards-grid span {
  background:
    radial-gradient(circle at 35% 18%, rgba(255,255,255,.6), transparent 34%),
    linear-gradient(145deg, #fff8de, #edf5ff 46%, #dfeaff);
  border: 1px solid rgba(14,38,72,.09);
  box-shadow: rgba(50,50,93,.12) 0 18px 34px -28px, inset 0 1px 0 rgba(255,255,255,.9);
}

@media (max-width: 1080px) {
  .hero-studio { min-height: 590px; }
  .laptop-device { width: min(100%, 680px); margin-right: 0; }
  .tablet-device { width: 226px; right: 10px; bottom: 32px; }
  .device-insight-card { left: 14px; bottom: 42px; width: 280px; }
  .proof-grid article > .rendered-3d-icon { width: 82px; height: 82px; margin: -8px 0 8px -9px; }
  .learner-signal-grid article { grid-template-columns: 74px 1fr; }
  .learner-signal-grid .rendered-3d-icon { width: 80px; height: 80px; }
  .method-icon.rendered-3d-icon { width: 106px; height: 106px; }
  .method-card h3 { margin-top: 94px; }
}
@media (max-width: 720px) {
  .hero-studio::before, .hero-studio::after, .studio-plinth { display: none; }
  .laptop-device { width: 100%; margin: 0; transform: none; filter: drop-shadow(0 32px 48px rgba(0,0,0,.28)); }
  .laptop-base { width: 68%; height: 14px; }
  .tablet-device, .device-insight-card { position: relative; inset: auto; width: 100%; transform: none; }
  .device-insight-card { grid-template-columns: 50px 1fr; }
  .proof-grid { gap: 14px; }
  .proof-grid article { padding: 22px; }
  .proof-grid article > .rendered-3d-icon { width: 78px; height: 78px; margin: -8px 0 8px -9px; }
  .learner-signal-grid article { grid-template-columns: 1fr; gap: 10px; padding: 22px; }
  .learner-signal-grid .rendered-3d-icon { width: 78px; height: 78px; grid-row: auto; margin: -8px 0 10px -10px; }
  .method-card { min-height: 292px; padding: 24px; }
  .method-icon.rendered-3d-icon { width: 96px; height: 96px; right: 12px; top: 12px; }
  .method-card h3 { margin-top: 86px; }
}
@media (max-width: 390px) {
  .rendered-3d-icon img { width: 108%; }
  .proof-grid article > .rendered-3d-icon { width: 74px; height: 74px; }
  .learner-signal-grid .rendered-3d-icon { width: 74px; height: 74px; }
  .method-icon.rendered-3d-icon { width: 88px; height: 88px; }
  .method-card h3 { margin-top: 80px; }
}


/* Research-led institutional redesign — reference set: IWCF (certification authority), Linear/Vercel (product-shot clarity), Stripe/WorkOS (enterprise trust). This final layer supersedes older glossy/Dribbble icon experiments. */
.brand { gap: 13px; }
.brand-mark-wrap { width: 50px; height: 50px; }
.brand-mark-wrap::before { inset: -2px; border-radius: 18px; background: radial-gradient(circle at 50% 50%, rgba(212,162,74,.075), transparent 70%); }
.brand-logo { width: 48px; height: 48px; filter: none; }
.brand-line { gap: 6px; letter-spacing: -.045em; }
.brand-line strong { font-size: 25px; font-weight: 760; color: #09111f; }
.brand-line em { font-size: 25px; font-weight: 560; color: #74531c; }
.brand-type small { color: #637187; letter-spacing: .14em; }

.hero { min-height: 780px; background:
  radial-gradient(circle at 78% 12%, rgba(107,220,255,.14), transparent 25rem),
  radial-gradient(circle at 18% 8%, rgba(246,220,150,.1), transparent 30rem),
  linear-gradient(135deg, #030813 0%, #06152c 55%, #071f41 100%);
}
.hero::before { background:
  linear-gradient(90deg, rgba(3,8,19,.82), rgba(3,8,19,.14) 58%, rgba(3,8,19,.36)),
  linear-gradient(180deg, rgba(3,8,19,0) 68%, rgba(3,8,19,.92));
}
.hero-mesh { opacity: .105; background-size: 112px 112px; }
.hero-grid { grid-template-columns: minmax(0, .98fr) minmax(510px, 1.02fr); align-items: center; gap: clamp(54px, 5.6vw, 88px); padding: clamp(88px, 7.5vw, 118px) 0 88px; }
h1 { max-width: 740px; letter-spacing: -.062em; }
.hero-subtitle { max-width: 600px; color: rgba(255,255,255,.76); }
.hero-visual { position: relative; z-index: 1; margin: 0; min-height: 590px; display: grid; place-items: center; isolation: isolate; }
.hero-visual::before { content: ""; position: absolute; inset: 42px -4px 48px 22px; border-radius: 56px; background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.018)); border: 1px solid rgba(255,255,255,.105); box-shadow: inset 0 1px 0 rgba(255,255,255,.14), rgba(0,0,0,.21) 0 42px 96px -72px; }
.hero-visual::after { content: ""; position: absolute; left: 7%; right: 7%; bottom: 34px; height: 82px; border-radius: 50%; background: radial-gradient(ellipse at center, rgba(0,0,0,.32), rgba(0,0,0,.08) 48%, transparent 74%); filter: blur(16px); opacity: .58; }
.hero-visual img { position: relative; z-index: 1; width: min(112%, 720px); max-width: none; height: auto; transform: translateX(10px); filter: drop-shadow(0 54px 70px rgba(0,0,0,.30)); }

.proof-band { padding: 50px 0 48px; background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%); }
.proof-grid { gap: 18px; overflow: visible; border-radius: 0; background: transparent; box-shadow: none; }
.proof-grid article { min-height: 214px; padding: 30px 28px 28px; border-radius: 30px; background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(248,251,255,.95)); border: 1px solid rgba(14,38,72,.095); box-shadow: rgba(50,50,93,.14) 0 26px 48px -38px, rgba(8,19,38,.045) 0 0 0 1px; }
.feature-icon { display: grid; place-items: center; position: relative; width: 70px; height: 70px; line-height: 0; flex: 0 0 auto; }
.feature-icon img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 14px 16px rgba(6,23,47,.10)); }
.proof-icon { width: 72px; height: 72px; margin: -4px 0 16px -4px; }
.proof-grid strong { margin-top: 10px; font-size: 20px; line-height: 1.12; }
.proof-grid p { margin-top: 9px; }
.learner-signal-grid article { grid-template-columns: 74px 1fr; gap: 5px 20px; align-items: start; padding: 23px 24px; border-radius: 28px; background: radial-gradient(circle at 94% 8%, rgba(29,92,255,.045), transparent 38%), rgba(255,255,255,.95); box-shadow: rgba(50,50,93,.12) 0 24px 46px -36px, rgba(8,19,38,.045) 0 0 0 1px; }
.signal-asset { width: 70px; height: 70px; grid-row: 1 / span 2; margin: -2px 0 0 -3px; }
.learner-signal-grid p { grid-column: 2; margin-top: 4px; }

.method-card { min-height: 318px; padding: 28px; border-radius: 30px; background: radial-gradient(circle at 92% 7%, rgba(29,92,255,.055), transparent 35%), linear-gradient(180deg, #ffffff 0%, #f8fbff 100%); box-shadow: rgba(50,50,93,.14) 0 28px 52px -40px, rgba(8,19,38,.05) 0 0 0 1px; }
.method-card.featured { background: radial-gradient(circle at 86% 2%, rgba(246,220,150,.16), transparent 32%), linear-gradient(180deg, #102c55 0%, #050b18 100%); }
.method-asset { position: absolute; width: 92px; height: 92px; right: 22px; top: 20px; }
.method-card.featured .method-asset img { filter: drop-shadow(0 16px 18px rgba(0,0,0,.20)); }
.method-card h3 { margin-top: 82px; }
.method-card p { line-height: 1.58; }

.readiness-list { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 14px; }
.readiness-list li { position: relative; padding-left: 34px; color: rgba(255,255,255,.84); font-weight: 600; }
.readiness-list li::before { content: ""; position: absolute; left: 0; top: .25em; width: 23px; height: 16px; border-radius: 8px; background: rgba(246,220,150,.12); box-shadow: inset 0 0 0 1px rgba(246,220,150,.22); }
.readiness-list li::after { content: ""; position: absolute; left: 7px; top: .68em; width: 9px; height: 2px; border-radius: 99px; background: var(--gold-light); }

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 88px; }
  .hero-visual { min-height: 560px; max-width: 720px; margin-inline: auto; }
  .hero-visual img { width: min(108%, 690px); transform: none; }
  .method-asset { width: 88px; height: 88px; right: 18px; top: 18px; }
  .method-card h3 { margin-top: 78px; }
}
@media (max-width: 720px) {
  .brand-mark-wrap { width: 44px; height: 44px; }
  .brand-logo { width: 42px; height: 42px; }
  .hero { min-height: auto; }
  .hero-grid { padding: 58px 0 70px; gap: 36px; }
  .hero-visual { min-height: 0; display: block; }
  .hero-visual::before, .hero-visual::after { display: none; }
  .hero-visual img { width: 100%; filter: drop-shadow(0 26px 38px rgba(0,0,0,.25)); }
  .proof-grid { gap: 14px; }
  .proof-grid article { min-height: auto; padding: 22px; }
  .proof-icon { width: 66px; height: 66px; margin: -2px 0 14px -2px; }
  .learner-signal-grid article { grid-template-columns: 1fr; gap: 10px; padding: 22px; }
  .signal-asset { width: 66px; height: 66px; grid-row: auto; margin: -2px 0 8px -2px; }
  .learner-signal-grid p { grid-column: auto; margin-top: 0; }
  .method-card { min-height: 276px; padding: 24px; }
  .method-asset { width: 78px; height: 78px; right: 14px; top: 14px; }
  .method-card h3 { margin-top: 72px; }
}
@media (max-width: 390px) {
  .hero-visual img { width: 104%; margin-left: -2%; }
  .proof-icon, .signal-asset { width: 62px; height: 62px; }
  .method-asset { width: 72px; height: 72px; }
  .method-card h3 { margin-top: 66px; }
}

.hero-grid {
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  gap: clamp(46px, 5vw, 76px);
}
.hero-visual {
  min-height: 610px;
  overflow: visible;
  place-items: center;
}
.hero-visual::before {
  inset: 30px 6px 52px 8px;
  border-radius: 52px;
}
.hero-visual::after {
  left: 12%;
  right: 12%;
  bottom: 42px;
  height: 78px;
  opacity: .52;
}
.hero-visual img {
  width: min(100%, 700px);
  max-width: 100%;
  transform: none;
  filter: drop-shadow(0 48px 66px rgba(0,0,0,.29));
}

.method-timeline {
  gap: 20px;
  align-items: stretch;
}
.method-card {
  min-height: 336px;
  padding: 30px;
  overflow: hidden;
}
.method-card > span:not(.method-asset) {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #ffffff;
  border: 1px solid rgba(14,38,72,.11);
  color: var(--blue);
  box-shadow: rgba(8,19,38,.08) 0 14px 26px -22px, inset 0 1px 0 rgba(255,255,255,.96);
}
.method-card.featured > span:not(.method-asset) {
  color: #081326;
  background: linear-gradient(180deg, #fff4cf, #e5bd65);
  border-color: rgba(255,241,191,.35);
}
.method-card .method-asset {
  position: absolute;
  z-index: 2;
  right: 24px;
  top: 24px;
  width: 92px;
  height: 92px;
  padding: 0;
  border: 0;
  border-radius: 30px;
  background: transparent !important;
  box-shadow: none !important;
  color: inherit;
  line-height: 0;
  overflow: visible;
}
.method-card .method-asset::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 9px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 34% 25%, rgba(255,255,255,.96), rgba(255,255,255,0) 34%),
    linear-gradient(145deg, rgba(255,255,255,.7), rgba(232,241,253,.38));
  box-shadow: rgba(8,19,38,.13) 0 18px 34px -27px;
}
.method-card.featured .method-asset::before {
  background:
    radial-gradient(circle at 35% 24%, rgba(255,255,255,.64), rgba(255,255,255,0) 34%),
    linear-gradient(145deg, rgba(255,245,207,.38), rgba(107,220,255,.14));
  box-shadow: rgba(0,0,0,.22) 0 20px 38px -28px;
}
.method-card .method-asset img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 18px rgba(6,23,47,.12));
}
.method-card.featured .method-asset img {
  filter: drop-shadow(0 16px 18px rgba(0,0,0,.22));
}
.method-card h3 {
  margin-top: 68px;
}
.method-card p {
  max-width: 95%;
}

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .hero-visual { min-height: 548px; max-width: 720px; margin-inline: auto; }
  .hero-visual img { width: min(100%, 690px); transform: none; }
  .method-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .method-card .method-asset { width: 88px; height: 88px; right: 22px; top: 22px; }
  .method-card h3 { margin-top: 66px; }
}
@media (max-width: 720px) {
  .hero-grid { padding: 58px 0 70px; gap: 34px; }
  .hero-visual { min-height: 0; display: block; max-width: none; }
  .hero-visual::before, .hero-visual::after { display: none; }
  .hero-visual img { width: 100%; margin-left: 0; max-width: 100%; filter: drop-shadow(0 24px 34px rgba(0,0,0,.24)); }
  .method-timeline { grid-template-columns: 1fr; }
  .method-card { min-height: 282px; padding: 24px; }
  .method-card .method-asset { width: 78px; height: 78px; right: 18px; top: 18px; }
  .method-card h3 { margin-top: 58px; }
  .method-card p { max-width: 100%; }
}
@media (max-width: 390px) {
  .hero-visual img { width: 100%; margin-left: 0; }
  .method-card .method-asset { width: 74px; height: 74px; right: 16px; top: 16px; }
  .method-card h3 { margin-top: 54px; }
}

/* Performance-minded motion system: scroll progress, staged reveals, and subtle hero depth. */
.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
  transform-origin: left center;
  transform: scaleX(var(--scroll-progress, 0));
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--blue-2));
  box-shadow: 0 0 18px rgba(246, 220, 150, .28);
}
.motion-ready .reveal {
  --reveal-x: 0px;
  --reveal-y: 28px;
  --reveal-scale: 1;
  --reveal-rotate: 0deg;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale)) rotate(var(--reveal-rotate));
  transition:
    opacity .86s cubic-bezier(.19, 1, .22, 1),
    transform .86s cubic-bezier(.19, 1, .22, 1),
    filter .86s cubic-bezier(.19, 1, .22, 1);
  transition-delay: calc(min(var(--stagger-index, 0), 6) * 72ms);
  will-change: opacity, transform;
}
.motion-ready .reveal[data-motion="left"] { --reveal-x: -34px; --reveal-y: 12px; }
.motion-ready .reveal[data-motion="right"] { --reveal-x: 34px; --reveal-y: 12px; }
.motion-ready .reveal[data-motion="scale"] { --reveal-y: 24px; --reveal-scale: .965; }
.motion-ready .reveal[data-motion="lift"] { --reveal-y: 34px; --reveal-scale: .985; }
.motion-ready .reveal.in-view {
  opacity: 1;
  filter: none;
  transform: translate3d(0,0,0) scale(1) rotate(0deg);
}
.motion-ready .section-heading.reveal,
.motion-ready .ecosystem-heading.reveal {
  transition-duration: .78s;
}
.motion-ready .hero-mesh {
  transform: translate3d(0, var(--mesh-drift-y, 0px), 0);
  transition: transform .18s linear;
  will-change: transform;
}
.motion-ready .ambient-one,
.motion-ready .ambient-two {
  transform: translate3d(0, var(--hero-ambient-y, 0px), 0);
  transition: transform .18s linear;
  will-change: transform;
}
.motion-ready .hero-visual img {
  transform: translate3d(0, var(--hero-parallax-y, 0px), 0);
  transition: filter .26s ease;
  will-change: transform;
}
.motion-ready .proof-grid article,
.motion-ready .feature-panel,
.motion-ready .method-card,
.motion-ready .provider-card,
.motion-ready .standards-grid article,
.motion-ready .outcome-grid article,
.motion-ready .updates-action-card {
  backface-visibility: hidden;
}
.proof-grid article,
.feature-panel,
.method-card,
.provider-card,
.standards-grid article,
.outcome-grid article,
.updates-action-card {
  transition:
    transform .26s cubic-bezier(.2,.8,.2,1),
    box-shadow .26s cubic-bezier(.2,.8,.2,1),
    border-color .26s ease,
    background .26s ease;
}
.proof-grid article:hover,
.method-card:not(.featured):hover,
.standards-grid article:hover,
.outcome-grid article:hover,
.updates-action-card:hover {
  transform: translateY(-4px);
  box-shadow: rgba(50,50,93,.17) 0 32px 58px -42px, rgba(8,19,38,.06) 0 0 0 1px;
}
.method-card.featured:hover {
  transform: translateY(-4px);
  box-shadow: rgba(5,11,24,.34) 0 44px 96px -58px;
}
@media (max-width: 1080px) {
  .motion-ready .reveal[data-motion="left"],
  .motion-ready .reveal[data-motion="right"] {
    --reveal-x: 0px;
    --reveal-y: 24px;
  }
}
@media (max-width: 720px) {
  .scroll-progress { height: 2px; }
  .motion-ready .reveal {
    --reveal-x: 0px;
    transition-delay: calc(min(var(--stagger-index, 0), 4) * 48ms);
  }
  .motion-ready .hero-mesh,
  .motion-ready .ambient-one,
  .motion-ready .ambient-two,
  .motion-ready .hero-visual img { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
  .motion-ready .reveal,
  .motion-ready .hero-mesh,
  .motion-ready .ambient-one,
  .motion-ready .ambient-two,
  .motion-ready .hero-visual img,
  .proof-grid article,
  .feature-panel,
  .method-card,
  .provider-card,
  .standards-grid article,
  .outcome-grid article,
  .updates-action-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}
