@import url("https://api.fontshare.com/v2/css?f[]=clash-display@200,300,400,500,600,700,1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Instrument+Serif:ital@0;1&display=swap");

:root {
  color-scheme: dark;
  --page: min(100% - 2rem, 1480px);
  --void: oklch(10% 0.018 250);
  --navy: oklch(15.5% 0.05 250);
  --navy-2: oklch(21% 0.065 246);
  --ink: oklch(94% 0.012 236);
  --muted: oklch(73% 0.026 236);
  --quiet: oklch(57% 0.035 238);
  --blue: oklch(63% 0.16 246);
  --cyan: oklch(76% 0.11 216);
  --brass: oklch(77% 0.12 82);
  --signal: oklch(61% 0.18 31);
  --signal-soft: oklch(25% 0.09 31);
  --line: oklch(94% 0.012 236 / 0.16);
  --glass: oklch(92% 0.012 236 / 0.105);
  --solid: oklch(15% 0.045 250 / 0.92);
  --solid-2: oklch(18% 0.05 250 / 0.94);
  --shadow: 0 34px 90px oklch(5% 0.018 250 / 0.72);
  --glow-blue: 0 0 42px oklch(63% 0.16 246 / 0.24);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --font: "Clash Display", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-ui: "Instrument Sans", "Clash Display", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --mono: "SFMono-Regular", "IBM Plex Mono", Consolas, monospace;
  --w-light: 300;
  --w-regular: 400;
  --w-medium: 500;
  --w-semibold: 600;
  --w-bold: 700;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html::before {
  content: "";
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--brass));
  box-shadow: 0 0 24px oklch(76% 0.11 216 / 0.36);
  transform-origin: left center;
  pointer-events: none;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(115deg, transparent 0 26%, oklch(64% 0.1 82 / 0.26) 26% 38%, transparent 38% 100%),
    linear-gradient(24deg, transparent 0 44%, oklch(54% 0.14 246 / 0.28) 44% 58%, transparent 58% 100%),
    linear-gradient(140deg, var(--void), var(--navy) 52%, oklch(8% 0.026 240) 100%);
  background-attachment: fixed;
  font-family: var(--font);
  font-weight: var(--w-regular);
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    repeating-linear-gradient(90deg, oklch(94% 0.012 236 / 0.04) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, oklch(94% 0.012 236 / 0.035) 0 1px, transparent 1px 72px);
  mask-image: linear-gradient(to bottom, black 0 58%, transparent 88%);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    conic-gradient(from 210deg at 72% 22%, transparent 0 22%, oklch(93% 0.02 236 / 0.15) 23%, transparent 31% 100%),
    conic-gradient(from 30deg at 18% 76%, transparent 0 28%, oklch(76% 0.11 216 / 0.14) 29%, transparent 40% 100%);
  filter: blur(18px);
  opacity: .9;
  pointer-events: none;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

p,
li {
  color: var(--muted);
}

.shell {
  width: var(--page);
  margin: 0 auto;
}

.site-top {
  position: sticky;
  top: 16px;
  z-index: 50;
  width: var(--page);
  margin: 16px auto 0;
}

.liquid {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, oklch(96% 0.01 236 / 0.16), oklch(84% 0.04 246 / 0.06)),
    var(--glass);
  box-shadow:
    inset 0 1px 0 oklch(99% 0.006 236 / 0.36),
    inset 0 -1px 0 oklch(99% 0.006 236 / 0.08),
    var(--shadow);
  backdrop-filter: blur(34px) saturate(1.6) contrast(1.08);
  -webkit-backdrop-filter: blur(34px) saturate(1.6) contrast(1.08);
  overflow: hidden;
}

.liquid::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(110deg, transparent 0 36%, oklch(99% 0.006 236 / 0.25) 38%, transparent 43% 100%),
    linear-gradient(20deg, transparent 0 66%, oklch(76% 0.11 216 / 0.12) 72%, transparent 86% 100%);
  pointer-events: none;
  mix-blend-mode: screen;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .liquid {
    background: var(--solid);
  }
}

.nav {
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  border-radius: 999px;
  padding: .62rem .74rem;
}

.brand,
.links,
.nav-action,
.hero-copy,
.card>*,
.alert-box>*,
.page-card>*,
.footer-layout>* {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-weight: var(--w-semibold);
  white-space: nowrap;
}

.brand img {
  display: block;
  height: auto;
  flex: 0 0 auto;
}

.brand-mark {
  width: clamp(30px, 2vw, 38px);
  filter: drop-shadow(0 0 18px oklch(63% 0.16 246 / .28));
}

.brand-wordmark {
  width: clamp(150px, 14vw, 196px);
  max-width: 100%;
}

.mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background:
    linear-gradient(135deg, oklch(99% 0.006 236 / 0.34), oklch(63% 0.16 246 / 0.16)),
    oklch(92% 0.012 236 / 0.12);
  box-shadow:
    inset 0 1px 0 oklch(99% 0.006 236 / 0.48),
    inset 0 -10px 22px oklch(5% 0.018 250 / 0.22),
    var(--glow-blue);
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 600;
}

.links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: .18rem;
  border-radius: 999px;
  padding: .26rem;
  background: oklch(8% 0.018 250 / 0.22);
  color: var(--muted);
  font-size: .88rem;
  font-weight: var(--w-medium);
}

.links a {
  border-radius: 999px;
  padding: .56rem .78rem;
  transition: color .22s var(--ease), background-color .22s var(--ease);
}

.links a:hover,
.links a[aria-current="page"] {
  color: var(--ink);
  background: oklch(94% 0.012 236 / 0.12);
}

.nav-action {
  justify-self: end;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .62rem;
  border: 1px solid oklch(99% 0.006 236 / 0.18);
  border-radius: 999px;
  padding: .76rem 1.1rem;
  background:
    linear-gradient(135deg, oklch(99% 0.006 236 / 0.17), oklch(76% 0.11 216 / 0.08)),
    oklch(92% 0.012 236 / 0.08);
  color: var(--ink);
  font-weight: var(--w-semibold);
  box-shadow:
    inset 0 1px 0 oklch(99% 0.006 236 / 0.3),
    inset 0 -12px 24px oklch(5% 0.018 250 / 0.18),
    0 14px 34px oklch(5% 0.018 250 / 0.4);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  border-color: oklch(76% 0.11 216 / 0.44);
  box-shadow:
    inset 0 1px 0 oklch(99% 0.006 236 / 0.36),
    inset 0 -12px 24px oklch(5% 0.018 250 / 0.16),
    0 20px 48px oklch(5% 0.018 250 / 0.52),
    var(--glow-blue);
}

.btn.signal {
  border-color: oklch(76% 0.11 31 / 0.38);
  background:
    linear-gradient(135deg, oklch(61% 0.18 31 / 0.3), oklch(27% 0.09 31 / 0.18)),
    oklch(92% 0.012 236 / 0.08);
}

.btn.solid {
  background: var(--solid-2);
}

.section {
  padding: 7rem 0;
}

.hero {
  min-height: calc(100vh - 92px);
  min-height: calc(100svh - 92px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: 4rem 0 3.5rem;
}

@media (min-width: 981px) {
  .hero {
    grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
    padding: 5.5rem 0 4.5rem;
  }
}

.page-hero {
  padding: 5.5rem 0 3rem;
}

.page-hero-inner {
  max-width: 850px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .54rem;
  margin-bottom: 1rem;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: .58rem;
  height: .58rem;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 7px oklch(76% 0.11 216 / 0.14);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.15rem;
  font-size: 6.8rem;
  font-weight: var(--w-semibold);
  line-height: .88;
  letter-spacing: 0;
}

.page-hero h1 {
  max-width: 13ch;
  font-size: 5.1rem;
}

h2 {
  max-width: 16ch;
  margin-bottom: 1rem;
  font-size: 4.1rem;
  font-weight: var(--w-medium);
  line-height: .94;
  letter-spacing: 0;
}

h3 {
  margin-bottom: .58rem;
  font-size: 1.65rem;
  font-weight: var(--w-semibold);
  line-height: 1.08;
  letter-spacing: 0;
}

.lead {
  max-width: 66ch;
  color: var(--muted);
  font-size: 1.18rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .78rem;
  margin-top: 2rem;
}

.image-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
  transition: transform .18s linear;
  will-change: transform;
  z-index: 0;
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, oklch(8% 0.018 250 / 0.38), transparent 42%),
    linear-gradient(0deg, oklch(8% 0.018 250 / 0.52), transparent 48%);
  pointer-events: none;
}

.alert-box {
  border: 1px solid oklch(76% 0.11 31 / 0.34);
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: linear-gradient(135deg, oklch(61% 0.18 31 / 0.16), transparent), var(--solid);
  box-shadow: 0 18px 54px oklch(5% 0.018 250 / 0.46);
}

.alert-box p {
  margin-bottom: 0;
}

.pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: .42rem;
  border: 1px solid oklch(94% 0.012 236 / 0.18);
  border-radius: 999px;
  padding: .38rem .72rem;
  background: oklch(94% 0.012 236 / 0.08);
  color: var(--muted);
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.pill.signal {
  border-color: oklch(76% 0.11 31 / 0.36);
  background: oklch(61% 0.18 31 / 0.13);
  color: oklch(83% 0.08 31);
}

.split {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.section-head {
  position: sticky;
  top: 116px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 1rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 1rem;
}

.stack {
  display: grid;
  gap: 1rem;
}

.card,
.page-card,
.legal-card {
  border: 1px solid oklch(94% 0.012 236 / 0.12);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  background: var(--solid);
  box-shadow: 0 18px 54px oklch(5% 0.018 250 / 0.42);
}

.card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  will-change: transform;
}

.card:hover {
  transform: translateY(-5px);
  border-color: oklch(76% 0.11 216 / 0.28);
  box-shadow: 0 26px 74px oklch(5% 0.018 250 / 0.56), var(--glow-blue);
}

.card.alert {
  border-color: oklch(76% 0.11 31 / 0.28);
  background: linear-gradient(135deg, oklch(61% 0.18 31 / 0.15), transparent), var(--solid);
}

.image-panel {
  position: relative;
  min-height: 430px;
  height: 430px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.list {
  display: grid;
  gap: .7rem;
  padding-left: 1.1rem;
}

.list li::marker {
  color: var(--cyan);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  max-width: 920px;
}

.legal-card h2 {
  max-width: none;
  font-size: 2.2rem;
}

.legal-card h3 {
  margin-top: 1.4rem;
}

.legal-card p:last-child,
.card p:last-child {
  margin-bottom: 0;
}

.notice-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: center;
  padding: 1.15rem 1rem;
  color: var(--muted);
  font-weight: var(--w-medium);
  text-align: center;
}

.notice-strip span {
  max-width: 920px;
}

.bento-section {
  padding-top: 5.2rem;
}

.bento-head {
  max-width: 940px;
  margin-bottom: 2rem;
}

.bento-head h2 {
  max-width: 18ch;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.08fr .96fr .96fr;
  grid-template-rows: repeat(3, minmax(180px, auto));
  gap: 1.15rem;
}

.bento-card {
  position: relative;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  overflow: hidden;
  border: 1px solid oklch(94% 0.012 236 / 0.12);
  border-radius: var(--radius-lg);
  padding: clamp(1.15rem, 1.6vw, 1.55rem);
  background:
    linear-gradient(145deg, oklch(94% 0.012 236 / .11), transparent 42%),
    oklch(10% 0.024 250 / .9);
  box-shadow:
    inset 0 1px 0 oklch(99% 0.006 236 / .12),
    0 22px 64px oklch(5% 0.018 250 / .42);
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}

.bento-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -42% 18%;
  height: 65%;
  background: radial-gradient(circle, oklch(60% 0.18 246 / .16), transparent 62%);
  pointer-events: none;
}

.bento-card>* {
  position: relative;
  z-index: 1;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: oklch(76% 0.11 216 / .28);
  box-shadow:
    inset 0 1px 0 oklch(99% 0.006 236 / .16),
    0 30px 82px oklch(5% 0.018 250 / .54),
    var(--glow-blue);
}

.bento-tall {
  grid-row: span 3;
  min-height: 600px;
}

.bento-wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: end;
  gap: 2rem;
}

.bento-alert {
  border-color: oklch(76% 0.11 31 / .28);
  background:
    linear-gradient(145deg, oklch(61% 0.18 31 / .16), transparent 44%),
    oklch(11% 0.025 250 / .92);
}

.bento-icon {
  width: 4.2rem;
  height: 4.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, oklch(99% 0.006 236 / .32), transparent 34%),
    oklch(63% 0.16 246 / .14);
  box-shadow:
    inset 0 1px 0 oklch(99% 0.006 236 / .24),
    var(--glow-blue);
}

.bento-icon svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: oklch(86% 0.08 226);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bento-card h3 {
  max-width: 16ch;
  margin-top: .75rem;
  margin-bottom: .65rem;
  font-size: 1.55rem;
}

.bento-card p {
  margin-bottom: 0;
}

.bento-emphasis {
  color: oklch(96% 0.012 236);
  font-size: clamp(1.45rem, 2.7vw, 2.35rem);
  font-weight: var(--w-semibold);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.bento-stat {
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(oklch(94% 0.012 236 / .22) 1px, transparent 1px) 0 0 / 16px 16px,
    oklch(10% 0.024 250 / .9);
}

.bento-stat strong {
  color: oklch(97% 0.012 236);
  font-size: clamp(3.6rem, 6vw, 5.2rem);
  font-weight: var(--w-bold);
  line-height: .86;
}

.bento-stat p {
  color: var(--muted);
  font-family: var(--mono);
}

.bento-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  color: var(--quiet);
  font-size: .86rem;
}

.mini-action {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid oklch(94% 0.012 236 / .16);
  border-radius: 999px;
  padding: .55rem .86rem;
  color: var(--ink);
  background: oklch(94% 0.012 236 / .08);
  font-weight: var(--w-semibold);
  transition: transform .24s var(--ease), background-color .24s var(--ease), border-color .24s var(--ease);
}

.mini-action:hover {
  transform: translateY(-2px);
  border-color: oklch(76% 0.11 216 / .32);
  background: oklch(94% 0.012 236 / .12);
}

.quote-section {
  padding-top: 4.8rem;
}

.quote-panel {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border: 1px solid oklch(76% 0.08 216 / .32);
  border-radius: 28px;
  background: oklch(6% 0.018 244);
  box-shadow: 0 34px 90px oklch(5% 0.018 250 / .42);
}

.quote-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.04);
  will-change: transform;
}

.quote-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, oklch(3% 0.015 244 / .96) 0%, oklch(4% 0.016 244 / .9) 28%, oklch(4% 0.016 244 / .62) 56%, oklch(5% 0.016 244 / .34) 100%),
    linear-gradient(180deg, oklch(4% 0.016 244 / .5), transparent 32%, oklch(4% 0.016 244 / .72) 100%);
}

.quote-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(oklch(77% 0.08 216 / .55) .85px, transparent .85px);
  background-size: 6px 6px;
  opacity: .28;
  mask-image: linear-gradient(90deg, black 0 48%, transparent 78%);
  -webkit-mask-image: linear-gradient(90deg, black 0 48%, transparent 78%);
}

.quote-corner {
  position: absolute;
  z-index: 2;
  width: 12px;
  height: 12px;
  background: oklch(74% 0.16 216);
  box-shadow: 0 0 18px oklch(74% 0.16 216 / .42);
}

.corner-tl {
  top: -1px;
  left: -1px;
}

.corner-tr {
  top: -1px;
  right: -1px;
}

.corner-bl {
  bottom: -1px;
  left: -1px;
}

.corner-br {
  bottom: -1px;
  right: -1px;
}

.quote-copy {
  position: relative;
  z-index: 3;
  width: min(100%, 78rem);
  display: grid;
  gap: 1.5rem;
  padding: clamp(2rem, 4vw, 3rem);
}

.quote-kicker {
  margin: 0;
  color: oklch(79% 0.11 216);
  font-family: var(--mono);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
}

.quote-lines {
  display: grid;
  gap: .15rem;
  font-family: var(--font-ui);
  font-size: clamp(2.35rem, 6.1vw, 6.4rem);
  line-height: .94;
  letter-spacing: -.045em;
}

.quote-line {
  display: flex;
  flex-wrap: wrap;
  gap: .28em .22em;
  align-items: baseline;
}

.quote-line strong {
  color: oklch(98% 0.006 236);
  font-weight: 680;
}

.quote-line span {
  color: oklch(90% 0.02 236 / .84);
  font-weight: 320;
}

.quote-body {
  max-width: 48rem;
  margin: 0;
  color: oklch(88% 0.016 236 / .76);
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  line-height: 1.7;
}

.quote-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.quote-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid oklch(98% 0.006 236 / .14);
  border-radius: 999px;
  padding: .5rem .82rem;
  background: oklch(98% 0.006 236 / .06);
  color: oklch(92% 0.014 236 / .86);
  font-family: var(--mono);
  font-size: .76rem;
  font-weight: 600;
  text-transform: uppercase;
}

.quote-note {
  max-width: 44rem;
  margin: .35rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid oklch(98% 0.006 236 / .12);
  color: oklch(87% 0.018 236 / .72);
  font-size: .92rem;
}

.course-gallery-section {
  padding-top: 5.2rem;
}

.course-gallery-head {
  max-width: 72rem;
  margin-bottom: 2rem;
}

.course-gallery-head h2 {
  max-width: 12ch;
}

.course-gallery-head .lead {
  max-width: 58rem;
}

.course-gallery-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid oklch(98% 0.006 258 / .08);
  border-radius: 30px;
  padding: clamp(.9rem, 1.2vw, 1.15rem);
  background:
    radial-gradient(circle at 12% 18%, oklch(63% 0.16 246 / .08), transparent 20%),
    radial-gradient(circle at 88% 82%, oklch(61% 0.18 31 / .07), transparent 18%),
    linear-gradient(180deg, oklch(98% 0.006 258 / .03), transparent 18%),
    oklch(5% 0.014 248 / .98);
  box-shadow:
    inset 0 1px 0 oklch(99% 0.006 236 / .08),
    0 24px 76px oklch(2% 0.01 258 / .34);
}

.course-gallery-stage::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: clamp(1.6rem, 4vw, 3.2rem);
  background: linear-gradient(90deg, oklch(3% 0.012 248 / .76), oklch(3% 0.012 248 / .26), transparent);
  pointer-events: none;
  z-index: 2;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.course-gallery-stage::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: clamp(1.6rem, 4vw, 3.2rem);
  background: linear-gradient(270deg, oklch(3% 0.012 248 / .76), oklch(3% 0.012 248 / .26), transparent);
  pointer-events: none;
  z-index: 2;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.course-gallery-rows {
  position: relative;
  z-index: 1;
  display: grid;
  gap: .95rem;
}

.course-gallery-row {
  overflow: hidden;
}

.course-gallery-track {
  display: flex;
  width: max-content;
  gap: .95rem;
  will-change: transform, filter, opacity;
  transform: translate3d(0, 0, 0);
}

.course-gallery-card {
  position: relative;
  flex: 0 0 clamp(8.4rem, 8vw, 10.2rem);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid oklch(98% 0.006 258 / .08);
  border-radius: 16px;
  background:
    linear-gradient(180deg, oklch(98% 0.006 258 / .04), transparent 26%),
    oklch(12% 0.02 248 / .94);
  box-shadow:
    inset 0 1px 0 oklch(99% 0.006 236 / .08),
    0 16px 34px oklch(2% 0.01 258 / .22);
  transition:
    transform .45s var(--ease),
    border-color .45s var(--ease),
    box-shadow .45s var(--ease);
}

.course-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, oklch(3% 0.01 248 / .02), transparent 30%, transparent 64%, oklch(3% 0.01 248 / .3)),
    linear-gradient(145deg, transparent 0 56%, oklch(98% 0.006 258 / .08) 100%);
  pointer-events: none;
}

.course-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(.25px) saturate(.96) brightness(.95);
  transform: scale(1.02);
  transition:
    filter .8s var(--ease),
    transform .8s var(--ease),
    opacity .8s var(--ease);
}

.course-gallery-card:hover {
  border-color: oklch(76% 0.11 216 / .3);
  box-shadow:
    inset 0 1px 0 oklch(99% 0.006 236 / .12),
    0 22px 48px oklch(2% 0.01 258 / .3),
    var(--glow-blue);
}

.course-gallery-card:hover img {
  filter: blur(0px) saturate(1.02) brightness(1);
  transform: scale(1.04);
}

body.motion-ready:not(.gsap-ready) .course-gallery-track {
  opacity: .001;
  filter: blur(14px);
}

.course-gallery-track.is-ready[data-direction="right"] {
  transform: translate3d(calc(-1 * var(--gallery-loop-width, 0px)), 0, 0);
}

body.motion-ready:not(.gsap-ready) .course-gallery-track.is-visible {
  opacity: 1;
  filter: blur(0px);
  transition: opacity .9s var(--ease), filter .9s var(--ease);
}

body.motion-ready:not(.gsap-ready) .course-gallery-track.is-looping[data-direction="left"] {
  animation: course-gallery-marquee-left var(--gallery-duration, 40s) linear infinite;
}

body.motion-ready:not(.gsap-ready) .course-gallery-track.is-looping[data-direction="right"] {
  animation: course-gallery-marquee-right var(--gallery-duration, 40s) linear infinite;
}

body.motion-ready:not(.gsap-ready) .course-gallery-stage:hover .course-gallery-track.is-looping {
  animation-play-state: paused;
}

@keyframes course-gallery-marquee-left {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-1 * var(--gallery-loop-width, 0px)), 0, 0);
  }
}

@keyframes course-gallery-marquee-right {
  from {
    transform: translate3d(calc(-1 * var(--gallery-loop-width, 0px)), 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.attention-section {
  padding-top: 5.2rem;
}

.attention-head {
  max-width: 58rem;
  margin-bottom: 2rem;
}

.attention-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.attention-card {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  overflow: visible;
  border: 1px dashed oklch(72% 0.022 236 / .34);
  border-radius: 18px;
  padding: 1.4rem;
  background:
    linear-gradient(180deg, oklch(12% 0.024 248 / .92), oklch(9% 0.02 248 / .96));
}

.attention-card h3 {
  max-width: 16ch;
  margin-top: .8rem;
  margin-bottom: .55rem;
  font-size: 1.42rem;
}

.attention-card p {
  margin: 0;
}

.attention-card-lg {
  grid-column: span 3;
  grid-row: span 2;
  min-height: 468px;
}

.attention-card-md {
  grid-column: span 3;
}

.attention-card-wide {
  grid-column: span 4;
}

.attention-plus {
  position: absolute;
  width: 20px;
  height: 20px;
  color: oklch(92% 0.01 236 / .82);
  pointer-events: none;
}

.attention-plus::before,
.attention-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.attention-plus::before {
  width: 14px;
  height: 1px;
}

.attention-plus::after {
  width: 1px;
  height: 14px;
}

.plus-tl {
  top: -10px;
  left: -10px;
}

.plus-tr {
  top: -10px;
  right: -10px;
}

.plus-bl {
  bottom: -10px;
  left: -10px;
}

.plus-br {
  bottom: -10px;
  right: -10px;
}

.attention-closing {
  max-width: 52rem;
  margin-left: auto;
  margin-top: 1.4rem;
  padding-right: .4rem;
  text-align: right;
}

.attention-closing h2 {
  max-width: none;
  margin-bottom: .9rem;
}

.attention-closing p {
  margin: 0 0 0 auto;
  max-width: 42rem;
}

.footer {
  padding: 5rem 0 2rem;
}

.footer-panel {
  position: relative;
  overflow: hidden;
  border-top: 1px solid oklch(94% 0.012 236 / .12);
  border-radius: 42px 42px 0 0;
  background:
    radial-gradient(35% 128px at 50% 0%, oklch(98% 0.006 236 / .1), transparent),
    linear-gradient(180deg, oklch(13% 0.028 248 / .96), oklch(9% 0.02 248 / .98));
  box-shadow:
    inset 0 1px 0 oklch(99% 0.006 236 / .12),
    0 -14px 44px oklch(5% 0.018 250 / .18);
  padding: 2.2rem 1.2rem 1.4rem;
}

.footer.shell {
  width: 100%;
  max-width: none;
  padding-inline: 1.5rem;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  width: 34%;
  height: 1px;
  border-radius: 999px;
  background: oklch(98% 0.006 236 / .34);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px oklch(98% 0.006 236 / .28);
}

.footer-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 2.4rem;
  align-items: start;
}

.footer-brandblock {
  display: grid;
  gap: 1rem;
  max-width: 28rem;
}

.footer-brandblock .brand {
  color: oklch(98% 0.006 236);
}

.footer-brandblock .brand-mark {
  width: 44px;
}

.footer-brandblock .brand-wordmark {
  width: min(224px, 100%);
}

.footer-brandblock p {
  margin: 0;
  color: oklch(86% 0.016 236 / .76);
}

.footer-copy {
  color: oklch(72% 0.02 236 / .72);
  font-size: .9rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem 2rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: .72rem;
}

.footer-column h3 {
  margin: 0 0 .35rem;
  color: oklch(98% 0.006 236);
  font-size: .8rem;
  font-weight: var(--w-medium);
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: oklch(84% 0.016 236 / .78);
  font-size: .95rem;
  line-height: 1.55;
}

.footer-column a {
  transition: color .2s var(--ease), transform .2s var(--ease);
}

.footer-column a:hover {
  color: oklch(98% 0.006 236);
  transform: translateX(2px);
}

.meta {
  color: var(--quiet);
  font-family: var(--mono);
  font-size: .76rem;
  font-weight: 500;
  text-transform: uppercase;
}

.reveal,
.motion-item {
  opacity: 1;
  transform: none;
}

body.motion-ready .reveal,
body.motion-ready .motion-item {
  opacity: 0;
  transform: translate3d(0, 38px, 0) scale(.985);
  filter: blur(12px);
  transition:
    opacity .85s var(--ease),
    transform .85s var(--ease),
    filter .85s var(--ease);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform, filter;
}

body.motion-ready .reveal.is-visible,
body.motion-ready .motion-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

body.motion-ready .section-head.reveal {
  transform: translate3d(0, 22px, 0);
}

body.motion-ready .section-head.reveal.is-visible {
  transform: translate3d(0, 0, 0);
}

.hero-title .word {
  display: inline-block;
  white-space: nowrap;
}

.hero-title .char,
.hero-title.gsap-text span {
  display: inline-block;
}

.hero-title.gsap-text {
  perspective: 900px;
}

body.motion-ready:not(.gsap-ready) .hero-title .char {
  opacity: 0;
  transform: translate3d(0, 1.25rem, 0) rotateX(34deg);
  filter: blur(10px);
  transform-origin: 50% 80%;
  will-change: opacity, transform, filter;
}

body.gsap-ready .hero-title .char,
body.gsap-ready .motion-item,
body.gsap-ready .reveal {
  transition: none !important;
  opacity: unset;
  transform: none;
  filter: none;
}

body.gsap-ready .section-head.reveal,
body.gsap-ready .section-head.motion-item {
  transform: none !important;
}

body.motion-ready:not(.gsap-ready) .hero-title.is-visible .char,
body.motion-ready:not(.gsap-ready) .hero-slide.is-active .hero-title .char,
body.motion-ready:not(.gsap-ready) .page-hero-surface.is-visible .hero-title .char {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateX(0deg);
  filter: blur(0);
  transition:
    opacity .78s var(--ease),
    transform .78s var(--ease),
    filter .78s var(--ease);
  transition-delay: calc(var(--char-index, 0) * 18ms);
}

.liquid {
  --glint-x: 36%;
}

.liquid::before {
  background:
    linear-gradient(110deg, transparent 0 calc(var(--glint-x) - 4%), oklch(99% 0.006 236 / 0.25) var(--glint-x), transparent calc(var(--glint-x) + 5%) 100%),
    linear-gradient(20deg, transparent 0 66%, oklch(76% 0.11 216 / 0.12) 72%, transparent 86% 100%);
  transition: background .18s linear;
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .links {
    justify-self: stretch;
    overflow-x: auto;
  }

  .nav-action {
    justify-self: start;
  }

  .hero,
  .split,
  .grid-2,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .bento-tall,
  .bento-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
  }

  .bento-wide {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-panel {
    min-height: 640px;
  }

  .quote-copy {
    width: min(100%, 54rem);
    padding: 2rem;
  }

  .quote-lines {
    font-size: clamp(2.3rem, 7vw, 4.8rem);
  }

  .attention-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .course-gallery-card {
    flex-basis: clamp(7.6rem, 13vw, 9rem);
  }

  .attention-card-lg,
  .attention-card-md,
  .attention-card-wide {
    grid-column: span 2;
    grid-row: auto;
    min-height: 260px;
  }

  .attention-closing {
    max-width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .section-head {
    position: static;
  }

  h1 {
    font-size: 4rem;
  }

  .page-hero h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 3rem;
  }

}

@media (max-width: 620px) {
  .site-top {
    top: 8px;
    margin-top: 8px;
  }

  .brand-wordmark {
    width: min(168px, 42vw);
  }

  h1 {
    font-size: 3.25rem;
  }

  .page-hero h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .section {
    padding: 4.6rem 0;
  }

  .hero {
    padding-top: 4rem;
  }

  .quote-panel {
    min-height: 560px;
    border-radius: 22px;
  }

  .quote-copy {
    padding: 1.35rem;
  }

  .quote-lines {
    font-size: clamp(1.85rem, 12vw, 3rem);
    line-height: .98;
  }

  .quote-line {
    gap: .22em .18em;
  }

  .quote-body,
  .quote-note {
    font-size: .96rem;
  }

  .attention-grid {
    grid-template-columns: 1fr;
  }

  .attention-card,
  .attention-card-lg,
  .attention-card-md,
  .attention-card-wide {
    grid-column: auto;
    min-height: 220px;
    padding: 1.15rem;
  }

  .attention-card h3 {
    font-size: 1.25rem;
  }

  .footer-panel {
    border-radius: 28px 28px 0 0;
    padding: 1.6rem 1rem 1.2rem;
  }

  .footer.shell {
    padding-inline: 1rem;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .footer-column a,
  .footer-column p {
    font-size: .92rem;
  }
}

/* Shared site theme extracted from the final home page. */
.site-theme {
  color-scheme: dark;
  color: oklch(96% 0.006 258);
  background: oklch(3% 0.01 258);
  font-family: var(--font-ui);
}

.site-theme::before,
.site-theme::after {
  display: none;
}

.site-theme .site-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  width: 100%;
  margin: 0;
  padding: 1rem 1.5rem;
  pointer-events: none;
}

.site-theme .nav {
  width: 100%;
  max-width: 1480px;
  min-height: 76px;
  margin: 0 auto;
  padding: .7rem .9rem;
  border: 1px solid oklch(98% 0.006 258 / .16);
  border-radius: 999px;
  background:
    linear-gradient(180deg, oklch(98% 0.006 258 / .08), oklch(98% 0.006 258 / .03)),
    oklch(8% 0.018 258 / .48);
  box-shadow:
    inset 0 1px 0 oklch(98% 0.006 258 / .18),
    inset 0 -1px 0 oklch(98% 0.006 258 / .05),
    0 20px 48px oklch(2% 0.01 258 / .34);
  backdrop-filter: blur(24px) saturate(1.25);
  -webkit-backdrop-filter: blur(24px) saturate(1.25);
  pointer-events: auto;
}

.site-theme .brand {
  color: oklch(98% 0.006 258);
  font-family: var(--font-ui);
  font-size: .92rem;
  font-weight: 650;
  gap: .65rem;
}

.site-theme .brand-mark {
  width: 28px;
}

.site-theme .brand-wordmark {
  width: clamp(136px, 13vw, 178px);
}

.site-theme .links {
  gap: 1.9rem;
  padding: .7rem 1rem;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: oklch(86% 0.018 258 / .78);
  font-family: var(--font-ui);
  font-size: .84rem;
  font-weight: 560;
}

.site-theme .links a {
  padding: 0;
  background: none;
  transition: color .18s var(--ease), transform .18s var(--ease);
}

.site-theme .links a:hover,
.site-theme .links a[aria-current="page"] {
  color: oklch(98% 0.006 258);
  background: oklch(98% 0.006 258 / .08);
  transform: translateY(-1px);
}

.chevron {
  display: inline-block;
  width: .42rem;
  height: .42rem;
  margin-left: .3rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-.12rem) rotate(45deg);
}

.site-theme .nav-action {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-left: .3rem;
}

.nav-demo {
  color: oklch(94% 0.014 258 / .88);
  font-size: .9rem;
  font-weight: 620;
  transition: color .18s var(--ease);
  text-shadow: 0 1px 10px oklch(2% 0.01 258 / .24);
}

.nav-demo:hover {
  color: oklch(98% 0.006 258);
}

.site-theme .nav-cta {
  min-height: 42px;
  border: 0;
  padding: .68rem 1rem;
  background: oklch(98% 0.006 258);
  color: oklch(10% 0.018 258);
  box-shadow:
    inset 0 1px 0 oklch(100% 0 0 / .28),
    0 12px 28px oklch(2% 0.01 258 / .28);
}

.interior-page {
  background:
    radial-gradient(1200px 600px at 100% -10%, oklch(34% 0.09 252 / .18), transparent 45%),
    radial-gradient(900px 520px at 0% 0%, oklch(22% 0.06 216 / .14), transparent 42%),
    oklch(3% 0.01 258);
}

.interior-page main.shell {
  padding-top: 7.5rem;
}

.theme-page-hero {
  padding-top: 2rem;
  padding-bottom: 2.2rem;
}

.page-hero-surface {
  position: relative;
  overflow: hidden;
  border: 1px solid oklch(98% 0.006 258 / .12);
  border-radius: 30px;
  background:
    linear-gradient(180deg, oklch(98% 0.006 258 / .06), transparent 24%),
    linear-gradient(135deg, oklch(14% 0.024 248 / .96), oklch(9% 0.018 248 / .98));
  box-shadow:
    inset 0 1px 0 oklch(99% 0.006 236 / .12),
    0 24px 80px oklch(5% 0.018 250 / .28);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.page-hero-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 18%, oklch(74% 0.08 216 / .14), transparent 22%),
    linear-gradient(90deg, transparent 0 64%, oklch(74% 0.08 216 / .05) 100%);
  pointer-events: none;
}

.page-hero-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--page-hero-image, none);
  background-position: center;
  background-size: cover;
  opacity: .24;
  mix-blend-mode: screen;
  mask-image: linear-gradient(90deg, transparent 0 42%, black 68% 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0 42%, black 68% 100%);
  pointer-events: none;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .8fr);
  gap: 2rem;
  align-items: end;
}

.page-hero-copy {
  display: grid;
  gap: 1rem;
}

.page-hero-copy h1 {
  max-width: 13ch;
  margin-bottom: 0;
}

.page-hero-copy .lead {
  max-width: 56rem;
  margin-bottom: 0;
}

.page-hero-meta {
  display: grid;
  gap: .9rem;
  align-content: end;
}

.page-hero-meta-card {
  border: 1px solid oklch(98% 0.006 258 / .1);
  border-radius: 22px;
  padding: 1rem 1.05rem;
  background: oklch(98% 0.006 258 / .045);
  box-shadow: inset 0 1px 0 oklch(99% 0.006 236 / .08);
}

.page-hero-meta-card h3 {
  margin-bottom: .45rem;
  font-size: 1.15rem;
}

.page-hero-meta-card p {
  margin: 0;
  color: oklch(86% 0.016 236 / .72);
  font-size: .95rem;
}

.page-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.page-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid oklch(98% 0.006 258 / .12);
  border-radius: 999px;
  padding: .52rem .84rem;
  background: oklch(98% 0.006 258 / .05);
  color: oklch(92% 0.012 236 / .86);
  font-family: var(--mono);
  font-size: .76rem;
  font-weight: 600;
  text-transform: uppercase;
}

.quem-somos-page {
  --page-hero-image: url("/assets/images/quem-somos/banner-01.JPG");
}

.cursos-page {
  --page-hero-image: url("/assets/images/cursos/banner2.JPG");
}

.contato-page {
  --page-hero-image: url("/assets/images/contato/banner-contato.jpeg");
}

.aviso-legal-page,
.privacidade-page,
.termos-page {
  --page-hero-image: url("/assets/images/aviso-legal/banner-aviso.jpeg");
}

.design-system-page {
  --page-hero-image: url("/assets/images/home/banner-home-2.jpeg");
}

.aviso-legal-page .page-hero-surface {
  border-color: oklch(76% 0.13 38 / .18);
  background:
    linear-gradient(180deg, oklch(98% 0.006 258 / .05), transparent 24%),
    linear-gradient(135deg, oklch(14% 0.024 248 / .96), oklch(11% 0.03 252 / .98) 56%, oklch(13% 0.04 28 / .94));
}

.design-system-page .section {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.ds-token-grid,
.ds-home-map,
.ds-mini-grid {
  display: grid;
  gap: 1rem;
}

.ds-token-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ds-home-map {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ds-mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ds-token-card,
.ds-preview-card {
  display: grid;
  gap: .9rem;
}

.ds-swatch {
  min-height: 120px;
  border: 1px solid oklch(98% 0.006 258 / .08);
  border-radius: 20px;
  box-shadow: inset 0 1px 0 oklch(99% 0.006 236 / .08);
}

.ds-swatch[data-tone="void"] {
  background: linear-gradient(135deg, oklch(7% 0.014 258), oklch(14% 0.024 248));
}

.ds-swatch[data-tone="blue"] {
  background: linear-gradient(135deg, oklch(38% 0.11 246), oklch(62% 0.19 252));
}

.ds-swatch[data-tone="cyan"] {
  background: linear-gradient(135deg, oklch(38% 0.08 224), oklch(74% 0.11 216));
}

.ds-swatch[data-tone="signal"] {
  background: linear-gradient(135deg, oklch(34% 0.1 22), oklch(61% 0.18 31));
}

.ds-caption {
  margin: 0;
  color: oklch(82% 0.018 236 / .72);
  font-size: .94rem;
  line-height: 1.6;
}

.ds-inline-code {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid oklch(98% 0.006 258 / .12);
  border-radius: 999px;
  padding: .3rem .72rem;
  background: oklch(98% 0.006 258 / .04);
  color: oklch(94% 0.012 236 / .82);
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 600;
}

.cinematic-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  justify-items: stretch;
  overflow: hidden;
  padding: 8rem 1.5rem 5rem;
  background: oklch(3% 0.01 258);
  isolation: isolate;
}

.hero-bg-image,
.hero-overlay {
  position: absolute;
  pointer-events: none;
}

.hero-bg-image,
.hero-overlay {
  inset: 0;
}

.hero-bg-image {
  z-index: -5;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.02);
  transition: opacity .85s var(--ease), transform 1.2s var(--ease);
}

/* Hero principal: aviso contra golpes */
.hero-bg-image[data-hero-bg="0"] {
  background-image: url("/assets/images/home/banner-3.png");
}

.hero-bg-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  z-index: -4;
  background: linear-gradient(90deg,
      oklch(2% 0.01 258 / .9) 0%,
      oklch(2% 0.01 258 / .74) 28%,
      oklch(2% 0.01 258 / .38) 60%,
      oklch(2% 0.01 258 / .08) 82%,
      transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: var(--page);
  display: grid;
  align-items: center;
  margin-top: 2.5rem;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.hero-slide {
  grid-area: 1 / 1;
  width: min(100%, 48rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.45rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(-18px, 0, 0) scale(.985);
  filter: blur(12px);
  transition:
    opacity .7s var(--ease),
    visibility .7s var(--ease),
    transform .7s var(--ease),
    filter .7s var(--ease);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.pre-headline {
  margin: 0;
  color: oklch(98% 0.006 258);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  line-height: 1.1;
}

.cinematic-hero .hero-title {
  max-width: 10.5ch;
  margin: 0;
  color: oklch(97% 0.012 258);
  font-family: var(--font-ui);
  font-size: clamp(4rem, 12vw, 8.5rem);
  font-weight: 680;
  line-height: .9;
  letter-spacing: -.055em;
  text-shadow:
    0 1px 0 oklch(98% 0.006 258 / .34),
    0 24px 78px oklch(42% 0.2 260 / .52);
}

.hero-subtitle {
  max-width: 39rem;
  margin: 0;
  color: oklch(91% 0.018 258 / .72);
  font-family: var(--font-ui);
  font-size: clamp(1.04rem, 1.7vw, 1.25rem);
  line-height: 1.65;
}

.cinematic-hero .actions {
  justify-content: flex-start;
  gap: 1.25rem;
  margin-top: .55rem;
}

.primary-pill {
  min-height: 56px;
  gap: 1rem;
  border: 0;
  padding: .5rem .5rem .5rem 1.45rem;
  background: oklch(98% 0.006 258);
  color: oklch(10% 0.018 258);
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 650;
  box-shadow:
    0 0 0 1px oklch(98% 0.006 258 / .18),
    0 20px 56px oklch(2% 0.01 258 / .54);
}

.primary-pill:hover {
  box-shadow:
    0 0 0 1px oklch(98% 0.006 258 / .28),
    0 0 28px oklch(98% 0.006 258 / .28),
    0 24px 62px oklch(2% 0.01 258 / .58);
  transform: translateY(-2px) scale(1.035);
}

.arrow-orb {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: oklch(56% 0.25 263);
  color: oklch(98% 0.006 258);
  font-size: 1.35rem;
  line-height: 1;
  transition: transform .22s var(--ease), background-color .22s var(--ease);
}

.primary-pill:hover .arrow-orb {
  background: oklch(49% 0.25 263);
  transform: translateX(2px);
}

.alert-pill .arrow-orb {
  background: oklch(63% 0.2 36);
}

.alert-pill:hover .arrow-orb {
  background: oklch(57% 0.22 36);
}

.ghost-link {
  min-height: 48px;
  border: 0;
  padding: .72rem 1rem;
  background: oklch(98% 0.006 258 / .04);
  color: oklch(91% 0.018 258 / .74);
  box-shadow: none;
  font-size: 1rem;
}

.ghost-link:hover {
  color: oklch(98% 0.006 258);
  background: oklch(98% 0.006 258 / .075);
  box-shadow: none;
}

.ghost-link span:last-child {
  transition: transform .22s var(--ease);
}

.ghost-link:hover span:last-child {
  transform: translateX(4px);
}

.hero-alert {
  width: min(100%, 44rem);
  margin-top: 1.15rem;
  border: 1px solid oklch(76% 0.13 38 / .32);
  border-radius: 32px;
  padding: .72rem 1rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  column-gap: .85rem;
  row-gap: .32rem;
  background: oklch(10% 0.025 258 / .58);
  box-shadow:
    inset 0 1px 0 oklch(98% 0.006 258 / .1),
    0 18px 48px oklch(2% 0.01 258 / .46);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero-alert .pill {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
}

.hero-alert strong {
  grid-column: 2;
  color: oklch(96% 0.012 258);
  font-size: .95rem;
  font-weight: 680;
  line-height: 1.3;
  white-space: normal;
}

.hero-alert p {
  grid-column: 2;
  margin: 0;
  color: oklch(90% 0.018 258 / .7);
  font-size: .88rem;
  line-height: 1.35;
  text-align: left;
  max-width: 54ch;
}

.site-theme .notice-strip {
  margin-top: 0;
}

body.motion-ready:not(.gsap-ready) .hero-content.reveal {
  transform: translate3d(0, 24px, 0);
  filter: blur(10px);
}

body.motion-ready:not(.gsap-ready) .hero-content.reveal.is-visible {
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

/* CSS-only fallback for hero sub-elements (GSAP path uses its own tweens) */
body.motion-ready:not(.gsap-ready) .pre-headline {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

body.motion-ready:not(.gsap-ready) .hero-content.is-visible .pre-headline {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.motion-ready:not(.gsap-ready) .cinematic-hero .hero-subtitle {
  opacity: 0;
  transition: opacity .6s var(--ease) .4s;
}

body.motion-ready:not(.gsap-ready) .hero-content.is-visible .hero-subtitle {
  opacity: .72;
}

body.motion-ready:not(.gsap-ready) .cinematic-hero .actions {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity .5s var(--ease) .6s, transform .5s var(--ease) .6s;
}

body.motion-ready:not(.gsap-ready) .hero-content.is-visible .actions {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 980px) {
  .site-theme .site-top {
    padding: .85rem 1rem;
  }

  .site-theme .nav {
    grid-template-columns: auto auto;
    gap: .75rem;
    border-radius: 28px;
    padding: .85rem;
  }

  .site-theme .links {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 100%;
    gap: 1.05rem;
    order: 3;
  }

  .nav-demo {
    display: none;
  }

  .cinematic-hero {
    padding-top: 10rem;
  }

  .hero-alert {
    grid-template-columns: 1fr;
    border-radius: 24px;
    text-align: center;
  }

  .hero-alert strong {
    white-space: normal;
  }

  .hero-alert p {
    text-align: center;
  }

  .interior-page main.shell {
    padding-top: 7rem;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-meta {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .ds-token-grid,
  .ds-home-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .course-gallery-stage {
    border-radius: 24px;
  }

  .course-gallery-rows,
  .course-gallery-track {
    gap: .75rem;
  }
}

@media (max-width: 620px) {
  .site-theme .brand-wordmark {
    width: min(150px, 40vw);
  }

  .site-theme .links {
    justify-content: flex-start;
    gap: .9rem;
    padding: .65rem .78rem;
    font-size: .78rem;
  }

  .site-theme .nav {
    border-radius: 24px;
  }

  .site-theme .nav-cta {
    min-height: 38px;
    padding: .55rem .78rem;
    font-size: .82rem;
  }

  .cinematic-hero {
    min-height: 100svh;
    padding: 10.5rem 1rem 3rem;
  }

  .pre-headline {
    font-size: 1.85rem;
  }

  .cinematic-hero .hero-title {
    font-size: clamp(3.2rem, 21vw, 5.1rem);
    letter-spacing: -.06em;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .cinematic-hero .actions {
    width: 100%;
    flex-direction: column;
  }

  .primary-pill,
  .ghost-link {
    width: 100%;
  }

  .interior-page main.shell {
    padding-top: 6.8rem;
  }

  .theme-page-hero {
    padding-top: 1.2rem;
  }

  .page-hero-surface {
    border-radius: 24px;
    padding: 1.2rem;
  }

  .page-hero-meta {
    grid-template-columns: 1fr;
  }

  .course-gallery-card {
    flex-basis: clamp(6.4rem, 24vw, 7.6rem);
  }

  .ds-token-grid,
  .ds-home-map,
  .ds-mini-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Mobile correction pass */
html,
body {
  overflow-x: clip;
}

.site-theme .shell,
.site-theme .nav,
.site-theme .hero-content,
.site-theme .hero-slide,
.site-theme main,
.site-theme section,
.site-theme .split,
.site-theme .grid-2,
.site-theme .grid-3,
.site-theme .bento-grid,
.site-theme .stack,
.site-theme .quote-copy,
.site-theme .course-gallery-rows,
.site-theme .course-gallery-track,
.site-theme .attention-grid,
.site-theme .footer-layout,
.site-theme .footer-columns,
.site-theme .page-hero-grid,
.site-theme .page-hero-copy,
.site-theme .page-hero-meta,
.site-theme .section-head,
.site-theme .reveal,
.site-theme .card,
.site-theme .page-card,
.site-theme .legal-card,
.site-theme .alert-box,
.site-theme .page-hero-meta-card {
  min-width: 0;
}

.site-theme h1,
.site-theme h2,
.site-theme h3,
.site-theme p,
.site-theme li,
.site-theme a,
.site-theme .lead,
.site-theme .hero-subtitle,
.site-theme .page-hero-meta-card p,
.site-theme .hero-alert strong,
.site-theme .hero-alert p,
.site-theme .quote-body,
.site-theme .quote-note {
  overflow-wrap: anywhere;
}

.site-theme .btn,
.site-theme .nav-demo,
.site-theme .footer-column a {
  min-height: 44px;
}

.site-theme .footer-column a {
  display: inline-flex;
  align-items: center;
}

.site-theme .footer-column p {
  overflow-wrap: anywhere;
}

.nav-toggle,
.nav-drawer-close {
  appearance: none;
  border: 0;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: .26rem;
  border-radius: 14px;
  background: oklch(98% 0.006 258 / .08);
  color: oklch(98% 0.006 258);
  box-shadow: inset 0 1px 0 oklch(98% 0.006 258 / .16);
  transition: background-color .22s var(--ease), transform .22s var(--ease);
}

.nav-toggle:hover {
  background: oklch(98% 0.006 258 / .14);
  transform: translateY(-1px);
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
}

.nav-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 58;
  background: oklch(2% 0.01 258 / .56);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s var(--ease), visibility .22s var(--ease);
}

.nav-drawer {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + .9rem);
  right: .9rem;
  z-index: 59;
  width: min(22rem, calc(100vw - 1.8rem));
  max-height: calc(100svh - 1.8rem);
  overflow: auto;
  border: 1px solid oklch(98% 0.006 258 / .14);
  border-radius: 24px;
  padding: 1rem;
  background:
    linear-gradient(180deg, oklch(98% 0.006 258 / .08), oklch(98% 0.006 258 / .03)),
    oklch(8% 0.018 258 / .94);
  box-shadow:
    inset 0 1px 0 oklch(98% 0.006 258 / .16),
    0 24px 64px oklch(2% 0.01 258 / .54);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -10px, 0) scale(.98);
  transition:
    opacity .22s var(--ease),
    visibility .22s var(--ease),
    transform .22s var(--ease);
}

.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .9rem;
}

.nav-drawer-brand {
  gap: .6rem;
}

.nav-drawer-close {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 14px;
  background: oklch(98% 0.006 258 / .08);
  box-shadow: inset 0 1px 0 oklch(98% 0.006 258 / .14);
}

.nav-drawer-close-bar {
  position: absolute;
  top: 21px;
  left: 13px;
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: oklch(98% 0.006 258);
}

.nav-drawer-close-bar:first-child {
  transform: rotate(45deg);
}

.nav-drawer-close-bar:last-child {
  transform: rotate(-45deg);
}

.nav-drawer-links,
.nav-drawer-actions {
  display: grid;
  gap: .55rem;
}

.nav-drawer-links {
  margin-bottom: .9rem;
}

.nav-drawer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  border: 1px solid oklch(98% 0.006 258 / .08);
  border-radius: 16px;
  padding: .82rem .95rem;
  background: oklch(98% 0.006 258 / .04);
  color: oklch(94% 0.012 236 / .88);
  font-weight: 560;
}

.nav-drawer-links a[aria-current="page"] {
  background: oklch(98% 0.006 258 / .1);
  color: oklch(98% 0.006 258);
}

.nav-drawer-actions .btn,
.nav-drawer-actions .nav-demo {
  width: 100%;
  justify-content: center;
}

.nav-drawer-actions .nav-demo {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  border: 1px solid oklch(98% 0.006 258 / .08);
  border-radius: 999px;
  padding: .72rem .95rem;
  background: oklch(98% 0.006 258 / .04);
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .nav-drawer-backdrop,
body.nav-open .nav-drawer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.nav-open .nav-drawer {
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 980px) {
  .site-theme {
    --page: min(100% - 1.5rem, 1480px);
  }

  .site-theme .site-top {
    padding: .8rem .75rem;
  }

  body.site-theme.nav-ready .nav {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 68px;
    gap: .75rem;
    border-radius: 24px;
    padding: .75rem;
  }

  body.site-theme.nav-ready .links,
  body.site-theme.nav-ready .nav-action {
    display: none;
  }

  body.site-theme.nav-ready .nav-toggle {
    display: inline-flex;
  }

  .site-theme .brand-wordmark {
    width: min(164px, 38vw);
  }

  .cinematic-hero {
    min-height: 100svh;
    padding: 8.2rem 1rem 2.7rem;
  }

  .hero-content {
    width: min(100%, var(--page));
    margin-top: 0;
  }

  .hero-slide {
    width: min(100%, 42rem);
    gap: 1.05rem;
  }

  .pre-headline {
    font-size: 1.7rem;
  }

  .cinematic-hero .hero-title {
    max-width: 11ch;
    font-size: clamp(3.3rem, 10vw, 5.4rem);
  }

  .hero-subtitle {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.58;
  }

  .cinematic-hero .actions {
    gap: .85rem;
    margin-top: .3rem;
  }

  .primary-pill,
  .ghost-link {
    min-height: 50px;
  }

  .hero-alert {
    width: 100%;
    grid-template-columns: 1fr;
    border-radius: 22px;
    padding: .9rem;
    row-gap: .45rem;
    text-align: left;
  }

  .hero-alert .pill,
  .hero-alert strong,
  .hero-alert p {
    grid-column: auto;
    grid-row: auto;
    text-align: left;
  }

  .site-theme .notice-strip {
    padding: 1rem .85rem;
  }

  .section {
    padding: 4.75rem 0;
  }

  .split,
  .grid-2,
  .grid-3,
  .footer-layout,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 1.55rem;
    width: 100%;
  }

  .split>.image-panel {
    order: -1;
  }

  .split>.reveal,
  .split>.section-head,
  .split>.grid-2,
  .split>.grid-3,
  .split>.stack {
    width: 100%;
    max-width: 100%;
  }

  .section-head {
    position: static;
  }

  .page-hero-surface,
  .quote-panel,
  .footer-panel,
  .card,
  .page-card,
  .legal-card,
  .alert-box,
  .page-hero-meta-card {
    border-radius: 22px;
  }

  .page-hero-surface {
    padding: 1.25rem;
  }

  .page-hero-copy {
    gap: .9rem;
  }

  .page-hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.9rem, 8vw, 4.2rem);
  }

  .page-hero-copy .lead {
    font-size: 1rem;
    line-height: 1.6;
  }

  .page-hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
  }

  .page-chip-row {
    gap: .55rem;
  }

  .page-chip {
    min-height: 36px;
    font-size: .72rem;
    padding: .46rem .72rem;
  }

  .image-panel {
    min-height: clamp(260px, 52vw, 340px);
    height: clamp(260px, 52vw, 340px);
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: .95rem;
  }

  .bento-card,
  .attention-card,
  .page-card,
  .legal-card,
  .alert-box,
  .page-hero-meta-card {
    padding: 1rem;
  }

  .bento-tall,
  .bento-wide,
  .attention-card-lg,
  .attention-card-md,
  .attention-card-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
  }

  .bento-wide {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
  }

  .bento-card h3,
  .attention-card h3,
  .page-hero-meta-card h3 {
    font-size: 1.22rem;
  }

  .bento-stat strong {
    font-size: clamp(2.9rem, 10vw, 4rem);
  }

  .quote-panel {
    min-height: 560px;
  }

  .quote-copy {
    width: 100%;
    gap: 1rem;
    padding: 1.5rem;
  }

  .quote-lines {
    font-size: clamp(2rem, 7vw, 3.6rem);
    line-height: .98;
    letter-spacing: -.025em;
  }

  .quote-body,
  .quote-note {
    font-size: .98rem;
  }

  .course-gallery-stage {
    border-radius: 22px;
    padding: .8rem;
  }

  .course-gallery-stage::before,
  .course-gallery-stage::after {
    width: 1rem;
  }

  .course-gallery-rows,
  .course-gallery-track {
    gap: .65rem;
  }

  .course-gallery-card {
    flex-basis: clamp(6.3rem, 15vw, 7.8rem);
  }

  .attention-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
  }

  .grid-2>.card,
  .grid-3>.card,
  .stack>.card {
    min-width: 0;
    width: 100%;
  }

  .attention-card {
    min-height: auto;
  }

  .attention-closing {
    max-width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .footer-layout {
    gap: 1.4rem;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .footer-column a {
    width: 100%;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .site-theme {
    --page: min(100% - 1.75rem, 1480px);
  }

  .cinematic-hero {
    padding-top: 8.7rem;
    padding-bottom: 3rem;
  }

  .hero-slide {
    gap: 1.1rem;
  }

  .cinematic-hero .hero-title {
    font-size: clamp(3.5rem, 11vw, 4.8rem);
  }

  .quote-panel {
    min-height: 520px;
  }

  .course-gallery-card {
    flex-basis: clamp(6.1rem, 18vw, 7.1rem);
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 479px) {
  .site-theme {
    --page: min(100% - 1rem, 1480px);
  }

  .site-theme .site-top {
    padding: .7rem .5rem;
  }

  body.site-theme.nav-ready .nav {
    min-height: 64px;
    border-radius: 20px;
    padding: .65rem;
  }

  .nav-drawer {
    top: calc(env(safe-area-inset-top, 0px) + .6rem);
    right: .5rem;
    width: calc(100vw - 1rem);
    max-height: calc(100svh - 1.2rem);
    border-radius: 20px;
    padding: .85rem;
  }

  .site-theme .brand-wordmark,
  .nav-drawer-brand .brand-wordmark {
    width: min(148px, 43vw);
  }

  .cinematic-hero {
    padding: 7.35rem .75rem 2rem;
  }

  .hero-slide {
    gap: .95rem;
  }

  .pre-headline {
    font-size: 1.42rem;
  }

  .cinematic-hero .hero-title {
    font-size: clamp(2.2rem, 14.5vw, 4.05rem);
    line-height: .93;
    letter-spacing: -.04em;
  }

  .hero-subtitle {
    font-size: .95rem;
    line-height: 1.52;
  }

  .cinematic-hero .actions {
    width: 100%;
    flex-direction: column;
  }

  .primary-pill,
  .ghost-link {
    width: 100%;
  }

  .hero-alert {
    border-radius: 20px;
    padding: .9rem .85rem;
  }

  .section {
    padding: 4rem 0;
  }

  h2,
  .page-hero-copy h1,
  .legal-card h2 {
    max-width: none;
  }

  .grid-2,
  .grid-3,
  .stack,
  .section-head,
  .reveal {
    width: 100%;
    max-width: 100%;
  }

  .page-hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 3.1rem);
  }

  .image-panel {
    min-height: 220px;
    height: 220px;
  }

  .quote-panel {
    min-height: 470px;
    border-radius: 20px;
  }

  .quote-copy {
    padding: 1.15rem;
  }

  .quote-lines {
    font-size: clamp(1.65rem, 10.8vw, 2.55rem);
    line-height: 1;
  }

  .quote-body,
  .quote-note {
    font-size: .92rem;
  }

  .course-gallery-stage {
    padding: .7rem;
    border-radius: 20px;
  }

  .course-gallery-stage::before,
  .course-gallery-stage::after {
    width: .8rem;
  }

  .course-gallery-card {
    flex-basis: clamp(5.4rem, 24vw, 6.4rem);
  }

  .attention-grid,
  .page-hero-meta,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .attention-card,
  .bento-card,
  .page-card,
  .legal-card,
  .alert-box,
  .page-hero-meta-card {
    padding: .92rem;
  }

  .footer-panel {
    border-radius: 24px 24px 0 0;
    padding: 1.4rem .95rem 1.15rem;
  }

  .footer.shell {
    padding-inline: .5rem;
  }
}
