@font-face {
  font-family: "Lumen Movable Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/debate-assets/fonts/lumen-movable-display-subset.woff2") format("woff2");
  unicode-range: U+3000-303F, U+3400-4DBF, U+4E00-9FFF, U+F900-FAFF, U+FF00-FFEF;
}

@font-face {
  font-family: "Lumen Movable Text";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/debate-assets/fonts/lumen-movable-text-subset.woff2") format("woff2");
  unicode-range: U+3000-303F, U+3400-4DBF, U+4E00-9FFF, U+F900-FAFF, U+FF00-FFEF;
}

@font-face {
  font-family: "Lumen Cormorant";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/debate-assets/fonts/cormorant-garamond-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  --ink: #171312;
  --ink-soft: #4a3e39;
  --paper: #f8f1e6;
  --paper-strong: #fff9ef;
  --page-ground:
    radial-gradient(circle at 10% 8%, rgba(181, 32, 45, 0.055), transparent 28rem),
    radial-gradient(circle at 92% 18%, rgba(14, 109, 93, 0.06), transparent 30rem),
    linear-gradient(135deg, rgba(255, 249, 239, 0.92), rgba(247, 238, 222, 0.96) 48%, rgba(241, 229, 210, 0.94));
  --line: rgba(43, 33, 28, 0.16);
  --red: #b5202d;
  --red-deep: #7f1720;
  --green: #0e6d5d;
  --blue: #235c86;
  --gold: #c8a252;
  --shadow: 0 24px 70px rgba(37, 24, 20, 0.18);
  --radius: 8px;
  --max: 1180px;
  --font-ui: "Lumen Cormorant", "Lumen Movable Text", "Songti SC", "STSong", "Noto Serif CJK SC", "Source Han Serif SC", "SimSun", serif;
  --font-display-zh: "Lumen Cormorant", "Lumen Movable Display", "Lumen Movable Text", "Songti SC", "STSong", "Noto Serif CJK SC", "Source Han Serif SC", "SimSun", serif;
  --font-serif-zh: "Lumen Cormorant", "Lumen Movable Text", "Songti SC", "STSong", "Noto Serif CJK SC", "Source Han Serif SC", "SimSun", serif;
  --font-latin-display: "Lumen Cormorant", "Bodoni 72", "Didot", "Baskerville", "Times New Roman", serif;
  --font-latin-text: "Lumen Cormorant", "Baskerville", "Georgia", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: var(--page-ground);
  color: var(--ink);
  font-family: var(--font-ui);
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: rgba(181, 32, 45, 0.18);
}

a {
  color: inherit;
  text-decoration: none;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .bookmark-card,
  .clock-progress {
    transition: none;
  }
}

button,
select {
  font: inherit;
}

button {
  letter-spacing: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 14px 42px;
  color: #fffaf0;
  background: rgba(20, 17, 15, 0.2);
  border-bottom: 1px solid rgba(255, 249, 239, 0.18);
  backdrop-filter: blur(18px);
}

.site-header[data-elevated="true"],
.site-header.is-scrolled,
.site-header.is-page-mode {
  color: var(--ink);
  background: rgba(255, 249, 239, 0.9);
  border-bottom-color: rgba(43, 33, 28, 0.12);
  box-shadow: 0 14px 38px rgba(37, 24, 20, 0.08);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-lockup img {
  width: 46px;
  height: 46px;
  padding: 3px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 249, 239, 0.96);
  filter:
    drop-shadow(0 1px 0 rgba(255, 249, 239, 0.22))
    drop-shadow(0 9px 20px rgba(0, 0, 0, 0.22));
}

.brand-lockup strong,
.brand-lockup em {
  display: block;
  line-height: 1.05;
}

.brand-lockup strong {
  font-family: var(--font-display-zh);
  font-size: 20px;
  font-weight: 400;
}

.brand-lockup em {
  margin-top: 4px;
  font-size: 10px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0;
  opacity: 0.74;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: wrap;
}

.site-nav a,
.language-toggle {
  padding: 9px 12px;
  border-radius: var(--radius);
  border: 0;
  background: transparent;
  color: currentColor;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  opacity: 0.86;
  cursor: pointer;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active,
.language-toggle:hover,
.language-toggle:focus-visible {
  background: rgba(255, 249, 239, 0.15);
  opacity: 1;
  outline: none;
}

.site-header[data-elevated="true"] .site-nav a:hover,
.site-header[data-elevated="true"] .site-nav a:focus-visible,
.site-header[data-elevated="true"] .site-nav a.is-active,
.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.is-scrolled .site-nav a.is-active,
.site-header.is-page-mode .site-nav a:hover,
.site-header.is-page-mode .site-nav a:focus-visible,
.site-header.is-page-mode .site-nav a.is-active,
.site-header[data-elevated="true"] .language-toggle:hover,
.site-header[data-elevated="true"] .language-toggle:focus-visible,
.site-header.is-scrolled .language-toggle:hover,
.site-header.is-scrolled .language-toggle:focus-visible,
.site-header.is-page-mode .language-toggle:hover,
.site-header.is-page-mode .language-toggle:focus-visible {
  background: rgba(181, 32, 45, 0.08);
}

.language-toggle {
  min-width: 48px;
  box-shadow: inset 0 0 0 1px rgba(255, 249, 239, 0.24);
}

.site-header[data-elevated="true"] .language-toggle,
.site-header.is-scrolled .language-toggle,
.site-header.is-page-mode .language-toggle {
  box-shadow: inset 0 0 0 1px rgba(43, 33, 28, 0.12);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff9ef;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(17, 13, 12, 0.78), rgba(17, 13, 12, 0.42) 42%, rgba(17, 13, 12, 0.18)),
    linear-gradient(180deg, rgba(17, 13, 12, 0.16), rgba(17, 13, 12, 0.72)),
    url("/debate-assets/school-of-athens.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 16vh;
  content: "";
  background: linear-gradient(180deg, rgba(248, 241, 230, 0), var(--paper));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  padding: 148px 0 118px;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(260px, 0.52fr);
  gap: 52px;
  align-items: end;
}

.hero-copy,
.manifesto-copy,
.academy-copy,
.academy-hero-copy,
.timer-stage,
.growth-grid article,
.academy-paths article {
  min-width: 0;
  overflow-wrap: anywhere;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-family: var(--font-latin-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.academy-hero h1 {
  margin: 0;
  font-family: var(--font-display-zh);
  font-size: 78px;
  line-height: 0.98;
  font-weight: 400;
  text-wrap: balance;
}

.hero-roman {
  margin: 14px 0 0;
  color: rgba(255, 249, 239, 0.78);
  font-family: var(--font-latin-display);
  font-size: 23px;
}

.hero-intro {
  max-width: 710px;
  margin: 28px 0 0;
  color: rgba(255, 249, 239, 0.9);
  font-family: var(--font-serif-zh);
  font-size: 21px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 400;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: #fff9ef;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  box-shadow: 0 18px 34px rgba(181, 32, 45, 0.28);
}

.button-ghost {
  color: currentColor;
  background: rgba(255, 249, 239, 0.12);
  border-color: rgba(255, 249, 239, 0.38);
}

.academy-page .button-ghost,
.academy-callout .button-ghost {
  background: rgba(23, 19, 18, 0.04);
  border-color: var(--line);
}

.hero-emblem {
  margin: 0;
  padding: 0;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 18px;
  justify-self: end;
  width: min(320px, 100%);
}

.hero-emblem img {
  width: min(258px, 100%);
  margin: 0 auto;
  filter:
    drop-shadow(0 1px 0 rgba(255, 249, 239, 0.34))
    drop-shadow(0 22px 42px rgba(0, 0, 0, 0.38));
}

.hero-emblem p {
  margin: 0;
  padding: 12px 18px;
  border-top: 1px solid rgba(255, 249, 239, 0.42);
  border-bottom: 1px solid rgba(255, 249, 239, 0.24);
  color: rgba(255, 249, 239, 0.9);
  font-family: var(--font-display-zh);
  font-size: 21px;
  line-height: 1.58;
  text-align: center;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.42);
}

.section-band {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  padding: 92px 0;
}

.manifesto-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.manifesto {
  position: relative;
}

.manifesto h2,
.academy-callout h2,
.activity-section h2,
.timer-section h2,
.growth-section h2 {
  margin: 0;
  font-family: var(--font-display-zh);
  font-size: 46px;
  line-height: 1.12;
  font-weight: 400;
}

.manifesto-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--font-serif-zh);
  font-size: 18px;
  line-height: 1.9;
}

.manifesto-copy p + p {
  margin-top: 18px;
}

.academy-callout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.65fr);
  min-height: 540px;
  background: #1b1715;
  color: #fff9ef;
  overflow: hidden;
}

.academy-visual {
  min-height: 540px;
  overflow: hidden;
}

.academy-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(0.96);
}

.academy-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 68px 62px;
  background:
    linear-gradient(135deg, rgba(181, 32, 45, 0.24), rgba(14, 109, 93, 0.18)),
    #1b1715;
}

.academy-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: rgba(255, 249, 239, 0.82);
  font-size: 18px;
  line-height: 1.8;
}

.academy-copy .button {
  align-self: flex-start;
  margin-top: 32px;
}

.activity-section {
  position: relative;
}

.activity-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: 56px;
  align-items: end;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(43, 33, 28, 0.12);
}

.activity-heading p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.85;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.bookmark-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 238px minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(43, 33, 28, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 249, 239, 0.9);
  box-shadow: 0 18px 42px rgba(37, 24, 20, 0.08);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.bookmark-card:hover,
.bookmark-card:focus-visible {
  border-color: rgba(181, 32, 45, 0.28);
  box-shadow: 0 24px 56px rgba(37, 24, 20, 0.13);
  transform: translateY(-3px);
  outline: none;
}

.bookmark-copy {
  grid-row: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 238px;
  padding: 20px 22px 18px;
}

.bookmark-copy em {
  color: var(--red);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}

.bookmark-copy strong {
  margin-top: 12px;
  color: var(--ink);
  font-family: var(--font-display-zh);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.bookmark-copy small {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.bookmark-copy span {
  margin-top: auto;
  padding-top: 16px;
  color: rgba(74, 62, 57, 0.72);
  font-family: var(--font-latin-text);
  font-size: 12px;
}

.bookmark-card img {
  grid-row: 1;
  width: 100%;
  height: 238px;
  min-height: 0;
  object-fit: cover;
  border: 0;
  border-bottom: 1px solid rgba(43, 33, 28, 0.1);
  border-radius: 0;
}

.timer-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.rules-select {
  display: grid;
  gap: 8px;
  min-width: 260px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 400;
}

.rules-select select {
  width: 100%;
  min-height: 46px;
  padding: 0 38px 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  color: var(--ink);
  font-weight: 400;
}

.timer-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr);
  gap: 22px;
  align-items: stretch;
}

.timer-stage,
.phase-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 249, 239, 0.72);
  box-shadow: var(--shadow);
}

.timer-stage {
  min-height: 650px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stage-index {
  margin: 0;
  color: var(--red);
  font-weight: 400;
}

.timer-stage h3 {
  margin: 12px 0 0;
  font-family: var(--font-display-zh);
  font-size: 34px;
  font-weight: 400;
}

.stage-note {
  min-height: 58px;
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.clock-face {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 26px auto 18px;
}

.clock-face svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.clock-track {
  fill: none;
  stroke: rgba(43, 33, 28, 0.1);
  stroke-width: 5;
}

.clock-progress {
  fill: none;
  stroke: var(--green);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 333;
  stroke-dashoffset: 0;
  transition: stroke 0.2s ease, stroke-dashoffset 0.2s ease;
}

.clock-face.is-warning .clock-progress {
  stroke: var(--gold);
}

.clock-face.is-ended .clock-progress {
  stroke: var(--red);
}

.clock-readout {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 8px;
}

.clock-readout span {
  font-family: var(--font-latin-display);
  font-size: 66px;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
}

.clock-readout em {
  color: var(--ink-soft);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
}

.dual-clocks {
  width: min(520px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.side-clock {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  color: var(--ink);
  cursor: pointer;
}

.side-clock span,
.side-clock strong {
  display: block;
}

.side-clock span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 400;
}

.side-clock strong {
  margin-top: 6px;
  font-family: var(--font-latin-display);
  font-size: 32px;
}

.side-clock.is-active {
  border-color: rgba(181, 32, 45, 0.42);
  background: rgba(181, 32, 45, 0.08);
  box-shadow: inset 0 0 0 1px rgba(181, 32, 45, 0.16);
}

.timer-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.icon-button,
.control-button {
  min-height: 46px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 400;
}

.icon-button {
  width: 46px;
  background: #efe3d1;
  color: var(--ink);
  font-size: 26px;
}

.control-button {
  padding: 0 24px;
  background: var(--ink);
  color: #fff9ef;
}

.control-muted {
  background: var(--green);
}

.icon-button:hover,
.icon-button:focus-visible,
.control-button:hover,
.control-button:focus-visible,
.side-clock:hover,
.side-clock:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.warning-line {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 400;
}

.phase-list {
  overflow: hidden;
  min-height: 650px;
}

.phase-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: #fff9ef;
}

.phase-list-head span,
.phase-list-head strong {
  display: block;
}

.phase-list-head span {
  font-family: var(--font-display-zh);
  font-size: 18px;
  font-weight: 400;
}

.phase-list-head strong {
  color: var(--gold);
  font-size: 13px;
  font-weight: 400;
}

.phase-list ol {
  list-style: none;
  margin: 0;
  padding: 8px;
  max-height: 600px;
  overflow: auto;
}

.phase-list li {
  border-radius: var(--radius);
}

.phase-list button {
  width: 100%;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px 10px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.phase-list button:hover,
.phase-list button:focus-visible {
  background: rgba(35, 92, 134, 0.08);
  outline: none;
}

.phase-list li.is-current button {
  background: rgba(181, 32, 45, 0.1);
}

.phase-number {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #efe3d1;
  color: var(--red-deep);
  font-family: var(--font-latin-display);
  font-size: 13px;
  font-weight: 900;
}

.phase-title {
  min-width: 0;
}

.phase-title strong,
.phase-title span {
  display: block;
}

.phase-title strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phase-title span {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 12px;
}

.phase-time {
  color: var(--blue);
  font-family: var(--font-latin-display);
  font-size: 15px;
  font-weight: 900;
}

.growth-section {
  position: relative;
}

.growth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.growth-grid article,
.academy-paths article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 16px 40px rgba(37, 24, 20, 0.08);
}

.growth-grid article {
  padding: 26px;
}

.growth-grid span,
.academy-paths span {
  color: var(--red);
  font-family: var(--font-latin-display);
  font-size: 13px;
  font-weight: 900;
}

.growth-grid h3,
.academy-paths h2 {
  margin: 18px 0 0;
  font-family: var(--font-display-zh);
  font-size: 25px;
  font-weight: 400;
}

.growth-grid p,
.academy-paths p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.site-footer {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 46px 24px 60px;
  color: #fff9ef;
  background: var(--ink);
  text-align: center;
}

.site-footer img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.24));
}

.site-footer p {
  margin: 0;
  font-family: var(--font-display-zh);
  font-size: 18px;
}

.site-footer span {
  color: var(--gold);
  font-family: var(--font-latin-display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.academy-page {
  min-height: 100vh;
  background: var(--paper);
}

.academy-main {
  padding-top: 76px;
}

.academy-hero {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  overflow: hidden;
  color: #fff9ef;
  background: #191412;
}

.academy-hero-image {
  background-image:
    linear-gradient(90deg, rgba(25, 20, 18, 0.08), rgba(25, 20, 18, 0.72)),
    url("/debate-assets/school-of-athens.jpg");
  background-size: cover;
  background-position: center;
}

.academy-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
}

.academy-hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 249, 239, 0.84);
  font-family: var(--font-serif-zh);
  font-size: 20px;
  line-height: 1.85;
}

.academy-paths {
  width: min(var(--max), calc(100% - 64px));
  margin: -70px auto 96px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.academy-paths article {
  padding: 28px;
}

@media (max-width: 980px) {
  .site-header {
    padding: 12px 22px;
  }

  .hero-grid,
  .manifesto-layout,
  .activity-heading,
  .timer-shell,
  .academy-callout,
  .academy-hero,
  .academy-paths {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .academy-hero h1 {
    font-size: 58px;
  }

  .hero-grid {
    width: min(var(--max), calc(100% - 40px));
    padding-bottom: 88px;
  }

  .hero-emblem {
    justify-self: center;
    width: min(300px, 100%);
  }

  .hero-emblem img {
    width: min(216px, 100%);
  }

  .hero-emblem p {
    padding-inline: 12px;
    font-size: 18px;
  }

  .section-band,
  .academy-paths {
    width: min(var(--max), calc(100% - 40px));
  }

  .academy-visual {
    min-height: 360px;
  }

  .academy-hero-image {
    min-height: 340px;
  }

  .academy-paths {
    margin-top: 28px;
  }

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

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

@media (max-width: 720px) {
  .site-header {
    position: sticky;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    min-height: 0;
    padding: 10px 12px 10px;
    color: var(--ink);
    background: rgba(255, 249, 239, 0.94);
  }

  .brand-lockup {
    justify-content: center;
    width: 100%;
    min-width: 0;
  }

  .site-nav {
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: center;
    gap: 6px;
    overflow: visible;
    padding-bottom: 0;
    white-space: normal;
  }

  .site-nav a,
  .language-toggle {
    min-width: 0;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 5px;
    background: rgba(23, 19, 18, 0.04);
    font-size: 11px;
    line-height: 1.1;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .brand-lockup img {
    width: 40px;
    height: 40px;
  }

  .hero {
    width: 100vw;
    max-width: 100vw;
    min-height: calc(100svh - 128px);
    align-items: center;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100vw;
    max-width: 100vw;
    min-height: calc(100svh - 128px);
    padding: 32px 20px 50px;
    text-align: center;
  }

  .hero-copy {
    width: min(100%, 318px);
    margin: 0 auto;
  }

  .hero h1,
  .academy-hero h1 {
    font-size: 38px;
  }

  .hero-roman {
    margin-top: 8px;
    font-size: 20px;
  }

  .hero-intro,
  .academy-hero-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-intro {
    width: min(100%, 300px);
    margin-inline: auto;
    margin-top: 18px;
    line-height: 1.68;
  }

  .hero-actions,
  .timer-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions {
    align-items: center;
    width: 100%;
    margin-inline: auto;
    margin-top: 22px;
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .button {
    min-height: 42px;
  }

  .button,
  .rules-select {
    width: 100%;
  }

  .page-panel {
    padding: 150px 20px 72px;
  }

  .activity-heading {
    gap: 18px;
    padding-bottom: 20px;
  }

  .manifesto h2,
  .academy-callout h2,
  .activity-section h2,
  .timer-section h2,
  .growth-section h2 {
    font-size: 34px;
  }

  .bookmark-card {
    grid-template-columns: 1fr;
    grid-template-rows: 184px minmax(0, 1fr);
  }

  .bookmark-card img {
    width: 100%;
    height: 184px;
    min-height: 0;
  }

  .bookmark-copy {
    min-height: 220px;
    padding: 18px;
  }

  .hero-emblem {
    width: min(100%, 318px);
    margin: 24px auto 0;
  }

  .hero-emblem img {
    width: min(156px, 46vw);
  }

  .hero-emblem p {
    width: min(100%, 284px);
    max-width: 284px;
    padding: 8px 12px;
    font-size: 16px;
    line-height: 1.55;
  }

  .academy-copy,
  .academy-hero-copy,
  .timer-stage {
    padding: 28px 20px;
  }

  .academy-main {
    padding-top: 0;
  }

  .clock-face {
    width: 236px;
    height: 236px;
  }

  .clock-readout span {
    font-size: 52px;
  }

  .dual-clocks {
    grid-template-columns: 1fr;
  }

  .phase-list button {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .phase-time {
    grid-column: 2;
  }
}

body.is-ready .home-main,
body.is-ready .page-main {
  animation: page-enter 0.62s cubic-bezier(0.2, 0.72, 0.16, 1) both;
}

body.is-leaving {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.inner-page {
  background: var(--page-ground);
}

.page-main {
  width: 100%;
  min-height: calc(100svh - 184px);
  margin: 0 auto;
  padding: 132px 0 96px;
}

.page-hero {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.58fr);
  gap: 54px;
  align-items: end;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(43, 33, 28, 0.14);
}

.compact-page-hero .section-kicker {
  grid-column: 1;
  grid-row: 1;
}

.compact-page-hero h1 {
  grid-column: 1;
  grid-row: 2;
}

.compact-page-hero p:last-child {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: end;
}

.compact-page-hero p:last-child,
.timer-page-hero p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.85;
}

.page-hero h1,
.manifesto-title-block h1 {
  margin: 0;
  font-family: var(--font-display-zh);
  font-size: 52px;
  line-height: 1.08;
  font-weight: 400;
}

.bookmark-list {
  width: min(1040px, 100%);
  margin: 34px auto 0;
  display: grid;
  gap: 18px;
}

.bookmark-list .bookmark-card {
  position: relative;
  min-height: 190px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 252px;
  grid-template-rows: 1fr;
  overflow: hidden;
  border: 1px solid rgba(43, 33, 28, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 249, 239, 0.9)),
    var(--paper-strong);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 18px 48px rgba(37, 24, 20, 0.1);
  color: var(--ink);
}

.bookmark-list .bookmark-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--red), var(--gold));
  opacity: 0.9;
}

.bookmark-list .bookmark-card:hover,
.bookmark-list .bookmark-card:focus-visible {
  border-color: rgba(181, 32, 45, 0.32);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72) inset,
    0 24px 58px rgba(37, 24, 20, 0.14);
}

.bookmark-list .bookmark-copy {
  grid-column: 1;
  grid-row: 1;
  min-height: 0;
  padding: 26px 30px 24px 34px;
}

.bookmark-list .bookmark-copy strong {
  max-width: 640px;
  font-size: 25px;
  line-height: 1.24;
}

.bookmark-list .bookmark-copy small {
  max-width: 640px;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.72;
}

.bookmark-list .bookmark-copy span {
  width: fit-content;
  margin-top: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(43, 33, 28, 0.1);
  border-radius: 999px;
  background: rgba(255, 249, 239, 0.9);
  color: rgba(74, 62, 57, 0.72);
}

.bookmark-list .bookmark-card img {
  grid-column: 2;
  grid-row: 1;
  width: 252px;
  height: 100%;
  min-height: 190px;
  border: 0;
  border-left: 1px solid rgba(43, 33, 28, 0.1);
  object-fit: cover;
}

.timer-page-hero {
  grid-template-columns: minmax(0, 1fr) 300px;
}

.timer-stage h2 {
  margin: 12px 0 0;
  font-family: var(--font-display-zh);
  font-size: 34px;
  font-weight: 400;
}

.timer-section .timer-shell {
  width: min(var(--max), calc(100% - 64px));
  margin-inline: auto;
  margin-top: 30px;
}

.manifesto-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.manifesto-title-block {
  min-width: 0;
}

.motto-panel {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  padding: 34px;
  border: 1px solid rgba(43, 33, 28, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 249, 239, 0.74);
  box-shadow: 0 18px 48px rgba(37, 24, 20, 0.1);
}

.motto-panel img {
  width: 180px;
  filter: drop-shadow(0 18px 34px rgba(37, 24, 20, 0.18));
}

.motto-panel p {
  margin: 0;
  font-family: var(--font-serif-zh);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
}

.growth-section .growth-grid {
  margin-top: 34px;
}

.growth-grid h2 {
  margin: 18px 0 0;
  font-family: var(--font-serif-zh);
  font-size: 25px;
  font-weight: 400;
}

@media (max-width: 980px) {
  .page-main {
    width: 100%;
  }

  .page-hero,
  .timer-section .timer-shell {
    width: min(var(--max), calc(100% - 40px));
  }

  .page-hero,
  .timer-page-hero {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bookmark-list .bookmark-card {
    grid-template-columns: minmax(0, 1fr) 190px;
  }

  .bookmark-list .bookmark-card img {
    width: 190px;
    min-height: 190px;
  }
}

@media (max-width: 720px) {
  .page-main {
    width: 100%;
    max-width: 100%;
    padding: 34px 0 66px;
  }

  .page-hero,
  .timer-section .timer-shell {
    width: calc(100vw - 34px);
    max-width: calc(100vw - 34px);
  }

  .bookmark-list {
    width: calc(100vw - 34px);
    max-width: calc(100vw - 34px);
  }

  .page-hero h1,
  .manifesto-title-block h1 {
    font-size: 40px;
  }

  .compact-page-hero .section-kicker,
  .compact-page-hero h1,
  .compact-page-hero p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .compact-page-hero p:last-child,
  .timer-page-hero p:last-child {
    font-size: 16px;
    line-height: 1.8;
  }

  .bookmark-list {
    margin-top: 24px;
    gap: 14px;
  }

  .bookmark-list .bookmark-card {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .bookmark-list .bookmark-card::before {
    width: 100%;
    height: 3px;
    inset: 0 0 auto;
  }

  .bookmark-list .bookmark-copy {
    grid-column: 1;
    grid-row: 2;
    padding: 18px 18px 20px;
  }

  .bookmark-list .bookmark-copy strong {
    font-size: 22px;
  }

  .bookmark-list .bookmark-copy small {
    font-size: 14px;
  }

  .bookmark-list .bookmark-card img {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 176px;
    min-height: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(43, 33, 28, 0.1);
  }

  .timer-page-hero .rules-select {
    width: 100%;
  }

  .timer-stage h2 {
    font-size: 30px;
  }

  .motto-panel {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    padding: 26px 20px;
    text-align: center;
  }

  .motto-panel img {
    width: min(180px, 64vw);
  }

  .motto-panel p {
    font-size: 26px;
  }

  .hero-actions .button {
    max-width: calc(100vw - 44px);
  }
}
