:root {
  --background: #090908;
  --background-secondary: #0f0e0c;
  --surface: #15130f;
  --surface-raised: #1b1813;
  --text: #f2eee5;
  --text-soft: #d8d1c4;
  --muted: #9f988d;
  --accent: #c59a58;
  --accent-light: #e0bd84;
  --accent-dark: #8b6736;
  --border: rgba(224, 189, 132, 0.22);
  --border-strong: rgba(224, 189, 132, 0.42);
  --container: 1180px;
  --container-narrow: 830px;
  --section-space: clamp(4.5rem, 8vw, 8rem);
  --radius: 4px;
  --transition: 180ms ease;
  --shadow: 0 22px 65px rgba(0, 0, 0, 0.28);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--background); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(197,154,88,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,154,88,.025) 1px, transparent 1px),
    var(--background);
  background-size: 48px 48px;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
::selection { color: #0b0906; background: var(--accent-light); }

.skip-link {
  position: fixed;
  z-index: 999;
  top: .75rem;
  left: .75rem;
  transform: translateY(-160%);
  padding: .7rem 1rem;
  color: #0a0907;
  background: var(--accent-light);
  font-weight: 750;
  transition: transform var(--transition);
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}
.container--narrow { width: min(calc(100% - 2rem), var(--container-narrow)); }

.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(9, 9, 8, .94);
  backdrop-filter: blur(15px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  min-width: max-content;
}
.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  object-fit: cover;
}
.brand-copy { display: grid; line-height: 1.08; }
.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.04rem;
  letter-spacing: .02em;
}
.brand-subtitle {
  margin-top: .33rem;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-nav { display: flex; align-items: center; gap: 1.2rem; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-link {
  position: relative;
  padding-block: .55rem;
  color: var(--text-soft);
  font-size: .82rem;
  font-weight: 650;
  white-space: nowrap;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: .25rem;
  height: 1px;
  background: var(--accent);
  transition: right var(--transition);
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--text); }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { right: 0; }

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .55rem;
  border: 1px solid var(--border);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
}
.language-switcher a { color: var(--muted); }
.language-switcher a:hover, .language-switcher a[aria-current="true"] { color: var(--accent-light); }
.language-divider { color: var(--border-strong); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
  cursor: pointer;
}
.menu-icon, .menu-icon::before, .menu-icon::after {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}
.menu-icon { position: relative; }
.menu-icon::before, .menu-icon::after { content: ""; position: absolute; left: 0; }
.menu-icon::before { top: -6px; }
.menu-icon::after { top: 6px; }
.menu-toggle[aria-expanded="true"] .menu-icon { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-icon::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon::after { top: 0; transform: rotate(-45deg); }

main { overflow: clip; }
.section { position: relative; padding-block: var(--section-space); }
.section--compact { padding-block: clamp(3.5rem, 6vw, 5.8rem); }
.section--surface { border-block: 1px solid var(--border); background: var(--background-secondary); }
.section--top-border { border-top: 1px solid var(--border); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .62fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.section-head--single { grid-template-columns: minmax(0, 760px); }
.eyebrow, .section-label {
  margin: 0 0 1rem;
  color: var(--accent-light);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}
.section-number {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.section-number::before { content: ""; width: 32px; height: 1px; background: var(--accent); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}
h1 { margin-bottom: 1.5rem; font-size: clamp(2.65rem, 7.2vw, 6.4rem); letter-spacing: -.045em; }
h2 { margin-bottom: 1rem; font-size: clamp(2rem, 4.6vw, 4rem); letter-spacing: -.035em; }
h3 { margin-bottom: .8rem; font-size: clamp(1.3rem, 2vw, 1.7rem); letter-spacing: -.02em; }
p { color: var(--text-soft); }
.lead { max-width: 760px; font-size: clamp(1.08rem, 1.8vw, 1.3rem); line-height: 1.62; }
.large-copy { font-size: clamp(1.18rem, 2.2vw, 1.55rem); line-height: 1.5; }
.muted { color: var(--muted); }
.gold { color: var(--accent-light); }
.kicker-line { display: flex; flex-wrap: wrap; gap: .55rem 1.25rem; margin-top: 1.5rem; color: var(--muted); font-size: .8rem; font-weight: 650; }
.kicker-line span { position: relative; }
.kicker-line span + span::before { content: "·"; position: absolute; left: -.78rem; color: var(--accent); }

.hero {
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: center;
  padding-block: clamp(5.2rem, 10vw, 9rem);
}
.hero--inner { min-height: auto; padding-block: clamp(5rem, 9vw, 8.5rem); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .45fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}
.hero-copy { position: relative; z-index: 1; }
.hero-copy h1 { max-width: 980px; }
.hero-side {
  position: relative;
  min-height: 340px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(197,154,88,.08), rgba(197,154,88,0));
}
.hero-side::before, .hero-side::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid var(--border);
  border-radius: 50%;
}
.hero-side::after { inset: 27%; border-color: var(--border-strong); }
.route-line {
  position: absolute;
  inset: 8% 12%;
  overflow: hidden;
}
.route-line::before {
  content: "";
  position: absolute;
  width: 180%;
  height: 55%;
  left: -60%;
  top: 24%;
  border-top: 1px solid var(--accent);
  border-radius: 50%;
  transform: rotate(-18deg);
}
.route-line::after {
  content: "✦";
  position: absolute;
  right: 15%;
  top: 30%;
  color: var(--accent-light);
  font-size: 1rem;
}
.coordinate {
  position: absolute;
  right: .85rem;
  bottom: .7rem;
  color: var(--muted);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-logo {
  position: absolute;
  width: 118px;
  height: 118px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  opacity: .88;
  box-shadow: var(--shadow);
}
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: .85rem 1.15rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  color: #0a0907;
  background: var(--accent-light);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.button::after { content: "↗"; font-size: 1rem; }
.button:hover { transform: translateY(-2px); background: var(--text); border-color: var(--text); }
.button--secondary { color: var(--text); background: transparent; border-color: var(--border-strong); }
.button--secondary::after { content: "→"; }
.button--secondary:hover { color: #0a0907; background: var(--text); }
.button--text { min-height: auto; padding: 0; border: 0; color: var(--accent-light); background: none; }
.button--text::after { content: "→"; }
.button--text:hover { color: var(--text); background: transparent; transform: translateX(3px); }

.offer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid var(--border); }
.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: clamp(1.45rem, 3vw, 2.35rem);
  border-right: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255,255,255,.018), transparent 70%);
}
.offer-card:last-child { border-right: 0; }
.offer-card::before {
  content: attr(data-index);
  position: absolute;
  right: 1.25rem;
  top: 1.05rem;
  color: var(--border-strong);
  font-family: Georgia, serif;
  font-size: 3rem;
}
.offer-card:hover { background: rgba(197,154,88,.035); }
.offer-card .section-label { max-width: 75%; }
.offer-card h3 { margin-top: 1.5rem; font-size: clamp(1.8rem, 3vw, 2.65rem); }
.offer-card p { font-size: .96rem; }
.offer-card .meta { margin: auto 0 1.5rem; padding-top: 2rem; color: var(--muted); font-size: .76rem; font-weight: 700; }
.product-headline { color: var(--text-soft); font-family: inherit; font-size: .92rem; font-weight: 700; line-height: 1.45; }

.split { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.15fr); gap: clamp(2.5rem, 7vw, 7rem); align-items: start; }
.split--balanced { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.copy-stack > * + * { margin-top: 1.25rem; }
.quote-panel {
  position: relative;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--border);
  background: var(--surface);
}
.quote-panel::before { content: "“"; position: absolute; right: 1.5rem; top: .2rem; color: var(--border-strong); font-family: Georgia, serif; font-size: 7rem; line-height: 1; }

.theme-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.theme-item { min-height: 160px; padding: 1.5rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.theme-item span { display: block; margin-bottom: 2.3rem; color: var(--accent); font-size: .65rem; font-weight: 800; letter-spacing: .14em; }
.theme-item h3 { margin: 0; font-family: inherit; font-size: .95rem; font-weight: 700; line-height: 1.45; }

.number-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid var(--border); }
.number-card { padding: clamp(1.45rem, 3vw, 2.4rem); border-right: 1px solid var(--border); }
.number-card:last-child { border-right: 0; }
.number-card .number { display: block; margin-bottom: 2.5rem; color: var(--accent); font-size: .7rem; font-weight: 850; letter-spacing: .14em; }
.number-card p:last-child { margin-bottom: 0; }

.fact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.fact { padding: 1.35rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.fact-value { display: block; margin-bottom: .3rem; color: var(--accent-light); font-family: Georgia, serif; font-size: 1.75rem; }
.fact-label { color: var(--muted); font-size: .76rem; font-weight: 700; }

.process-list { counter-reset: process; border-top: 1px solid var(--border); }
.process-item {
  counter-increment: process;
  display: grid;
  grid-template-columns: 80px minmax(170px, .48fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  padding-block: 1.7rem;
  border-bottom: 1px solid var(--border);
}
.process-item::before { content: "0" counter(process); color: var(--accent); font-size: .72rem; font-weight: 800; letter-spacing: .14em; }
.process-item h3 { margin: 0; font-family: inherit; font-size: 1rem; font-weight: 800; line-height: 1.4; }
.process-item p { margin: 0; }

.principles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.principle { padding: 1.5rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.principle::before { content: "✦"; display: block; margin-bottom: 1.5rem; color: var(--accent); }
.principle h3 { font-family: inherit; font-size: 1rem; font-weight: 800; }
.principle p { margin-bottom: 0; font-size: .92rem; }

.link-panel { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid var(--border); }
.link-panel a { display: flex; min-height: 150px; flex-direction: column; justify-content: space-between; gap: 1.2rem; padding: 1.4rem; border-right: 1px solid var(--border); transition: background var(--transition); }
.link-panel a:last-child { border-right: 0; }
.link-panel a:hover { background: rgba(197,154,88,.055); }
.link-panel span { color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.link-panel strong { display: flex; align-items: end; justify-content: space-between; gap: 1rem; font-family: Georgia, serif; font-size: 1.5rem; font-weight: 500; line-height: 1.2; }
.link-panel strong::after { content: "↗"; color: var(--accent); font-family: inherit; }

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(circle at 50% 50%, rgba(197,154,88,.12), transparent 38%),
    linear-gradient(135deg, #15130f, #0b0a09 70%);
  box-shadow: var(--shadow);
}
.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(224,189,132,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224,189,132,.035) 1px, transparent 1px);
  background-size: 36px 36px;
}
.video-placeholder { position: relative; z-index: 1; display: grid; justify-items: center; gap: .8rem; text-align: center; }
.play-mark { width: 64px; height: 64px; display: grid; place-items: center; border: 1px solid var(--border-strong); border-radius: 50%; color: var(--accent-light); }
.play-mark::before { content: ""; margin-left: 4px; border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 12px solid currentColor; }
.video-brand { margin: 0; color: var(--text); font-family: Georgia, serif; font-size: clamp(1.65rem, 4vw, 3.5rem); letter-spacing: .08em; }
.video-status { margin: 0; color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

.curriculum-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.curriculum-card { min-height: 300px; padding: clamp(1.4rem, 3vw, 2.4rem); border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.curriculum-card .number { color: var(--accent); font-size: .72rem; font-weight: 850; letter-spacing: .14em; }
.curriculum-card h3 { margin-top: 3rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1.25rem 0 0; padding: 0; list-style: none; }
.tag-list li { padding: .38rem .55rem; border: 1px solid var(--border); color: var(--muted); font-size: .7rem; font-weight: 700; }

.audience-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.audience-card { padding: clamp(1.4rem, 3vw, 2.2rem); border: 1px solid var(--border); background: var(--surface); }
.audience-card ul { margin: 1.5rem 0 0; padding: 0; list-style: none; }
.audience-card li { position: relative; padding: .75rem 0 .75rem 1.35rem; border-top: 1px solid var(--border); color: var(--text-soft); }
.audience-card li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
.inline-link { color: var(--accent-light); text-decoration: underline; text-decoration-color: rgba(224,189,132,.45); text-underline-offset: .22em; }
.inline-link:hover { color: var(--text); }

.product-info { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.product-info-item { padding: 1.35rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.product-info-item dt { margin-bottom: 1.4rem; color: var(--muted); font-size: .66rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.product-info-item dd { margin: 0; color: var(--text); font-size: .88rem; font-weight: 700; line-height: 1.45; }

.cta-band { position: relative; padding: clamp(2rem, 5vw, 4rem); border: 1px solid var(--border-strong); background: var(--surface); overflow: hidden; }
.cta-band::after { content: ""; position: absolute; width: 220px; height: 220px; right: -80px; bottom: -100px; border: 1px solid var(--border); border-radius: 50%; }
.cta-band > * { position: relative; z-index: 1; }
.disclaimer { margin-top: 1rem; color: var(--muted); font-size: .78rem; }

.site-footer { padding-block: 3.5rem 2rem; border-top: 1px solid var(--border); background: #070706; }
.footer-main { display: grid; grid-template-columns: minmax(230px, 1fr) minmax(0, 1.5fr); gap: 3rem; padding-bottom: 2.5rem; }
.footer-brand { max-width: 360px; }
.footer-brand .brand { margin-bottom: 1.2rem; }
.footer-brand p { color: var(--muted); font-size: .85rem; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; }
.footer-links h2 { margin-bottom: 1rem; color: var(--muted); font-family: inherit; font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-links ul { margin: 0; padding: 0; list-style: none; }
.footer-links li + li { margin-top: .6rem; }
.footer-links a { color: var(--text-soft); font-size: .83rem; }
.footer-links a:hover { color: var(--accent-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-top: 1.4rem; border-top: 1px solid var(--border); color: var(--muted); font-size: .72rem; }

.error-page { min-height: 100svh; display: grid; place-items: center; padding-block: 4rem; }
.error-card { position: relative; padding: clamp(2rem, 6vw, 5rem); border: 1px solid var(--border); background: var(--surface); }
.error-code { position: absolute; right: 1.5rem; top: .6rem; color: var(--border); font-family: Georgia, serif; font-size: clamp(5rem, 18vw, 12rem); line-height: 1; }
.error-card h1 { position: relative; max-width: 750px; font-size: clamp(2.6rem, 7vw, 5.5rem); }
.error-fr { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }

@media (max-width: 1050px) {
  .site-nav { gap: .75rem; }
  .nav-list { gap: .75rem; }
  .nav-link { font-size: .74rem; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card { min-height: 320px; border-right: 0; border-bottom: 1px solid var(--border); }
  .offer-card:last-child { border-bottom: 0; }
  .theme-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-info { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .header-inner { min-height: 70px; }
  .js .menu-toggle { display: inline-flex; }
  .js .site-nav {
    position: fixed;
    inset: 70px 0 auto;
    max-height: calc(100svh - 70px);
    overflow-y: auto;
    display: grid;
    align-content: start;
    gap: 1.2rem;
    padding: 1.4rem 1rem 2rem;
    border-bottom: 1px solid var(--border-strong);
    background: #0b0a09;
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }
  .js .site-nav[data-open="true"] { transform: translateY(0); visibility: visible; }
  .nav-list { flex-wrap: wrap; }
  .js .nav-list { display: grid; gap: 0; }
  .js .nav-link { display: block; padding: .9rem 0; border-bottom: 1px solid var(--border); font-size: 1rem; }
  .js .nav-link::after { display: none; }
  .js .language-switcher { justify-self: start; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { min-height: 250px; }
  .section-head, .split, .split--balanced { grid-template-columns: 1fr; }
  .number-grid, .fact-grid { grid-template-columns: 1fr; }
  .number-card { border-right: 0; border-bottom: 1px solid var(--border); }
  .number-card:last-child { border-bottom: 0; }
  .process-item { grid-template-columns: 55px minmax(160px, .6fr) minmax(0, 1fr); }
  .link-panel { grid-template-columns: 1fr; }
  .link-panel a { min-height: 120px; border-right: 0; border-bottom: 1px solid var(--border); }
  .link-panel a:last-child { border-bottom: 0; }
  .footer-main { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --section-space: 4.2rem; }
  body { background-size: 34px 34px; }
  .container, .container--narrow { width: min(calc(100% - 1.3rem), var(--container)); }
  .brand-logo { width: 38px; height: 38px; }
  .brand-name { font-size: .92rem; }
  .brand-subtitle { font-size: .52rem; letter-spacing: .12em; }
  h1 { font-size: clamp(2.5rem, 14vw, 4rem); }
  h2 { font-size: clamp(2rem, 11vw, 3.15rem); }
  .hero { padding-block: 4.4rem 4.8rem; }
  .hero--inner { padding-block: 4rem 4.6rem; }
  .hero-side { min-height: 210px; }
  .hero-logo { width: 92px; height: 92px; }
  .hero-actions, .cta-actions { display: grid; }
  .button { width: 100%; }
  .kicker-line { display: grid; gap: .35rem; }
  .kicker-line span + span::before { display: none; }
  .offer-card { min-height: 355px; }
  .theme-grid, .principles, .curriculum-grid, .audience-grid, .product-info { grid-template-columns: 1fr; }
  .process-item { grid-template-columns: 45px 1fr; gap: .85rem; }
  .process-item p { grid-column: 2; }
  .play-mark { width: 54px; height: 54px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .error-code { font-size: 6rem; }
}

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