:root {
  --ink: #172126;
  --paper: #f4f1eb;
  --panel: rgba(255, 255, 255, 0.84);
  --forest: #183c3b;
  --mint: #d8e7e2;
  --coral: #c86f4c;
  --gold: #c9a25f;
  --wine: #6e4f4b;
  --line: rgba(23, 33, 38, 0.1);
  --shadow: 0 30px 70px rgba(16, 24, 28, 0.12);
  --shadow-soft: 0 18px 34px rgba(16, 24, 28, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family:
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    "Noto Sans CJK SC",
    system-ui,
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(201, 162, 95, 0.12), transparent 24%),
    radial-gradient(circle at 90% 12%, rgba(24, 60, 59, 0.08), transparent 18%),
    linear-gradient(180deg, #f6f3ee 0%, #f4f1eb 36%, #ffffff 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 48px);
  backdrop-filter: blur(20px);
  background: rgba(246, 243, 238, 0.78);
  border-bottom: 1px solid rgba(23, 33, 38, 0.08);
}

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

.brand-mark {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand-copy {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(23, 33, 38, 0.56);
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links {
  min-width: 0;
  flex: 1 1 auto;
  justify-content: center;
}

.nav-actions {
  min-width: 0;
  flex: 0 1 auto;
  justify-content: flex-end;
}

.nav-links a {
  white-space: nowrap;
}

.lang-switch {
  position: relative;
  display: inline-flex;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 6px 12px 6px 8px;
  border: 1px solid rgba(23, 33, 38, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(16, 24, 28, 0.06);
  color: var(--ink);
}

.lang-trigger-icon,
.lang-caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.lang-trigger-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--forest);
  background: rgba(24, 60, 59, 0.08);
}

.lang-trigger-icon svg,
.lang-caret svg {
  width: 16px;
  height: 16px;
}

.lang-trigger-copy {
  display: grid;
  gap: 2px;
  text-align: start;
}

.lang-current {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
}

.lang-caption {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.1;
  color: rgba(23, 33, 38, 0.52);
}

.lang-caret {
  color: rgba(23, 33, 38, 0.52);
  transition: transform 180ms ease;
}

.lang-switch.open .lang-caret {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-end: 0;
  z-index: 45;
  display: grid;
  gap: 4px;
  min-width: 208px;
  max-height: min(70vh, 420px);
  overflow: auto;
  padding: 8px;
  border: 1px solid rgba(23, 33, 38, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 54px rgba(16, 24, 28, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.lang-menu[hidden] {
  display: none;
}

.lang-switch.open .lang-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-switch:not(.open) .lang-menu {
  display: none;
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 50px;
  padding: 10px 12px;
  border-radius: 8px;
  background: transparent;
  color: rgba(23, 33, 38, 0.72);
}

.lang-option:hover {
  background: rgba(24, 60, 59, 0.05);
}

.lang-option.active {
  color: var(--forest);
  background: rgba(24, 60, 59, 0.08);
}

.lang-option-copy {
  display: grid;
  gap: 3px;
  text-align: start;
}

.lang-option-main {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
}

.lang-option-note {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
  color: rgba(23, 33, 38, 0.48);
}

.lang-option.active .lang-option-note {
  color: rgba(24, 60, 59, 0.72);
}

.lang-option-indicator {
  width: 10px;
  height: 10px;
  border: 1.5px solid rgba(23, 33, 38, 0.2);
  border-radius: 50%;
  background: transparent;
}

.lang-option.active .lang-option-indicator {
  border-color: var(--forest);
  background: var(--forest);
}

.nav-links a {
  padding: 10px 0;
  color: rgba(23, 33, 38, 0.76);
  font-weight: 600;
}

.primary-button,
.ghost-button,
.ghost-icon,
.segment,
.preset-chip,
.slot-button,
.pathway-button {
  border-radius: var(--radius);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease;
}

.primary-button:hover,
.ghost-button:hover,
.ghost-icon:hover,
.segment:hover,
.preset-chip:hover,
.slot-button:hover,
.pathway-button:hover {
  transform: translateY(-1px);
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, #173b3a, #8f6c3c);
  box-shadow: 0 16px 34px rgba(82, 64, 28, 0.24);
}

.primary-button.wide {
  width: 100%;
}

.ghost-button,
.ghost-icon {
  min-height: 46px;
  padding: 0 16px;
  color: var(--ink);
  background: rgba(23, 33, 38, 0.05);
  border: 1px solid rgba(23, 33, 38, 0.06);
}

.ghost-icon {
  min-width: 46px;
  font-size: 28px;
  line-height: 1;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 86px);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(201, 162, 95, 0.16), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(200, 111, 76, 0.14), transparent 16%),
    linear-gradient(110deg, rgba(18, 28, 33, 0.96) 0%, rgba(31, 53, 52, 0.84) 44%, rgba(85, 101, 96, 0.42) 100%);
  transform: scale(1.02);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 500px);
  gap: 52px;
  align-items: end;
  padding: 82px clamp(20px, 4vw, 48px) 56px;
}

.hero-copy {
  max-width: 760px;
  color: #fff;
}

.hero-art {
  width: min(100%, 680px);
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(10, 18, 20, 0.22);
}

.hero-art svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.kicker,
.section-kicker,
.compare-label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker,
.compare-label {
  color: rgba(23, 33, 38, 0.54);
}

.hero h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(48px, 5vw, 84px);
  line-height: 0.98;
  font-weight: 800;
}

.hero-text {
  margin: 22px 0 28px;
  max-width: 38rem;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.82);
}

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

.hero-primary {
  min-width: 172px;
}

.hero-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.hero-assurance {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.signal-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 600;
}

.preset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.preset-chip {
  min-height: 42px;
  padding: 0 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.preset-chip.active {
  color: #fff;
  background: rgba(201, 162, 95, 0.28);
  border-color: rgba(201, 162, 95, 0.42);
}

.finder {
  align-self: stretch;
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 70px rgba(12, 18, 22, 0.18);
  border-radius: var(--radius);
}

.finder-header,
.section-heading,
.planner-head,
.compare-dialog-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.finder-header h2,
.section-heading h2,
.planner-head h2,
.compare-dialog-head h2 {
  margin: 2px 0 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
}

.finder-summary,
.section-note {
  max-width: 24rem;
  margin: 0;
  color: rgba(23, 33, 38, 0.6);
  line-height: 1.75;
}

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

.field-group {
  display: grid;
  gap: 10px;
}

.field-label {
  font-size: 14px;
  font-weight: 700;
}

.segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.segment {
  min-height: 40px;
  padding: 0 14px;
  color: rgba(23, 33, 38, 0.78);
  background: rgba(23, 33, 38, 0.04);
  border: 1px solid rgba(23, 33, 38, 0.04);
}

.segment.active {
  color: #fff;
  background: var(--forest);
}

.compact .segment {
  min-height: 38px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-metrics div {
  display: grid;
  gap: 4px;
}

.hero-metrics strong {
  font-size: 18px;
  color: #fff;
}

.hero-metrics span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.audiences-section,
.faculty-section,
.discover-section,
.pathways-section,
.quality-section,
.architecture-section,
.growth-section,
.flow-section,
.standards-section {
  padding: 72px clamp(20px, 4vw, 44px);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0 clamp(20px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.76);
  border-top: 1px solid rgba(23, 33, 38, 0.06);
  border-bottom: 1px solid rgba(23, 33, 38, 0.06);
}

.proof-item {
  display: grid;
  gap: 8px;
  padding: 22px 18px;
}

.proof-item strong {
  font-size: 18px;
  line-height: 1.35;
}

.proof-item + .proof-item {
  border-left: 1px solid rgba(23, 33, 38, 0.08);
}

.proof-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(23, 33, 38, 0.5);
}

.proof-item strong {
  max-width: 18ch;
  font-size: 18px;
  line-height: 1.4;
}

.section-heading-wide {
  align-items: end;
}

.section-heading-wide .section-note {
  max-width: 30rem;
}

.audiences-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(244, 241, 235, 0.78) 100%);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.audience-panel,
.standard-item {
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 33, 38, 0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.audience-panel h3,
.standard-item h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.18;
}

.audience-panel p,
.standard-item p,
.standards-copy p {
  margin: 0;
  line-height: 1.8;
  color: rgba(23, 33, 38, 0.7);
}

.audience-panel {
  display: grid;
  gap: 16px;
}

.audience-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.audience-points li {
  padding-top: 12px;
  border-top: 1px solid rgba(23, 33, 38, 0.08);
  line-height: 1.7;
  color: rgba(23, 33, 38, 0.78);
}

.standards-section {
  background:
    radial-gradient(circle at 88% 24%, rgba(201, 162, 95, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(244, 241, 235, 0.82) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.quality-section {
  background: #fff;
}

.faculty-section {
  background:
    linear-gradient(180deg, rgba(244, 241, 235, 0.72) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.architecture-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 241, 235, 0.78) 100%);
}

.growth-section {
  background:
    radial-gradient(circle at 12% 14%, rgba(24, 60, 59, 0.08), transparent 22%),
    radial-gradient(circle at 92% 18%, rgba(201, 162, 95, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(244, 241, 235, 0.82) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.standards-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.standards-copy {
  display: grid;
  gap: 16px;
}

.standards-copy h2 {
  margin: 0;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.08;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.standard-item {
  display: grid;
  gap: 12px;
}

.standard-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(216, 231, 226, 0.84);
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.quality-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  margin-top: 28px;
  align-items: start;
}

.faculty-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 22px;
  margin-top: 28px;
}

.faculty-stats,
.architecture-grid {
  display: grid;
  gap: 16px;
}

.faculty-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faculty-stat,
.architecture-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(23, 33, 38, 0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.faculty-stat {
  display: grid;
  gap: 10px;
}

.faculty-stat strong {
  font-size: 32px;
  line-height: 1;
}

.faculty-stat span,
.faculty-copy p,
.architecture-card p {
  color: rgba(23, 33, 38, 0.66);
  line-height: 1.75;
}

.faculty-copy {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 33, 38, 0.06);
  border-radius: var(--radius);
}

.faculty-copy p {
  margin: 0;
}

.faculty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.architecture-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.architecture-card {
  display: grid;
  gap: 14px;
}

.architecture-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.16;
}

.architecture-card p {
  margin: 0;
}

.growth-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.growth-chip,
.growth-panel,
.sync-step {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(23, 33, 38, 0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.growth-chip {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.growth-chip-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(23, 33, 38, 0.48);
}

.growth-chip strong {
  font-size: 18px;
  line-height: 1.45;
}

.growth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.growth-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.teacher-panel {
  background:
    linear-gradient(180deg, rgba(232, 243, 239, 0.9) 0%, rgba(255, 255, 255, 0.98) 24%);
}

.student-panel {
  background:
    linear-gradient(180deg, rgba(251, 242, 234, 0.92) 0%, rgba(255, 255, 255, 0.98) 24%);
}

.growth-panel-head,
.growth-sync-copy {
  display: grid;
  gap: 10px;
}

.growth-panel h3,
.growth-sync h3,
.sync-step h4 {
  margin: 0;
}

.growth-panel h3,
.growth-sync h3 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
}

.growth-copy,
.growth-sync-copy p,
.sync-step p {
  margin: 0;
  line-height: 1.8;
  color: rgba(23, 33, 38, 0.7);
}

.growth-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.growth-points li {
  padding-top: 10px;
  border-top: 1px solid rgba(23, 33, 38, 0.08);
  line-height: 1.72;
  color: rgba(23, 33, 38, 0.78);
}

.growth-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.growth-metric {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(23, 33, 38, 0.06);
}

.growth-metric strong {
  font-size: 26px;
  line-height: 1;
}

.growth-metric span,
.growth-status {
  color: rgba(23, 33, 38, 0.62);
  line-height: 1.65;
}

.growth-form {
  display: grid;
  gap: 14px;
}

.growth-form label,
.growth-choice {
  display: grid;
  gap: 8px;
}

.growth-form span,
.growth-choice > span {
  font-size: 14px;
  font-weight: 700;
}

.planner-form input,
.planner-form textarea,
.growth-form input,
.growth-form textarea,
.growth-form select {
  width: 100%;
  border: 1px solid rgba(23, 33, 38, 0.12);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.92);
}

.growth-form select {
  appearance: none;
  color: var(--ink);
}

.growth-form textarea {
  resize: vertical;
}

.growth-inline-note {
  margin: -2px 0 2px;
  color: rgba(23, 33, 38, 0.62);
  font-size: 14px;
  line-height: 1.65;
}

.check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.check-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(23, 33, 38, 0.05);
  border: 1px solid rgba(23, 33, 38, 0.06);
}

.check-chip input {
  accent-color: var(--forest);
}

.check-chip span {
  font-size: 13px;
  font-weight: 600;
}

.growth-status {
  min-height: 26px;
}

.growth-sync {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(23, 33, 38, 0.07);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.sync-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sync-step {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.sync-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(216, 231, 226, 0.9);
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.sync-step h4 {
  font-size: 20px;
  line-height: 1.25;
}

.growth-board {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.fees-section {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.fees-grid,
.fee-flow {
  display: grid;
  gap: 20px;
}

.payment-stack,
.ops-grid {
  display: grid;
  gap: 20px;
}

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

.fee-flow {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.payment-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.fee-card,
.fee-flow-step {
  border-radius: var(--radius);
  border: 1px solid rgba(23, 33, 38, 0.07);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.94);
}

.fee-card {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.fee-card h3,
.fee-flow-step h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.14;
}

.fee-list,
.fee-steps {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
  color: rgba(23, 33, 38, 0.72);
  line-height: 1.72;
}

.fee-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fee-flow-step {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.fee-flow-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(216, 231, 226, 0.9);
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.fee-flow-step p {
  margin: 10px 0 0;
  color: rgba(23, 33, 38, 0.66);
  line-height: 1.72;
}

.lead-board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.lead-board,
.lead-card,
.lead-empty {
  border-radius: var(--radius);
  border: 1px solid rgba(23, 33, 38, 0.07);
  box-shadow: var(--shadow-soft);
}

.lead-board {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
}

.lead-board-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.lead-board-head h3,
.lead-card h4 {
  margin: 0;
}

.lead-board-head h3 {
  font-size: 28px;
  line-height: 1.14;
}

.lead-board-note {
  margin: 10px 0 0;
  color: rgba(23, 33, 38, 0.62);
  line-height: 1.72;
}

.lead-count,
.lead-status-pill,
.lead-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.lead-count {
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  background: rgba(24, 60, 59, 0.08);
  color: var(--forest);
  font-size: 16px;
  font-weight: 800;
}

.lead-list {
  display: grid;
  gap: 14px;
}

.lead-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: #fff;
}

.lead-card-head {
  display: grid;
  gap: 10px;
}

.lead-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.lead-status-pill {
  min-height: 30px;
  padding: 0 12px;
  background: rgba(216, 231, 226, 0.84);
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
}

.lead-time {
  font-size: 13px;
  color: rgba(23, 33, 38, 0.54);
}

.lead-card h4 {
  font-size: 24px;
  line-height: 1.15;
}

.lead-summary {
  margin: 0;
  color: rgba(23, 33, 38, 0.7);
  line-height: 1.75;
}

.lead-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lead-meta-item {
  display: grid;
  gap: 4px;
  padding: 14px;
  background: rgba(23, 33, 38, 0.04);
  border-radius: var(--radius);
}

.lead-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(23, 33, 38, 0.46);
}

.lead-meta-item strong {
  font-size: 15px;
  line-height: 1.55;
  word-break: break-word;
}

.lead-tags,
.lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lead-pill {
  min-height: 32px;
  padding: 0 10px;
  background: rgba(200, 111, 76, 0.12);
  color: var(--wine);
  font-size: 13px;
  font-weight: 700;
}

.lead-actions button {
  flex: 1 1 180px;
}

.lead-empty {
  padding: 24px;
  background: rgba(255, 255, 255, 0.8);
}

.lead-empty p {
  margin: 0;
  line-height: 1.75;
  color: rgba(23, 33, 38, 0.62);
}

.quality-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.quality-stat,
.quote-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(23, 33, 38, 0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.quality-stat {
  display: grid;
  gap: 10px;
}

.quality-stat strong {
  font-size: 34px;
  line-height: 1;
}

.quality-stat span {
  color: rgba(23, 33, 38, 0.64);
  line-height: 1.7;
}

.quality-quotes {
  display: grid;
  gap: 16px;
}

.quote-card {
  display: grid;
  gap: 18px;
}

.quote-copy {
  margin: 0;
  font-size: 22px;
  line-height: 1.55;
}

.quote-meta {
  display: grid;
  gap: 4px;
}

.quote-meta span {
  color: rgba(23, 33, 38, 0.58);
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
  margin-top: 24px;
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
}

.toolbar-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.toolbar-block span {
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 700;
}

.discover-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
  gap: 28px;
  margin-top: 28px;
  align-items: start;
}

.tutor-grid,
.pathway-grid,
.compare-columns,
.flow-grid {
  display: grid;
  gap: 18px;
}

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

.tutor-card,
.pathway-card,
.flow-step,
.compare-column {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(23, 33, 38, 0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.tutor-card {
  display: grid;
}

.tutor-photo {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.tutor-body {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.tutor-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.tutor-title h3 {
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 700;
}

.tutor-subline,
.meta-inline,
.muted,
.metric-copy span,
.slot-caption,
.empty-state {
  color: rgba(23, 33, 38, 0.62);
}

.match-pill,
.tag,
.slot-button,
.mini-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 13px;
}

.match-pill {
  color: var(--forest);
  background: rgba(216, 231, 226, 0.8);
  font-weight: 800;
}

.tutor-copy {
  margin: 0;
  line-height: 1.75;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.metric-copy {
  display: grid;
  gap: 3px;
}

.metric-copy strong {
  font-size: 18px;
}

.tag-row,
.slot-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: rgba(200, 111, 76, 0.12);
  color: var(--wine);
}

.slot-button {
  color: var(--ink);
  background: rgba(23, 33, 38, 0.05);
  border: 1px solid rgba(23, 33, 38, 0.04);
}

.slot-button.active {
  color: #fff;
  background: var(--forest);
}

.card-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.card-actions button {
  min-height: 46px;
}

.planner-panel {
  min-width: 0;
  position: sticky;
  top: 104px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(232, 226, 214, 0.76) 0%, rgba(255, 255, 255, 0.98) 34%),
    #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(23, 33, 38, 0.08);
  box-shadow: var(--shadow);
}

.planner-panel > * {
  min-width: 0;
}

.planner-head h2,
.planner-selection,
.planner-form,
.planner-form label,
.consent-row span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.planner-selection {
  min-height: 220px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.planner-card {
  display: grid;
  gap: 12px;
}

.planner-card h3,
.pathway-card h3,
.flow-step h3,
.compare-column h3 {
  margin: 0;
  font-size: 24px;
}

.planner-meta,
.planner-form,
.pathway-copy {
  display: grid;
  gap: 14px;
}

.planner-form label {
  display: grid;
  gap: 8px;
}

.planner-form span {
  font-size: 14px;
  font-weight: 700;
}

.planner-form textarea {
  resize: vertical;
}

.pathway-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.pathway-card {
  display: grid;
}

.pathway-image {
  aspect-ratio: 1.3;
  object-fit: cover;
}

.pathway-copy {
  padding: 22px;
}

.pathway-copy p {
  margin: 0;
  line-height: 1.75;
}

.pathway-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-pill {
  background: rgba(24, 60, 59, 0.08);
  color: var(--forest);
}

.pathway-button {
  min-height: 44px;
  color: #fff;
  background: linear-gradient(135deg, #203f46, #345a62);
}

.flow-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.flow-step {
  padding: 24px;
}

.flow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-weight: 800;
  color: var(--forest);
  background: rgba(216, 231, 226, 0.84);
}

.flow-step p {
  margin: 12px 0 0;
  line-height: 1.75;
}

.compare-bar {
  position: fixed;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(18, 28, 33, 0.94);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: 0 26px 60px rgba(16, 24, 28, 0.28);
}

.compare-actions {
  display: flex;
  gap: 10px;
}

.compare-bar .ghost-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.compare-modal {
  width: min(1080px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.compare-modal::backdrop {
  background: rgba(18, 28, 33, 0.4);
}

.compare-dialog {
  display: grid;
  gap: 22px;
  padding: 26px;
  background: #fff;
}

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

.compare-column {
  padding: 22px;
}

.compare-column p {
  margin: 0 0 10px;
  line-height: 1.7;
}

.compare-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.compare-list li {
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(23, 33, 38, 0.05);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 50;
  min-width: 220px;
  max-width: min(80vw, 520px);
  padding: 14px 18px;
  color: #fff;
  text-align: center;
  background: rgba(18, 28, 33, 0.94);
  border-radius: var(--radius);
  transform: translate(-50%, 120px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.toast.visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.hidden {
  display: none;
}

.launch-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 18px clamp(20px, 4vw, 44px) 0;
  padding: 14px 18px;
  color: #173126;
  background: #e8f3ea;
  border: 1px solid rgba(17, 75, 61, 0.18);
  border-radius: var(--radius);
}

.launch-notice div {
  display: grid;
  gap: 3px;
}

.launch-notice span {
  color: rgba(23, 49, 38, 0.76);
  line-height: 1.55;
}

.launch-notice a {
  flex: 0 0 auto;
  color: var(--forest);
  font-weight: 800;
}

.sample-badge {
  display: inline-flex;
  margin-top: 12px;
  padding: 5px 9px;
  color: #255d4d;
  font-size: 13px;
  font-weight: 800;
  background: #e8f3ea;
  border-radius: 4px;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(23, 33, 38, 0.76);
  font-size: 14px;
  line-height: 1.5;
}

.consent-row input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--forest);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(23, 33, 38, 0.7);
  font-size: 14px;
  line-height: 1.45;
}

.form-status[data-state="error"] {
  color: #a33c3c;
}

.form-status[data-state="success"] {
  color: #276948;
}

.turnstile-box:empty {
  display: none;
}

.primary-button:disabled {
  cursor: not-allowed;
  color: rgba(255, 255, 255, 0.82);
  background: #809b91;
  box-shadow: none;
}

.preview-state {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: rgba(23, 33, 38, 0.68);
  max-width: 154px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(23, 33, 38, 0.1);
  border-radius: var(--radius);
}

.payment-disclaimer {
  margin: 2px 0 0;
  padding: 14px 16px;
  color: #733b2d;
  line-height: 1.65;
  background: #fff2e7;
  border: 1px solid rgba(184, 88, 51, 0.2);
  border-radius: var(--radius);
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin: 0 clamp(20px, 4vw, 44px);
  padding: 28px 0 46px;
  color: rgba(23, 33, 38, 0.72);
  border-top: 1px solid rgba(23, 33, 38, 0.1);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  max-width: 680px;
  margin: 8px 0 0;
  line-height: 1.6;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.site-footer a {
  color: var(--forest);
  font-weight: 700;
}

@media (max-width: 1180px) {
  .hero-inner,
  .discover-layout,
  .standards-layout,
  .quality-layout,
  .faculty-layout,
  .growth-sync,
  .fees-grid,
  .fee-flow,
  .payment-stack,
  .ops-grid,
  .lead-board-grid {
    grid-template-columns: 1fr;
  }

  .planner-panel {
    position: static;
  }

  .proof-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quality-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faculty-stats,
  .architecture-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .growth-strip,
  .pathway-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .growth-grid,
  .sync-grid,
  .lead-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1260px) {
  .topbar {
    gap: 16px;
  }

  .brand-copy {
    display: none;
  }

  .nav-links,
  .nav-actions {
    gap: 10px;
  }

  .preview-state {
    max-width: 128px;
  }
}

@media (max-width: 900px) {
  .launch-notice,
  .site-footer {
    margin-right: 18px;
    margin-left: 18px;
  }

  .launch-notice,
  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .nav-links {
    display: none;
  }

  .proof-band,
  .finder-grid,
  .tutor-grid,
  .audience-grid,
  .growth-strip,
  .growth-grid,
  .fees-grid,
  .fee-flow,
  .payment-stack,
  .ops-grid,
  .pathway-grid,
  .flow-grid,
  .sync-grid,
  .lead-board-grid,
  .compare-columns,
  .standards-grid,
  .quality-stats,
  .faculty-stats,
  .architecture-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 48px;
  }

  .hero-signals {
    margin-bottom: 12px;
  }

  .toolbar-block,
  .finder-header,
  .section-heading,
  .compare-dialog-head,
  .section-heading-wide {
    flex-direction: column;
  }

  .hero-art {
    width: 100%;
  }

  .lead-board-head {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .topbar {
    flex-wrap: wrap;
    gap: 14px;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .nav-actions .primary-button {
    min-width: 0;
    max-width: 58%;
    padding-right: 12px;
    padding-left: 12px;
    white-space: normal;
    text-align: center;
  }

  .lang-caption {
    display: none;
  }

  .lang-menu {
    min-width: 182px;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .hero-text {
    font-size: 16px;
  }

  .quote-copy {
    font-size: 18px;
  }

  .proof-band {
    grid-template-columns: 1fr;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .proof-item {
    padding-left: 0;
    padding-right: 0;
  }

  .proof-item + .proof-item {
    border-left: 0;
    border-top: 1px solid rgba(23, 33, 38, 0.08);
  }

  .finder {
    padding: 20px;
  }

  .hero-metrics,
  .growth-metrics,
  .metric-grid,
  .card-actions {
    grid-template-columns: 1fr;
  }

  .compare-bar {
    left: 14px;
    right: 14px;
    bottom: 14px;
    flex-direction: column;
    align-items: stretch;
  }

  .compare-actions {
    width: 100%;
  }

  .compare-actions button {
    flex: 1;
  }
}
