:root {
  --black: #050706;
  --black-2: #0c0f0d;
  --ink: #151713;
  --white: #f7f4ed;
  --soft: #d8d2c5;
  --muted: #8d887e;
  --line: rgba(247, 244, 237, 0.16);
  --dark-line: rgba(5, 7, 6, 0.12);
  --orange: #e56b2c;
  --green: #1d4f3b;
  --panel: #111610;
  --radius: 6px;
  font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto 0;
  display: grid;
  grid-template-columns: minmax(170px, 240px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  min-height: 72px;
  padding: 0 clamp(18px, 4vw, 72px);
  color: #fff;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 6, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  font-weight: 800;
}

.brand-symbol {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 13px;
}

.brand-name {
  font-size: 15px;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 32px);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(42px, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(5, 7, 6, 0.22);
}

.language-switch button {
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.language-switch button:last-child {
  border-right: 0;
}

.language-switch button.is-active {
  background: var(--white);
  color: var(--black);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: transparent;
  color: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #020302;
}

.hero-visual,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.1) brightness(0.62);
  transform: scale(1.02);
}

.hero-shade {
  background:
    radial-gradient(circle at center, rgba(229, 107, 44, 0.1), transparent 34%),
    linear-gradient(90deg, rgba(5, 7, 6, 0.84), rgba(5, 7, 6, 0.28), rgba(5, 7, 6, 0.78)),
    linear-gradient(0deg, rgba(5, 7, 6, 0.92), transparent 36%, rgba(5, 7, 6, 0.54));
}

.hero-center {
  position: relative;
  width: min(1080px, calc(100vw - 36px));
  text-align: center;
}

.hero-center p,
.kicker {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-center h1 {
  margin: 0;
  font-size: clamp(48px, 8.2vw, 118px);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 22px 80px rgba(0, 0, 0, 0.58);
}

.hero-center strong {
  display: block;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(13px, 1.7vw, 18px);
  letter-spacing: 0.22em;
}

.hero-bottom {
  position: absolute;
  right: clamp(18px, 4vw, 72px);
  bottom: 34px;
  left: clamp(18px, 4vw, 72px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.statement {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 8vw, 120px);
  padding: clamp(86px, 12vw, 160px) clamp(18px, 6vw, 96px);
  background: var(--white);
  color: var(--black);
}

.statement h2,
.section-title h2,
.join-head h2,
.contact-info h2 {
  margin: 0;
  font-size: clamp(36px, 6vw, 82px);
  line-height: 1.02;
  letter-spacing: 0;
}

.statement-copy {
  align-self: end;
  color: #4c4a44;
  font-size: 17px;
  line-height: 1.9;
}

.dark-section {
  background: var(--black);
}

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

.dashboard-section {
  padding: clamp(72px, 9vw, 132px) clamp(18px, 6vw, 96px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(29, 79, 59, 0.18), transparent 36%),
    linear-gradient(0deg, rgba(229, 107, 44, 0.08), transparent 48%),
    #070a08;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(420px, 1.26fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.dashboard-intro h2 {
  margin: 0;
  max-width: 640px;
  color: #fff;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.05;
}

.dashboard-intro > p:not(.kicker) {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 1.9;
}

.dashboard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.dashboard-tags span {
  padding: 10px 14px;
  border: 1px solid rgba(247, 244, 237, 0.18);
  background: rgba(247, 244, 237, 0.05);
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.live-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(247, 244, 237, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(13, 18, 14, 0.92);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
}

.live-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(247, 244, 237, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 237, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000, transparent 78%);
}

.live-panel > * {
  position: relative;
  z-index: 1;
}

.live-panel-head,
.live-primary,
.live-grid,
.live-feed div {
  border: 1px solid rgba(247, 244, 237, 0.12);
  background: rgba(5, 7, 6, 0.42);
}

.live-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.live-panel-head span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.live-panel-head i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #25d886;
  box-shadow: 0 0 18px rgba(37, 216, 134, 0.9);
}

.live-panel-head time {
  color: rgba(255, 255, 255, 0.48);
  font-variant-numeric: tabular-nums;
}

.live-primary {
  margin-top: 14px;
  padding: clamp(22px, 3vw, 34px);
}

.live-primary span,
.live-grid span,
.live-feed span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.live-primary strong {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 16px;
  color: #fff;
  font-size: clamp(58px, 8vw, 108px);
  line-height: 0.92;
  font-variant-numeric: tabular-nums;
}

.live-primary em,
.live-grid em {
  color: var(--orange);
  font-size: 0.22em;
  font-style: normal;
}

.live-primary small,
.live-grid small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.52);
}

.live-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 14px;
  background: rgba(247, 244, 237, 0.12);
}

.live-grid article {
  min-height: 150px;
  padding: 18px;
  background: #0d120e;
}

.live-grid strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.live-chart {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  height: 170px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(247, 244, 237, 0.12);
  background: rgba(5, 7, 6, 0.32);
}

.live-chart div {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  min-width: 0;
}

.live-chart div::before {
  content: "";
  width: 100%;
  height: var(--bar);
  min-height: 24px;
  background: linear-gradient(180deg, rgba(229, 107, 44, 0.95), rgba(29, 79, 59, 0.95));
  transition: height 0.8s ease;
}

.live-chart span {
  position: absolute;
  bottom: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  writing-mode: vertical-rl;
}

.live-feed {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.live-feed div {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
}

.live-feed p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.live-feed strong {
  color: #25d886;
  font-size: 13px;
}

.tools-section {
  padding: clamp(82px, 10vw, 150px) clamp(18px, 6vw, 96px);
  background: #f7f4ed;
  color: var(--black);
}

.tools-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto 42px;
}

.tools-head h2 {
  margin: 0;
  font-size: clamp(36px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: 0;
}

.tools-head p:last-child {
  align-self: end;
  margin: 0;
  max-width: 620px;
  color: #555149;
  font-size: 17px;
  line-height: 1.8;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
}

.tool-card {
  position: relative;
  display: flex;
  min-height: 460px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(5, 7, 6, 0.1);
  background: #fffdf7;
}

.tool-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(5, 7, 6, 0.04), transparent 42%),
    radial-gradient(circle at 82% 18%, rgba(229, 107, 44, 0.16), transparent 34%);
}

.tool-card::after {
  position: absolute;
  right: clamp(24px, 4vw, 46px);
  bottom: clamp(72px, 8vw, 104px);
  color: rgba(5, 7, 6, 0.06);
  font-size: clamp(88px, 14vw, 168px);
  font-weight: 900;
  line-height: 1;
}

.visa-tool::after {
  content: "VISA";
}

.travel-tool::after {
  content: "TRIP";
}

.tool-card > * {
  position: relative;
  z-index: 1;
}

.tool-card span {
  display: block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.tool-card h3 {
  margin: 20px 0 14px;
  color: var(--black);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.98;
}

.tool-card p {
  max-width: 520px;
  margin: 0;
  color: #555149;
  font-size: 17px;
  line-height: 1.85;
}

.tool-card a {
  display: inline-flex;
  width: max-content;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.tool-card a:hover {
  background: #111;
}

.metric {
  min-height: 220px;
  padding: clamp(26px, 4vw, 46px);
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  margin-bottom: 34px;
  color: #fff;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.9;
}

.metric span {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.model-section,
.org-section {
  padding: clamp(82px, 10vw, 150px) clamp(18px, 6vw, 96px);
  background: #0b0f0c;
}

.section-title {
  display: grid;
  grid-template-columns: minmax(260px, 0.4fr) 1fr;
  gap: 40px;
  align-items: end;
  max-width: 1280px;
  margin: 0 auto 54px;
}

.section-title h2 {
  color: #fff;
}

.section-title .kicker,
.join-head .kicker,
.contact-info .kicker {
  align-self: start;
}

.model-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
}

.model-hero-card {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  background:
    linear-gradient(0deg, rgba(5, 7, 6, 0.94), rgba(5, 7, 6, 0.14)),
    url("./assets/tourism.jpg") center / cover;
}

.model-hero-card span,
.work-feature p,
.work-grid span,
.org-lead span,
.jobs article > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.model-hero-card h3 {
  margin: 18px 0;
  max-width: 560px;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.06;
}

.model-hero-card p,
.model-list p,
.work-feature span,
.org-grid p,
.join-head p,
.jobs p,
.jobs li,
.contact-info p,
.contact-info dd {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
}

.model-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.model-list article {
  min-height: 300px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--panel);
}

.model-list article span {
  color: rgba(255, 255, 255, 0.34);
  font-size: 46px;
  font-weight: 800;
}

.model-list h3,
.org-grid h3,
.jobs h3 {
  margin: 28px 0 12px;
  color: #fff;
  font-size: 24px;
}

.works-section {
  padding: clamp(82px, 10vw, 150px) clamp(18px, 6vw, 96px);
  background: var(--black);
}

.work-feature {
  position: relative;
  max-width: 1280px;
  min-height: 650px;
  margin: 0 auto 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.work-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.62);
}

.work-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 7, 6, 0.92), rgba(5, 7, 6, 0.18));
}

.work-feature div {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 650px;
  width: min(620px, 100%);
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 5vw, 64px);
}

.work-feature h3 {
  margin: 18px 0;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
}

.work-grid article {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
}

.work-grid img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.66);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.work-grid article:hover img {
  transform: scale(1.05);
  filter: saturate(0.95) brightness(0.82);
}

.work-grid div {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(5, 7, 6, 0.95), transparent);
}

.work-grid h3 {
  margin: 12px 0 0;
  font-size: 22px;
}

.org-shell {
  max-width: 1280px;
  margin: 0 auto;
  border: 1px solid var(--line);
}

.org-lead {
  padding: clamp(28px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
  background: #111610;
}

.org-lead strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(28px, 4vw, 52px);
}

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

.org-grid article {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

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

.join-section {
  padding: clamp(82px, 10vw, 150px) clamp(18px, 6vw, 96px);
  background: var(--white);
  color: var(--black);
}

.join-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) 1fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto 42px;
}

.join-head p:last-child {
  align-self: end;
  color: #555149;
  font-size: 18px;
  line-height: 1.8;
}

.career-portal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(5, 7, 6, 0.08);
  background:
    linear-gradient(135deg, rgba(5, 7, 6, 0.04), transparent 40%),
    #fffdf7;
}

.career-portal span {
  display: block;
  color: #7d7667;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.career-portal strong {
  display: block;
  margin-top: 16px;
  color: var(--black);
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.05;
}

.career-portal p {
  margin: 12px 0 0;
  color: #5a554d;
  font-size: 17px;
  line-height: 1.8;
}

.career-portal a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.career-portal a:hover {
  background: #111;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 720px;
  background: var(--black);
}

.contact-visual {
  display: grid;
  place-items: center;
  padding: 48px;
  background: #f5f1e8;
}

.contact-visual img {
  width: min(440px, 100%);
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 96px);
}

.contact-info dl {
  display: grid;
  gap: 1px;
  margin: 36px 0 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.contact-info dl div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 20px;
  background: #10140f;
}

.contact-info dt {
  color: rgba(255, 255, 255, 0.38);
}

.contact-info dd {
  margin: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 96px);
  border-top: 1px solid var(--line);
  background: var(--black);
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 0.12em;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    position: fixed;
    inset: 82px 18px auto 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--line);
    background: rgba(5, 7, 6, 0.94);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 18px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .nav-toggle {
    display: block;
  }

  .language-switch {
    grid-template-columns: repeat(2, 46px);
  }

  .statement,
  .section-title,
  .dashboard-shell,
  .model-layout,
  .tools-head,
  .join-head,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .metrics,
  .live-grid,
  .work-grid,
  .org-grid,
  .tool-grid,
  .career-portal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .org-grid article,
  .career-portal {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 64px;
    padding-inline: 16px;
    gap: 10px;
  }

  .brand-symbol {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .brand-name {
    font-size: 13px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switch {
    grid-template-columns: repeat(2, 40px);
  }

  .language-switch button {
    min-height: 34px;
    padding: 0 8px;
    font-size: 11px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-center h1 {
    font-size: 46px;
  }

  .hero-center strong {
    letter-spacing: 0.12em;
  }

  .hero-bottom {
    flex-direction: column;
  }

  .statement h2,
  .section-title h2,
  .join-head h2,
  .contact-info h2 {
    font-size: 38px;
  }

  .metrics,
  .live-grid,
  .model-list,
  .work-grid,
  .org-grid,
  .tool-grid,
  .career-portal {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 170px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .dashboard-section {
    padding-block: 68px;
  }

  .dashboard-intro h2 {
    font-size: 38px;
  }

  .live-panel {
    padding: 16px;
  }

  .live-panel-head,
  .live-feed div {
    grid-template-columns: 1fr;
  }

  .live-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .live-primary strong {
    font-size: 56px;
  }

  .live-grid article {
    min-height: 128px;
  }

  .live-chart {
    gap: 6px;
    height: 150px;
    padding: 12px;
  }

  .live-feed div {
    display: grid;
    gap: 6px;
  }

  .career-portal {
    gap: 14px;
  }

  .tool-card {
    min-height: 360px;
  }

  .career-portal strong {
    font-size: 30px;
  }

  .model-hero-card,
  .work-feature,
  .work-feature div {
    min-height: 520px;
  }

  .work-grid article,
  .work-grid img {
    min-height: 360px;
  }

  .contact-info dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    flex-direction: column;
  }
}
