:root {
  --red: #d83d17;
  --orange: #e36d0e;
  --yellow: #eca51a;
  --green: #8fbe19;
  --deep-green: #1d8f49;
  --ink: #191919;
  --muted: #6e6e73;
  --line: #e7e7ea;
  --soft: #f5f5f7;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
  --font-hero: clamp(40px, 5.2vw, 66px);
  --font-section: clamp(28px, 3.2vw, 42px);
  --font-card-title: 21px;
  --font-body: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  height: 72px;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(210, 210, 215, 0.55);
  backdrop-filter: blur(20px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.brand {
  display: flex;
  width: 170px;
  align-items: center;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  gap: 24px;
  color: #303033;
  font-size: 14px;
}

.nav a {
  position: relative;
  opacity: 0.82;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--deep-green);
  opacity: 1;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--green);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-action,
.nav-quiz,
.button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-action {
  padding: 0 18px;
  color: var(--white);
  background: var(--ink);
}

.nav-quiz {
  padding: 0 16px;
  color: var(--deep-green);
  background: #eef8e2;
  border: 1px solid rgba(143, 190, 25, 0.36);
  cursor: pointer;
  font: inherit;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1.14fr) minmax(340px, 0.86fr);
  align-items: center;
  gap: 42px;
  padding: 120px 7vw 64px;
  background:
    radial-gradient(circle at 78% 35%, rgba(143, 190, 25, 0.17), transparent 30%),
    radial-gradient(circle at 62% 70%, rgba(236, 165, 26, 0.14), transparent 28%),
    linear-gradient(180deg, #fbfbfd 0%, #ffffff 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--deep-green);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.visit h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 780;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(40px, 4.8vw, 62px);
  line-height: 1.08;
  text-wrap: balance;
}

.hero-event-feature {
  position: relative;
  display: block;
  width: min(330px, 58vw);
  min-height: 196px;
  margin: 0 0 24px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.hero-event-feature .steve-frame-sequence {
  width: 100%;
  height: 214px;
  filter: drop-shadow(0 22px 46px rgba(0, 0, 0, 0.15));
}

.steve-frame-sequence {
  position: relative;
  display: block;
  overflow: visible;
}

.steve-frame-sequence img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left bottom;
  opacity: 0;
  animation: steve-frame-cycle 3s steps(1, end) infinite;
  pointer-events: none;
}

.steve-frame-sequence img:nth-child(1) {
  animation-delay: 0s;
}

.steve-frame-sequence img:nth-child(2) {
  animation-delay: 1s;
}

.steve-frame-sequence img:nth-child(3) {
  animation-delay: 2s;
}

@keyframes steve-frame-cycle {
  0%,
  33.333% {
    opacity: 1;
  }

  33.334%,
  100% {
    opacity: 0;
  }
}

.hero-event-label {
  position: absolute;
  left: 12px;
  bottom: 10px;
  max-width: calc(100% - 24px);
  padding: 8px 13px;
  color: var(--white);
  background: rgba(25, 25, 25, 0.88);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.2;
  white-space: normal;
}

.hero-text {
  max-width: 660px;
  margin: 28px 0 0;
  color: #3d3d42;
  font-size: 18px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  padding: 0 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.nav-action:hover,
.nav-quiz:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.quiz-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.quiz-modal.is-open {
  display: flex;
}

.quiz-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(10px);
}

.quiz-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: min(86vh, 860px);
  overflow: auto;
  padding: 34px;
  background: #fffdf7;
  border: 1px solid rgba(240, 226, 199, 0.9);
  border-radius: 30px;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.28);
}

.modal-open {
  overflow: hidden;
}

.contact-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-fab.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.contact-fab button {
  width: 92px;
  height: 92px;
  color: var(--white);
  background: linear-gradient(140deg, var(--deep-green), var(--green));
  border: 0;
  border-radius: 50%;
  box-shadow: 0 24px 62px rgba(53, 118, 69, 0.28);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 820;
  line-height: 1.2;
}

.contact-fab span {
  font-size: 12px;
  font-weight: 700;
}

.steve-event-fab {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 72;
}

.steve-event-fab button {
  position: relative;
  display: grid;
  min-width: 154px;
  min-height: 58px;
  align-content: center;
  padding: 8px 20px 8px 54px;
  color: var(--white);
  background: linear-gradient(135deg, #191919 0%, #1d8f49 58%, #8fbe19 130%);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 24px 64px rgba(29, 143, 73, 0.28);
  cursor: pointer;
  font: inherit;
  text-align: left;
  isolation: isolate;
  overflow: hidden;
}

.steve-event-fab button::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 28px;
  height: 28px;
  background: radial-gradient(circle at 36% 34%, #fff 0 14%, #eca51a 15% 46%, #d83d17 47% 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.16);
  transform: translateY(-50%);
}

.steve-event-fab button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -20%;
  width: 54px;
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(18deg);
  animation: event-shine 3.6s ease-in-out infinite;
}

.steve-event-fab span {
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-weight: 760;
  opacity: 0.78;
}

.steve-event-fab strong {
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 1.2;
}

@keyframes event-shine {
  0%,
  52% {
    transform: translateX(0) rotate(18deg);
  }

  78%,
  100% {
    transform: translateX(240px) rotate(18deg);
  }
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.contact-modal.is-open {
  display: flex;
}

.contact-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
}

.contact-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 860px);
  max-height: 88vh;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  overflow: auto;
  padding: 34px;
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.24);
}

.contact-dialog::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 10px;
  background: linear-gradient(180deg, var(--red), var(--orange), var(--yellow), var(--green), var(--deep-green));
  border-radius: 30px 0 0 30px;
}

.contact-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  color: var(--muted);
  background: #f5f5f7;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
}

.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.contact-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: var(--ink);
  background: #fbfbfd;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
}

.contact-form .button,
.contact-location,
.contact-status {
  grid-column: 1 / -1;
}

.contact-location {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: #fff8e8;
  border: 1px solid rgba(240, 226, 199, 0.9);
  border-radius: 16px;
}

.contact-location .button {
  width: 100%;
}

.contact-location p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label.consent-check,
.lead-fields label.consent-check {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
}

.contact-form .consent-check input,
.lead-fields .consent-check input {
  flex: 0 0 auto;
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--deep-green);
}

.consent-check a {
  color: var(--deep-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-status {
  min-height: 20px;
  margin: 0;
  color: var(--deep-green);
  font-size: 14px;
  line-height: 1.5;
}

.steve-event-modal {
  position: fixed;
  inset: 0;
  z-index: 96;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.steve-event-modal.is-open {
  display: flex;
}

.steve-event-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(143, 190, 25, 0.24), transparent 28%),
    radial-gradient(circle at 78% 72%, rgba(216, 61, 23, 0.22), transparent 30%),
    rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(14px);
}

.steve-event-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1160px);
  height: min(760px, 90vh);
  max-height: 90vh;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  overflow: hidden;
  background: #fffdf7;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 34px;
  box-shadow: 0 38px 130px rgba(0, 0, 0, 0.34);
}

.steve-event-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  width: 40px;
  height: 40px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(231, 231, 234, 0.9);
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.steve-event-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  justify-content: flex-end;
  gap: 12px;
  overflow: hidden;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(155deg, rgba(25, 25, 25, 0.18), rgba(25, 25, 25, 0.78)),
    radial-gradient(circle at 20% 18%, rgba(236, 165, 26, 0.52), transparent 26%),
    linear-gradient(150deg, #1d8f49, #191919 70%);
}

.steve-event-stage::before,
.steve-event-stage::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.steve-event-stage::before {
  inset: 12% -18% 36% 26%;
  transform: rotate(-14deg);
}

.steve-event-stage::after {
  left: -18%;
  bottom: -12%;
  width: 52%;
  aspect-ratio: 1;
  background: rgba(143, 190, 25, 0.2);
  filter: blur(2px);
}

.steve-event-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  padding: 9px 15px;
  color: #173f2d;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.steve-event-visual {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 0 0 auto;
  height: 310px;
  margin: 2px 0 -16px;
  place-items: center;
  pointer-events: none;
}

.steve-event-visual .steve-frame-sequence {
  width: min(88%, 500px);
  height: 310px;
  opacity: 0.94;
  filter: drop-shadow(0 24px 54px rgba(0, 0, 0, 0.28)) saturate(1.04);
}

.steve-event-visual .steve-frame-sequence img {
  object-position: center bottom;
}

.steve-event-copy,
.steve-event-meta {
  position: relative;
  z-index: 2;
}

.steve-event-copy {
  max-width: 520px;
}

.steve-event-logo {
  display: block;
  width: min(170px, 48%);
  height: auto;
  margin: 0 0 8px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.steve-event-copy h2 {
  margin: 0;
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 1;
  text-wrap: balance;
}

.steve-event-copy p:not(.eyebrow) {
  max-width: 470px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.5;
}

.steve-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.steve-event-meta span {
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 760;
}

.steve-event-panel {
  display: flex;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  padding: 28px 34px 24px;
}

.steve-event-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.15;
}

.steve-event-panel > .eyebrow {
  margin-bottom: 8px;
}

.steve-event-points {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0 14px;
  padding: 0;
  list-style: none;
}

.steve-event-points li {
  padding: 6px 10px;
  color: var(--muted);
  background: #f4f8ec;
  border: 1px solid rgba(143, 190, 25, 0.18);
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.3;
}

.steve-event-qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 14px;
}

.steve-event-qr-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 10px;
  background: #f8fbf1;
  border: 1px solid rgba(143, 190, 25, 0.24);
  border-radius: 18px;
}

.steve-event-qr-card img {
  display: block;
  width: 92px;
  height: 92px;
  object-fit: contain;
  background: var(--white);
  border-radius: 12px;
}

.steve-event-qr-card figcaption {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.steve-event-qr-card strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
}

.steve-event-qr-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.steve-event-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 12px;
}

.steve-event-form label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.steve-event-form input,
.steve-event-form select,
.steve-event-form textarea {
  width: 100%;
  min-height: 38px;
  padding: 0 12px;
  color: var(--ink);
  background: #fbfbfd;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
}

.steve-event-form textarea {
  min-height: 58px;
  padding-top: 10px;
  resize: vertical;
}

.steve-event-form .full {
  grid-column: 1 / -1;
}

.steve-event-form .consent-check {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.steve-event-form .consent-check input {
  flex: 0 0 auto;
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--deep-green);
}

.steve-event-form .button {
  min-height: 40px;
}

.steve-event-status {
  min-height: 18px;
  margin: 0;
  color: var(--deep-green);
  font-size: 12px;
  line-height: 1.35;
}

.quiz-close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
}

.quiz-intro h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.12;
}

.quiz-intro p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

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

.age-stage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  border: 0;
}

.age-stage legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.age-stage label {
  display: grid;
  gap: 6px;
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(210, 210, 215, 0.75);
  border-radius: 18px;
  cursor: pointer;
}

.age-stage input {
  width: 18px;
  height: 18px;
}

.age-stage strong {
  color: var(--ink);
  font-size: 20px;
}

.age-stage span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.age-stage label:has(input:checked),
.age-stage label.is-selected {
  background: #f1f8de;
  border-color: rgba(143, 190, 25, 0.56);
}

.quiz-questions fieldset {
  margin: 0;
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(210, 210, 215, 0.75);
  border-radius: 20px;
}

.quiz-questions legend {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 760;
  line-height: 1.45;
}

.quiz-questions label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 10px;
  color: #3d3d42;
  font-size: 15px;
  line-height: 1.42;
}

.quiz-questions input {
  margin-top: 3px;
}

.quiz-submit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 22px;
}

.quiz-submit-row span,
.quiz-note {
  color: var(--muted);
  font-size: 14px;
}

.quiz-lead-form {
  margin-top: 28px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(143, 190, 25, 0.28);
  border-radius: 24px;
}

.quiz-lead-intro {
  margin-bottom: 20px;
  padding: 16px 18px;
  background: #f8fbf1;
  border: 1px solid rgba(143, 190, 25, 0.22);
  border-radius: 18px;
}

.quiz-lead-intro strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
}

.quiz-lead-intro span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.quiz-result {
  margin-top: 20px;
  padding: 18px;
  background: #f1f8de;
  border-radius: 18px;
  color: #2b3a16;
  font-size: 17px;
  line-height: 1.58;
}

.quiz-result strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
}

.quiz-result small {
  display: block;
  margin-top: 14px;
  color: rgba(43, 58, 22, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.lead-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.lead-fields label,
.assignment-extra label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.lead-fields input,
.lead-fields select,
.assignment-extra select {
  min-height: 42px;
  padding: 0 14px;
  color: var(--ink);
  background: #fbfbfd;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
}

.assignment-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.assignment-options legend {
  grid-column: 1 / -1;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.assignment-options label {
  display: grid;
  gap: 7px;
  padding: 18px;
  background: #fbfbfd;
  border: 1px solid var(--line);
  border-radius: 18px;
  cursor: pointer;
}

.assignment-options strong {
  color: var(--ink);
  font-size: 16px;
}

.assignment-options span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.assignment-options label:has(input:checked),
.assignment-options label.is-selected {
  background: #f1f8de;
  border-color: rgba(143, 190, 25, 0.56);
}

.assignment-extra {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  padding: 18px;
  background: #fff8e8;
  border: 1px solid rgba(240, 226, 199, 0.9);
  border-radius: 18px;
}

.assignment-status {
  margin: 0;
  color: #4d4d52;
  font-size: 14px;
  line-height: 1.5;
}

.button.primary {
  color: var(--white);
  background: var(--ink);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.hero-stage {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.hero-scene-frame {
  position: relative;
  width: min(720px, 100%);
  min-height: 520px;
}

.language-orbit {
  position: relative;
  z-index: 3;
  width: min(430px, 76vw);
  aspect-ratio: 1;
  display: block;
  border-radius: 50%;
  background:
    linear-gradient(90deg, rgba(29, 143, 73, 0.12), rgba(227, 109, 14, 0.11) 52%, rgba(236, 165, 26, 0.06)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.96) 0 31%, transparent 32%),
    radial-gradient(circle at center, rgba(143, 190, 25, 0.12), transparent 62%);
  transition: transform 0.22s ease;
}

.hero-photo-card {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 1;
  width: min(68%, 520px);
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(210, 210, 215, 0.72);
  border-radius: 38px;
  box-shadow: 0 30px 88px rgba(29, 143, 73, 0.14);
  transition: transform 0.22s ease;
  transform: translateY(-50%);
  opacity: 0.34;
  filter: saturate(0.86);
}

.hero-stage.has-scene .hero-photo-card {
  opacity: 0.82;
  filter: saturate(1);
}

.hero-visual {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center 42%;
  transition: opacity 0.18s ease, transform 0.36s ease, object-position 0.24s ease;
}

.hero-photo-card.is-changing .hero-visual {
  opacity: 0.42;
  transform: scale(1.015);
}

.hero-scene-caption {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 5;
  display: grid;
  gap: 3px;
  width: min(360px, 72vw);
  padding: 12px 16px;
  color: var(--ink);
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(231, 231, 234, 0.82);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 5% 22% 7% 0;
  z-index: 2;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.82) 42%, rgba(255, 255, 255, 0.28) 68%, transparent 78%);
  pointer-events: none;
}

.hero-scene-caption span {
  color: var(--deep-green);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
}

.hero-scene-caption strong {
  font-size: 17px;
  line-height: 1.2;
}

.hero-scene-caption small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.center-card {
  position: absolute;
  left: 50%;
  top: 46%;
  z-index: 2;
  display: flex;
  width: 224px;
  min-height: 144px;
  transform: translate(-50%, -50%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(231, 231, 234, 0.75);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(18px);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.center-card:hover,
.center-card:focus-visible {
  transform: translate(-50%, -53%);
  box-shadow: 0 24px 62px rgba(29, 143, 73, 0.12);
}

.center-card img {
  width: 132px;
  max-width: 100%;
  margin: 0;
}

.center-card strong {
  font-size: 23px;
  line-height: 1.08;
}

.center-card span {
  display: block;
  max-width: 172px;
  margin-top: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.bubble {
  position: absolute;
  z-index: 3;
  display: flex;
  width: 116px;
  height: 116px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.11);
  border: 0;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  outline: 0;
}

.bubble.primary-skill {
  width: 140px;
  height: 140px;
  z-index: 4;
  gap: 5px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.bubble.advanced-skill {
  width: 92px;
  height: 92px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.74);
  opacity: 0.86;
}

.bubble.red {
  left: 25%;
  top: 4%;
  transform: translate(-50%, -6%);
}

.bubble.orange {
  right: 13%;
  top: 14%;
  transform: translate(18%, -6%);
}

.bubble.yellow {
  right: 8%;
  bottom: 24%;
  transform: translate(8%, 0);
}

.bubble.green {
  left: 13%;
  bottom: 23%;
  transform: translate(-8%, 0);
}

.bubble strong {
  font-size: 44px;
  line-height: 1;
}

.bubble.primary-skill strong {
  font-size: 52px;
}

.bubble.advanced-skill strong {
  font-size: 32px;
}

.bubble small {
  font-size: 12px;
  font-weight: 760;
  line-height: 1.2;
  opacity: 0.86;
}

.bubble em {
  display: block;
  min-width: 38px;
  margin-top: 2px;
  padding: 3px 8px;
  color: inherit;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 10px;
  font-style: normal;
  line-height: 1;
  opacity: 0.88;
}

.bubble.advanced-skill em {
  background: rgba(255, 255, 255, 0.66);
  color: var(--muted);
}

.bubble:hover,
.bubble:focus-visible,
.bubble.active {
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.18);
}

.bubble.red:hover,
.bubble.red:focus-visible,
.bubble.red.active {
  transform: translate(-50%, -10%) scale(1.04);
}

.bubble.red strong {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: 0;
}

.bubble.orange:hover,
.bubble.orange:focus-visible,
.bubble.orange.active {
  transform: translate(18%, -10%) scale(1.04);
}

.bubble.yellow:hover,
.bubble.yellow:focus-visible,
.bubble.yellow.active {
  transform: translate(8%, 0) scale(1.06);
}

.bubble.green:hover,
.bubble.green:focus-visible,
.bubble.green.active {
  transform: translate(-8%, 0) scale(1.06);
}

.bubble.active::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  box-shadow: 0 0 0 2px color-mix(in srgb, currentColor, transparent 72%);
  pointer-events: none;
}

.bubble.red {
  background: var(--red);
}

.bubble.orange {
  background: var(--orange);
}

.bubble.yellow {
  background: rgba(255, 248, 232, 0.94);
  color: #8f6407;
}

.bubble.green {
  background: rgba(241, 248, 222, 0.95);
  color: var(--deep-green);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics div {
  min-height: 148px;
  padding: 30px;
  background: var(--white);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.metrics div:hover {
  z-index: 1;
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.08);
}

.metrics div:nth-child(1) strong {
  color: var(--red);
}

.metrics div:nth-child(2) strong {
  color: var(--orange);
}

.metrics div:nth-child(3) strong {
  color: var(--green);
}

.metrics div:nth-child(4) strong {
  color: var(--deep-green);
}

.metrics strong {
  display: block;
  font-size: 42px;
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
}

.section {
  padding: 96px 7vw;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 52px;
}

.section-note {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.section h2,
.visit h2 {
  max-width: 860px;
  font-size: var(--font-section);
  line-height: 1.16;
}

.story {
  background: var(--white);
}

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

.story-copy {
  color: #3d3d42;
  font-size: 18px;
  line-height: 1.75;
}

.story-copy p {
  margin: 0;
}

.story-copy p + p {
  margin-top: 22px;
}

.story-simple {
  max-width: 920px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(210, 210, 215, 0.76);
  border-radius: 28px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.045);
}

.story-simple p {
  margin: 0;
  color: #3f3f45;
  font-size: 22px;
  line-height: 1.72;
}

.story-years {
  position: relative;
  display: grid;
  gap: 0;
  padding: 10px 0 10px 34px;
}

.story-years::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 22px;
  bottom: 22px;
  width: 3px;
  background: linear-gradient(180deg, var(--red), var(--orange), var(--green), var(--deep-green));
  border-radius: 999px;
}

.story-years article {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0 20px 18px;
  transition: transform 0.22s ease;
}

.story-years article::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 30px;
  width: 17px;
  height: 17px;
  background: var(--white);
  border: 4px solid var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(227, 109, 14, 0.1);
}

.story-years article:nth-child(1)::before {
  border-color: var(--red);
  box-shadow: 0 0 0 8px rgba(216, 61, 23, 0.1);
}

.story-years article:nth-child(3)::before,
.story-years article:nth-child(4)::before {
  border-color: var(--green);
  box-shadow: 0 0 0 8px rgba(143, 190, 25, 0.12);
}

.story-years article:nth-child(5)::before,
.story-years article:nth-child(6)::before {
  border-color: var(--deep-green);
  box-shadow: 0 0 0 8px rgba(29, 143, 73, 0.12);
}

.story-years article:hover {
  transform: translateX(6px);
}

.story-years time {
  color: var(--orange);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}

.story-years strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.story-years p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.brand-ecosystem {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.brand-ecosystem span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 16px;
  color: #3d3d42;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.ecosystem-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(0, 0.88fr) minmax(0, 0.88fr);
  gap: 16px;
  margin-top: 42px;
}

.ecosystem-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: #ffffff;
  border: 1px solid rgba(210, 210, 215, 0.74);
  border-radius: 28px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.055);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.ecosystem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(143, 190, 25, 0.38);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.09);
}

.ecosystem-card.featured {
  background:
    radial-gradient(circle at 18% 12%, rgba(143, 190, 25, 0.18), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(236, 165, 26, 0.16), transparent 25%),
    #fffdf7;
}

.ecosystem-card img {
  width: 100%;
  max-width: 230px;
  height: 84px;
  object-fit: contain;
  object-position: left center;
}

.ecosystem-card.featured img {
  max-width: 310px;
  height: 100px;
}

.branch-mark {
  display: inline-flex;
  width: fit-content;
  min-height: 84px;
  align-items: center;
  padding: 0 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--orange) 44%, var(--green));
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(227, 109, 14, 0.16);
  font-size: 30px;
  font-weight: 820;
}

.ecosystem-card span {
  display: inline-flex;
  margin-top: 30px;
  color: var(--deep-green);
  font-size: 13px;
  font-weight: 800;
}

.ecosystem-card h3 {
  margin: 10px 0 12px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.16;
}

.ecosystem-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.ecosystem-more {
  display: none;
  margin-top: 14px !important;
}

.ecosystem-card.expanded .ecosystem-more {
  display: block;
}

.text-toggle {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-top: 18px;
  padding: 0 14px;
  color: var(--deep-green);
  background: #eef8e2;
  border: 1px solid rgba(143, 190, 25, 0.35);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 760;
}

.ecosystem-card.featured h3 {
  font-size: 34px;
}

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

.statement {
  min-height: 330px;
  padding: 38px;
  border-radius: 26px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.statement:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.14);
}

.statement span {
  display: inline-flex;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 700;
}

.statement h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.12;
}

.statement p {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.65;
}

.statement.calm {
  background: linear-gradient(140deg, var(--deep-green), #55a744);
}

.statement.contrast {
  background: linear-gradient(140deg, var(--red), var(--orange));
}

.philosophy {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: 56px;
  background:
    radial-gradient(circle at 18% 18%, rgba(216, 61, 23, 0.12), transparent 28%),
    radial-gradient(circle at 72% 72%, rgba(143, 190, 25, 0.18), transparent 30%),
    #fff8e8;
}

.large-line {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(30px, 4.2vw, 50px);
  font-weight: 800;
  line-height: 1.16;
}

.philosophy-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(240, 226, 199, 0.86);
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(227, 109, 14, 0.1);
  backdrop-filter: blur(16px);
}

.philosophy-card p {
  margin: 0;
  color: #3d3d42;
  font-size: 18px;
  line-height: 1.7;
}

.philosophy-card span {
  display: block;
  margin-top: 20px;
  color: var(--deep-green);
  font-size: 16px;
  font-weight: 760;
}

.method {
  background:
    linear-gradient(180deg, #fbfbfd 0%, #fff9ed 100%);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.method-grid article {
  min-height: 318px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(210, 210, 215, 0.75);
  border-radius: 28px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.045);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.method-grid article:hover,
.method-grid article.active {
  transform: translateY(-7px);
  border-color: rgba(143, 190, 25, 0.46);
  box-shadow: 0 28px 72px rgba(29, 143, 73, 0.12);
}

.method-grid article.active {
  background: #fffdf4;
}

.method-grid span {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 18px;
  font-size: 30px;
  font-weight: 800;
}

.method-grid article:nth-child(2) span {
  background: var(--vici-color, var(--yellow));
}

.method-grid article:nth-child(3) span {
  background: var(--vici-color, var(--green));
}

.method-grid article:nth-child(4) span {
  background: var(--vici-color, var(--deep-green));
}

.vici-process-card {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  --vici-color: var(--orange);
}

.vici-process-card::after {
  content: "";
  position: absolute;
  inset: auto 0 -42px auto;
  width: 138px;
  height: 138px;
  background: currentColor;
  border-radius: 50%;
  opacity: 0.07;
}

.vici-process-card.value {
  --vici-color: #1f6ba5;
}

.vici-process-card.interact {
  --vici-color: #2f8b49;
}

.vici-process-card.connect {
  --vici-color: #e97808;
}

.vici-process-card.apply {
  --vici-color: #6d4aa2;
}

.vici-process-card.value span,
.vici-process-card.interact span,
.vici-process-card.connect span,
.vici-process-card.apply span {
  color: var(--white);
  background: var(--vici-color);
  border-radius: 50%;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--vici-color), transparent 68%);
}

.vici-icon {
  position: relative;
  width: 86px;
  height: 70px;
  margin-top: 20px;
  color: var(--vici-color);
  opacity: 0.94;
  transform: scale(0.88);
  transform-origin: left top;
}

.vici-icon::before,
.vici-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.vici-icon.teach::before {
  left: 34px;
  top: 7px;
  width: 58px;
  height: 38px;
  border: 5px solid currentColor;
  border-radius: 4px;
}

.vici-icon.teach::after {
  left: 7px;
  bottom: 6px;
  width: 72px;
  height: 34px;
  background:
    radial-gradient(circle at 13px 12px, currentColor 0 10px, transparent 11px),
    radial-gradient(circle at 45px 12px, currentColor 0 10px, transparent 11px),
    linear-gradient(currentColor 0 0) 2px 24px / 22px 10px no-repeat,
    linear-gradient(currentColor 0 0) 34px 24px / 22px 10px no-repeat;
}

.vici-icon.interact::before {
  left: 6px;
  top: 18px;
  width: 92px;
  height: 34px;
  background:
    radial-gradient(ellipse at center, currentColor 0 55%, transparent 57%) 0 0 / 30px 22px no-repeat,
    radial-gradient(ellipse at center, currentColor 0 55%, transparent 57%) 34px 0 / 30px 22px no-repeat,
    radial-gradient(ellipse at center, currentColor 0 55%, transparent 57%) 68px 0 / 30px 22px no-repeat;
}

.vici-icon.interact::after {
  left: 12px;
  bottom: 4px;
  width: 84px;
  height: 38px;
  background:
    radial-gradient(circle at 12px 8px, currentColor 0 9px, transparent 10px),
    radial-gradient(circle at 42px 8px, currentColor 0 9px, transparent 10px),
    radial-gradient(circle at 72px 8px, currentColor 0 9px, transparent 10px),
    linear-gradient(currentColor 0 0) 4px 22px / 18px 16px no-repeat,
    linear-gradient(currentColor 0 0) 34px 22px / 18px 16px no-repeat,
    linear-gradient(currentColor 0 0) 64px 22px / 18px 16px no-repeat;
}

.vici-icon.connect::before {
  left: 22px;
  top: 20px;
  width: 54px;
  height: 54px;
  background:
    radial-gradient(circle at 50% 46%, transparent 0 13px, currentColor 14px 17px, transparent 18px),
    radial-gradient(circle at 36% 38%, currentColor 0 5px, transparent 6px),
    radial-gradient(circle at 56% 38%, currentColor 0 5px, transparent 6px),
    linear-gradient(currentColor 0 0) 34px 46px / 5px 18px no-repeat;
  border-radius: 50% 50% 46% 46%;
}

.vici-icon.connect::after {
  left: 7px;
  top: 12px;
  width: 90px;
  height: 70px;
  background:
    radial-gradient(circle at 10px 14px, transparent 0 8px, currentColor 9px 12px, transparent 13px),
    radial-gradient(circle at 74px 6px, transparent 0 8px, currentColor 9px 12px, transparent 13px),
    radial-gradient(circle at 86px 44px, transparent 0 8px, currentColor 9px 12px, transparent 13px),
    linear-gradient(40deg, transparent 0 45%, currentColor 46% 52%, transparent 53%) 14px 14px / 42px 34px no-repeat,
    linear-gradient(100deg, transparent 0 45%, currentColor 46% 52%, transparent 53%) 54px 12px / 38px 36px no-repeat;
}

.vici-icon.apply::before {
  left: 22px;
  top: 6px;
  width: 62px;
  height: 76px;
  border: 6px solid currentColor;
  border-radius: 8px;
}

.vici-icon.apply::after {
  left: 38px;
  top: 24px;
  width: 56px;
  height: 56px;
  background:
    linear-gradient(135deg, transparent 0 42%, var(--white) 43% 53%, transparent 54%) 18px 20px / 26px 18px no-repeat,
    radial-gradient(circle at 34px 34px, currentColor 0 27px, transparent 28px),
    linear-gradient(currentColor 0 0) 0 4px / 36px 5px no-repeat,
    linear-gradient(currentColor 0 0) 0 24px / 36px 5px no-repeat;
  border-radius: 50%;
}

.method-grid h3 {
  margin: 16px 0 10px;
  color: var(--ink);
  font-size: var(--font-card-title);
  line-height: 1.18;
}

.method-grid h3 em,
.vici-cards h2 em {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.74em;
  font-style: normal;
  font-weight: 720;
}

.method-grid p {
  margin: 0;
  color: var(--muted);
  font-size: var(--font-body);
  line-height: 1.58;
}

.acquisition {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.path-card {
  padding: 36px;
  border-radius: 28px;
}

.path-card.good {
  background: linear-gradient(135deg, #f1f8de, #e7f6f0);
}

.path-card.muted {
  background: linear-gradient(135deg, #fff2d8, #ffe3d9);
}

.path-card p {
  margin: 0 0 30px;
  color: var(--muted);
  font-weight: 700;
}

.path-card ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.path-card li {
  display: grid;
  min-height: 102px;
  place-items: center;
  border-radius: 24px;
  background: var(--white);
  font-size: clamp(21px, 2.4vw, 30px);
  font-weight: 780;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.path-card li:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.path-card.good li {
  color: var(--deep-green);
}

.path-card.muted li {
  color: var(--red);
}

.growth {
  background: #fbfbfd;
}

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

.step {
  display: block;
  min-height: 240px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.04);
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.08);
}

.step.active {
  color: var(--white);
  background: linear-gradient(140deg, var(--deep-green), var(--green));
  border-color: transparent;
}

.step:nth-child(2) span {
  color: var(--orange);
}

.step:nth-child(3) span {
  color: var(--yellow);
}

.step:nth-child(4) span {
  color: var(--red);
}

.step:nth-child(5) span {
  color: var(--deep-green);
}

.step.active span {
  color: var(--white);
}

.step span {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.step strong {
  display: block;
  margin-top: 48px;
  font-size: 23px;
}

.step p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.step.active p {
  color: rgba(255, 255, 255, 0.72);
}

.outcome-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-left: 0;
}

.outcomes-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.93fr) minmax(0, 1.07fr);
  gap: 22px;
  align-items: stretch;
}

.outcome-visual {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  background: #e9f6ef;
  border-radius: 28px;
  box-shadow: 0 24px 72px rgba(29, 143, 73, 0.12);
}

.outcome-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 0.36s ease, opacity 0.24s ease;
}

.outcome-visual:hover img {
  transform: scale(1.035);
}

.outcome-visual::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  width: min(30%, 190px);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.46) 68%, rgba(255, 255, 255, 0.9));
  pointer-events: none;
}

.outcome-visual::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(16, 25, 19, 0.84));
  pointer-events: none;
}

.outcome-visual-copy {
  position: absolute;
  left: 22px;
  right: auto;
  bottom: 84px;
  z-index: 2;
  color: var(--white);
  width: min(560px, calc(100% - 44px));
}

.outcome-visual-copy span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #d7ff74;
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.outcome-visual-copy strong {
  display: block;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.16;
}

.outcome-visual-copy p {
  max-width: 520px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.58;
}

.outcome-switcher {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.outcome-switcher button {
  min-width: 0;
  min-height: 42px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 760;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.outcome-switcher button:hover,
.outcome-switcher button.active {
  color: var(--ink);
  background: var(--white);
  transform: translateY(-1px);
}

.outcome-grid span {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 116px;
  align-items: center;
  padding: 26px;
  background: var(--soft);
  border-radius: 26px;
  font-size: 21px;
  font-weight: 720;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.outcome-grid span:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.outcome-grid span:nth-child(1) {
  background: #f1f8de;
}

.outcome-grid span:nth-child(2) {
  background: #fff0d6;
}

.outcome-grid span:nth-child(3) {
  background: #e9f6ef;
}

.outcome-grid span:nth-child(4) {
  background: #ffe6dc;
}

.outcome-grid span:nth-child(5) {
  background: #f4f0ff;
}

.outcome-grid span:nth-child(6) {
  background: #f5f5f7;
}

.faculty {
  background:
    radial-gradient(circle at 14% 18%, rgba(143, 190, 25, 0.14), transparent 24%),
    #fbfbfd;
}

.study-tour {
  background: #fbfbfd;
}

.study-showcase {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr 0.78fr;
  gap: 18px;
  align-items: stretch;
}

.study-copy,
.study-showcase figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(210, 210, 215, 0.76);
  border-radius: 28px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.045);
}

.study-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(143, 190, 25, 0.14), rgba(255, 255, 255, 0.96)),
    var(--white);
}

.study-copy span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--deep-green);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.study-copy h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.16;
}

.study-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.study-copy .button {
  width: fit-content;
  margin-top: 24px;
}

.study-showcase figure {
  position: relative;
  min-height: 300px;
}

.study-showcase .wide {
  grid-row: span 2;
}

.study-showcase img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.study-showcase .wide img {
  object-position: 54% center;
}

.study-showcase figure:not(.wide):nth-of-type(2) img {
  object-position: 50% center;
}

.study-showcase figure:not(.wide):nth-of-type(3) img {
  object-position: 54% center;
}

.study-showcase figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(25, 25, 25, 0.66);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 760;
  backdrop-filter: blur(12px);
}

.public-benefit {
  background: #fff8e8;
}

.benefit-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.benefit-hero,
.benefit-gallery figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 24px 68px rgba(227, 109, 14, 0.12);
}

.benefit-hero img,
.benefit-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-hero {
  min-height: 430px;
}

.benefit-hero figcaption,
.benefit-gallery figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 36px);
  padding: 9px 13px;
  color: var(--white);
  background: rgba(25, 25, 25, 0.68);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.35;
  backdrop-filter: blur(12px);
}

.benefit-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(236, 165, 26, 0.18), rgba(255, 255, 255, 0.95)),
    var(--white);
  border: 1px solid rgba(240, 226, 199, 0.9);
  border-radius: 28px;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.06);
}

.benefit-copy span,
.benefit-actions span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--deep-green);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.benefit-copy h3 {
  max-width: 720px;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.12;
}

.benefit-copy p {
  max-width: 760px;
  margin: 0;
  color: #55555a;
  font-size: 18px;
  line-height: 1.72;
}

.benefit-copy .button {
  width: fit-content;
  margin-top: 28px;
}

.benefit-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.benefit-actions article {
  min-width: 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(240, 226, 199, 0.92);
  border-radius: 24px;
  box-shadow: 0 16px 46px rgba(227, 109, 14, 0.07);
}

.benefit-actions h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.18;
}

.benefit-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.benefit-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.benefit-gallery figure {
  min-height: 230px;
  border-radius: 24px;
}

.benefit-gallery .wide {
  grid-column: span 2;
}

.feature-panel {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(143, 190, 25, 0.14), rgba(255, 255, 255, 0.96)),
    var(--white);
  border: 1px solid rgba(210, 210, 215, 0.76);
  border-radius: 30px;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.06);
}

.feature-panel.warm {
  background:
    linear-gradient(135deg, rgba(236, 165, 26, 0.18), rgba(255, 255, 255, 0.95)),
    var(--white);
}

.feature-panel span,
.news-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--deep-green);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.feature-panel h3,
.news-card h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
}

.feature-panel p,
.news-card p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.faculty-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: 18px;
}

.faculty-card,
.case-grid article,
.case-card,
.proof-wall article,
.proof-card,
.campus-table article,
.hangzhou-address-grid article {
  display: block;
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(210, 210, 215, 0.76);
  border-radius: 28px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.045);
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.faculty-card:hover,
.case-grid article:hover,
.case-card:hover,
.proof-wall article:hover,
.proof-card:hover,
.campus-table article:hover,
.hangzhou-address-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.08);
}

.faculty-card.lead {
  color: var(--white);
  background: linear-gradient(140deg, var(--deep-green), var(--green));
}

.faculty-card span,
.case-grid span,
.proof-wall span,
.proof-card span,
.campus-table span,
.hangzhou-address-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.faculty-card.lead span,
.faculty-card.lead h3,
.faculty-card.lead p {
  color: var(--white);
}

.faculty-card h3,
.case-grid h3,
.case-card h3,
.campus-table h3,
.hangzhou-address-grid h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: var(--font-card-title);
  line-height: 1.18;
}

.faculty-card p,
.case-grid p,
.case-card p,
.campus-table p,
.hangzhou-address-grid p {
  margin: 0;
  color: var(--muted);
  font-size: var(--font-body);
  line-height: 1.58;
}

.cases {
  background: #fff8e8;
}

.cases .section-heading {
  max-width: 980px;
}

.cases .section-heading h2 {
  max-width: 980px;
  font-size: clamp(26px, 2.55vw, 36px);
  line-height: 1.14;
}

.news {
  background: #fbfbfd;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.news-card {
  min-width: 0;
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(210, 210, 215, 0.76);
  border-radius: 28px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.045);
}

.news-card img {
  display: block;
  width: 100%;
  height: 218px;
  margin: -10px 0 22px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 20px;
}

.news-card.lead img {
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.news-card:nth-child(2) img {
  object-fit: contain;
  padding: 16px;
  background: #e8f8dd;
}

.news-card.lead {
  color: var(--white);
  background: linear-gradient(140deg, var(--deep-green), var(--green));
}

.news-card.lead span,
.news-card.lead h3,
.news-card.lead p {
  color: var(--white);
}

.news-card.lead .button {
  margin-top: 24px;
  color: var(--deep-green);
  background: var(--white);
}

.image-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 26px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(240, 226, 199, 0.9);
  border-radius: 30px;
  box-shadow: 0 24px 68px rgba(227, 109, 14, 0.1);
}

.image-story figure {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 4 / 3;
  background: var(--white);
}

.image-story img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-story h3 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.16;
}

.image-story p:not(.eyebrow) {
  max-width: 700px;
  margin: 18px 0 0;
  color: #4d4d52;
  font-size: 18px;
  line-height: 1.68;
}

.case-grid,
.proof-wall,
.campus-table,
.hangzhou-address-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-grid article:nth-child(1) {
  background: #f1f8de;
}

.case-grid article:nth-child(2) {
  background: #e9f6ef;
}

.case-grid > :nth-child(3) {
  background: #fff0d6;
}

.case-grid article img,
.case-card img,
.proof-wall article img {
  display: block;
  width: 100%;
  height: 210px;
  margin: -12px 0 24px;
  object-fit: cover;
  border-radius: 20px;
}

.case-grid article:first-child img {
  object-position: center 22%;
}

.case-grid article:nth-child(2) img {
  object-position: center 38%;
}

.proof-wall article img {
  height: 260px;
  margin: -10px 0 24px;
}

.proof-card img {
  display: block;
  width: 100%;
  height: 260px;
  margin: -10px 0 24px;
  object-fit: cover;
  border-radius: 20px;
}

.proof-wall article:first-child img {
  object-position: center 18%;
}

.proof-card:first-child img {
  object-position: center 18%;
}

.result-wall span {
  display: inline-flex;
  margin-top: 18px;
  color: var(--deep-green);
  font-size: 13px;
  font-weight: 800;
}

.exam-results-section {
  background: #fff8e8;
  scroll-margin-top: 92px;
}

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

.result-wall article {
  min-width: 0;
  padding: 14px;
  background: var(--white);
  border: 1px solid rgba(240, 226, 199, 0.9);
  border-radius: 24px;
  box-shadow: 0 18px 52px rgba(227, 109, 14, 0.08);
}

.result-wall img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 16px;
}

.result-note {
  max-width: 820px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.inline-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--deep-green);
  font-size: 16px;
  font-weight: 760;
}

.consult-form {
  display: grid;
  min-width: min(100%, 520px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 26px;
}

.consult-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.consult-form select {
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
}

.consult-form .button {
  width: 100%;
}

.consult-status {
  grid-column: 1 / -1;
  min-height: 0;
  margin: 0;
  color: var(--deep-green);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.proof-wall article {
  min-height: 260px;
}

.proof-wall h2 {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.18;
}

.proof-wall p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.campus-detail-list {
  background: #fbfbfd;
}

.campus-table {
  grid-template-columns: 1.2fr 0.8fr 1fr;
}

.hangzhou-address-grid article {
  min-height: 190px;
}

.hangzhou-address-grid article.active {
  border-color: rgba(143, 190, 25, 0.62);
  box-shadow: 0 28px 72px rgba(29, 143, 73, 0.14);
}

.hangzhou-address-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--orange);
  border-radius: 14px;
  font-size: 16px;
}

.hangzhou-address-grid h3 button {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.hangzhou-address-grid h3 button::after {
  content: "+";
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  margin-left: 12px;
  place-items: center;
  color: var(--deep-green);
  background: #eef8e2;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
}

.hangzhou-address-grid article.active h3 button::after {
  content: "-";
}

.hangzhou-address-grid article p {
  display: none;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hangzhou-address-grid article.active p {
  display: block;
}

.campus-address-note {
  max-width: 820px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.other-city-list {
  background: var(--white);
}

.campus {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  align-items: center;
  gap: 46px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(216, 61, 23, 0.24), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(143, 190, 25, 0.32), transparent 28%),
    radial-gradient(circle at 42% 82%, rgba(236, 165, 26, 0.22), transparent 32%),
    linear-gradient(130deg, #172016 0%, #1d3728 48%, #6f8618 100%);
}

.campus h2,
.campus-card h3 {
  color: var(--white);
}

.campus p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.68;
}

.city-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.city-tabs button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 680;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.city-tabs button:hover,
.city-tabs button.active {
  color: var(--ink);
  background: #fff3d6;
  transform: translateY(-1px);
}

.campus-map {
  position: relative;
  display: grid;
  min-height: 620px;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
}

.map-model {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06)),
    radial-gradient(circle at 22% 24%, rgba(216, 61, 23, 0.32), transparent 17%),
    radial-gradient(circle at 48% 38%, rgba(236, 165, 26, 0.28), transparent 18%),
    radial-gradient(circle at 65% 62%, rgba(143, 190, 25, 0.34), transparent 23%),
    radial-gradient(circle at 78% 76%, rgba(29, 143, 73, 0.32), transparent 18%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.landmark-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: min(78%, 560px);
  max-height: 400px;
  object-fit: contain;
  object-position: center;
  opacity: 0.3;
  mix-blend-mode: screen;
  filter: drop-shadow(0 20px 38px rgba(0, 0, 0, 0.2)) saturate(0.95);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.map-model:hover .landmark-watermark {
  opacity: 0.4;
  transform: translate(-50%, -52%) scale(1.02);
}

.map-model::before {
  content: "";
  position: absolute;
  inset: 12%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 54px 54px;
  border-radius: 46%;
  mask-image: radial-gradient(ellipse at center, #000 54%, transparent 72%);
  opacity: 0.72;
  transform: perspective(720px) rotateX(56deg) rotateZ(-8deg);
}

.map-model::after {
  content: "";
  position: absolute;
  width: 54%;
  height: 46%;
  left: 31%;
  top: 22%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 48% 46% 44% 52% / 40% 46% 48% 52%;
  filter: blur(0.2px);
  transform: rotate(-14deg);
}

.map-point {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 2;
  display: inline-flex;
  min-width: 58px;
  height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  font-size: 13px;
  font-weight: 760;
  cursor: pointer;
  font-family: inherit;
  transform: translate(-50%, -50%);
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.map-point:hover {
  background: var(--yellow);
  color: var(--ink);
  transform: translate(-50%, -50%) scale(1.08);
}

.map-point::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 3px);
  width: 10px;
  height: 10px;
  background: currentColor;
  border-radius: 50%;
  transform: translateX(-50%);
  opacity: 0.72;
}

.map-point.active {
  color: var(--white);
  background: var(--orange);
  border-color: rgba(255, 255, 255, 0.52);
  transform: translate(-50%, -50%) scale(1.12);
}

.campus-card {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 24px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.campus-card.is-changing {
  opacity: 0.55;
  transform: translateY(8px);
}

.city-kicker {
  margin: 0 0 10px;
  color: var(--deep-green);
  font-size: 13px;
  font-weight: 800;
}

.campus-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.15;
}

.campus-card p:not(.city-kicker) {
  margin: 12px 0 16px;
  color: #4d4d52;
  font-size: 16px;
  line-height: 1.62;
}

.campus-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.campus-card li {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: var(--deep-green);
  background: #eef8e2;
  border: 1px solid rgba(143, 190, 25, 0.24);
  border-radius: 999px;
  font-size: 14px;
  transition: background 0.18s ease, transform 0.18s ease;
}

.campus-card li:has(button) {
  padding: 0;
}

.campus-card li button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
}

.campus-card li:hover,
.campus-card li:has(button.active) {
  background: #fff3d6;
  transform: translateY(-2px);
}

.campus-address-preview {
  margin-top: 16px;
  padding: 14px 16px;
  color: #2b3a16;
  background: #f1f8de;
  border: 1px solid rgba(143, 190, 25, 0.28);
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

.visit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 96px 7vw;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.visit h2 {
  max-width: 880px;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  display: flex;
  min-height: 170px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 7vw;
}

.footer img {
  width: 210px;
}

.footer p {
  margin: 0;
  color: var(--muted);
}

.footer-icp {
  font-size: 13px;
}

.footer-icp a {
  color: inherit;
}

.footer-icp a:hover {
  color: var(--deep-green);
}

.footer-links {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.footer-links nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: #3d3d42;
  font-size: 14px;
  font-weight: 650;
}

.sub-hero {
  padding: 148px 7vw 88px;
  background:
    radial-gradient(circle at 76% 22%, rgba(143, 190, 25, 0.18), transparent 28%),
    radial-gradient(circle at 18% 70%, rgba(227, 109, 14, 0.12), transparent 24%),
    linear-gradient(180deg, #fbfbfd 0%, #ffffff 100%);
}

.sub-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.08;
  letter-spacing: 0;
}

.sub-hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 28px 0 0;
  color: #3d3d42;
  font-size: 18px;
  line-height: 1.62;
}

.legal-hero {
  padding-bottom: 58px;
}

.legal-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 56px 7vw 96px;
  color: #3d3d42;
}

.legal-content h2 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
}

.legal-content p {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
}

.legal-updated {
  color: var(--deep-green);
  font-size: 14px !important;
  font-weight: 760;
}

.page-grid,
.detail-cards,
.growth-ladder,
.city-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.page-grid article,
.detail-cards article,
.growth-ladder article,
.city-directory article {
  min-height: 260px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(210, 210, 215, 0.76);
  border-radius: 28px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.045);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.page-grid article:hover,
.detail-cards article:hover,
.growth-ladder article:hover,
.city-directory article:hover {
  transform: translateY(-6px);
  border-color: rgba(143, 190, 25, 0.42);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.08);
}

.page-grid span,
.detail-cards span,
.growth-ladder span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--orange);
  font-size: 18px;
  font-weight: 800;
}

.detail-cards span {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 18px;
  font-size: 30px;
}

.vici-cards article {
  position: relative;
  overflow: hidden;
  min-height: 272px;
  padding-top: 78px;
}

.vici-cards article::before {
  position: absolute;
  top: -34px;
  right: 8px;
  width: 96px;
  overflow: hidden;
  text-align: right;
  color: rgba(143, 190, 25, 0.07);
  font-size: 108px;
  font-weight: 880;
  line-height: 1;
  pointer-events: none;
}

.vici-cards article:nth-child(1)::before {
  content: "V";
}

.vici-cards article:nth-child(2)::before {
  content: "I";
}

.vici-cards article:nth-child(3)::before {
  content: "C";
}

.vici-cards article:nth-child(4)::before {
  content: "I";
}

.vici-cards article:nth-child(1) {
  background: #fff4de;
}

.vici-cards article:nth-child(2) {
  background: #eaf7ef;
}

.vici-cards article:nth-child(3) {
  background: #f3f8dd;
}

.vici-cards article:nth-child(4) {
  background: #fff0e8;
}

.vici-cards span {
  position: absolute;
  top: 24px;
  left: 24px;
  margin: 0;
  background: var(--deep-green);
  z-index: 2;
}

.vici-cards .vici-icon {
  margin-top: 16px;
}

.vici-cards h2 {
  margin-top: 18px;
  overflow-wrap: anywhere;
}

.vici-flow {
  background:
    linear-gradient(180deg, rgba(251, 251, 253, 0.86), rgba(255, 255, 255, 0.96)),
    #fbfbfd;
}

.vici-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(210, 210, 215, 0.76);
  border-radius: 30px;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.055);
}

.vici-flow-grid article {
  min-width: 0;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.vici-flow-grid article:last-child {
  border-right: 0;
}

.vici-flow-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 820;
}

.vici-flow-grid h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.18;
}

.vici-flow-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.66;
}

.page-grid h2,
.detail-cards h2,
.growth-ladder h2,
.city-directory h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: var(--font-card-title);
  line-height: 1.18;
}

.page-grid p,
.detail-cards p,
.growth-ladder p,
.city-directory p {
  margin: 0;
  color: var(--muted);
  font-size: var(--font-body);
  line-height: 1.58;
}

.content-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #fff8e8;
}

.content-band h2 {
  max-width: 860px;
}

.guide-hero {
  background:
    radial-gradient(circle at 74% 24%, rgba(29, 143, 73, 0.15), transparent 28%),
    radial-gradient(circle at 18% 68%, rgba(236, 165, 26, 0.14), transparent 25%),
    linear-gradient(180deg, #fbfbfd 0%, #ffffff 100%);
}

.guide-feature {
  background: #fbfbfd;
}

.brand-seo-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 28px;
  background: #eef8e2;
}

.brand-seo-panel h2 {
  max-width: 780px;
}

.brand-seo-copy {
  padding: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(143, 190, 25, 0.34);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.045);
}

.brand-seo-copy p {
  margin: 0;
  color: #3d3d42;
  font-size: 17px;
  line-height: 1.76;
}

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

.guide-feature-grid article {
  min-height: 220px;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(210, 210, 215, 0.78);
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.045);
}

.guide-feature-grid span,
.article-card span,
.article-meta span {
  color: var(--deep-green);
  font-size: 13px;
  font-weight: 820;
}

.guide-feature-grid h3 {
  margin: 18px 0 10px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.18;
}

.guide-feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.66;
}

.article-list-section,
.guide-preview,
.keyword-matrix-section,
.ai-title-section {
  background: var(--white);
}

.keyword-matrix-section {
  background:
    linear-gradient(180deg, rgba(251, 251, 253, 0.94), rgba(255, 255, 255, 1)),
    #fbfbfd;
}

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

.keyword-matrix article {
  min-height: 210px;
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(210, 210, 215, 0.78);
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.04);
}

.keyword-matrix span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 820;
}

.keyword-matrix h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.18;
}

.keyword-matrix p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.66;
}

.ai-title-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ai-title-list article {
  min-height: 230px;
  padding: 24px;
  background: #fbfbfd;
  border: 1px solid rgba(210, 210, 215, 0.78);
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.045);
}

.ai-title-list span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--deep-green);
  font-size: 13px;
  font-weight: 820;
}

.ai-title-list h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.22;
}

.ai-title-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.66;
}

.article-card-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(2, minmax(0, 0.74fr));
  gap: 18px;
}

.article-card-grid.compact {
  margin-top: 26px;
}

.article-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  background: #fbfbfd;
  border: 1px solid rgba(210, 210, 215, 0.78);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.045);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(143, 190, 25, 0.42);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.08);
}

.article-card.featured {
  min-height: 360px;
  padding: 0;
  overflow: hidden;
  background: var(--white);
}

.article-card.featured img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.article-card.featured div {
  padding: 24px;
}

.article-card h3 {
  margin: 10px 0 12px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.22;
  letter-spacing: 0;
}

.article-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.article-page {
  background: linear-gradient(180deg, #fbfbfd 0%, #ffffff 36%);
}

.article-hero {
  padding: 142px 7vw 46px;
}

.article-back {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 22px;
  padding: 0 14px;
  color: var(--deep-green);
  background: #eef8e2;
  border: 1px solid rgba(143, 190, 25, 0.34);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 760;
}

.article-hero h1 {
  max-width: 960px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.1;
  letter-spacing: 0;
}

.article-hero p:not(.eyebrow) {
  max-width: 820px;
  margin: 24px 0 0;
  color: #3d3d42;
  font-size: 19px;
  line-height: 1.68;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.article-meta span {
  padding: 8px 12px;
  background: var(--white);
  border: 1px solid rgba(210, 210, 215, 0.78);
  border-radius: 999px;
}

.article-brand-note {
  max-width: 860px;
  margin-top: 24px;
  padding: 20px 22px;
  background: #eef8e2;
  border: 1px solid rgba(143, 190, 25, 0.34);
  border-radius: 22px;
}

.article-brand-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--deep-green);
  font-size: 14px;
  font-weight: 820;
}

.article-brand-note p {
  max-width: none !important;
  margin: 0 !important;
  color: #3d3d42 !important;
  font-size: 16px !important;
  line-height: 1.68 !important;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 30px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 7vw 92px;
}

.article-body {
  min-width: 0;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(210, 210, 215, 0.78);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.06);
}

.article-cover {
  display: block;
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 22px;
}

.article-lead {
  color: #3d3d42;
  font-size: 19px !important;
  line-height: 1.76 !important;
}

.article-body h2 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.22;
}

.article-body p {
  margin: 16px 0 0;
  color: #49494f;
  font-size: 17px;
  line-height: 1.82;
}

.article-cta-inline {
  margin-top: 38px;
  padding: 28px;
  background: #fff8e8;
  border: 1px solid rgba(236, 165, 26, 0.28);
  border-radius: 24px;
}

.article-cta-inline h2 {
  margin-top: 0;
}

.article-cta-inline .button {
  margin-top: 22px;
}

.article-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  align-self: start;
  gap: 16px;
}

.sidebar-panel {
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(210, 210, 215, 0.78);
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.045);
}

.sidebar-panel.accent {
  background: #eef8e2;
  border-color: rgba(143, 190, 25, 0.36);
}

.sidebar-panel h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.22;
}

.sidebar-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.sidebar-panel .button {
  width: 100%;
  margin-top: 18px;
}

.growth-ladder {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.growth-ladder article {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  scroll-margin-top: 92px;
}

.growth-ladder video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: auto;
  object-fit: cover;
  background: #111;
  border-radius: 16px;
}

.growth-ladder article:nth-child(1) {
  background: #f1f8de;
}

.growth-ladder article:nth-child(2) {
  background: #fff0d6;
}

.growth-ladder article:nth-child(3) {
  background: #e9f6ef;
}

.growth-ladder article:nth-child(4) {
  background: #ffe6dc;
}

.growth-ladder article:nth-child(5) {
  color: var(--white);
  background: linear-gradient(140deg, var(--deep-green), var(--green));
}

.growth-ladder article:nth-child(5) h2,
.growth-ladder article:nth-child(5) p,
.growth-ladder article:nth-child(5) span {
  color: var(--white);
}

.city-directory {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.city-directory article:first-child {
  grid-column: span 2;
  background: #f1f8de;
}

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

.faq-list details {
  padding: 26px 30px;
  background: var(--white);
  border: 1px solid rgba(210, 210, 215, 0.76);
  border-radius: 24px;
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.045);
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 22px;
  font-weight: 760;
}

.faq-list p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

@media (max-width: 1040px) {
  .site-header {
    padding: 0 28px;
  }

  .nav {
    gap: 18px;
  }

  .hero,
  .philosophy,
  .campus,
  .story-layout,
  .image-story,
  .brand-seo-panel,
  .content-band {
    grid-template-columns: 1fr;
  }

  .contact-dialog {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .steve-event-dialog {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .steve-event-stage {
    min-height: 430px;
  }

  .steve-event-visual {
    height: 220px;
    margin: 24px 0 -6px;
  }

  .steve-event-visual .steve-frame-sequence {
    width: min(82%, 380px);
    height: 220px;
  }

  .steve-event-qr-grid {
    margin-bottom: 16px;
  }

  .steve-event-qr-card {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .steve-event-qr-card img {
    width: 78px;
    height: 78px;
  }

  .steve-event-panel {
    overflow: visible;
  }

  .benefit-layout {
    grid-template-columns: 1fr;
  }

  .benefit-hero {
    min-height: 360px;
  }

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

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

  .study-copy,
  .study-showcase .wide {
    grid-column: span 2;
  }

  .study-showcase .wide {
    grid-row: auto;
  }

  .feature-panel {
    display: grid;
    align-items: start;
  }

  .campus-map {
    min-height: 520px;
  }

  .outcomes-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .outcome-grid {
    margin-left: 0;
    padding-left: 0;
  }

  .outcome-visual::before {
    display: none;
  }

  .outcome-visual img {
    min-height: 0;
  }

  .ecosystem-showcase {
    grid-template-columns: 1fr;
  }

  .ecosystem-card {
    min-height: 240px;
  }

  .hero-stage {
    min-height: auto;
    min-height: 360px;
    margin-top: 12px;
    padding: 18px 0 0;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-scene-frame {
    min-height: 360px;
    width: 100%;
  }

  .hero-photo-card,
  .hero-visual {
    min-height: 420px;
  }

  .hero-photo-card {
    width: min(74%, 520px);
    transform: translateY(-50%);
  }

  .language-orbit {
    width: min(380px, 82vw);
  }

  .bubble {
    width: 98px;
    height: 98px;
  }

  .bubble.primary-skill {
    width: 128px;
    height: 128px;
  }

  .bubble.advanced-skill {
    width: 90px;
    height: 90px;
  }

  .method-grid,
  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .page-grid,
  .detail-cards,
  .growth-ladder,
  .city-directory,
  .faculty-layout,
  .case-grid,
  .proof-wall,
  .news-grid,
  .guide-feature-grid,
  .keyword-matrix,
  .ai-title-list,
  .article-card-grid,
  .vici-flow-grid,
  .campus-table,
  .hangzhou-address-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vici-flow-grid article:nth-child(2) {
    border-right: 0;
  }

  .vici-flow-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .growth-ladder article:nth-child(5),
  .city-directory article:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 64px;
    padding: 0 18px;
  }

  .brand {
    width: 128px;
  }

  .nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 8px 18px 10px;
    scroll-padding-inline: 18px;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(210, 210, 215, 0.72);
    backdrop-filter: blur(20px);
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav::after {
    content: "";
    flex: 0 0 12px;
  }

  .nav a {
    flex: 0 0 auto;
    padding: 7px 10px;
    background: #fbfbfd;
    border: 1px solid rgba(231, 231, 234, 0.9);
    border-radius: 999px;
    font-size: 12px;
    opacity: 1;
  }

  .nav a::after {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }

  .nav-action,
  .nav-quiz {
    min-height: 34px;
    padding: 0 11px;
    font-size: 12px;
  }

  .nav-quiz {
    max-width: 106px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .quiz-modal {
    padding: 12px;
  }

  .contact-modal {
    padding: 12px;
  }

  .contact-dialog {
    max-height: 90vh;
    padding: 26px 22px 22px;
    border-radius: 24px;
  }

  .contact-dialog::before {
    width: 100%;
    height: 8px;
    border-radius: 24px 24px 0 0;
  }

  .contact-fab {
    right: 14px;
    bottom: 12px;
  }

  .steve-event-fab {
    left: 12px;
    bottom: 12px;
  }

  .steve-event-fab button {
    min-width: 132px;
    min-height: 52px;
    padding: 7px 15px 7px 48px;
  }

  .steve-event-fab strong {
    font-size: 14px;
  }

  .contact-fab button {
    width: 76px;
    height: 76px;
    font-size: 13px;
  }

  .contact-fab span {
    font-size: 11px;
  }

  .quiz-dialog {
    max-height: 92vh;
    padding: 22px;
    border-radius: 22px;
  }

  .steve-event-modal {
    padding: 12px;
  }

  .steve-event-dialog {
    height: auto;
    max-height: 92vh;
    overflow: auto;
    border-radius: 24px;
  }

  .steve-event-stage {
    min-height: 360px;
    padding: 26px 22px;
  }

  .steve-event-badge {
    top: 20px;
    left: 20px;
  }

  .steve-event-copy h2 {
    font-size: 42px;
  }

  .steve-event-copy p:not(.eyebrow) {
    font-size: 15px;
  }

  .steve-event-panel {
    padding: 28px 22px 24px;
  }

  .steve-event-panel h3 {
    font-size: 28px;
  }

  .quiz-questions,
  .age-stage,
  .assignment-options,
  .lead-fields,
  .contact-form,
  .steve-event-form {
    grid-template-columns: 1fr;
  }

  .steve-event-qr-grid {
    grid-template-columns: 1fr;
  }

  .quiz-intro h2 {
    font-size: 32px;
  }

  .hero {
    min-height: auto;
    padding: 132px 22px 54px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-event-feature {
    width: min(270px, 72vw);
    min-height: 162px;
    margin-bottom: 20px;
  }

  .hero-event-feature .steve-frame-sequence {
    height: 176px;
  }

  .hero-event-label {
    left: 9px;
    bottom: 8px;
    padding: 7px 11px;
    font-size: 12px;
  }

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

  .language-orbit {
    width: min(290px, 82vw);
  }

  .hero-photo-card,
  .hero-visual {
    min-height: 240px;
    border-radius: 24px;
  }

  .hero-photo-card {
    right: 50%;
    width: 88%;
    min-height: 260px;
    transform: translate(50%, -40%);
    opacity: 0.28;
  }

  .hero-stage.has-scene .hero-photo-card {
    opacity: 0.62;
  }

  .hero-stage::before {
    inset: 8% 4% 4%;
  }

  .hero-scene-caption {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(300px, 86vw);
    padding: 10px 14px;
    margin: 0 auto 12px;
    transform: none;
  }

  .center-card {
    width: 164px;
    min-height: 116px;
    padding: 14px;
  }

  .center-card img {
    width: 104px;
    max-width: 100%;
  }

  .center-card strong {
    font-size: 18px;
  }

  .center-card span {
    max-width: 128px;
    font-size: 11px;
  }

  .bubble {
    width: 72px;
    height: 72px;
  }

  .bubble.primary-skill {
    width: 92px;
    height: 92px;
  }

  .bubble.advanced-skill {
    width: 68px;
    height: 68px;
  }

  .bubble.red {
    left: 28%;
    top: 10%;
  }

  .bubble.orange {
    right: 12%;
    top: 16%;
  }

  .bubble.yellow {
    right: 8%;
    bottom: 22%;
  }

  .bubble.green {
    left: 12%;
    bottom: 22%;
  }

  .bubble strong {
    font-size: 28px;
  }

  .bubble.primary-skill strong {
    font-size: 36px;
  }

  .bubble.advanced-skill strong {
    font-size: 24px;
  }

  .bubble small {
    font-size: 9px;
  }

  .bubble em {
    min-width: 32px;
    padding: 2px 6px;
    font-size: 9px;
  }

  .section {
    padding: 72px 22px;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .section h2,
  .visit h2 {
    font-size: 30px;
  }

  .detail-cards h2,
  .growth-ladder h2,
  .vici-cards h2 {
    font-size: var(--font-card-title);
  }

  .metrics,
  .split,
  .method-grid,
  .acquisition,
  .outcome-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .story-copy {
    font-size: 17px;
  }

  .story-years article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0 18px 14px;
  }

  .story-years time {
    font-size: 20px;
  }

  .story-years strong {
    font-size: 20px;
  }

  .ecosystem-card,
  .ecosystem-card.featured {
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .ecosystem-card img,
  .ecosystem-card.featured img {
    height: 76px;
    max-width: 260px;
  }

  .branch-mark {
    min-height: 72px;
    font-size: 24px;
  }

  .ecosystem-card.featured h3,
  .ecosystem-card h3 {
    font-size: 24px;
  }

  .image-story {
    padding: 20px;
    border-radius: 24px;
  }

  .image-story figure {
    aspect-ratio: 16 / 10;
  }

  .metrics div {
    min-height: 126px;
  }

  .statement,
  .method-grid article,
  .path-card,
  .step {
    border-radius: 22px;
  }

  .path-card ol {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .campus-map {
    min-height: auto;
    gap: 14px;
  }

  .map-model {
    min-height: 360px;
    border-radius: 26px;
  }

  .map-point {
    min-width: 46px;
    height: 26px;
    font-size: 12px;
  }

  .landmark-watermark {
    width: min(86%, 340px);
    max-height: 320px;
  }

  .campus-card {
    width: 100%;
    padding: 22px;
    border-radius: 22px;
  }

  .campus-card h3 {
    font-size: 30px;
  }

  .visit,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-items: start;
  }

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

  .visit {
    padding: 72px 22px;
  }

  .sub-hero {
    padding: 134px 22px 62px;
  }

  .sub-hero h1 {
    font-size: 40px;
  }

  .sub-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .legal-content {
    padding: 42px 22px 72px;
  }

  .legal-content h2 {
    font-size: 21px;
  }

  .legal-content p {
    font-size: 15px;
  }

  .page-grid,
  .detail-cards,
  .growth-ladder,
  .city-directory,
  .news-grid,
  .guide-feature-grid,
  .keyword-matrix,
  .ai-title-list,
  .article-card-grid,
  .vici-flow-grid {
    grid-template-columns: 1fr;
  }

  .guide-feature-grid article,
  .keyword-matrix article,
  .ai-title-list article,
  .article-card {
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .article-card.featured {
    min-height: auto;
  }

  .article-card.featured img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .article-card.featured div {
    padding: 22px;
  }

  .article-card h3 {
    font-size: 23px;
  }

  .article-hero {
    padding: 134px 22px 38px;
  }

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

  .article-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .article-layout {
    padding: 0 22px 72px;
  }

  .article-body {
    padding: 20px;
    border-radius: 24px;
  }

  .article-cover {
    border-radius: 18px;
  }

  .article-body h2 {
    font-size: 23px;
  }

  .article-body p,
  .article-lead {
    font-size: 16px !important;
  }

  .article-cta-inline {
    padding: 22px;
    border-radius: 22px;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .growth-ladder article:nth-child(5),
  .city-directory article:first-child {
    grid-column: auto;
  }

  .content-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-panel {
    padding: 24px;
    border-radius: 24px;
  }

  .benefit-copy,
  .benefit-actions article {
    padding: 22px;
    border-radius: 22px;
  }

  .benefit-copy h3 {
    font-size: 30px;
  }

  .benefit-copy p {
    font-size: 16px;
  }

  .benefit-hero {
    min-height: 280px;
    border-radius: 22px;
  }

  .benefit-actions,
  .benefit-gallery {
    grid-template-columns: 1fr;
  }

  .benefit-gallery .wide {
    grid-column: auto;
  }

  .benefit-gallery figure {
    min-height: 250px;
  }

  .study-showcase {
    grid-template-columns: 1fr;
  }

  .study-copy,
  .study-showcase .wide {
    grid-column: auto;
  }

  .study-showcase figure {
    min-height: 240px;
  }

  .outcome-visual {
    aspect-ratio: 4 / 3;
    min-height: 0;
    border-radius: 22px;
  }

  .outcome-visual-copy {
    bottom: 120px;
  }

  .outcome-switcher {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .outcome-switcher button {
    min-height: 38px;
  }

  .feature-panel h3,
  .news-card h3 {
    font-size: 28px;
  }

  .vici-flow-grid article,
  .vici-flow-grid article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .vici-flow-grid article:last-child {
    border-bottom: 0;
  }

  .faculty-layout,
  .case-grid,
  .proof-wall,
  .result-wall,
  .campus-table,
  .hangzhou-address-grid,
  .consult-form {
    grid-template-columns: 1fr;
  }

  .case-grid article img,
  .case-card img,
  .proof-wall article img,
  .proof-card img {
    height: auto;
    max-height: 420px;
    aspect-ratio: 4 / 3;
  }

  .faq-list summary {
    font-size: 19px;
  }
}
