
:root {
  --ink: #0a0a0a;
  --ink-soft: #3a3a3a;
  --grey-mid: #8a8a8a;
  --grey-line: #e6e6e6;
  --paper: #ffffff;
  --paper-warm: #fafafa;

  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Allura", cursive;

  --radius-card: 24px;
  --radius-pill: 999px;
  --radius-input: 14px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  --max-width: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-snap-type: none;
  scroll-padding-top: 0;
}

html.page-snapping {
  scroll-snap-type: y mandatory;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(10,10,10,0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,10,0.065) 1px, transparent 1px);
  background-size: 72px 72px;
  background-attachment: fixed;
  background-position: 0 0;
}

::selection { background: var(--ink); color: var(--paper); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 48px);
  transition: background 0.4s var(--ease-smooth), backdrop-filter 0.4s var(--ease-smooth), border-color 0.4s var(--ease-smooth);
  border-bottom: 1px solid transparent;
}
.site-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--grey-line);
}
.nav-wordmark {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.45s var(--ease-smooth), transform 0.45s var(--ease-smooth);
}
.site-nav.is-scrolled .nav-wordmark { opacity: 1; transform: translateY(0); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.25s var(--ease-smooth);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--paper) !important;
  background: var(--ink);
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  transition: opacity 0.25s var(--ease-smooth), transform 0.25s var(--ease-smooth);
}
.nav-cta:hover { opacity: 0.82; }
@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

.hero {
  height: 165svh;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-logo {
  text-align: center;
  position: relative;
  z-index: 2;
  will-change: transform, opacity;
}
.logo-script {
  
  height: clamp(96px, 16vw, 180px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bracket-logo {
  position: relative;
  width: min(520px, 88vw);
  height: 100%;
  --start-shift: clamp(30px, 4vw, 40px);
  --end-shift: clamp(30px, 4vw, 40px);
  --word-width: clamp(52px, 7vw, 72px);
}
.bracket-logo > span,
.logo-word-clip {
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 1;
  white-space: nowrap;
  will-change: transform, opacity, filter, clip-path;
}
.logo-bracket,
.logo-semicolon {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(64px, 9.8vw, 108px);
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
  z-index: 3;
}

.logo-bracket.left {
  transform: translate(-50%, -50%) translateX(calc(-1 * var(--start-shift)));
  animation: none;
}
.logo-bracket.right {
  transform: translate(-50%, -50%) translateX(var(--start-shift));
  animation: none;
}
.logo-semicolon {
  transform: translate(-50%, -50%);
  color: #000000;
  opacity: 1;
  animation: none;
}
.logo-word-clip {
  display: none;
}
.logo-word {
  display: none;
}
@keyframes bracketLeftExpand {
  0% { transform: translate(-50%, -50%) translateX(calc(-1 * var(--start-shift))); }
  100% { transform: translate(-50%, -50%) translateX(calc(-1 * var(--end-shift))); }
}
@keyframes bracketRightExpand {
  0% { transform: translate(-50%, -50%) translateX(var(--start-shift)); }
  100% { transform: translate(-50%, -50%) translateX(var(--end-shift)); }
}
@keyframes semicolonFade {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.86);
  }
}
@keyframes wordClipReveal {
  0% { clip-path: inset(0 50% 0 50%); }
  100% { clip-path: inset(0 0 0 0); }
}
.logo-block {
  margin-top: 18px;
  font-size: clamp(11px, 1.4vw, 14px);
  font-weight: 700;
  letter-spacing: 0.52em;
  text-indent: 0.52em; 
  text-transform: uppercase;
  color: var(--ink);
}
.hero-tagline {
  margin-top: 26px;
  font-size: clamp(13px, 1.5vw, 15px);
  color: var(--grey-mid);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--grey-mid);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  will-change: opacity;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--grey-mid), transparent);
}

.bubble-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  will-change: opacity;
}
.bubble {
  position: absolute;
  transition: transform 0.55s var(--ease-out);
  
  transform: translate(var(--push-x, 0px), var(--push-y, 0px));
}
.bubble-inner {
  background: var(--paper);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-pill);
  padding: 12px 22px;
  cursor: default;
  max-width: 200px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
  transition:
    max-width 0.5s var(--ease-out),
    border-radius 0.5s var(--ease-out),
    padding 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out),
    border-color 0.5s var(--ease-out),
    opacity 0.4s var(--ease-smooth);
  animation: wobble var(--wobble-dur, 9s) ease-in-out infinite;
  animation-delay: var(--wobble-delay, 0s);
}
.bubble-label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: var(--ink);
}
.bubble-detail {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--grey-mid);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), opacity 0.4s var(--ease-smooth) 0.08s, margin-top 0.5s var(--ease-out);
  white-space: normal;
}
.bubble:hover .bubble-inner,
.bubble:focus-within .bubble-inner {
  max-width: 290px;
  border-radius: var(--radius-card);
  padding: 18px 24px;
  border-color: var(--ink);
  box-shadow: 0 18px 48px rgba(0,0,0,0.08);
  animation-play-state: paused;
}
.bubble:hover .bubble-detail,
.bubble:focus-within .bubble-detail {
  max-height: 120px;
  opacity: 1;
  margin-top: 6px;
}

.bubble-field.has-active .bubble:not(.is-active) .bubble-inner { opacity: 0.45; }
.bubble.is-active { z-index: 5; }

@keyframes wobble {
  0%   { transform: translate(0px, 0px) rotate(0deg); }
  18%  { transform: translate(2.5px, -3px) rotate(0.5deg); }
  37%  { transform: translate(-2px, 1.5px) rotate(-0.6deg); }
  55%  { transform: translate(1.5px, 3px) rotate(0.3deg); }
  74%  { transform: translate(-2.5px, -1.5px) rotate(-0.35deg); }
  100% { transform: translate(0px, 0px) rotate(0deg); }
}

.bubble[data-pos="1"] { top: 22%; left: 14%; }
.bubble[data-pos="2"] { top: 19%; right: 15%; }
.bubble[data-pos="3"] { bottom: 21%; left: 17%; }
.bubble[data-pos="4"] { bottom: 23%; right: 13%; }

@media (max-width: 880px) {
  .bubble[data-pos="1"] { top: 15%; left: 6%; }
  .bubble[data-pos="2"] { top: 12%; right: 6%; }
  .bubble[data-pos="3"] { bottom: 14%; left: 8%; }
  .bubble[data-pos="4"] { bottom: 11%; right: 7%; }
  .bubble-inner { padding: 10px 16px; }
  .bubble-label { font-size: 11.5px; }
}
@media (max-width: 560px) {
  
  .bubble-field {
    position: absolute;
    inset: auto 0 11vh 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    padding: 0 18px;
  }
  .bubble { position: static; }
  .bubble:hover .bubble-inner,
  .bubble:focus-within .bubble-inner { max-width: 240px; }
}

.section {
  position: relative;
  min-height: 100svh;
  padding: clamp(92px, 9vw, 136px) 0;
  display: flex;
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: transparent;
}
.section > .container { width: 100%; }
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(20px, 5vw, 48px);
  right: clamp(20px, 5vw, 48px);
  height: 1px;
  background: rgba(10,10,10,0.13);
}
.section-head { max-width: 640px; margin-bottom: clamp(36px, 4vw, 60px); }
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
}
.section-sub {
  margin-top: 18px;
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--grey-mid);
  line-height: 1.65;
}

.reveal,
.vortex-reveal,
.reveal.is-visible,
.vortex-reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}
.page-break > .container {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 360ms var(--ease-smooth),
    transform 420ms var(--ease-out);
}
.page-break.is-page-active > .container {
  opacity: 1;
  transform: translateY(0);
}

.tutor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
}
.tutor-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--grey-line);
  background: var(--paper-warm);
  transition: box-shadow 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.tutor-card:hover {
  box-shadow: 0 24px 64px rgba(0,0,0,0.09);
  transform: translateY(-4px);
}
.tutor-photo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #f5f5f5 0%, #e9e9e9 100%);
}
.tutor-photo span {
  
  font-size: clamp(72px, 9vw, 110px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(10,10,10,0.07);
  user-select: none;
}
.tutor-meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px;
  gap: 12px;
  transition: opacity 0.4s var(--ease-smooth), transform 0.5s var(--ease-out);
}
.tutor-subject {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--grey-line);
  padding: 7px 13px;
  border-radius: var(--radius-pill);
}
.tutor-name {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: right;
  color: var(--ink);
}
.tutor-results {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.55s var(--ease-out);
}
.tutor-card:hover .tutor-results,
.tutor-card:focus-within .tutor-results { transform: translateY(0); }
.tutor-card:hover .tutor-meta,
.tutor-card:focus-within .tutor-meta { opacity: 0; transform: translateY(12px); }
.tutor-results-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.tutor-results-body {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.capsule-row { display: flex; flex-wrap: wrap; gap: 7px; }
.capsule {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.results-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.result-panel,
.profile-panel,
.class-card,
.review-card {
  border: 1px solid var(--grey-line);
  border-radius: 22px;
  background: rgba(255,255,255,0.66);
  padding: clamp(20px, 2.2vw, 28px);
}
.result-panel {
  min-height: 0;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
}
.result-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--grey-mid);
}
.result-quote {
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 10ch;
}
.result-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 820px) {
  .result-metrics { grid-template-columns: 1fr; }
  .metric-box.raw50-feature {
    grid-row: auto;
    min-height: 430px;
  }
  .metric-box.summary-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.metric-box {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--grey-line);
  border-radius: 22px;
  padding: 24px;
  background: rgba(255,255,255,0.82);
}
.metric-box.raw50-feature {
  grid-row: span 2;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 3vw, 34px);
}
.metric-box.raw50-feature .metric-number {
  font-size: clamp(72px, 8vw, 112px);
  margin: 14px 0 22px;
}
.metric-box.raw50-feature .metric-copy {
  max-width: 28ch;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.72;
}
.metric-box.raw50-feature .metric-visual {
  margin-top: auto;
  padding-top: 34px;
}
.metric-box.summary-tile {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.metric-box.summary-wide {
  grid-column: 1 / -1;
  min-height: 150px;
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(22px, 4vw, 52px);
}
.metric-box.summary-wide .summary-copy {
  margin: 0;
  max-width: 64ch;
}
.metric-box > strong,
.metric-number {
  display: block;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 0.92;
  margin-bottom: 12px;
  letter-spacing: -0.05em;
}
.metric-topline {
  margin-bottom: 10px;
  color: var(--grey-mid);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.metric-copy {
  display: block;
  color: var(--grey-mid);
  font-size: 15px;
  line-height: 1.7;
}
.metric-copy strong,
.metric-foot strong,
.summary-copy strong {
  color: var(--ink);
  font-weight: 600;
}
.metric-visual {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}
.metric-track {
  height: 8px;
  background: rgba(10,10,10,0.08);
  border-radius: 999px;
  overflow: hidden;
}
.metric-fill {
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(10,10,10,0.95), rgba(10,10,10,0.45));
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 2.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.results-animated.is-results-active .metric-fill {
  transform: scaleX(var(--fill-scale, 1));
}
.metric-foot {
  color: var(--grey-mid);
  font-size: 12px;
  line-height: 1.5;
}
.metric-box::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 1px;
  background: rgba(10,10,10,0.08);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 2.4s cubic-bezier(0.22, 1, 0.36, 1) 0.28s;
}
.results-animated.is-results-active .metric-box::after {
  transform: scaleX(1);
}
.metric-box.premier-feature {
  order: -1;
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  min-height: 230px;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
  gap: clamp(18px, 3vw, 28px);
  padding: clamp(26px, 4vw, 40px);
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.metric-box.premier-feature::before,
.metric-box.premier-feature::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  pointer-events: none;
}
.metric-box.premier-feature::before {
  width: 320px;
  height: 320px;
  right: -130px;
  top: -150px;
}
.metric-box.premier-feature::after {
  width: 180px;
  height: 180px;
  right: -40px;
  top: -70px;
}
.premier-side {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 16px;
  padding-right: clamp(18px, 3vw, 30px);
  border-right: 1px solid rgba(255,255,255,0.18);
}
.premier-heading {
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.premier-count {
  display: flex;
  align-items: end;
  gap: 16px;
  margin: 0;
}
.premier-count strong {
  margin: 0;
  color: var(--paper);
  font-size: clamp(86px, 10vw, 132px);
  line-height: 0.82;
  letter-spacing: -0.08em;
}
.premier-ratio {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 18px;
}
.premier-ratio-number {
  color: var(--paper);
  font-size: clamp(86px, 10vw, 132px);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.08em;
}
.premier-ratio-denominator {
  padding-bottom: 8px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.45;
}
.premier-ratio-denominator strong {
  display: block;
  margin-bottom: 2px;
  color: var(--paper);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.premier-rarity-line {
  position: relative;
  height: 7px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
}
.premier-rarity-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,255,255,0.2));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 3s cubic-bezier(0.22, 1, 0.36, 1) 0.45s;
}
.results-animated.is-results-active .premier-rarity-line::before {
  transform: scaleX(1);
}
.premier-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 14px;
}
.premier-copy p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: clamp(16px, 1.55vw, 18px);
  line-height: 1.65;
}
.premier-copy p strong {
  color: var(--paper);
  font-weight: 600;
}
.premier-note {
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  line-height: 1.55;
}
.results-sidebar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.results-animated .metric-number,
.results-animated .premier-count strong {
  opacity: 0.65;
}
.results-animated.is-results-active .metric-number,
.results-animated.is-results-active .premier-count strong {
  opacity: 1;
}
.summary-bars {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}
.summary-row {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--grey-mid);
}
.summary-row strong { color: var(--ink); }
.summary-track {
  height: 7px;
  border-radius: 999px;
  background: rgba(10,10,10,0.08);
  overflow: hidden;
}
.summary-fill {
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(10,10,10,0.9), rgba(10,10,10,0.35));
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 2.6s cubic-bezier(0.22, 1, 0.36, 1) 0.38s;
}
.results-animated.is-results-active .summary-fill {
  transform: scaleX(var(--fill-scale, 1));
}
.summary-copy {
  color: var(--grey-mid);
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .metric-box.premier-feature {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .premier-side {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    padding-right: 0;
    padding-bottom: 20px;
  }
  .results-sidebar { grid-template-columns: 1fr; }
}
.skeleton-card {
  border: 1px solid var(--grey-line);
  border-radius: 18px;
  background: rgba(255,255,255,0.68);
  padding: 20px;
}
.skeleton-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(10,10,10,0.08);
  margin-top: 10px;
}
.skeleton-line.short { width: 38%; }
.results-source-note {
  margin: 18px 0 0;
  color: var(--grey-mid);
  font-size: 11px;
  line-height: 1.6;
}
.results-source-note strong {
  color: var(--ink);
  font-weight: 600;
}
.profile-feature {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 26px;
  align-items: stretch;
}
@media (max-width: 880px) { .profile-feature { grid-template-columns: 1fr; } }
.profile-portrait {
  border-radius: 20px;
  border: 1px solid var(--grey-line);
  min-height: 300px;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(240,240,240,0.8));
  display: grid;
  place-items: center;
  font-size: 64px;
  color: var(--grey-mid);
}
.profile-panel h3,
.review-card h3,
.class-card h3 {
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.profile-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.fact-chip {
  border: 1px solid var(--grey-line);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 13px;
  background: rgba(255,255,255,0.75);
}
.profile-name {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.05em !important;
}
.profile-role {
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.profile-credentials {
  margin-top: 28px;
  border-top: 1px solid var(--grey-line);
}
.profile-credential {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--grey-line);
}
.profile-credential-label {
  color: var(--grey-mid);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.profile-credential-value {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
}
.profile-credential-value strong {
  font-weight: 600;
}
.profile-credential {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.profile-credential > * {
  position: relative;
  z-index: 1;
}
.profile-credential--watermark {
  align-items: center;
}
.profile-credential-watermark {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.profile-credential-watermark img {
  position: absolute;
  display: block;
  width: 138px;
  height: 138px;
  right: 14px;
  top: 50%;
  transform: translateY(-35%);
  object-fit: contain;
  opacity: .33;
  filter: saturate(.85) contrast(1.08);
  mix-blend-mode: multiply;
}
.profile-credential-watermark--university img {
  width: 150px;
  height: 150px;
  right: 8px;
}
.profile-credential-watermark--school img {
  top: 64%;
  object-position: center;
  transform: translateY(-35%) scale(1.08);
}
@media (max-width: 620px) {
  .profile-credential {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .profile-credential-watermark img {
    width: 118px;
    height: 118px;
    right: -4px;
    opacity: .11;
  }
  .profile-credential-watermark--university img {
    width: 128px;
    height: 128px;
  }
}
.class-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 900px) { .class-grid { grid-template-columns: 1fr; } }
.class-card hr {
  border: 0;
  border-top: 1px solid var(--grey-line);
  margin: 18px 0 16px;
}
.class-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 14px;
  border: 1px solid var(--grey-line);
  border-radius: 12px;
  background: rgba(255,255,255,0.68);
}
.class-slot + .class-slot { margin-top: 12px; }
.class-slot strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}
.class-slot span {
  display: block;
  color: var(--grey-mid);
  font-size: 13px;
}
.status-pill {
  white-space: nowrap;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
}
.status-pill.available { background: #dcecdf; color: #2f7c34; }
.status-pill.limited { background: #f4eed6; color: #9a6d00; }
.status-pill.full { background: #f5dadd; color: #a04a57; }
.exam-prep-card {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: clamp(26px, 4vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  border-color: var(--ink);
  background: rgba(255,255,255,0.88);
}
.exam-prep-card::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -150px;
  top: -150px;
  border: 1px solid rgba(10,10,10,0.09);
  border-radius: 50%;
  pointer-events: none;
}
.exam-prep-intro,
.exam-prep-schedule {
  position: relative;
  z-index: 1;
}
.exam-prep-eyebrow {
  margin-bottom: 14px;
  color: var(--grey-mid);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.exam-prep-card h3 {
  max-width: 13ch;
  margin-bottom: 16px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.exam-prep-subheading {
  max-width: 48ch;
  color: var(--grey-mid);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
}
.exam-prep-subheading strong {
  color: var(--ink);
  font-weight: 600;
}
.exam-prep-value {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  max-width: 520px;
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid var(--ink);
  border-radius: 16px;
  background: var(--ink);
  color: var(--paper);
}
.exam-prep-value strong {
  display: block;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.exam-prep-value span {
  color: rgba(255,255,255,0.76);
  font-size: 13px;
  line-height: 1.55;
}
.exam-prep-value::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 42%;
  left: -48%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
  animation: examValueSweep 5.8s ease-in-out infinite;
}
@keyframes examValueSweep {
  0%, 58% { left: -48%; }
  82%, 100% { left: 118%; }
}
.exam-prep-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  padding: 9px 15px;
  border: 1px solid #a9cdb0;
  border-radius: 999px;
  background: #dcecdf;
  color: #2f7c34;
  font-size: 13px;
  font-weight: 600;
}
.exam-prep-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.exam-prep-schedule {
  display: grid;
  gap: 14px;
}
.exam-prep-day {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--grey-line);
  border-radius: 16px;
  background: rgba(255,255,255,0.82);
}
.exam-prep-day-label {
  color: var(--grey-mid);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.exam-prep-day strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}
.exam-prep-day span {
  color: var(--grey-mid);
  font-size: 14px;
}
@media (max-width: 900px) {
  .exam-prep-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .exam-prep-card h3 { max-width: none; }
}
@media (max-width: 520px) {
  .exam-prep-day {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .exam-prep-value {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr; } }
.review-card p {
  color: var(--grey-mid);
  line-height: 1.7;
}
.review-meta {
  margin-top: 16px;
  font-size: 13px;
  color: var(--grey-mid);
}

.marquee {
  border-top: 1px solid var(--grey-line);
  border-bottom: 1px solid var(--grey-line);
  overflow: hidden;
  padding: 26px 0;
  background: var(--paper);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 48s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-size: clamp(13px, 1.6vw, 16px);
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  padding-right: 0.34em;
}
.marquee-content .dot { margin: 0 1.6em; color: var(--grey-mid); }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.enquiry { background: transparent; }
.enquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 880px) { .enquiry-layout { grid-template-columns: 1fr; } }

.enquiry-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
@media (max-width: 560px) { .enquiry-form { grid-template-columns: 1fr; } }
.field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-input);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
  appearance: none;
  -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%230a0a0a' fill='none' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder,
.field textarea::placeholder { color: #b9b9b9; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(10,10,10,0.06);
}
.multi-select {
  position: relative;
}
.multi-select-trigger {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  text-align: left;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-input);
  cursor: pointer;
  transition: border-color 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}
.multi-select-trigger:hover,
.multi-select.is-open .multi-select-trigger {
  border-color: var(--ink);
}
.multi-select-trigger:focus-visible {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(10,10,10,0.06);
}
.multi-select-chevron {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s var(--ease-out);
}
.multi-select.is-open .multi-select-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}
.multi-select-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 16px;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 22px 50px rgba(10,10,10,0.12);
}
.multi-select-option {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 14px 16px;
  color: var(--ink) !important;
  font-size: 14px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  cursor: pointer;
  transition: background 0.25s var(--ease-smooth);
}
.multi-select-option + .multi-select-option {
  border-top: 1px solid var(--grey-line);
}
.multi-select-option:hover {
  background: rgba(10,10,10,0.035);
}
.multi-select-option input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  padding: 0;
  appearance: auto;
  accent-color: var(--ink);
}
.multi-select-option strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  line-height: 1.35;
}
.multi-select-option small {
  display: block;
  color: var(--grey-mid);
  font-size: 12px;
  line-height: 1.45;
}
#classInterestValidation {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 560px) {
  .multi-select-menu {
    position: static;
    margin-top: 8px;
  }
}
.enquiry-submit {
  grid-column: 1 / -1;
  justify-self: start;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: var(--radius-pill);
  padding: 15px 38px;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-smooth);
}
.enquiry-submit:hover { transform: translateY(-2px); opacity: 0.85; }
.enquiry-submit:active { transform: translateY(0); }
.enquiry-note {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--grey-mid);
}
.form-status {
  grid-column: 1 / -1;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  display: none;
}
.form-status.is-visible { display: block; }

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

#enquire .school-logo-marquee-enquire {
  width: 100vw;
  margin-top: clamp(52px, 6vw, 88px);
  margin-left: 50%;
  transform: translateX(-50%);
}
.school-logo-marquee-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(10,10,10,.13);
  border-bottom: 1px solid rgba(10,10,10,.13);
  background: rgba(255,255,255,.94);
  padding: clamp(25px, 3.6vw, 40px) 0;
}
.school-logo-marquee-section::before,
.school-logo-marquee-section::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: clamp(42px, 8vw, 150px);
  pointer-events: none;
}
.school-logo-marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255,255,255,1), rgba(255,255,255,.92) 34%, rgba(255,255,255,0));
}
.school-logo-marquee-section::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255,255,255,1), rgba(255,255,255,.92) 34%, rgba(255,255,255,0));
}
.school-logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.school-logo-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: schoolLogoTicker 54s linear infinite;
}
.school-logo-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}
.school-logo-item {
  position: relative;
  flex: 0 0 auto;
  width: clamp(190px, 18vw, 278px);
  height: 88px;
  display: grid;
  place-items: center;
  padding: 8px clamp(22px, 2.4vw, 38px);
}
.school-logo-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 23%;
  bottom: 23%;
  width: 1px;
  background: rgba(10,10,10,.08);
}
.school-logo-item img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 70px;
  object-fit: contain;
  opacity: .67;
  filter: grayscale(.22) saturate(.72);
  transform: translateZ(0) scale(.96);
  transition: opacity .28s ease, filter .28s ease, transform .28s ease;
}
.school-logo-item:hover img {
  opacity: 1;
  filter: none;
  transform: translateZ(0) scale(1.06);
}
.school-logo-marquee:hover .school-logo-track { animation-play-state: paused; }
@keyframes schoolLogoTicker {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}
@media (max-width: 640px) {
  .school-logo-marquee-section { padding: 19px 0; }
  .school-logo-track { animation-duration: 38s; }
  .school-logo-item { width: 185px; height: 72px; padding: 7px 22px; }
  .school-logo-item img { max-height: 56px; }
}
@media (prefers-reduced-motion: reduce) {
  .school-logo-track { animation: none; transform: none; }
  .school-logo-marquee { overflow-x: auto; scrollbar-width: thin; }
  .school-logo-group[aria-hidden="true"] { display: none; }
}

.site-footer {
  min-height: 34svh;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(10,10,10,0.13);
  padding: 44px 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: rgba(255,255,255,0.58);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-mark {
  font-family: "Times New Roman", Times, serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.footer-meta { font-size: 12px; color: var(--grey-mid); letter-spacing: 0.04em; }

.hero-sphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 1;
  will-change: opacity, transform;
}

.hero-sphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.025) 46%,
      rgba(255,255,255,0.72) 88%,
      var(--paper) 100%);
  pointer-events: none;
}

.hero-sphere svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-sphere-glyph {
  fill: rgba(10,10,10,0.88);
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-rendering: geometricPrecision;
}

.hero-logo {
  z-index: 4;
  text-shadow:
    0 0 20px rgba(255,255,255,0.94),
    0 0 45px rgba(255,255,255,0.82);
}

.bubble-field { z-index: 3; }
.scroll-cue { z-index: 5; }

@media (max-width: 720px) {
  .hero-sphere {
    transform: scale(1.2);
  }

  .hero-sphere::after {
    background:
      radial-gradient(circle at center,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.12) 38%,
        var(--paper) 76%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bubble-inner { animation: none; }
  .marquee-track { animation-duration: 240s; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .logo-bracket.left { animation: none; transform: translate(-50%, -50%) translateX(calc(-1 * var(--end-shift))); }
  .logo-bracket.right { animation: none; transform: translate(-50%, -50%) translateX(var(--end-shift)); }
  .logo-semicolon { animation: none; opacity: 1; transform: translate(-50%, -50%); }
  .logo-word-clip { display: none; }
  .logo-word { display: none; }
  .page-break > .container { opacity: 1; transform: none; transition: none; }
  .hero-sphere { opacity: 0.34; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

@media (max-width: 720px) {
  html.page-snapping { scroll-snap-type: y proximity; }
  body { background-size: 56px 56px; }
  .section { min-height: 100svh; align-items: flex-start; }
}

:root { --grey-mid: #747474; }
.hero-tagline {
  position: relative;
  isolation: isolate;
  display: table;
  width: fit-content;
  margin: 26px auto 0;
  padding: 7px 18px 8px;
  color: transparent;
}
.hero-tagline::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -3px -13px -4px;
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  box-shadow:
    0 0 8px 3px rgba(255,255,255,.82),
    0 0 18px 8px rgba(255,255,255,.48),
    0 0 32px 13px rgba(255,255,255,.18);
  filter: blur(4px);
  pointer-events: none;
}
.hero-tagline::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 10%;
  right: 10%;
  top: 25%;
  bottom: 25%;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  filter: blur(8px);
  pointer-events: none;
}
.hero-tagline-text {
  position: relative;
  z-index: 2;
  display: block;
  color: rgba(112,112,112,.98);
  font: inherit;
  letter-spacing: inherit;
  white-space: nowrap;
  text-shadow:
    0 1px 0 rgba(255,255,255,.96),
    0 1px 2px rgba(10,10,10,.12);
}
@media (max-width: 460px) {
  .hero-tagline {
    padding-inline: 12px;
  }
  .hero-tagline::before {
    inset-inline: -14px;
  }
  .hero-tagline-text {
    white-space: normal;
    text-align: center;
  }
}
#results.section {
  min-height: 100svh;
  padding-top: clamp(76px, 8vh, 96px);
  padding-bottom: clamp(20px, 3vh, 34px);
  align-items: start;
}
#results .section-head {
  margin-bottom: clamp(14px, 2vh, 22px);
}
#results .section-title { font-size: clamp(34px, 4vw, 52px); }
#results .result-panel {
  max-width: 1160px;
  margin: 0 auto;
}
#results .result-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto;
}
#results .metric-box {
  border-radius: 20px;
  padding: 20px;
  background: rgba(255,255,255,0.88);
}
#results .metric-box::after { display: none; }
#results .metric-topline {
  margin-bottom: 7px;
  color: #686868;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.15em;
}
#results .metric-copy,
#results .summary-copy,
#results .cohort-ratio-card span,
#results .numbers-summary p {
  color: #686868;
}

#results .metric-box.premier-feature {
  order: -1;
  grid-column: 1 / -1;
  min-height: 188px;
  display: grid;
  grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr);
  gap: clamp(18px, 2.5vw, 30px);
  padding: 24px 28px;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}
#results .premier-year-kicker {
  position: absolute;
  top: 20px;
  left: 28px;
  z-index: 3;
  color: #fff;
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.025em;
}
#results .premier-side {
  align-content: end;
  gap: 10px;
  padding-top: 34px;
  padding-right: clamp(18px, 2.4vw, 28px);
}
#results .premier-ratio {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}
#results .premier-ratio-number {
  color: #fff;
  font-size: clamp(84px, 8vw, 116px);
  font-weight: 700;
  line-height: .78;
  letter-spacing: -.075em;
}
#results .premier-ratio-denominator {
  display: grid;
  align-content: center;
  padding-bottom: 0;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  line-height: 1.35;
}
#results .premier-ratio-denominator strong {
  display: block;
  margin-bottom: 6px;
  white-space: nowrap;
  color: #fff;
  font-size: clamp(22px, 2.3vw, 31px);
  line-height: .95;
  letter-spacing: -.04em;
}
#results .premier-ratio-denominator span {
  display: block;
  max-width: 24ch;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  line-height: 1.4;
}
#results .premier-ratio-denominator .one-teacher-line {
  display: block;
  margin-top: 8px;
  max-width: none;
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -.01em;
  text-transform: none;
  text-shadow: none;
  white-space: nowrap;
}
#results .premier-rarity-line { height: 5px; margin-top: 4px; }
#results .premier-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 10px;
  min-width: 0;
}
#results .premier-copy > p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.5;
}
#results .premier-copy > p strong { color: #fff; }
#results .premier-stat-rotation {
  display: grid;
  gap: 5px;
  min-height: 58px;
}
#results .premier-stat-prefix {
  color: rgba(255,255,255,.56);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
}
#results .premier-stat-stage {
  position: relative;
  display: grid;
  align-items: start;
}
#results .premier-stat-line {
  grid-area: 1 / 1;
  color: #fff;
  font-size: clamp(25px, 2.9vw, 42px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -.05em;
  text-wrap: balance;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: translateX(-10px);
  will-change: opacity, clip-path, transform;
}
#results .premier-stat-line:first-child {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: none;
}
#results.is-banner-active .premier-stat-line:first-child {
  animation: resultStatFirst 12s linear infinite;
}
#results.is-banner-active .premier-stat-line:last-child {
  animation: resultStatSecond 12s linear infinite;
}
@keyframes resultStatFirst {
  0%, 42.5% {
    opacity:1;
    clip-path:inset(0 0 0 0);
    transform:translateX(0);
  }
  45% {
    opacity:0;
    clip-path:inset(0 0 0 100%);
    transform:translateX(12px);
  }
  45%, 97.5% {
    opacity:0;
    clip-path:inset(0 100% 0 0);
    transform:translateX(-12px);
  }
  100% {
    opacity:1;
    clip-path:inset(0 0 0 0);
    transform:translateX(0);
  }
}
@keyframes resultStatSecond {
  0%, 47.5% {
    opacity:0;
    clip-path:inset(0 100% 0 0);
    transform:translateX(-12px);
  }
  50%, 92.5% {
    opacity:1;
    clip-path:inset(0 0 0 0);
    transform:translateX(0);
  }
  95% {
    opacity:0;
    clip-path:inset(0 0 0 100%);
    transform:translateX(12px);
  }
  95%, 100% {
    opacity:0;
    clip-path:inset(0 100% 0 0);
    transform:translateX(-12px);
  }
}
#results .premier-note {
  color: rgba(255,255,255,.5);
  font-size: 10px;
}

#results .benchmark-card {
  grid-column: span 2;
  min-height: 324px;
  display: flex;
  flex-direction: column;
  padding: 19px 18px 17px;
}
#results .benchmark-card .metric-number {
  margin: 0;
  font-size: clamp(52px, 5.1vw, 74px);
}
#results .benchmark-stat {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: end;
  gap: 14px;
  margin-bottom: 6px;
}
#results .benchmark-copy-stack {
  padding-bottom: 10px;
}
#results .benchmark-copy-stack strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: clamp(20px, 2.05vw, 28px);
  line-height: .98;
  letter-spacing: -.035em;
}
#results .benchmark-copy-stack span {
  display: block;
  color: #686868;
  font-size: 11px;
  line-height: 1.35;
}
#results .benchmark-card .metric-visual {
  position: relative;
  flex: 1;
  min-height: 214px;
  margin-top: 0;
}
#results .benchmark-graphic {
  position: relative;
  min-height: 214px;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}
#results .bell-viewport,
#results .avatar-stage {
  position: absolute;
  inset: 0;
}
#results .bell-viewport {
  display: grid;
  place-items: center;
  opacity: 1;
  transform: translate(0,0) scale(1);
  transform-origin: var(--zoom-x, 86%) var(--zoom-y, 62%);
  transition: transform 1.05s cubic-bezier(.22,1,.36,1), opacity .5s ease;
  will-change: transform, opacity;
}
#results .benchmark-graphic.is-zooming .bell-viewport {
  transform: translate(calc(50% - var(--zoom-x, 86%)), calc(50% - var(--zoom-y, 62%))) scale(3.1);
}
#results .benchmark-graphic.is-avatars .bell-viewport { opacity: 0; }
#results .bell-curve { width:100%; min-height:170px; }
#results .bell-curve svg { display:block; width:100%; overflow:visible; }
#results .bell-axis { stroke:rgba(10,10,10,.14); stroke-width:1; }
#results .bell-fill {
  fill: rgba(200,32,47,.10);
}
#results .bell-tail-fill { fill:rgba(200,32,47,.24); opacity:1; }
#results .bell-guide { fill:none; stroke:rgba(10,10,10,.16); stroke-width:2; stroke-linecap:round; }
#results .bell-path {
  fill:none; stroke:rgba(10,10,10,.9); stroke-width:2.6; stroke-linecap:round;
  path-length:1; stroke-dasharray:1; stroke-dashoffset:1;
}
#results .bell-marker-line { stroke:#c8202f; stroke-width:2.6; stroke-linecap:round; opacity:0; }
#results .bell-marker-dot { fill:#c8202f; stroke:#fff; stroke-width:1.4; opacity:0; }
#results .bell-marker-label {
  fill:#c8202f;
  font-size:10px;
  font-weight:700;
  letter-spacing:.08em;
  text-anchor:middle;
  opacity:0;
  transition:opacity .28s ease;
}
#results .bell-curve.is-marker-ready .bell-tail-fill,
#results .bell-curve.is-marker-ready .bell-marker-line,
#results .bell-curve.is-marker-ready .bell-marker-dot,
#results .bell-curve.is-marker-ready .bell-marker-label { opacity:1; }
#results .benchmark-graphic.is-zooming .bell-curve.is-marker-ready .bell-marker-label {
  opacity:0;
}
#results .avatar-stage {
  z-index:2;
  display:grid;
  grid-template-rows:auto 1fr;
  align-content:center;
  gap:5px;
  opacity:0;
  transform:scale(.9) translateY(8px);
  transition:opacity .45s ease, transform .7s cubic-bezier(.22,1,.36,1);
  pointer-events:none;
}
#results .benchmark-graphic.is-avatars .avatar-stage { opacity:1; transform:scale(1) translateY(0); }
#results .avatar-highlight { display:grid; justify-items:center; gap:4px; }
#results .avatar-highlight-group { display:flex; justify-content:center; gap:10px; }
#results .avatar-highlight-label {
  color:#e12b3b;
  font-size:12px;
  font-weight:750;
  line-height:1;
  text-align:center;
  text-shadow:none;
}
#results .student-avatar {
  position:relative;
  width:22px;
  aspect-ratio:1;
  overflow:hidden;
  border-radius:50%;
  background:#c8c8c8;
  box-shadow:inset 0 0 0 1px rgba(10,10,10,.07);
}
#results .student-avatar::before {
  content:""; position:absolute; top:18%; left:50%; width:31%; aspect-ratio:1; border-radius:50%;
  background:rgba(255,255,255,.94); transform:translateX(-50%);
}
#results .student-avatar::after {
  content:""; position:absolute; left:19%; right:19%; bottom:12%; height:35%; border-radius:55% 55% 38% 38%;
  background:rgba(255,255,255,.94);
}
#results .student-avatar.is-red { background:#c8202f; }
#results .student-avatar.is-hero { width:clamp(48px,4.8vw,64px); box-shadow:0 0 0 1px rgba(200,32,47,.2),0 7px 18px rgba(200,32,47,.17); }
#results .student-belt {
  align-self:end;
  display:grid;
  grid-template-columns:repeat(20,minmax(0,1fr));
  gap:4px;
  width:100%;
  min-height:112px;
  padding:7px 7px 6px;
  border:1px solid rgba(10,10,10,.07);
  border-radius:14px;
  background:rgba(10,10,10,.025);
}
#results .student-belt .student-avatar { width:100%; max-width:22px; justify-self:center; }

#results .results-lower-row {
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:minmax(0,2.25fr) minmax(300px,1.2fr);
  gap:12px;
}
#results .cohort-snapshot,
#results .numbers-summary {
  min-height:132px;
  background: rgba(238,236,232,.94);
  border-color: rgba(10,10,10,.11);
}
#results .cohort-snapshot { padding:17px 16px 16px; }
#results .cohort-snapshot .metric-topline,
#results .numbers-summary .metric-topline {
  color: #5e5b56;
}
#results .cohort-ratio-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:8px;
}
#results .cohort-ratio-card {
  min-width:0;
  min-height:88px;
  padding:14px 10px 13px;
  border:1px solid rgba(10,10,10,.08);
  border-radius:15px;
  background:rgba(255,255,255,.72);
  box-shadow:0 8px 18px rgba(10,10,10,.03);
  display:grid;
  align-content:center;
  text-align:center;
  gap:6px;
}
#results .cohort-ratio-card strong {
  color:var(--ink);
  font-size:clamp(21px,2.1vw,30px);
  line-height:.95;
  letter-spacing:-.05em;
}
#results .cohort-ratio-card span { font-size:9px; line-height:1.38; }
#results .numbers-summary {
  padding:21px 20px 20px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
#results .numbers-summary .metric-topline {
  margin-bottom: 12px;
}
#results .numbers-summary p {
  margin:0;
  font-size:16px;
  line-height:1.42;
}
#results .numbers-summary strong { color:var(--ink); font-weight:650; }
#results .results-source-note { margin-top:8px; font-size:9px; }

@media (max-width: 980px) {
  #results.section { min-height:auto; }
  #results .metric-box.premier-feature { grid-template-columns:1fr; min-height:0; }
  #results .premier-side { padding-top:42px; padding-right:0; padding-bottom:16px; border-right:0; border-bottom:1px solid rgba(255,255,255,.18); }
  #results .benchmark-card { grid-column:span 2; min-height:380px; }
  #results .benchmark-card .metric-visual,
  #results .benchmark-graphic { min-height:250px; }
  #results .student-belt { min-height:150px; }
  #results .results-lower-row { grid-template-columns:1fr; }
  #results .cohort-ratio-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 640px) {
  #results .result-metrics { grid-template-columns:1fr; }
  #results .benchmark-card { grid-column:auto; min-height:510px; padding:20px 16px; }
  #results .benchmark-stat { gap: 12px; }
  #results .benchmark-copy-stack strong { font-size: 24px; }
  #results .benchmark-card .metric-visual,
  #results .benchmark-graphic { min-height:370px; }
  #results .student-belt { grid-template-columns:repeat(10,minmax(0,1fr)); min-height:260px; gap:5px; }
  #results .student-belt .student-avatar { max-width:20px; }
  #results .student-avatar.is-hero { width:56px; }
  #results .metric-box.premier-feature { padding:22px 18px; }
  #results .premier-year-kicker { top:17px; left:18px; font-size:20px; }
  #results .premier-ratio-number { font-size:86px; }
  #results .premier-ratio-denominator strong { white-space: normal; }
  #results .premier-copy { padding-top:4px; }
  #results .cohort-ratio-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 420px) {
  #results .student-belt .student-avatar { max-width:17px; }
  #results .student-avatar.is-hero { width:52px; }
  #results .avatar-highlight-label { font-size:11px; }
}
@media (prefers-reduced-motion: reduce) {
  #results .bell-path { stroke-dashoffset:0; }
  #results .premier-stat-line:first-child { opacity:1; clip-path:none; transform:none; animation:none; }
  #results .premier-stat-line:last-child { display:none; }
}

#results .benchmark-technical {
  display: block;
  margin-top: 5px;
  color: #858585;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .01em;
}
#results .cohort-method-note {
  margin: -1px 0 9px;
  color: #858585;
  font-size: 9px;
  line-height: 1.35;
}

#classes .section-sub {
  max-width: 64ch;
}
#classes .class-availability-shell {
  position: relative;
  min-height: 560px;
  isolation: isolate;
  overflow: hidden;
  border-radius: 24px;
}
#classes .class-grid {
  opacity: .24;
  filter: grayscale(1) blur(9px);
  transform: scale(1.025);
  transform-origin: center;
  pointer-events: none;
  user-select: none;
  transition: opacity .35s ease, filter .35s ease;
}
#classes .class-stay-tuned {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.18);
  -webkit-backdrop-filter: blur(11px);
  backdrop-filter: blur(11px);
  pointer-events: none;
}
#classes .class-stay-tuned span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(360px, 78vw);
  padding: 24px 36px;
  border: 1px solid rgba(10,10,10,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.93);
  box-shadow: 0 18px 60px rgba(10,10,10,.12);
  color: var(--ink);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -.055em;
}
@media (max-width: 900px) {
  #classes .class-availability-shell { min-height: 920px; }
}
@media (max-width: 620px) {
  #classes .class-availability-shell { min-height: 1010px; }
  #classes .class-grid { opacity: .20; filter: grayscale(1) blur(7px); }
  #classes .class-stay-tuned { backdrop-filter: blur(9px); -webkit-backdrop-filter: blur(9px); }
  #classes .class-stay-tuned span { padding: 20px 28px; }
}

.profile-portrait-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
#results .cohort-ratio-card strong small {
  display: block;
  margin-bottom: 5px;
  color: #747474;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.student-testimonials .section-head {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.student-testimonials .section-sub {
  max-width: 69ch;
  margin-left: auto;
  margin-right: auto;
  color: #555;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.7;
  text-wrap: balance;
}
.testimonial-carousel {
  position: relative;
  width: min(100%, 1420px);
  margin: 0 auto;
  overflow: visible;
}
.testimonial-stage {
  position: relative;
  width: 100%;
  height: clamp(510px, 51vw, 650px);
  perspective: 1500px;
  perspective-origin: 50% 46%;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  outline: none;
}
.testimonial-stage:active { cursor: grabbing; }
.testimonial-stage::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: 9%;
  width: min(760px, 70vw);
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(10,10,10,.13), rgba(10,10,10,0) 70%);
  filter: blur(18px);
  transform: translateX(-50%);
  opacity: .55;
}
.testimonial-deck {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}
.testimonial-card {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: min(720px, 62vw);
  min-height: 410px;
  max-height: 570px;
  overflow: auto;
  padding: clamp(25px, 3.1vw, 39px);
  border: 1px solid rgba(10,10,10,.11);
  border-radius: 25px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(247,247,247,.94));
  box-shadow: 0 18px 50px rgba(10,10,10,.05);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%,-46%, -260px) scale(.54);
  filter: blur(4px) saturate(.35);
  transition:
    transform .92s cubic-bezier(.16,1,.3,1),
    opacity .68s ease,
    filter .82s ease,
    box-shadow .82s ease,
    border-color .82s ease;
  will-change: transform, opacity, filter;
  scrollbar-width: thin;
}
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 0%, rgba(255,255,255,1), transparent 45%),
    linear-gradient(115deg, transparent 20%, rgba(255,255,255,.55) 48%, transparent 68%);
  opacity: 0;
  transform: translateX(-45%);
  transition: opacity .6s ease, transform 1.15s cubic-bezier(.16,1,.3,1);
}
.testimonial-card.is-active {
  z-index: 6;
  opacity: 1;
  pointer-events: auto;
  filter: none;
  border-color: rgba(10,10,10,.2);
  box-shadow: 0 34px 95px rgba(10,10,10,.15);
  transform: translate3d(-50%,-50%, 135px) rotateY(0deg) scale(1);
}
.testimonial-card.is-active::before {
  opacity: .72;
  transform: translateX(0);
}
.testimonial-card.is-prev,
.testimonial-card.is-next {
  z-index: 4;
  opacity: .68;
  filter: blur(.45px) saturate(.72);
}
.testimonial-card.is-prev {
  transform: translate3d(-111%,-49%, -65px) rotateY(28deg) scale(.79);
}
.testimonial-card.is-next {
  transform: translate3d(11%,-49%, -65px) rotateY(-28deg) scale(.79);
}
.testimonial-card.is-far-prev,
.testimonial-card.is-far-next {
  z-index: 2;
  opacity: .18;
  filter: blur(2.2px) saturate(.45);
}
.testimonial-card.is-far-prev {
  transform: translate3d(-151%,-47%, -190px) rotateY(43deg) scale(.62);
}
.testimonial-card.is-far-next {
  transform: translate3d(51%,-47%, -190px) rotateY(-43deg) scale(.62);
}
.testimonial-card.is-shuffle-flash {
  transition-duration: .3s, .24s, .3s, .3s, .3s;
}
.testimonial-card-head,
.testimonial-card blockquote {
  position: relative;
  z-index: 1;
}
.testimonial-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--grey-line);
}
.testimonial-card-head div { display: grid; gap: 5px; }
.testimonial-card-head strong {
  color: var(--ink);
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1;
  letter-spacing: -.04em;
}
.testimonial-card-head div span {
  color: var(--grey-mid);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.testimonial-score {
  flex: 0 0 auto;
  min-width: 112px;
  display: grid;
  justify-items: end;
  align-content: start;
  gap: 2px;
  padding: 2px 0 0 18px;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
  border-left: 1px solid rgba(10,10,10,.12);
}
.testimonial-score span {
  color: var(--grey-mid);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.testimonial-score strong {
  color: var(--ink);
  font-size: clamp(58px, 7vw, 92px);
  font-weight: 700;
  line-height: .78;
  letter-spacing: -.075em;
}
.testimonial-card.is-active .testimonial-score {
  animation: testimonialScoreLand .82s cubic-bezier(.16,1,.3,1) .04s both;
}
@keyframes testimonialScoreLand {
  from { opacity: .1; transform: translate3d(16px,-8px,0) scale(.86); }
  to { opacity: 1; transform: translate3d(0,0,0) scale(1); }
}
.testimonial-card blockquote {
  margin: 30px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.48;
  letter-spacing: -.018em;
}
.testimonial-card.is-active .testimonial-card-head {
  animation: testimonialContentRise .7s cubic-bezier(.16,1,.3,1) both;
}
.testimonial-card.is-active blockquote {
  animation: testimonialContentRise .78s cubic-bezier(.16,1,.3,1) .08s both;
}
@keyframes testimonialContentRise {
  from { opacity: .15; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.testimonial-controls {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 48px minmax(0,auto) 48px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: -10px;
}
.testimonial-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid var(--grey-line);
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: var(--ink);
  font-size: 19px;
  cursor: pointer;
  transition: transform .24s ease, background .24s ease, box-shadow .24s ease;
}
.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  background: #fff;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 10px 28px rgba(10,10,10,.09);
}
.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.testimonial-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(10,10,10,.24);
  cursor: pointer;
  transition: width .35s ease, transform .35s ease, background .35s ease;
}
.testimonial-dot.is-active {
  width: 28px;
  background: var(--ink);
}
.testimonial-progress {
  position: relative;
  width: min(420px, 58vw);
  height: 2px;
  margin: 17px auto 0;
  overflow: hidden;
  background: rgba(10,10,10,.09);
}
.testimonial-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
}
.testimonial-carousel.is-playing .testimonial-progress span {
  animation: testimonialProgress 6.2s linear both;
}
@keyframes testimonialProgress { to { transform: scaleX(1); } }
@media (max-width: 900px) {
  .testimonial-stage { height: 590px; }
  .testimonial-card { width: min(690px, 76vw); min-height: 450px; }
  .testimonial-card.is-prev { transform: translate3d(-120%,-49%,-80px) rotateY(25deg) scale(.74); }
  .testimonial-card.is-next { transform: translate3d(20%,-49%,-80px) rotateY(-25deg) scale(.74); }
}
@media (max-width: 640px) {
  .testimonial-stage { height: 620px; overflow: hidden; }
  .testimonial-card { width: 86vw; min-height: 500px; max-height: 565px; padding: 24px 22px; }
  .testimonial-card.is-prev { transform: translate3d(-126%,-49%,-90px) rotateY(20deg) scale(.7); opacity:.38; }
  .testimonial-card.is-next { transform: translate3d(26%,-49%,-90px) rotateY(-20deg) scale(.7); opacity:.38; }
  .testimonial-card.is-far-prev,
  .testimonial-card.is-far-next { opacity:0; }
  .testimonial-card blockquote { margin-top: 24px; font-size: 19px; }
  .testimonial-controls { gap: 12px; }
  .testimonial-arrow { width: 43px; height: 43px; }
}
@media (prefers-reduced-motion: reduce) {
  .testimonial-card { transition: none; }
  .testimonial-card.is-active .testimonial-card-head,
  .testimonial-card.is-active blockquote { animation: none; }
  .testimonial-progress { display:none; }
}

.profile-panel {
  position: relative;
}
.institution-corner-banners {
  position: absolute;
  top: 0;
  right: -1px;
  z-index: 4;
  display: grid;
  justify-items: end;
  gap: 8px;
  width: 245px;
  pointer-events: none;
}
.institution-banner {
  --institution-colour: #2d67a0;
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  padding: 7px 14px 7px 12px;
  border: 1px solid color-mix(in srgb, var(--institution-colour) 44%, white);
  border-right: 0;
  border-radius: 12px 0 0 12px;
  background: rgba(255,255,255,.96);
  box-shadow: -10px 10px 28px rgba(10,10,10,.07);
  color: var(--institution-colour);
  overflow: hidden;
}
.institution-banner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--institution-colour);
}
.institution-banner::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  border-style: solid;
  border-width: 7px 0 0 8px;
  border-color: transparent transparent transparent color-mix(in srgb, var(--institution-colour) 64%, black);
}
.institution-banner img {
  display: block;
  width: 40px;
  height: 38px;
  object-fit: contain;
  object-position: center;
  filter: none;
  opacity: 1;
}
.institution-banner span {
  font-size: 10px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.institution-banner-unimelb {
  --institution-colour: #2d67a0;
}
.institution-banner-unimelb img {
  width: 42px;
  height: 40px;
}
.institution-banner-mhs {
  --institution-colour: #79242f;
  width: 214px;
}
.institution-banner-mhs img {
  width: 36px;
  height: 36px;
}
.profile-name,
.profile-role {
  max-width: calc(100% - 265px);
}
@media (max-width: 760px) {
  .institution-corner-banners {
    position: static;
    width: 100%;
    margin-bottom: 20px;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .institution-banner,
  .institution-banner-mhs {
    width: 100%;
    border-right: 1px solid color-mix(in srgb, var(--institution-colour) 44%, white);
    border-radius: 12px;
  }
  .institution-banner::after { display: none; }
  .profile-name,
  .profile-role { max-width: none; }
}
@media (max-width: 520px) {
  .institution-corner-banners { grid-template-columns: 1fr; }
}

#classes .container {
  position: relative;
  isolation: isolate;
}
#classes .section-head {
  opacity: 1;
  filter: none;
}

#classes .class-availability-shell {
  opacity: .24;
  filter: grayscale(1) blur(10px);
  pointer-events: none;
  user-select: none;
}
#classes .class-availability-shell {
  overflow: visible;
}
#classes .class-grid {
  opacity: 1;
  filter: none;
  transform: none;
}
#classes .class-section-overlay {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  min-height: 100%;
  pointer-events: none;
}
#classes .class-section-overlay::before {
  content: "";
  position: absolute;
  inset: 5% 0;
  background: radial-gradient(circle at center, rgba(255,255,255,.58), rgba(255,255,255,.08) 42%, rgba(255,255,255,0) 72%);
}
#classes .class-section-overlay span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(380px, 80vw);
  padding: 24px 38px;
  border: 1px solid rgba(10,10,10,.15);
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 22px 70px rgba(10,10,10,.14);
  color: var(--ink);
  font-size: clamp(34px, 5vw, 66px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -.055em;
}
@media (max-width: 620px) {
  .credential-with-logo { gap: 11px; }
  .credential-logo { width: 44px; height: 44px; }
  #classes .section-head,
  #classes .class-availability-shell { filter: grayscale(1) blur(8px); }
  #classes .class-section-overlay span { padding: 20px 28px; }
}

.profile-feature {
  grid-template-columns: minmax(330px, .78fr) minmax(0, 1.22fr);
  align-items: start;
}
.profile-portrait {
  width: 100%;
  min-height: 0;
  aspect-ratio: 14 / 17;
  overflow: hidden;
  background: #efefef;
}
.profile-portrait-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}
.profile-credential-value.has-institution-banner {
  display: flex;
  align-items: center;
  gap: 14px;
}
.credential-institution-banner {
  flex: 0 0 78px;
  height: 52px;
  display: grid;
  place-items: center;
  padding: 7px 10px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(10,10,10,.08);
}
.credential-institution-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}
.credential-institution-banner-university { background: #094183; }
.credential-institution-banner-school { background: #79242f; }
.institution-corner-banners { display: none !important; }

.testimonial-carousel.is-intro .testimonial-card {
  transition: none !important;
  opacity: .12 !important;
  filter: blur(2px) saturate(.55) !important;
  transform: translate3d(-50%,-50%,-180px) rotateZ(var(--intro-rotate,0deg)) scale(.69) !important;
}
.testimonial-carousel.is-intro.is-intro-active .testimonial-card {
  transition:
    transform 1.12s cubic-bezier(.16,1,.3,1) !important,
    opacity .82s ease !important,
    filter .96s ease !important,
    box-shadow .96s ease !important;
}
.testimonial-carousel.is-intro.is-intro-active .testimonial-card.is-active {
  opacity: 1 !important;
  filter: none !important;
  transform: translate3d(-50%,-50%,135px) rotateY(0deg) scale(1) !important;
}
.testimonial-carousel.is-intro.is-intro-active .testimonial-card.is-prev {
  opacity: .68 !important;
  filter: blur(.45px) saturate(.72) !important;
  transform: translate3d(-111%,-49%,-65px) rotateY(28deg) scale(.79) !important;
}
.testimonial-carousel.is-intro.is-intro-active .testimonial-card.is-next {
  opacity: .68 !important;
  filter: blur(.45px) saturate(.72) !important;
  transform: translate3d(11%,-49%,-65px) rotateY(-28deg) scale(.79) !important;
}
.testimonial-carousel.is-intro.is-intro-active .testimonial-card.is-far-prev {
  opacity: .18 !important;
  transform: translate3d(-151%,-47%,-190px) rotateY(43deg) scale(.62) !important;
}
.testimonial-carousel.is-intro.is-intro-active .testimonial-card.is-far-next {
  opacity: .18 !important;
  transform: translate3d(51%,-47%,-190px) rotateY(-43deg) scale(.62) !important;
}
@media (max-width: 880px) {
  .profile-feature { grid-template-columns: 1fr; }
  .profile-portrait { width: min(100%, 520px); margin: 0 auto; }
}
@media (max-width: 560px) {
  .profile-credential-value.has-institution-banner { align-items: flex-start; }
  .credential-institution-banner { flex-basis: 68px; height: 48px; }
}

#results .cohort-snapshot,
#results .numbers-summary {
  background: #f6f5f3;
  border-color: rgba(82, 74, 66, 0.09);
}
#results .cohort-ratio-card {
  background: #fdfcfb;
  border-color: rgba(82, 74, 66, 0.07);
  box-shadow: 0 8px 18px rgba(82, 74, 66, 0.022);
}
#results .cohort-snapshot .metric-topline,
#results .numbers-summary .metric-topline {
  color: #716d68;
}

@media (max-width: 640px) {
  .testimonial-card-head { align-items: center; gap: 14px; }
  .testimonial-score { min-width: 84px; padding-left: 12px; }
  .testimonial-score strong { font-size: 58px; }
}

.bell-marker-label {
  transition: opacity .22s ease;
}

.bell-marker-label.is-tickering {
  letter-spacing: 0.06em;
}

@media (max-width: 620px) {
  .profile-credential-watermark--school img {
    top: 66%;
  }
}
#classes .class-section-overlay::before {
  display: none;
}

#classes .class-section-overlay span {
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.multi-select-trigger {
  position: relative;
  padding-right: 152px;

  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(10, 10, 10, 0.14);

  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 10px 28px rgba(10, 10, 10, 0.06);
}

.multi-select-menu {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(10, 10, 10, 0.15);

  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 24px 60px rgba(10, 10, 10, 0.14);
}

.multi-select-option {
  background: rgba(255, 255, 255, 0.16);
}

.multi-select-option:hover {
  background: rgba(255, 255, 255, 0.52);
}

.multi-select-option + .multi-select-option {
  border-top-color: rgba(10, 10, 10, 0.09);
}

.multi-select {
  position: relative;
}

.multi-select-trigger {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;

  color: var(--ink);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.74),
      rgba(255, 255, 255, 0.48)
    );

  border: 1px solid rgba(10, 10, 10, 0.14);
  border-radius: var(--radius-input);

  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 30px rgba(10, 10, 10, 0.06);

  cursor: pointer;
}

.class-interest-status {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;

  padding: 6px 10px;

  border: 1px solid rgba(10, 10, 10, 0.11);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.48);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  color: rgba(10, 10, 10, 0.62);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;

  pointer-events: none;
}

.class-interest-status-dot {
  width: 5px;
  height: 5px;
  flex-shrink: 0;

  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
}

.multi-select-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 9px);
  left: 0;
  right: 0;

  overflow: hidden;

  border: 1px solid rgba(10, 10, 10, 0.15);
  border-radius: 16px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.78),
      rgba(246, 246, 246, 0.58)
    );

  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 24px 60px rgba(10, 10, 10, 0.14);
}

.multi-select-option {
  background: rgba(255, 255, 255, 0.12);
}

.multi-select-option:hover {
  background: rgba(255, 255, 255, 0.56);
}

.multi-select-option + .multi-select-option {
  border-top: 1px solid rgba(10, 10, 10, 0.09);
}

.multi-select.is-open .multi-select-trigger {
  border-color: rgba(10, 10, 10, 0.3);

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.84),
      rgba(255, 255, 255, 0.58)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 14px 36px rgba(10, 10, 10, 0.1);
}

@media (max-width: 560px) {
  .multi-select-trigger {
    gap: 9px;
    padding: 13px 14px;
  }

  .class-interest-status {
    padding: 5px 7px;
    font-size: 7.5px;
    letter-spacing: 0.09em;
  }

  .multi-select-menu {
    position: static;
    margin-top: 8px;
  }
}

@media (max-width: 640px) {

}

.profile-quote {
  position: relative;
  isolation: isolate;
  margin: 26px 0 0;
  padding: clamp(28px, 3.4vw, 40px) clamp(28px, 4vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(255, 255, 255, 0.12),
      transparent 38%
    ),
    linear-gradient(
      145deg,
      #171717 0%,
      #080808 62%,
      #121212 100%
    );
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04),
    0 20px 48px rgba(0, 0, 0, 0.16);
}

.profile-quote::before {
  content: "\201C";
  position: absolute;
  top: -34px;
  right: 18px;
  z-index: 0;
  color: rgba(255, 255, 255, 0.26);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(126px, 13vw, 176px);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.profile-quote::after {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;
  pointer-events: none;
}

.profile-quote blockquote {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 34ch;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.35vw, 31px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.032em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
}

.profile-quote blockquote::before,
.profile-quote blockquote::after {
  content: none;
  display: none;
}

.profile-quote .quote-opening,
.profile-quote .quote-punch,
.profile-quote .quote-final {
  position: relative;
  z-index: 2;
  display: block;
}

.profile-quote .quote-opening {
  color: rgba(255, 255, 255, 0.82);
}

.profile-quote .quote-punch {
  margin: 0;
  color: #ffffff;
  font-size: 1.08em;
  font-weight: 700;
  letter-spacing: -0.038em;
}

.profile-quote .quote-final {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--font-body);
  font-size: 0.46em;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .profile-quote {
    padding: 27px 24px 29px;
    border-radius: 21px;
  }

  .profile-quote::after {
    inset: 7px;
    border-radius: 15px;
  }

  .profile-quote blockquote {
    max-width: none;
    font-size: clamp(21px, 6vw, 27px);
  }
}

.tutor-more-note {
  width: 100%;
  margin-top: clamp(30px, 4vw, 52px);
  display: grid;
  grid-template-columns: minmax(34px, 1fr) auto minmax(34px, 1fr);
  align-items: center;
  gap: clamp(14px, 2.2vw, 24px);
}

.tutor-more-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10, 10, 10, 0.18));
}

.tutor-more-rule:last-child {
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.18), transparent);
}

.tutor-more-text {
  color: rgba(10, 10, 10, 0.55);
  font-size: 11px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

#results .bell-curve {
  width: 100%;
  min-height: 170px;
}

#results .bell-curve svg {
  display: block;
  width: 100%;
  overflow: visible;
}

#results .bell-bars {
  opacity: 1;
}

#results .bell-bar {
  fill: rgba(10, 10, 10, 0.075);
  opacity: 0.72;
  transition:
    fill 220ms cubic-bezier(.22, 1, .36, 1),
    opacity 220ms cubic-bezier(.22, 1, .36, 1),
    transform 220ms cubic-bezier(.22, 1, .36, 1);
  transform-box: fill-box;
  transform-origin: center bottom;
}

#results .bell-bar.is-passed {
  fill: rgba(10, 10, 10, 0.18);
  opacity: 0.96;
}

#results .bell-bar.is-current {
  fill: #c8202f;
  opacity: 1;
  transform: scaleY(1.045);
}

#results .bell-motion-path {
  fill: none;
  stroke: transparent;
  stroke-width: 1;
  pointer-events: none;
}

#results .bell-marker-dot {
  fill: #c8202f;
  stroke: #ffffff;
  stroke-width: 1.8;
  opacity: 0;
  filter: drop-shadow(0 3px 5px rgba(200, 32, 47, 0.24));
}

#results .bell-marker-label {
  fill: #c8202f;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-anchor: middle;
  opacity: 0;
  transition: opacity 0.28s ease;
}

#results .bell-curve.is-marker-ready .bell-marker-dot,
#results .bell-curve.is-marker-ready .bell-marker-label {
  opacity: 1;
}

@media (max-width: 640px) {
  .tutor-more-note {
    gap: 12px;
  }

  .tutor-more-text {
    font-size: 9px;
    letter-spacing: 0.16em;
  }
}


.tutor-coming-soon-page {
  min-height: 100svh;
  text-align: center;
}

.tutor-coming-soon-page > .container {
  display: grid;
  min-height: calc(100svh - clamp(184px, 18vw, 272px));
  place-items: center;
}

.tutor-coming-soon-content {
  position: relative;
  isolation: isolate;
  display: grid;
  justify-items: center;
  width: min(760px, 100%);
  padding: clamp(48px, 8vw, 92px) clamp(24px, 6vw, 64px);
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.11);
  border-radius: clamp(28px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 28px 80px rgba(10, 10, 10, 0.07);
}

.tutor-coming-soon-content::before,
.tutor-coming-soon-content::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 26%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10, 10, 10, 0.16));
}

.tutor-coming-soon-content::before {
  left: 0;
}

.tutor-coming-soon-content::after {
  right: 0;
  transform: scaleX(-1);
}

.tutor-coming-soon-content .section-eyebrow {
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
}

.tutor-coming-soon-title {
  position: relative;
  z-index: 2;
  max-width: 12ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 650;
  line-height: 0.94;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.tutor-coming-soon-sub {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  color: rgba(10, 10, 10, 0.52);
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.tutor-coming-soon-mark {
  position: absolute;
  right: clamp(18px, 4vw, 42px);
  bottom: clamp(8px, 2vw, 18px);
  z-index: 0;
  color: rgba(10, 10, 10, 0.035);
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(112px, 18vw, 210px);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

#results .bell-bar {
  fill: rgba(10, 10, 10, 0.07);
  opacity: 0.78;
}

#results .bell-bar.is-passed {
  fill: rgba(10, 10, 10, 0.125);
  opacity: 0.94;
}

#results .bell-bar.is-current {
  fill: rgba(10, 10, 10, 0.17);
  opacity: 1;
  transform: scaleY(1.035);
}

@media (max-width: 640px) {
  .tutor-coming-soon-content {
    padding: 58px 22px 64px;
  }

  .tutor-coming-soon-content::before,
  .tutor-coming-soon-content::after {
    width: 17%;
  }
}


.tutor-expansion-note {
  margin-top: 14px;
  color: rgba(10, 10, 10, 0.58);
  font-weight: 500;
}

#results .bell-bar {
  fill: rgba(10, 10, 10, 0.065);
  opacity: 0.82;
  transition: fill 220ms ease, opacity 220ms ease, transform 220ms ease;
  transform-box: fill-box;
  transform-origin: center bottom;
}

#results .bell-bar.is-passed {
  fill: rgba(238, 164, 171, 0.78);
  opacity: 1;
}

#results .bell-bar.is-current {
  fill: rgba(218, 91, 104, 0.9);
  opacity: 1;
  transform: scaleY(1.045);
}

.tutor-register-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: min(310px, 82vw);
  margin-top: 30px;
  padding: 17px 22px 17px 28px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(10, 10, 10, 0.14);
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-smooth), opacity 260ms ease;
}

.tutor-register-cta:hover,
.tutor-register-cta:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(10, 10, 10, 0.19);
}

.tutor-register-cta:focus-visible {
  outline: 3px solid rgba(10, 10, 10, 0.14);
  outline-offset: 4px;
}

.tutor-register-arrow {
  display: inline-grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  transition: transform 260ms var(--ease-out);
}

.tutor-register-cta:hover .tutor-register-arrow,
.tutor-register-cta:focus-visible .tutor-register-arrow {
  transform: translate(2px, 2px);
}

.tutor-register-hint {
  position: relative;
  z-index: 2;
  margin-top: 11px;
  color: rgba(10, 10, 10, 0.42);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.website-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.turnstile-field {
  min-height: 68px;
  justify-content: center;
}

.turnstile-widget {
  min-height: 65px;
}

.turnstile-setup-note {
  color: var(--grey-mid);
  font-size: 11px;
  line-height: 1.5;
}

.enquiry-privacy {
  color: var(--grey-mid);
  font-size: 11px;
  line-height: 1.55;
}

.enquiry-submit[disabled] {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.form-status {
  padding: 12px 14px;
  border-radius: 12px;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: rgba(47, 124, 52, 0.09);
  color: #2f7c34;
}

.form-status.is-error {
  background: rgba(160, 74, 87, 0.1);
  color: #8e3543;
}

@media (max-width: 560px) {
  .tutor-register-cta {
    min-width: min(280px, 88vw);
  }
}


#classes .class-section-overlay {
  pointer-events: auto;
}

#classes .class-section-overlay::before {
  display: block;
  inset: 0;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
}

#classes .class-section-cta {
  position: relative;
  z-index: 2;
  isolation: isolate;
  display: grid;
  justify-items: center;
  width: min(720px, calc(100% - 36px));
  padding: clamp(46px, 7vw, 78px) clamp(24px, 6vw, 70px);
  text-align: center;
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  box-shadow: 0 28px 80px rgba(10, 10, 10, 0.08);
}

#classes .class-section-cta .section-eyebrow {
  margin-bottom: 20px;
}

#classes .class-section-cta-title {
  max-width: 12ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 650;
  line-height: 0.94;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

#classes .class-section-cta-sub {
  max-width: 48ch;
  margin-top: 22px;
  color: rgba(10, 10, 10, 0.54);
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 500;
  line-height: 1.6;
}

#classes .class-register-cta {
  margin-top: 30px;
}

#classes .class-section-overlay .tutor-register-hint {
  margin-top: 11px;
}

#tutors-coming-soon .tutor-coming-soon-title {
  max-width: 11ch;
}

#tutors-coming-soon .tutor-coming-soon-sub {
  font-size: clamp(17px, 2vw, 21px);
}

@media (max-width: 640px) {
  #classes .class-section-cta {
    width: min(100% - 24px, 720px);
    padding: 48px 20px 54px;
    border-radius: 24px;
  }

  #classes .class-section-cta-title {
    font-size: clamp(42px, 13vw, 62px);
  }
}

#tutors > .container {
  position: relative;
  padding-bottom: clamp(72px, 8vw, 104px);
}

.tutor-more-bubble {
  position: absolute;
  right: clamp(20px, 5vw, 48px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border: 1px solid rgba(10, 10, 10, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
  box-shadow: 0 14px 38px rgba(10, 10, 10, 0.08);
  color: rgba(10, 10, 10, 0.7);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.035em;
}

.tutor-more-bubble-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(218, 91, 104, 0.78);
  box-shadow: 0 0 0 5px rgba(238, 164, 171, 0.16);
}

#classes .class-section-overlay {
  position: relative;
  inset: auto;
  z-index: 2;
  display: block;
  min-height: 0;
  margin: 0 0 clamp(24px, 3vw, 34px);
  pointer-events: auto;
}

#classes .class-section-overlay::before {
  display: none;
  content: none;
}

#classes .class-section-cta {
  position: relative;
  z-index: 2;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  width: 100%;
  padding: clamp(26px, 3.6vw, 42px);
  text-align: left;
  border: 1px solid rgba(10, 10, 10, 0.13);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-shadow: 0 22px 60px rgba(10, 10, 10, 0.07);
}

#classes .class-section-cta-copy {
  min-width: 0;
}

#classes .class-section-cta .section-eyebrow {
  margin-bottom: 12px;
}

#classes .class-section-cta-title {
  max-width: none;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

#classes .class-section-cta-sub {
  max-width: 58ch;
  margin-top: 14px;
  color: rgba(10, 10, 10, 0.56);
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 500;
  line-height: 1.6;
}

#classes .class-section-cta-action {
  display: grid;
  justify-items: center;
  min-width: min(310px, 30vw);
}

#classes .class-register-cta {
  min-width: min(280px, 82vw);
  margin-top: 0;
  color: #ffffff;
  font-size: 14px;
}

#classes .class-register-cta .tutor-register-arrow {
  position: static;
  z-index: auto;
  display: inline-grid;
  width: 27px;
  height: 27px;
  min-width: 27px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0;
}

#classes .class-section-overlay .tutor-register-hint {
  margin-top: 10px;
  text-align: center;
}

#classes .class-availability-shell {
  min-height: 0;
  opacity: 1;
  filter: none;
  pointer-events: auto;
  user-select: auto;
}

#classes .class-grid {
  opacity: 1;
  filter: none;
  transform: none;
}

.required-mark {
  color: #c43f4e;
  font-weight: 800;
}

.field-optional {
  margin-left: 7px;
  color: var(--grey-mid);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-required-note {
  margin: 0 0 2px;
  color: rgba(10, 10, 10, 0.58);
  font-size: 12px;
  line-height: 1.5;
}

.form-required-note .required-mark {
  margin-right: 4px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.turnstile-setup-note {
  display: none !important;
}

.turnstile-field {
  min-height: 0;
}

.turnstile-widget:empty {
  display: none;
  min-height: 0;
}

@media (max-width: 820px) {
  #classes .class-section-cta {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  #classes .class-section-cta-action {
    justify-items: start;
    min-width: 0;
  }

  #classes .class-section-overlay .tutor-register-hint {
    text-align: left;
  }
}

@media (max-width: 640px) {
  #tutors > .container {
    padding-bottom: 0;
  }

  .tutor-more-bubble {
    position: static;
    width: fit-content;
    margin: 24px 0 0 auto;
  }

  #classes .class-section-cta {
    width: 100%;
    padding: 28px 22px;
    border-radius: 22px;
  }

  #classes .class-section-cta-title {
    font-size: clamp(38px, 11vw, 52px);
  }
}

.tutor-more-bubble {
  right: clamp(18px, 4vw, 42px);
  bottom: clamp(16px, 2.4vw, 30px);
  gap: 18px;
  min-height: 74px;
  padding: 12px 13px 12px 23px;
  border-color: rgba(10, 10, 10, 0.15);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(10, 10, 10, 0.1);
  color: rgba(10, 10, 10, 0.76);
  font-size: 13px;
  font-weight: 680;
  letter-spacing: 0.025em;
}

.tutor-more-bubble-dot {
  display: none;
}

.tutor-more-bubble-arrow {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.14);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.94);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 10px 24px rgba(10, 10, 10, 0.16);
}

.tutor-more-bubble-arrow span {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  transform: translateX(-2px);
  animation: tutorMoreArrow 1.9s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes tutorMoreArrow {
  0%, 18% {
    opacity: 0;
    transform: translateX(-18px);
  }

  42%, 68% {
    opacity: 1;
    transform: translateX(0);
  }

  88%, 100% {
    opacity: 0;
    transform: translateX(18px);
  }
}

#classes .class-section-overlay {
  margin-bottom: clamp(22px, 3vw, 32px);
}

#classes .class-section-cta {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 58px);
  padding: clamp(25px, 3vw, 36px) clamp(26px, 3.6vw, 42px);
}

#classes .class-section-cta-title {
  max-width: 14ch;
  font-size: clamp(36px, 4.4vw, 56px);
}

#classes .class-section-cta-copy,
#classes .class-section-cta-sub,
#classes .class-section-cta .section-eyebrow,
#classes .class-section-overlay .tutor-register-hint {
  display: none;
}

#classes .class-availability-shell {
  position: relative;
  min-height: clamp(430px, 48vw, 620px);
  overflow: hidden;
  border-radius: 24px;
  opacity: 1;
  filter: none;
  pointer-events: none;
  user-select: none;
}

#classes .class-availability-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  border: 1px solid rgba(10, 10, 10, 0.09);
  border-radius: inherit;
  background:
    linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.28)),
    repeating-conic-gradient(
      from 45deg,
      rgba(255, 255, 255, 0.32) 0deg 90deg,
      rgba(10, 10, 10, 0.035) 90deg 180deg
    );
  background-size: auto, 18px 18px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

#classes .class-grid {
  opacity: 0.27;
  filter: grayscale(1) blur(8px);
  transform: scale(1.015);
  transform-origin: center;
}

#classes .class-grid * {
  text-shadow: 0 0 8px rgba(10, 10, 10, 0.32);
}

#results .cohort-ratio-card:nth-child(-n + 2) strong {
  letter-spacing: -0.06em;
}

#results .cohort-ratio-card:nth-child(-n + 2) strong small {
  letter-spacing: 0.14em;
}

@media (max-width: 820px) {
  #classes .class-section-cta {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  #classes .class-section-cta-title {
    max-width: none;
  }

  #classes .class-section-cta-action {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .tutor-more-bubble {
    min-height: 66px;
    padding: 10px 10px 10px 18px;
  }

  .tutor-more-bubble-arrow {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .tutor-more-bubble-arrow span {
    font-size: 27px;
  }

  #classes .class-availability-shell {
    min-height: 720px;
  }

  #classes .class-grid {
    opacity: 0.23;
    filter: grayscale(1) blur(7px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tutor-more-bubble-arrow span {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.tutor-more-bubble {
  display: none !important;
}

#tutors > .container {
  position: relative;
  padding-bottom: clamp(118px, 12vw, 154px);
}

.tutor-more-cue {
  position: absolute;
  right: clamp(20px, 5vw, 48px);
  bottom: clamp(20px, 3vw, 38px);
  z-index: 8;
  width: min(430px, calc(100% - 40px));
  color: var(--ink);
}

.tutor-more-cue__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 184px;
  align-items: center;
  gap: 22px;
  min-height: 104px;
  padding: 17px 18px 17px 22px;
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.13);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 18%, rgba(230, 118, 129, 0.09), transparent 36%),
    rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 18px 48px rgba(10, 10, 10, 0.09);
}

.tutor-more-cue__copy {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.tutor-more-cue__kicker {
  color: rgba(10, 10, 10, 0.44);
  font-size: 9px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.tutor-more-cue__label {
  color: rgba(10, 10, 10, 0.82);
  font-size: clamp(15px, 1.55vw, 18px);
  font-weight: 660;
  line-height: 1.22;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.tutor-more-cue__visual {
  position: relative;
  width: 184px;
  height: 76px;
}

.tutor-more-cue__route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.tutor-more-cue__route-track,
.tutor-more-cue__route-flow,
.tutor-more-cue__route-head {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.tutor-more-cue__route-track {
  stroke: rgba(10, 10, 10, 0.1);
  stroke-width: 1.25;
}

.tutor-more-cue__route-flow {
  stroke: rgba(217, 92, 105, 0.78);
  stroke-width: 2.2;
}

.tutor-more-cue__route-head {
  stroke: rgba(217, 92, 105, 0.82);
  stroke-width: 2.1;
  transform-origin: 170px 20px;
  will-change: opacity, transform;
}

.tutor-more-cue__cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tutor-more-cue__card {
  position: absolute;
  top: 7px;
  display: grid;
  grid-template-columns: 14px 1fr;
  grid-template-rows: 8px 6px;
  align-items: center;
  column-gap: 6px;
  width: 50px;
  height: 42px;
  padding: 8px;
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 7px 18px rgba(10, 10, 10, 0.06);
  transform-origin: center;
  transition:
    border-color 260ms var(--ease-smooth),
    background 260ms var(--ease-smooth),
    box-shadow 260ms var(--ease-smooth);
  will-change: transform, opacity;
}

.tutor-more-cue__card:nth-child(1) {
  left: 15px;
  top: 31px;
}

.tutor-more-cue__card:nth-child(2) {
  left: 70px;
  top: 18px;
}

.tutor-more-cue__card:nth-child(3) {
  left: 125px;
  top: 1px;
}

.tutor-more-cue__card.is-active {
  border-color: rgba(217, 92, 105, 0.46);
  background: rgba(255, 247, 248, 0.96);
  box-shadow:
    0 0 0 4px rgba(230, 118, 129, 0.08),
    0 10px 24px rgba(133, 49, 60, 0.1);
}

.tutor-more-cue__avatar {
  grid-row: 1 / 3;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 37%, rgba(10, 10, 10, 0.28) 0 23%, transparent 25%),
    radial-gradient(circle at 50% 105%, rgba(10, 10, 10, 0.18) 0 52%, transparent 54%),
    rgba(10, 10, 10, 0.055);
}

.tutor-more-cue__line {
  display: block;
  width: 68%;
  height: 3px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.11);
}

.tutor-more-cue__line--wide {
  width: 100%;
}

@media (max-width: 760px) {
  #tutors > .container {
    padding-bottom: 0;
  }

  .tutor-more-cue {
    position: static;
    width: 100%;
    margin-top: 26px;
  }

  .tutor-more-cue__panel {
    grid-template-columns: minmax(0, 1fr) 168px;
  }

  .tutor-more-cue__visual {
    width: 168px;
    transform: scale(0.92);
    transform-origin: right center;
  }
}

@media (max-width: 520px) {
  .tutor-more-cue__panel {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding: 20px;
  }

  .tutor-more-cue__visual {
    justify-self: end;
    width: 184px;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tutor-more-cue__card,
  .tutor-more-cue__route-head {
    will-change: auto;
  }
}

.tutor-more-cue {
  display: none !important;
}

#tutors > .container {
  position: relative;
  padding-bottom: clamp(108px, 11vw, 142px);
}

.more-to-come-cue {
  position: absolute;
  right: clamp(20px, 5vw, 48px);
  bottom: clamp(20px, 3vw, 36px);
  z-index: 8;
  width: min(390px, calc(100% - 40px));
  color: var(--ink);
}

.more-to-come-cue__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 220px);
  align-items: center;
  gap: 18px;
  min-height: 94px;
  padding: 13px 15px 13px 21px;
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.13);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 16%, rgba(231, 126, 139, 0.11), transparent 38%),
    rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 18px 46px rgba(10, 10, 10, 0.085);
}

.more-to-come-cue__label {
  color: rgba(10, 10, 10, 0.78);
  font-size: clamp(15px, 1.55vw, 18px);
  font-weight: 670;
  line-height: 1.22;
  letter-spacing: -0.026em;
  text-wrap: balance;
}

.more-to-come-cue__visual {
  position: relative;
  display: block;
  width: 100%;
  height: 78px;
  min-width: 180px;
}

.more-to-come-cue__canvas,
.more-to-come-cue__fallback {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.more-to-come-cue__canvas {
  opacity: 0;
}

.more-to-come-cue.is-enhanced .more-to-come-cue__canvas {
  opacity: 1;
}

.more-to-come-cue.is-enhanced .more-to-come-cue__fallback {
  opacity: 0;
}

.more-to-come-cue__fallback {
  overflow: visible;
  transition: opacity 180ms ease;
}

.more-to-come-cue__fallback-track,
.more-to-come-cue__fallback-flow,
.more-to-come-cue__fallback-arrow {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.more-to-come-cue__fallback-track {
  stroke: rgba(10, 10, 10, 0.11);
  stroke-width: 1.25;
}

.more-to-come-cue__fallback-flow {
  stroke: rgba(208, 72, 88, 0.72);
  stroke-width: 2.1;
  stroke-dasharray: 38 170;
  animation: moreToComeFallbackFlow 2.8s linear infinite;
}

.more-to-come-cue__fallback-arrow {
  stroke: rgba(208, 72, 88, 0.82);
  stroke-width: 2.1;
  animation: moreToComeFallbackArrow 1.4s ease-in-out infinite;
}

@keyframes moreToComeFallbackFlow {
  to {
    stroke-dashoffset: -208;
  }
}

@keyframes moreToComeFallbackArrow {
  0%,
  100% {
    opacity: 0.42;
    transform: translateX(-2px);
  }

  50% {
    opacity: 0.95;
    transform: translateX(2px);
  }
}

@media (max-width: 760px) {
  #tutors > .container {
    padding-bottom: 0;
  }

  .more-to-come-cue {
    position: static;
    width: 100%;
    margin-top: 26px;
  }
}

@media (max-width: 520px) {
  .more-to-come-cue__panel {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 18px 18px 12px;
  }

  .more-to-come-cue__visual {
    height: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .more-to-come-cue__fallback-flow,
  .more-to-come-cue__fallback-arrow {
    animation: none;
  }
}

.more-to-come-cue,
.tutor-more-cue {
  display: none !important;
}

#tutors > .container {
  position: relative;
  padding-bottom: clamp(216px, 21vw, 272px);
}

.future-signal {
  position: absolute;
  right: clamp(20px, 5vw, 48px);
  bottom: clamp(22px, 3vw, 40px);
  z-index: 9;
  width: min(520px, calc(100% - 40px));
  height: 214px;
  perspective: 1200px;
  color: #ffffff;
  cursor: default;
  opacity: 1;
  transform: translateZ(0);
}

.future-signal .atropos-scale,
.future-signal .atropos-rotate,
.future-signal .atropos-inner {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.future-signal__surface {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 74% 20%, rgba(255, 136, 151, 0.17), transparent 32%),
    linear-gradient(145deg, #161616 0%, #080808 56%, #121212 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04),
    0 30px 72px rgba(10, 10, 10, 0.2);
}

.future-signal__surface::after {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: 7;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 21px;
  pointer-events: none;
}

.future-signal__grid {
  position: absolute;
  inset: -30%;
  z-index: -3;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  transform: rotate(-11deg) scale(1.12);
  mask-image: radial-gradient(circle at 72% 46%, #000 0 34%, transparent 69%);
}

.future-signal__orb {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(1px);
  will-change: transform;
}

.future-signal__orb--red {
  right: 58px;
  top: -74px;
  width: 196px;
  height: 196px;
  background:
    radial-gradient(circle at 36% 30%, rgba(255, 255, 255, 0.62), transparent 13%),
    radial-gradient(circle at 42% 40%, #f8bec5 0%, #d85e6d 42%, #5f1f29 76%, transparent 77%);
  opacity: 0.72;
  box-shadow: 0 30px 70px rgba(198, 62, 80, 0.24);
  animation: futureOrbRedFallback 6s ease-in-out infinite alternate;
}

.future-signal__orb--silver {
  right: -42px;
  bottom: -102px;
  width: 214px;
  height: 214px;
  background:
    radial-gradient(circle at 33% 27%, #ffffff 0%, #c8c8c8 18%, #3d3d3d 56%, #101010 74%, transparent 75%);
  opacity: 0.56;
  mix-blend-mode: screen;
  animation: futureOrbSilverFallback 7s ease-in-out infinite alternate;
}

.future-signal__shine {
  position: absolute;
  z-index: 5;
  top: -40%;
  bottom: -40%;
  left: -58%;
  width: 28%;
  pointer-events: none;
  transform: skewX(-18deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.035),
    transparent
  );
  animation: futureShineFallback 6s ease-in-out infinite;
}

.future-signal__top {
  position: absolute;
  z-index: 3;
  top: 23px;
  left: 26px;
  right: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.future-signal__index {
  color: rgba(255, 255, 255, 0.43);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.22em;
}

.future-signal__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.future-signal__status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #dd6978;
  box-shadow: 0 0 0 5px rgba(221, 105, 120, 0.12);
  animation: futurePulseFallback 1.8s ease-in-out infinite;
}

.future-signal__copy {
  position: absolute;
  z-index: 4;
  left: 27px;
  top: 57px;
  width: min(285px, 60%);
}

.future-signal__brand {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 720;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.future-signal__headline {
  display: grid;
  color: #ffffff;
  font-size: clamp(30px, 3.1vw, 42px);
  font-weight: 680;
  line-height: 0.88;
  letter-spacing: -0.064em;
  text-transform: uppercase;
}

.future-signal__line {
  display: block;
  overflow: hidden;
  padding-bottom: 4px;
}

.future-signal__line > span {
  display: block;
  transform-origin: left bottom;
}

.future-signal__line--accent {
  color: #f2a8b1;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.052em;
}

.future-signal__sub {
  display: block;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 550;
  letter-spacing: 0.02em;
}

.future-signal__motion {
  position: absolute;
  z-index: 2;
  right: 18px;
  top: 50px;
  width: 46%;
  height: 118px;
}

.future-signal__motion svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.future-signal__route,
.future-signal__route-trail {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.future-signal__route {
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 1.1;
}

.future-signal__route-trail {
  stroke: #e47886;
  stroke-width: 2;
  stroke-dasharray: 76 520;
  animation: futureTrailFallback 3.8s linear infinite;
}

.future-signal__arrow-head {
  position: absolute;
  left: -8px;
  top: -8px;
  z-index: 4;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(246, 177, 186, 0.94);
  color: #21090c;
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  box-shadow:
    0 0 0 7px rgba(227, 105, 121, 0.09),
    0 12px 26px rgba(0, 0, 0, 0.24);
  offset-path: path("M18 84 C100 84 124 34 208 34 C286 34 310 72 400 22");
  offset-distance: 0%;
  offset-rotate: 0deg;
  animation: futureArrowFallback 3.8s ease-in-out infinite;
}

.future-signal__node {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(246, 177, 186, 0.64);
  border-radius: 50%;
  background: #0c0c0c;
  box-shadow: 0 0 0 5px rgba(238, 154, 165, 0.07);
}

.future-signal__node--one {
  left: 21%;
  top: 63%;
}

.future-signal__node--two {
  left: 50%;
  top: 18%;
}

.future-signal__node--three {
  right: 10%;
  top: 36%;
}

.future-signal__ticker {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  height: 31px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.2);
}

.future-signal__ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 200%;
  height: 100%;
  color: rgba(255, 255, 255, 0.34);
  font-size: 8px;
  font-weight: 720;
  letter-spacing: 0.2em;
  white-space: nowrap;
  animation: futureTickerFallback 18s linear infinite;
}

.future-signal__ticker-track span {
  padding: 0 17px;
}

.future-signal__ticker-track i {
  color: rgba(231, 121, 135, 0.72);
  font-style: normal;
}

.future-signal--gsap .future-signal__orb,
.future-signal--gsap .future-signal__shine,
.future-signal--gsap .future-signal__route-trail,
.future-signal--gsap .future-signal__arrow-head,
.future-signal--gsap .future-signal__ticker-track,
.future-signal--gsap .future-signal__status i {
  animation: none;
}

@keyframes futureOrbRedFallback {
  to {
    transform: translate(18px, -12px) rotate(18deg);
  }
}

@keyframes futureOrbSilverFallback {
  to {
    transform: translate(-20px, 16px) rotate(-20deg);
  }
}

@keyframes futureShineFallback {
  0%,
  28% {
    transform: translateX(0) skewX(-18deg);
  }

  68%,
  100% {
    transform: translateX(620%) skewX(-18deg);
  }
}

@keyframes futurePulseFallback {
  50% {
    opacity: 0.42;
    transform: scale(0.78);
  }
}

@keyframes futureTrailFallback {
  to {
    stroke-dashoffset: -520;
  }
}

@keyframes futureArrowFallback {
  0% {
    offset-distance: 0%;
    opacity: 0;
    transform: scale(0.72);
  }

  12%,
  85% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    offset-distance: 100%;
    opacity: 0;
    transform: scale(0.78);
  }
}

@keyframes futureTickerFallback {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 820px) {
  #tutors > .container {
    padding-bottom: 0;
  }

  .future-signal {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 28px;
  }
}

@media (max-width: 580px) {
  .future-signal {
    height: 270px;
  }

  .future-signal__copy {
    width: calc(100% - 54px);
  }

  .future-signal__motion {
    top: 142px;
    right: 12px;
    width: 72%;
    height: 94px;
    opacity: 0.78;
  }

  .future-signal__headline {
    font-size: clamp(31px, 10vw, 42px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .future-signal *,
  .future-signal *::before,
  .future-signal *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .future-signal__arrow-head {
    offset-distance: 82%;
    opacity: 1;
  }
}

.future-signal,
.more-to-come-cue,
.tutor-more-cue {
  display: none !important;
}

#tutors > .container {
  position: relative;
  padding-bottom: 0 !important;
}

.more-statement {
  position: relative;
  width: 100%;
  margin-top: clamp(34px, 5vw, 66px);
  padding-top: clamp(22px, 2.5vw, 32px);
  color: var(--ink);
}

.more-statement__track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(10, 10, 10, 0.12);
}

.more-statement__progress {
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.86),
    rgba(10, 10, 10, 0.28)
  );
  transform-origin: left center;
  animation: moreStatementLineFallback 1.1s var(--ease-out) both;
}

.more-statement__dot {
  position: absolute;
  top: -4px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cf5968;
  box-shadow:
    0 0 0 6px rgba(207, 89, 104, 0.09),
    0 5px 14px rgba(129, 38, 50, 0.16);
  animation: moreStatementDotFallback 4.6s var(--ease-smooth) 1.1s infinite;
}

.more-statement__text {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: baseline;
  gap: 0 0.18em;
  margin: 0;
  text-align: right;
  color: var(--ink);
  font-size: clamp(48px, 7.4vw, 96px);
  font-weight: 620;
  line-height: 0.9;
  letter-spacing: -0.072em;
  text-wrap: balance;
}

.more-statement__mask {
  display: inline-block;
  overflow: hidden;
  padding: 0.05em 0 0.12em;
}

.more-statement__word {
  display: inline-block;
  transform-origin: left bottom;
  animation: moreStatementWordFallback 0.9s var(--ease-out) both;
}

.more-statement__mask:nth-child(2) .more-statement__word {
  animation-delay: 0.07s;
}

.more-statement__mask:nth-child(3) .more-statement__word {
  animation-delay: 0.14s;
}

.more-statement__mask--accent {
  padding-right: 0.05em;
}

.more-statement__mask--accent .more-statement__word {
  color: #cf5968;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.058em;
}

.more-statement.is-gsap .more-statement__progress,
.more-statement.is-gsap .more-statement__dot,
.more-statement.is-gsap .more-statement__word {
  animation: none;
}

@keyframes moreStatementLineFallback {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes moreStatementWordFallback {
  from {
    opacity: 0;
    transform: translateY(112%) rotate(1.5deg);
  }

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

@keyframes moreStatementDotFallback {
  0%,
  10% {
    left: 0;
    opacity: 0.18;
    transform: scale(0.86);
  }

  44%,
  58% {
    left: calc(100% - 9px);
    opacity: 1;
    transform: scale(1);
  }

  68%,
  100% {
    left: calc(100% - 9px);
    opacity: 0.18;
    transform: scale(0.86);
  }
}

@media (max-width: 700px) {
  .more-statement {
    margin-top: 32px;
    padding-top: 21px;
  }

  .more-statement__text {
    justify-content: flex-start;
    text-align: left;
    font-size: clamp(44px, 13vw, 66px);
    line-height: 0.94;
  }
}

@media (prefers-reduced-motion: reduce) {
  .more-statement__progress,
  .more-statement__dot,
  .more-statement__word {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .more-statement__dot {
    left: calc(100% - 9px);
  }
}

.more-statement,
.future-signal,
.more-to-come-cue,
.tutor-more-cue {
  display: none !important;
}

#tutors > .container {
  position: relative;
  padding-bottom: 0 !important;
}

.future-echo-statement {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: clamp(250px, 25vw, 340px);
  margin-top: clamp(48px, 6vw, 82px);
  padding: clamp(35px, 4.5vw, 58px) 0 clamp(34px, 4vw, 52px);
  overflow: hidden;
  border-top: 1px solid rgba(10, 10, 10, 0.12);
  color: var(--ink);
}

.future-echo-statement__wash {
  position: absolute;
  z-index: -1;
  right: -7%;
  top: 3%;
  width: clamp(280px, 43vw, 620px);
  aspect-ratio: 1.45 / 1;
  border-radius: 50%;
  opacity: 0.68;
  background:
    radial-gradient(
      ellipse at center,
      rgba(226, 116, 130, 0.13) 0%,
      rgba(234, 151, 161, 0.07) 38%,
      transparent 72%
    );
  filter: blur(2px);
  transform-origin: 72% 54%;
  animation: futureEchoWashFallback 6.2s ease-in-out infinite alternate;
}

.future-echo-statement__copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: end;
  width: 100%;
  margin: 0;
  text-align: right;
}

.future-echo-statement__row {
  display: block;
  width: fit-content;
  max-width: 100%;
}

.future-echo-statement__row--lead {
  padding-right: clamp(8px, 1.5vw, 24px);
}

.future-echo-statement__row--future {
  position: relative;
  margin-top: clamp(-2px, -0.2vw, 0px);
  padding-right: clamp(8px, 1.5vw, 24px);
}

.future-echo-statement__clip {
  display: block;
  overflow: hidden;
  padding: 0.06em 0 0.13em;
}

.future-echo-statement__clip--future {
  position: relative;
  z-index: 4;
}

.future-echo-statement__lead {
  display: block;
  color: rgba(10, 10, 10, 0.86);
  font-size: clamp(36px, 5.2vw, 70px);
  font-weight: 610;
  line-height: 0.94;
  letter-spacing: -0.068em;
  text-transform: uppercase;
  transform-origin: right bottom;
  animation: futureEchoLeadFallback 0.85s var(--ease-out) both;
}

.future-echo-statement__future,
.future-echo-statement__echo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(76px, 11.8vw, 166px);
  font-style: italic;
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: -0.074em;
  white-space: nowrap;
}

.future-echo-statement__future {
  position: relative;
  z-index: 4;
  display: block;
  padding-right: 0.045em;
  color: #c94f60;
  text-shadow: 0 12px 34px rgba(160, 50, 66, 0.1);
  transform-origin: right bottom;
  animation: futureEchoFutureFallback 1s var(--ease-out) 0.13s both;
}

.future-echo-statement__echo {
  position: absolute;
  z-index: 1;
  right: clamp(8px, 1.5vw, 24px);
  bottom: 0.13em;
  color: transparent;
  pointer-events: none;
  -webkit-text-stroke: 1px rgba(201, 79, 96, 0.32);
  text-stroke: 1px rgba(201, 79, 96, 0.32);
  transform-origin: right center;
}

.future-echo-statement__echo--near {
  z-index: 3;
  opacity: 0.175;
  transform: translateX(11px);
  animation: futureEchoNearFallback 5.8s ease-in-out 1.2s infinite alternate;
}

.future-echo-statement__echo--mid {
  z-index: 2;
  opacity: 0.105;
  transform: translateX(23px);
  animation: futureEchoMidFallback 6.5s ease-in-out 1.2s infinite alternate;
}

.future-echo-statement__echo--far {
  z-index: 1;
  opacity: 0.065;
  transform: translateX(36px);
  animation: futureEchoFarFallback 7.2s ease-in-out 1.2s infinite alternate;
}

.future-echo-statement__signal {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: clamp(18px, 2.2vw, 30px);
  display: block;
  height: 1px;
}

.future-echo-statement__signal-base,
.future-echo-statement__signal-fill {
  position: absolute;
  inset: 0;
  display: block;
  transform-origin: left center;
}

.future-echo-statement__signal-base {
  background: rgba(10, 10, 10, 0.1);
}

.future-echo-statement__signal-fill {
  background:
    linear-gradient(
      90deg,
      rgba(10, 10, 10, 0.78) 0%,
      rgba(10, 10, 10, 0.24) 72%,
      rgba(201, 79, 96, 0.42) 100%
    );
  animation: futureEchoSignalFallback 1.2s var(--ease-smooth) 0.16s both;
}

.future-echo-statement__signal-dot {
  position: absolute;
  left: 0;
  top: -5px;
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #c94f60;
  box-shadow:
    0 0 0 7px rgba(201, 79, 96, 0.08),
    0 8px 20px rgba(132, 34, 48, 0.18);
  animation:
    futureEchoDotTravelFallback 1.2s var(--ease-smooth) 0.16s both,
    futureEchoDotPulseFallback 4.8s ease-in-out 1.8s infinite;
}

.future-echo-statement.is-gsap .future-echo-statement__wash,
.future-echo-statement.is-gsap .future-echo-statement__lead,
.future-echo-statement.is-gsap .future-echo-statement__future,
.future-echo-statement.is-gsap .future-echo-statement__echo,
.future-echo-statement.is-gsap .future-echo-statement__signal-fill,
.future-echo-statement.is-gsap .future-echo-statement__signal-dot {
  animation: none;
}

@keyframes futureEchoLeadFallback {
  from {
    opacity: 0;
    transform: translateY(115%) rotate(1.2deg);
  }

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

@keyframes futureEchoFutureFallback {
  from {
    opacity: 0;
    transform: translateY(112%) rotate(-1.2deg);
  }

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

@keyframes futureEchoSignalFallback {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes futureEchoDotTravelFallback {
  from {
    left: 0;
    opacity: 0;
    transform: scale(0.72);
  }

  to {
    left: calc(100% - 11px);
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes futureEchoDotPulseFallback {
  0%,
  86%,
  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 7px rgba(201, 79, 96, 0.08),
      0 8px 20px rgba(132, 34, 48, 0.18);
  }

  91% {
    transform: scale(1.5);
    box-shadow:
      0 0 0 11px rgba(201, 79, 96, 0.06),
      0 8px 24px rgba(132, 34, 48, 0.24);
  }
}

@keyframes futureEchoNearFallback {
  to {
    opacity: 0.21;
    transform: translateX(14px);
  }
}

@keyframes futureEchoMidFallback {
  to {
    opacity: 0.13;
    transform: translateX(27px);
  }
}

@keyframes futureEchoFarFallback {
  to {
    opacity: 0.085;
    transform: translateX(41px);
  }
}

@keyframes futureEchoWashFallback {
  to {
    opacity: 0.88;
    transform: scale(1.04);
  }
}

@media (max-width: 760px) {
  .future-echo-statement {
    min-height: clamp(238px, 52vw, 310px);
    margin-top: 42px;
    padding-top: 34px;
  }

  .future-echo-statement__copy {
    justify-items: start;
    text-align: left;
  }

  .future-echo-statement__row--lead,
  .future-echo-statement__row--future {
    padding-right: 30px;
  }

  .future-echo-statement__lead {
    font-size: clamp(34px, 10vw, 54px);
  }

  .future-echo-statement__future,
  .future-echo-statement__echo {
    font-size: clamp(68px, 19vw, 110px);
  }

  .future-echo-statement__echo {
    right: 30px;
  }

  .future-echo-statement__wash {
    right: -38%;
    width: 120%;
  }
}

@media (max-width: 430px) {
  .future-echo-statement {
    min-height: 230px;
  }

  .future-echo-statement__row--lead,
  .future-echo-statement__row--future {
    padding-right: 22px;
  }

  .future-echo-statement__future,
  .future-echo-statement__echo {
    font-size: clamp(58px, 18.5vw, 82px);
  }

  .future-echo-statement__echo {
    right: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .future-echo-statement *,
  .future-echo-statement *::before,
  .future-echo-statement *::after {
    animation: none !important;
    transition: none !important;
  }

  .future-echo-statement__lead,
  .future-echo-statement__future {
    opacity: 1 !important;
    transform: none !important;
  }

  .future-echo-statement__signal-fill {
    transform: scaleX(1) !important;
  }

  .future-echo-statement__signal-dot {
    left: calc(100% - 11px) !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

#results .result-metrics {
  grid-template-columns: 1fr;
}

#results .benchmark-card--study,
#results .metric-box.premier-feature,
#results .results-lower-row {
  width: 100%;
}

#results .premier-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.5vw, 28px);
}

#results .premier-side > .premier-right,
#results .premier-side > .premier-copy,
#results .premier-side > .premier-award-side,
#results .premier-side > .premier-award {
  border-left: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: 0 !important;
  padding-top: clamp(20px, 2.4vw, 28px);
}

#results .benchmark-card--study .benchmark-secondary {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(10, 10, 10, 0.08);
}

#results .benchmark-card--study .benchmark-secondary-stat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

#results .benchmark-card--study .benchmark-secondary-stat .metric-number {
  flex: 0 0 auto;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

#results .benchmark-card--study .benchmark-secondary-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding-top: 4px;
}

#results .benchmark-card--study .benchmark-secondary-copy strong {
  color: var(--ink);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

#results .benchmark-card--study .benchmark-secondary-copy .benchmark-technical {
  color: rgba(10, 10, 10, 0.5);
}

#results .results-lower-row {
  margin-top: 18px;
}

@media (max-width: 820px) {
  #results .result-metrics {
    grid-template-columns: 1fr;
  }
}

/* Final results-card arrangement: black feature left, combined white card right. */
#results .result-metrics {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
}

#results .metric-box.premier-feature {
  grid-column: 1;
  grid-row: 1;
  min-height: 520px;
  height: 100%;
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(0, 1fr);
  align-content: stretch;
  gap: clamp(22px, 3vw, 34px);
}

#results .metric-box.premier-feature .premier-side {
  align-content: end;
  padding-right: 0;
  padding-bottom: clamp(20px, 2.5vw, 28px);
  border-right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

#results .metric-box.premier-feature .premier-copy {
  align-content: center;
  padding-left: 0;
}

#results .benchmark-card--study {
  grid-column: 2;
  grid-row: 1;
  min-height: 520px;
  height: 100%;
}

#results .benchmark-card--study .metric-visual {
  min-height: 250px;
}

#results .results-lower-row {
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  margin-top: 0;
}

@media (max-width: 980px) {
  #results .result-metrics {
    grid-template-columns: 1fr;
  }

  #results .metric-box.premier-feature,
  #results .benchmark-card--study,
  #results .results-lower-row {
    grid-column: 1;
    grid-row: auto;
    min-height: 0;
  }

  #results .metric-box.premier-feature {
    min-height: 430px;
  }

  #results .benchmark-card--study {
    min-height: 500px;
  }
}

#results .metric-box.premier-feature {
  min-height: 560px;
}

#results .metric-box.premier-feature .premier-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 28px);
}

#results .premier-award-focal {
  display: grid;
  gap: 14px;
  max-width: 100%;
  margin: 0;
}

#results .premier-award-focal-kicker {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

#results .premier-award-focal-text {
  display: block;
  max-width: 16ch;
  color: #ffffff;
  font-size: clamp(34px, 4.35vw, 62px);
  font-weight: 680;
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-wrap: balance;
  text-shadow:
    0 0 26px rgba(255, 255, 255, 0.09),
    0 12px 40px rgba(0, 0, 0, 0.24);
}

#results .premier-stat-rotation {
  margin-top: clamp(2px, 0.6vw, 8px);
}

#results .premier-note {
  max-width: 58ch;
}

#results .benchmark-card--study {
  min-height: 560px;
}

#results .benchmark-stat--combined {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: 12px;
}

#results .benchmark-combined-number {
  margin: 0 !important;
  color: var(--ink);
  font-size: clamp(76px, 8.4vw, 118px) !important;
  font-weight: 680;
  line-height: 0.78;
  letter-spacing: -0.085em;
}

#results .benchmark-copy-stack--combined {
  display: grid;
  gap: 7px;
  padding-bottom: 0;
}

#results .benchmark-copy-stack--combined .benchmark-combined-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.55vw, 38px);
  font-weight: 650;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

#results .benchmark-combined-sub {
  display: block;
  max-width: 25ch;
  color: #c94f60 !important;
  font-size: clamp(15px, 1.45vw, 20px) !important;
  font-weight: 650;
  line-height: 1.18 !important;
  letter-spacing: -0.025em;
}

#results .benchmark-combined-note {
  display: block;
  max-width: 38ch;
  margin-top: 3px;
  color: rgba(10, 10, 10, 0.48) !important;
  font-size: 11px !important;
  line-height: 1.45 !important;
}

#results .benchmark-card--study .metric-visual {
  margin-top: auto;
}

@media (max-width: 980px) {
  #results .metric-box.premier-feature,
  #results .benchmark-card--study {
    min-height: 0;
  }

  #results .premier-award-focal-text {
    max-width: 18ch;
  }
}

@media (max-width: 640px) {
  #results .benchmark-stat--combined {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  #results .benchmark-combined-number {
    font-size: clamp(72px, 22vw, 104px) !important;
  }

  #results .premier-award-focal-text {
    font-size: clamp(34px, 10.5vw, 52px);
  }
}

#results .metric-box.premier-feature {
  min-height: 520px;
  padding: clamp(24px, 3vw, 34px);
  gap: clamp(18px, 2.4vw, 26px);
}

#results .metric-box.premier-feature .premier-side {
  padding-bottom: clamp(16px, 2vw, 22px);
}

#results .metric-box.premier-feature .premier-copy {
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: center;
  gap: clamp(14px, 1.7vw, 20px);
  padding-top: 2px;
}

#results .premier-award-focal {
  gap: 9px;
  max-width: none;
}

#results .premier-award-focal-kicker {
  font-size: 9px;
  letter-spacing: 0.16em;
}

#results .premier-award-focal-text {
  display: grid;
  gap: 3px;
  max-width: 24ch;
  font-size: clamp(27px, 2.85vw, 40px);
  font-weight: 620;
  line-height: 1.02;
  letter-spacing: -0.038em;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}

#results .premier-award-line {
  display: block;
}

#results .premier-award-line--emphasis {
  color: #ffffff;
  font-size: 1.08em;
  font-weight: 740;
  letter-spacing: -0.045em;
}

#results .premier-stat-rotation {
  margin-top: 2px;
}

#results .premier-stat-stage {
  min-height: 2.2em;
}

#results .premier-note {
  margin-top: -2px;
}

#results .benchmark-card--study {
  min-height: 520px;
}

@media (max-width: 1180px) {
  #results .premier-award-focal-text {
    max-width: 21ch;
    font-size: clamp(26px, 3vw, 36px);
  }
}

@media (max-width: 980px) {
  #results .metric-box.premier-feature,
  #results .benchmark-card--study {
    min-height: 0;
  }

  #results .premier-award-focal-text {
    max-width: 25ch;
  }
}

@media (max-width: 640px) {
  #results .premier-award-focal-text {
    max-width: 100%;
    font-size: clamp(26px, 8.5vw, 38px);
    line-height: 1.04;
  }

  #results .premier-award-line--emphasis {
    font-size: 1.04em;
  }
}

#results .benchmark-card--study {
  padding: 20px 20px 18px;
}

#results .benchmark-stat--combined {
  align-items: flex-start;
  gap: clamp(18px, 2.2vw, 28px);
  margin-bottom: 8px;
}

#results .benchmark-copy-stack--combined {
  gap: 6px;
  padding-top: 2px;
}

#results .benchmark-combined-sub {
  max-width: 30ch;
}

#results .benchmark-combined-context {
  display: grid;
  gap: 7px;
  max-width: 48ch;
  margin-top: 8px;
  padding-top: 11px;
  border-top: 1px solid rgba(10, 10, 10, 0.08);
}

#results .benchmark-combined-context p {
  margin: 0;
  color: rgba(10, 10, 10, 0.58);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 500;
  line-height: 1.48;
}

#results .benchmark-combined-context p:last-child {
  color: rgba(10, 10, 10, 0.74);
  font-weight: 620;
}

#results .benchmark-card--study .metric-visual {
  flex: 0 0 auto;
  min-height: 164px;
  height: 164px;
  margin-top: 12px;
}

#results .benchmark-card--study .benchmark-graphic {
  min-height: 164px;
  height: 164px;
}

#results .benchmark-card--study .bell-curve {
  min-height: 132px;
}

#results .benchmark-card--study .avatar-stage {
  grid-template-rows: auto auto;
  align-content: center;
  gap: 7px;
  padding: 2px 0;
}

#results .benchmark-card--study .avatar-highlight {
  gap: 3px;
}

#results .benchmark-card--study .avatar-highlight-group {
  gap: 8px;
}

#results .benchmark-card--study .student-avatar.is-hero {
  width: clamp(39px, 3.6vw, 48px);
}

#results .benchmark-card--study .avatar-highlight-label {
  font-size: 11px;
}

#results .benchmark-card--study .student-belt {
  align-self: center;
  grid-template-columns: repeat(20, minmax(0, 1fr));
  gap: 5px 6px;
  min-height: 78px;
  padding: 8px 10px;
  border-radius: 13px;
}

#results .benchmark-card--study .student-belt .student-avatar {
  max-width: 17px;
}

@media (max-width: 1180px) {
  #results .benchmark-combined-context {
    max-width: 42ch;
  }

  #results .benchmark-card--study .metric-visual,
  #results .benchmark-card--study .benchmark-graphic {
    min-height: 176px;
    height: 176px;
  }
}

@media (max-width: 980px) {
  #results .benchmark-card--study .metric-visual,
  #results .benchmark-card--study .benchmark-graphic {
    min-height: 190px;
    height: 190px;
  }

  #results .benchmark-combined-context {
    max-width: 58ch;
  }
}

@media (max-width: 640px) {
  #results .benchmark-card--study .metric-visual,
  #results .benchmark-card--study .benchmark-graphic {
    min-height: 230px;
    height: 230px;
  }

  #results .benchmark-card--study .student-belt {
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 5px;
    min-height: 142px;
  }

  #results .benchmark-card--study .student-belt .student-avatar {
    max-width: 16px;
  }
}

/* Results bento: explicit aligned rows */
#results .results-bento-shell {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: clamp(14px, 1.5vw, 18px);
}

#results .results-bento-row {
  display: grid;
  width: 100%;
  gap: clamp(14px, 1.5vw, 18px);
  align-items: stretch;
}

#results .results-bento-row--top {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#results .results-bento-row--bottom {
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
}

#results .results-bento-card {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  margin: 0;
  border-radius: 26px;
  transition:
    box-shadow 360ms cubic-bezier(.22, 1, .36, 1),
    border-color 360ms ease;
}

#results .results-bento-row--top > .results-bento-card {
  height: 540px;
  min-height: 540px;
  max-height: 540px;
}

#results .results-bento-row--bottom > .results-bento-card {
  min-height: 164px;
  height: 100%;
}

#results .results-bento-card:hover {
  z-index: 2;
  transform: none;
  box-shadow: 0 22px 56px rgba(10, 10, 10, 0.09);
}

#results .results-bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(
      115deg,
      transparent 0%,
      rgba(255, 255, 255, 0.18) 43%,
      transparent 62%
    );
  transform: translateX(-120%);
  transition:
    opacity 220ms ease,
    transform 700ms cubic-bezier(.22, 1, .36, 1);
}

#results .results-bento-card:hover::before {
  opacity: 0.6;
  transform: translateX(120%);
}

#results .results-bento-card--feature::before {
  background:
    linear-gradient(
      115deg,
      transparent 0%,
      rgba(255, 255, 255, 0.065) 43%,
      transparent 62%
    );
}

#results .results-bento-card--feature.metric-box.premier-feature {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(0, 1fr);
  height: 540px;
  min-height: 540px;
  max-height: 540px;
  padding: clamp(24px, 2.8vw, 34px);
  gap: clamp(18px, 2.3vw, 26px);
  overflow: hidden;
}

#results .results-bento-card--feature .premier-side {
  min-height: 170px;
  align-content: end;
  padding-right: 0;
  padding-bottom: clamp(17px, 2vw, 23px);
  border-right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

#results .results-bento-card--feature .premier-copy {
  display: grid;
  align-content: center;
  gap: clamp(13px, 1.5vw, 18px);
  min-height: 0;
  padding-left: 0;
}

#results .results-bento-card--feature .premier-award-focal-text {
  max-width: 22ch;
  font-size: clamp(27px, 2.5vw, 38px);
  line-height: 1.015;
}

#results .results-bento-card--study.benchmark-card {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  height: 540px;
  min-height: 540px;
  max-height: 540px;
  padding: clamp(20px, 2vw, 25px);
  overflow: hidden;
}

#results .results-bento-card--study .benchmark-stat--combined {
  align-items: flex-start;
  gap: clamp(18px, 2vw, 25px);
  margin-bottom: 6px;
}

#results .results-bento-card--study .benchmark-combined-number {
  font-size: clamp(78px, 7.5vw, 110px) !important;
}

#results .results-bento-card--study .benchmark-combined-title {
  font-size: clamp(25px, 2.35vw, 35px);
}

#results .results-bento-card--study .benchmark-combined-sub {
  max-width: 31ch;
}

#results .results-bento-card--study .benchmark-combined-context {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
  gap: 11px;
  margin-top: 9px;
  padding-top: 11px;
}

#results .results-bento-card--study .benchmark-combined-context p {
  padding-right: 9px;
  border-right: 1px solid rgba(10, 10, 10, 0.075);
  font-size: 10.5px;
  line-height: 1.4;
}

#results .results-bento-card--study .benchmark-combined-context p:last-child {
  padding-right: 0;
  border-right: 0;
}

#results .results-bento-card--study .metric-visual,
#results .results-bento-card--study .benchmark-graphic {
  min-height: 150px;
  height: 150px;
  margin-top: 7px;
}

#results .results-bento-card--study .student-belt {
  grid-template-columns: repeat(20, minmax(0, 1fr));
  gap: 5px 6px;
  min-height: 74px;
  padding: 8px 10px;
}

#results .results-bento-card--study .student-belt .student-avatar {
  max-width: 17px;
}

#results .results-bento-card--cohort {
  padding: clamp(17px, 1.8vw, 21px);
}

#results .results-bento-card--cohort .cohort-ratio-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  height: calc(100% - 25px);
  gap: 10px;
  align-items: stretch;
}

#results .results-bento-card--cohort .cohort-ratio-card {
  height: 100%;
  min-height: 94px;
  border-radius: 17px;
}

#results .results-bento-card--summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 2vw, 25px);
}

#results .results-bento-card--summary p {
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.48;
}

#results .results-source-note {
  width: 100%;
  margin-top: 10px;
}

@media (max-width: 1100px) {
  #results .results-bento-row--bottom {
    grid-template-columns: minmax(0, 1.75fr) minmax(250px, 1fr);
  }

  #results .results-bento-card--study .benchmark-combined-context {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  #results .results-bento-card--study .benchmark-combined-context p {
    padding-right: 0;
    padding-bottom: 5px;
    border-right: 0;
    border-bottom: 1px solid rgba(10, 10, 10, 0.065);
  }

  #results .results-bento-card--study .benchmark-combined-context p:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
}

@media (max-width: 820px) {
  #results .results-bento-row--top,
  #results .results-bento-row--bottom {
    grid-template-columns: 1fr;
  }

  #results .results-bento-row--top > .results-bento-card,
  #results .results-bento-card--feature.metric-box.premier-feature,
  #results .results-bento-card--study.benchmark-card {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  #results .results-bento-card:hover {
    box-shadow: none;
  }

  #results .results-bento-card--cohort .cohort-ratio-grid {
    height: auto;
  }
}

@media (max-width: 640px) {
  #results .results-bento-card {
    border-radius: 22px;
  }

  #results .results-bento-card--study .benchmark-stat--combined {
    grid-template-columns: 1fr;
  }

  #results .results-bento-card--study .benchmark-combined-number {
    font-size: clamp(72px, 22vw, 104px) !important;
  }

  #results .results-bento-card--study .metric-visual,
  #results .results-bento-card--study .benchmark-graphic {
    min-height: 226px;
    height: 226px;
  }

  #results .results-bento-card--study .student-belt {
    grid-template-columns: repeat(10, minmax(0, 1fr));
    min-height: 140px;
  }

  #results .results-bento-card--cohort .cohort-ratio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  #results .results-bento-card,
  #results .results-bento-card::before {
    transition: none !important;
  }
}

/* Condensed results-card typography and spacing */
#results .results-bento-row--top > .results-bento-card,
#results .results-bento-card--feature.metric-box.premier-feature,
#results .results-bento-card--study.benchmark-card {
  height: 500px;
  min-height: 500px;
  max-height: 500px;
}

#results .results-bento-card--feature.metric-box.premier-feature {
  padding: 22px 28px 24px;
  gap: 16px;
}

#results .results-bento-card--feature .premier-side {
  min-height: 142px;
  padding-bottom: 15px;
}

#results .results-bento-card--feature .premier-year-kicker {
  top: 18px;
  left: 28px;
  font-size: clamp(17px, 1.55vw, 22px);
}

#results .results-bento-card--feature .premier-ratio {
  gap: 13px;
}

#results .results-bento-card--feature .premier-ratio-number {
  font-size: clamp(72px, 6.6vw, 94px);
}

#results .results-bento-card--feature .premier-ratio-denominator strong {
  font-size: clamp(20px, 1.95vw, 27px);
  line-height: 0.98;
}

#results .results-bento-card--feature .premier-ratio-denominator span {
  font-size: 10px;
}

#results .results-bento-card--feature .premier-rarity-line {
  margin-top: 5px;
}

#results .results-bento-card--feature .premier-copy {
  gap: 10px;
  align-content: start;
}

#results .results-bento-card--feature .premier-award-focal {
  gap: 6px;
}

#results .results-bento-card--feature .premier-award-focal-kicker {
  font-size: 8px;
  letter-spacing: 0.15em;
}

#results .results-bento-card--feature .premier-award-focal-text {
  max-width: 20ch;
  font-size: clamp(24px, 2.15vw, 32px);
  line-height: 1;
  letter-spacing: -0.036em;
}

#results .results-bento-card--feature .premier-award-line--emphasis {
  font-size: 1.03em;
}

#results .results-bento-card--feature .premier-stat-rotation {
  margin-top: 0;
}

#results .results-bento-card--feature .premier-stat-prefix {
  font-size: 8px;
}

#results .results-bento-card--feature .premier-stat-line {
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 0.98;
}

#results .results-bento-card--feature .premier-note {
  font-size: 9px;
  line-height: 1.35;
}

#results .results-bento-card--study.benchmark-card {
  padding: 19px 24px 20px;
  grid-template-rows: auto auto minmax(0, 1fr);
}

#results .results-bento-card--study .benchmark-stat--combined {
  gap: 18px;
  margin-bottom: 3px;
}

#results .results-bento-card--study .benchmark-combined-number {
  font-size: clamp(72px, 6.7vw, 96px) !important;
}

#results .results-bento-card--study .benchmark-combined-title {
  font-size: clamp(24px, 2.15vw, 32px);
}

#results .results-bento-card--study .benchmark-combined-sub {
  max-width: 30ch;
  font-size: clamp(14px, 1.25vw, 18px) !important;
}

#results .results-bento-card--study .benchmark-combined-context {
  display: block;
  margin-top: 8px;
  padding-top: 9px;
}

#results .results-bento-card--study .benchmark-combined-context p {
  max-width: 58ch;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 10.5px;
  line-height: 1.42;
}

#results .results-bento-card--study .metric-visual,
#results .results-bento-card--study .benchmark-graphic {
  min-height: 174px;
  height: 174px;
  margin-top: 8px;
}

#results .results-bento-card--study .avatar-highlight {
  gap: 2px;
}

#results .results-bento-card--study .avatar-highlight-group {
  gap: 8px;
}

#results .results-bento-card--study .avatar-highlight-label {
  font-size: 10px;
}

#results .results-bento-card--study .student-belt {
  min-height: 84px;
  padding: 8px 10px;
}

@media (max-width: 1100px) {
  #results .results-bento-card--study .benchmark-combined-context {
    display: block;
  }

  #results .results-bento-card--study .benchmark-combined-context p {
    padding: 0;
    border: 0;
  }
}

@media (max-width: 820px) {
  #results .results-bento-row--top > .results-bento-card,
  #results .results-bento-card--feature.metric-box.premier-feature,
  #results .results-bento-card--study.benchmark-card {
    height: auto;
    min-height: 0;
    max-height: none;
  }
}

/* Stable two-digit count column */
#results .benchmark-combined-number {
  display: inline-block;
  box-sizing: content-box;
  inline-size: 2ch;
  min-inline-size: 2ch;
  max-inline-size: 2ch;
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

/* Slower three-stage benchmark sequence */
#results .bell-viewport {
  transition:
    transform 1.45s cubic-bezier(.22, 1, .36, 1),
    opacity 0.85s ease;
}

#results .avatar-stage {
  transform: scale(.86) translateY(12px);
  transition:
    opacity 0.82s ease,
    transform 1.2s cubic-bezier(.22, 1, .36, 1);
}

#results .bell-marker-label {
  transition: opacity 0.42s ease;
}

#results .bell-bar {
  transition:
    fill 340ms cubic-bezier(.22, 1, .36, 1),
    opacity 340ms cubic-bezier(.22, 1, .36, 1),
    transform 340ms cubic-bezier(.22, 1, .36, 1);
}

@media (max-width: 640px) {
  #results .benchmark-combined-number {
    inline-size: 2ch;
    min-inline-size: 2ch;
    max-inline-size: 2ch;
    text-align: left;
  }
}

/* Final combined-result alignment */
#results .results-bento-card--study .benchmark-stat--combined {
  display: grid;
  grid-template-columns: clamp(108px, 9.2vw, 132px) minmax(0, 1fr);
  align-items: start;
  column-gap: clamp(14px, 1.5vw, 20px);
  margin-bottom: 4px;
}

#results .benchmark-combined-number,
#results .results-bento-card--study .benchmark-combined-number {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  max-width: none;
  inline-size: auto;
  min-inline-size: 0;
  max-inline-size: none;
  margin: 1px 0 0 !important;
  padding: 0;
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
  line-height: 0.79;
}

#results .results-bento-card--study .benchmark-copy-stack--combined {
  min-width: 0;
  padding-top: 1px;
}

#results .results-bento-card--study .benchmark-combined-title {
  max-width: none;
  font-size: clamp(24px, 2.1vw, 31px);
  line-height: 0.98;
  letter-spacing: -0.047em;
}

#results .results-bento-card--study .benchmark-combined-sub {
  max-width: 29ch;
  margin-top: 2px;
  font-size: clamp(14px, 1.22vw, 17px) !important;
  line-height: 1.16 !important;
}

#results .results-bento-card--study .benchmark-combined-context {
  margin-top: 8px;
  padding-top: 9px;
}

#results .results-bento-card--study .benchmark-combined-context p {
  max-width: 56ch;
  font-size: 10.5px;
  line-height: 1.4;
}

#results .results-bento-card--study .metric-visual,
#results .results-bento-card--study .benchmark-graphic {
  min-height: 180px;
  height: 180px;
  margin-top: 6px;
}

#results .results-bento-card--study .bell-curve {
  min-height: 158px;
  padding-bottom: 4px;
}

#results .results-bento-card--study .bell-curve svg {
  overflow: visible;
}

#results .bell-marker-label {
  dominant-baseline: auto;
}

/* Immediate graph start, but slower endpoint-to-avatar transition */
#results .bell-viewport {
  transition:
    transform 1.5s cubic-bezier(.22, 1, .36, 1),
    opacity 0.82s ease;
}

#results .avatar-stage {
  transform: scale(.86) translateY(12px);
  transition:
    opacity 0.78s ease,
    transform 1.1s cubic-bezier(.22, 1, .36, 1);
}

@media (max-width: 1040px) {
  #results .results-bento-card--study .benchmark-stat--combined {
    grid-template-columns: clamp(96px, 10vw, 116px) minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  #results .results-bento-card--study .benchmark-stat--combined {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }

  #results .benchmark-combined-number,
  #results .results-bento-card--study .benchmark-combined-number {
    width: auto;
    text-align: left;
  }
}

/* Slightly quicker bell-curve to avatar handoff */
#results .avatar-stage {
  transition:
    opacity 0.64s ease,
    transform 0.9s cubic-bezier(.22, 1, .36, 1);
}

/* Two staggered outcome rows */
#results .results-bento-card--study .benchmark-outcome-stack {
  display: grid;
  gap: 4px;
  width: 100%;
  margin-bottom: 3px;
}

#results .results-bento-card--study .benchmark-outcome-row {
  display: grid;
  grid-template-columns: clamp(94px, 8.3vw, 118px) minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(13px, 1.4vw, 18px);
  width: calc(100% - 28px);
}

#results .results-bento-card--study .benchmark-outcome-row--10 {
  justify-self: start;
}

#results .results-bento-card--study .benchmark-outcome-row--6 {
  justify-self: end;
  transform: translateX(8px);
}

#results .results-bento-card--study .benchmark-outcome-number {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  margin: 0 !important;
  text-align: right;
  color: var(--ink);
  font-size: clamp(62px, 5.8vw, 84px) !important;
  font-weight: 680;
  line-height: 0.8;
  letter-spacing: -0.08em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

#results .results-bento-card--study .benchmark-outcome-number--6 {
  color: #c94f60;
  font-size: clamp(50px, 4.7vw, 68px) !important;
}

#results .results-bento-card--study .benchmark-outcome-copy {
  min-width: 0;
}

#results .results-bento-card--study .benchmark-outcome-title {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: clamp(23px, 2.05vw, 30px);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.047em;
}

#results .results-bento-card--study .benchmark-outcome-title--accent {
  max-width: 30ch;
  color: #c94f60;
  font-size: clamp(15px, 1.28vw, 18px);
  line-height: 1.13;
  letter-spacing: -0.025em;
}

#results .results-bento-card--study .metric-visual,
#results .results-bento-card--study .benchmark-graphic {
  margin-top: 9px;
}

/* Lower bento tiles retain stable geometry while their internals animate. */
#results [data-bento-card="cohort"],
#results [data-bento-card="summary"] {
  overflow: hidden;
}

@media (max-width: 1040px) {
  #results .results-bento-card--study .benchmark-outcome-row {
    grid-template-columns: clamp(82px, 8.5vw, 102px) minmax(0, 1fr);
    width: calc(100% - 18px);
  }

  #results .results-bento-card--study .benchmark-outcome-row--6 {
    transform: translateX(4px);
  }
}

@media (max-width: 640px) {
  #results .results-bento-card--study .benchmark-outcome-stack {
    gap: 12px;
  }

  #results .results-bento-card--study .benchmark-outcome-row {
    grid-template-columns: 76px minmax(0, 1fr);
    width: 100%;
  }

  #results .results-bento-card--study .benchmark-outcome-row--6 {
    justify-self: stretch;
    transform: none;
  }

  #results .results-bento-card--study .benchmark-outcome-number {
    text-align: left;
  }
}

/* Cohort identity banner */
#results .results-bento-card--study .cohort-identity-banner {
  display: flex;
  align-items: baseline;
  gap: 0.34em;
  width: 100%;
  margin: 0 0 14px;
  padding: 12px 16px 13px;
  border-radius: 14px;
  background: #111111;
  color: #ffffff;
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 610;
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(10, 10, 10, 0.08);
}

#results .cohort-identity-banner__lead,
#results .cohort-identity-banner__tail {
  color: rgba(255, 255, 255, 0.78);
}

#results .cohort-identity-banner__count {
  color: #ffffff;
  font-size: 1.08em;
  font-weight: 760;
  letter-spacing: -0.035em;
}

#results .results-bento-card--study.benchmark-card {
  grid-template-rows: auto auto minmax(0, 1fr);
}

@media (max-width: 820px) {
  #results .results-bento-card--study .cohort-identity-banner {
    flex-wrap: wrap;
    gap: 0.22em 0.34em;
    margin-bottom: 16px;
    padding: 13px 15px 14px;
    font-size: clamp(18px, 4.8vw, 23px);
    line-height: 1.08;
  }
}

@media (max-width: 480px) {
  #results .results-bento-card--study .cohort-identity-banner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: baseline;
    row-gap: 3px;
    border-radius: 13px;
  }

  #results .cohort-identity-banner__tail {
    grid-column: 1 / -1;
  }
}

#results {
  --results-red: #c94f60;
  --results-red-rgb: 201, 79, 96;
}

#results .results-bento-card--study .cohort-identity-banner {
  display: none;
}

#results .results-bento-card--study .cohort-identity-sentence {
  display: block;
  width: 100%;
  margin: 0 0 15px;
  padding: 0 0 13px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.11);
  background: transparent;
  color: rgba(10, 10, 10, 0.72);
  font-size: clamp(18px, 1.62vw, 23px);
  font-weight: 540;
  line-height: 1.2;
  letter-spacing: -0.027em;
  text-transform: none;
  box-shadow: none;
}

#results .cohort-identity-sentence__prefix,
#results .cohort-identity-sentence__emphasis {
  display: inline;
}

#results .cohort-identity-sentence__emphasis {
  color: var(--results-red);
  font-weight: 730;
  letter-spacing: -0.034em;
}

#results .benchmark-outcome-number--6,
#results .benchmark-outcome-title--accent,
#results .benchmark-combined-sub,
#results .cohort-inline-highlight,
#results .cohort-inline-highlight span,
#results .avatar-highlight-label {
  color: var(--results-red) !important;
}

#results .bell-marker-line {
  stroke: var(--results-red) !important;
}

#results .bell-marker-dot {
  fill: var(--results-red) !important;
  filter: drop-shadow(0 3px 5px rgba(var(--results-red-rgb), 0.24));
}

#results .bell-marker-label {
  fill: var(--results-red) !important;
}

#results .bell-fill {
  fill: rgba(var(--results-red-rgb), 0.09) !important;
}

#results .bell-tail-fill {
  fill: rgba(var(--results-red-rgb), 0.24) !important;
}

#results .bell-bar.is-passed {
  fill: rgba(var(--results-red-rgb), 0.34) !important;
  opacity: 0.96;
}

#results .bell-bar.is-current {
  fill: var(--results-red) !important;
}

#results .student-avatar.is-red {
  background: var(--results-red) !important;
}

#results .student-avatar.is-hero {
  box-shadow:
    inset 0 0 0 1px rgba(10, 10, 10, 0.06),
    0 8px 18px rgba(var(--results-red-rgb), 0.16);
}

#results .cohort-ratio-card:hover {
  border-color: rgba(var(--results-red-rgb), 0.18);
}

@media (max-width: 820px) {
  #results .results-bento-card--study .cohort-identity-sentence {
    margin-bottom: 16px;
    padding-bottom: 12px;
    font-size: clamp(18px, 4.8vw, 23px);
    line-height: 1.22;
  }
}

@media (max-width: 480px) {
  #results .results-bento-card--study .cohort-identity-sentence {
    font-size: clamp(17px, 5.2vw, 21px);
    line-height: 1.25;
  }

  #results .cohort-identity-sentence__prefix,
  #results .cohort-identity-sentence__emphasis {
    display: inline;
  }
}

#results .results-bento-card--study .cohort-identity-sentence {
  font-size: clamp(16px, 1.38vw, 20px);
  line-height: 1.3;
}

#results .cohort-summary-sentence__lead {
  color: rgba(10, 10, 10, 0.72);
}

#results .cohort-summary-sentence__stat {
  color: var(--results-red);
  font-weight: 760;
  font-variant-numeric: tabular-nums lining-nums;
}

#results .results-bento-card--study .avatar-stage {
  grid-template-rows: auto minmax(0, 1fr);
  gap: 5px;
}

#results .results-bento-card--study .student-belt {
  margin-top: 20px;
}

@media (max-width: 640px) {
  #results .results-bento-card--study .cohort-identity-sentence {
    font-size: clamp(16px, 4.6vw, 19px);
    line-height: 1.32;
  }

  #results .results-bento-card--study .student-belt {
    margin-top: 18px;
  }
}

#results .results-bento-card--study .cohort-identity-sentence--simple {
  color: rgba(10, 10, 10, 0.66);
  font-size: clamp(17px, 1.46vw, 21px);
  font-weight: 620;
  line-height: 1.18;
  letter-spacing: -0.028em;
}

@media (max-width: 640px) {
  #results .results-bento-card--study .cohort-identity-sentence--simple {
    font-size: clamp(17px, 4.8vw, 20px);
  }
}

#results .results-bento-card--study .cohort-identity-sentence--outcomes {
  color: rgba(10, 10, 10, 0.7);
  font-size: clamp(16px, 1.38vw, 20px);
  font-weight: 560;
  line-height: 1.28;
  letter-spacing: -0.024em;
}

#results .cohort-outcome-inline-stat {
  color: var(--results-red);
  font-weight: 780;
  font-variant-numeric: tabular-nums lining-nums;
}

@media (max-width: 640px) {
  #results .results-bento-card--study .cohort-identity-sentence--outcomes {
    font-size: clamp(16px, 4.5vw, 19px);
    line-height: 1.32;
  }
}

#results .results-bento-card--study .benchmark-outcome-title {
  max-width: 18ch;
}

#results .results-bento-card--study .benchmark-outcome-title--accent {
  max-width: 31ch;
}

#results .results-bento-card--study .benchmark-outcome-sentence-block {
  display: block;
  width: 100%;
  margin-bottom: 6px;
}

#results .results-bento-card--study .benchmark-outcome-sentence {
  margin: 0;
  max-width: 24ch;
  color: rgba(10, 10, 10, 0.78);
  font-size: clamp(28px, 2.35vw, 38px);
  font-weight: 620;
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

#results .results-bento-card--study .benchmark-outcome-inline-number {
  color: var(--results-red);
  font-weight: 800;
  font-variant-numeric: tabular-nums lining-nums;
}

@media (max-width: 900px) {
  #results .results-bento-card--study .benchmark-outcome-sentence {
    max-width: 100%;
    font-size: clamp(24px, 4.4vw, 34px);
    line-height: 1.05;
  }
}

@media (max-width: 640px) {
  #results .results-bento-card--study .benchmark-outcome-sentence {
    font-size: clamp(22px, 6vw, 29px);
    line-height: 1.08;
  }
}

#results .results-bento-card--study .cohort-identity-sentence--simple {
  color: rgba(10, 10, 10, 0.66);
  font-size: clamp(17px, 1.46vw, 21px);
  font-weight: 620;
  line-height: 1.18;
  letter-spacing: -0.028em;
}

#results .results-bento-card--study .benchmark-outcome-stack {
  display: grid;
  gap: 6px;
  width: 100%;
  margin-bottom: 6px;
}

#results .results-bento-card--study .benchmark-outcome-row {
  display: grid;
  grid-template-columns: clamp(90px, 8vw, 112px) minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(12px, 1.3vw, 18px);
  width: calc(100% - 18px);
}

#results .results-bento-card--study .benchmark-outcome-row--10 {
  justify-self: start;
}

#results .results-bento-card--study .benchmark-outcome-row--6 {
  justify-self: end;
  transform: translateX(8px);
}

#results .results-bento-card--study .benchmark-outcome-number {
  display: block;
  width: 100%;
  margin: 0 !important;
  text-align: right;
  color: var(--ink);
  font-size: clamp(62px, 5.8vw, 84px) !important;
  font-weight: 680;
  line-height: 0.8;
  letter-spacing: -0.08em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

#results .results-bento-card--study .benchmark-outcome-number--6 {
  color: var(--results-red);
  font-size: clamp(50px, 4.7vw, 68px) !important;
}

#results .results-bento-card--study .benchmark-outcome-copy {
  min-width: 0;
}

#results .results-bento-card--study .benchmark-outcome-title {
  display: block;
  margin: 0;
  max-width: 18ch;
  color: var(--ink);
  font-size: clamp(22px, 1.95vw, 28px);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

#results .results-bento-card--study .benchmark-outcome-title--accent {
  max-width: 18ch;
  color: var(--results-red);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

@media (max-width: 900px) {
  #results .results-bento-card--study .benchmark-outcome-row {
    width: 100%;
    grid-template-columns: clamp(78px, 8.5vw, 100px) minmax(0, 1fr);
  }
  #results .results-bento-card--study .benchmark-outcome-row--6 {
    transform: translateX(4px);
  }
}

@media (max-width: 640px) {
  #results .results-bento-card--study .cohort-identity-sentence--simple {
    font-size: clamp(17px, 4.8vw, 20px);
  }

  #results .results-bento-card--study .benchmark-outcome-stack {
    gap: 12px;
  }

  #results .results-bento-card--study .benchmark-outcome-row {
    width: 100%;
    grid-template-columns: 72px minmax(0, 1fr);
  }

  #results .results-bento-card--study .benchmark-outcome-row--6 {
    justify-self: stretch;
    transform: none;
  }

  #results .results-bento-card--study .benchmark-outcome-number {
    text-align: left;
  }

  #results .results-bento-card--study .benchmark-outcome-title {
    font-size: clamp(20px, 5.2vw, 24px);
  }

  #results .results-bento-card--study .benchmark-outcome-title--accent {
    font-size: clamp(17px, 4.6vw, 21px);
  }
}
