:root {
  --ink: #111411;
  --ink-soft: #2f352f;
  --paper: #f2f3ee;
  --white: #ffffff;
  --line: #c9cdc4;
  --line-dark: #3c423c;
  --muted: #686f68;
  --signal: #34d17a;
  --signal-dark: #0b6d39;
  --coral: #ff624d;
  --cool: #dfe7f2;
  --header-height: 72px;
  --shell: 1320px;
  --font-sans: "Manrope", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

html.ip-language-pending body {
  visibility: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

button {
  border: 0;
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.shell {
  width: min(var(--shell), calc(100% - 64px));
  margin: 0 auto;
}

.section-pad {
  padding: 112px 0;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 24px;
  font-size: 48px;
  font-weight: 700;
}

h3 {
  font-size: 22px;
}

.eyebrow,
.section-index,
.plan-tier,
.plan-ribbon,
.video-caption,
.campus-media figcaption {
  margin-bottom: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--signal-dark);
}

.eyebrow.light {
  color: var(--signal);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--signal);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(52, 209, 122, 0.18);
}

.gradient-text {
  color: var(--coral);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.language-trigger:focus-visible,
.language-option:focus-visible,
.menu-toggle:focus-visible,
.video-toggle:focus-visible,
.faq-question:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.button-signal {
  color: var(--ink);
  background: var(--signal);
  border-color: var(--signal);
}

.button-signal:hover {
  background: #5be093;
  border-color: #5be093;
}

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

.button-dark:hover {
  color: var(--ink);
  background: var(--coral);
  border-color: var(--coral);
}

.button-ghost {
  color: var(--white);
  background: rgba(17, 20, 17, 0.22);
  border-color: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(8px);
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  color: var(--ink);
  background: rgba(242, 243, 238, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(17, 20, 17, 0.08);
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  height: 100%;
  align-items: center;
  gap: 40px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 600;
}

.wordmark-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--ink);
  background: var(--signal);
  border-radius: 1px;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.primary-nav a {
  position: relative;
  padding: 24px 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after {
  transform: scaleX(1);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-contact {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 16px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
}

.header-contact:hover {
  color: var(--ink);
  background: var(--signal);
  border-color: var(--signal);
}

.language-switcher {
  position: relative;
}

.language-trigger {
  display: flex;
  min-width: 116px;
  height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 13px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
}

.language-chevron {
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.language-switcher.open .language-chevron {
  transform: rotate(225deg) translate(-2px, -2px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 220px;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: 2px;
  box-shadow: 12px 14px 0 rgba(17, 20, 17, 0.14);
}

.language-option {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 11px;
  color: var(--ink);
  background: transparent;
  border-radius: 1px;
  font-size: 13px;
  text-align: left;
}

.language-option span:last-child {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
}

.language-option:hover,
.language-option.is-active {
  background: var(--signal);
}

.language-option.is-active span:last-child {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid var(--line);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease;
}

/* Video hero */
.lead {
  position: relative;
  height: calc(100svh - 108px);
  min-height: 560px;
  max-height: 780px;
  overflow: hidden;
  color: var(--white);
  background: #111a14;
}

.lead-video,
.lead-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lead-video {
  object-fit: cover;
  object-position: center;
}

.lead-wash {
  background: rgba(6, 14, 9, 0.66);
}

.lead-layout {
  position: relative;
  z-index: 2;
  display: grid;
  height: 100%;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: end;
  gap: 84px;
  padding-top: 70px;
  padding-bottom: 106px;
}

.lead-copy {
  max-width: 860px;
}

.lead h1 {
  max-width: 830px;
  margin-bottom: 24px;
  font-size: 68px;
  font-weight: 700;
}

.lead-summary {
  max-width: 760px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.75;
}

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

.lead-metrics {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.lead-metric {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.lead-metric strong {
  font-family: var(--font-mono);
  font-size: 24px;
}

.lead-metric > span:last-child {
  max-width: 125px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1.35;
  text-align: right;
}

.video-command {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 44px minmax(120px, 320px) auto;
  min-height: 64px;
  align-items: center;
  justify-content: end;
  gap: 18px;
  padding: 10px max(32px, calc((100vw - var(--shell)) / 2));
  background: rgba(17, 20, 17, 0.86);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.video-toggle {
  position: relative;
  width: 42px;
  height: 42px;
  background: var(--signal);
  border-radius: 50%;
}

.play-shape {
  position: absolute;
  top: 12px;
  left: 16px;
  display: none;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid var(--ink);
}

.pause-shape,
.pause-shape::after {
  position: absolute;
  top: 13px;
  width: 4px;
  height: 16px;
  background: var(--ink);
  content: "";
}

.pause-shape {
  left: 15px;
}

.pause-shape::after {
  top: 0;
  left: 8px;
}

.video-toggle.is-paused .play-shape {
  display: block;
}

.video-toggle.is-paused .pause-shape {
  display: none;
}

.video-track {
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.26);
}

.video-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--coral);
}

.video-caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

/* Content sections */
.numbers-strip {
  color: var(--ink);
  background: var(--signal);
  border-bottom: 1px solid var(--ink);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.number-cell {
  display: flex;
  min-height: 138px;
  flex-direction: column;
  justify-content: center;
  padding: 25px 28px;
  border-right: 1px solid rgba(17, 20, 17, 0.34);
}

.number-cell:first-child {
  border-left: 1px solid rgba(17, 20, 17, 0.34);
}

.number-cell strong {
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 31px;
  line-height: 1.1;
}

.number-cell > span:last-child {
  color: rgba(17, 20, 17, 0.68);
  font-size: 12px;
  font-weight: 700;
}

.accent-cell {
  color: var(--white);
  background: var(--coral);
}

.accent-cell > span:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.manifesto {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 920px);
  justify-content: space-between;
  gap: 64px;
}

.section-index {
  color: var(--muted);
}

.manifesto-copy h2 {
  max-width: 900px;
  font-size: 58px;
}

.manifesto-copy > p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(260px, 420px);
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 68px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -34px;
}

.section-heading h2 {
  margin: 0;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
}

.section-heading.wide {
  grid-template-columns: minmax(0, 720px) minmax(280px, 430px);
}

.signal-list {
  border-bottom: 1px solid var(--ink);
}

.signal-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 220px;
  align-items: center;
  gap: 52px;
  padding: 38px 0;
  border-top: 1px solid var(--ink);
}

.signal-number {
  color: var(--coral);
  font-family: var(--font-mono);
  font-size: 39px;
  font-weight: 600;
}

.signal-row h3 {
  margin-bottom: 10px;
}

.signal-row p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.signal-label {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

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

.operations-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 86px;
}

.operations-photo {
  position: relative;
  min-height: 760px;
}

.operations-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-stamp {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  min-width: 190px;
  flex-direction: column;
  padding: 20px;
  color: var(--ink);
  background: var(--signal);
}

.photo-stamp strong {
  font-family: var(--font-mono);
  font-size: 19px;
}

.photo-stamp span {
  font-size: 11px;
}

.dark-heading {
  margin-bottom: 34px;
}

.dark-heading > p:last-child {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
}

.operations-list {
  border-bottom: 1px solid var(--line-dark);
}

.operations-list article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  padding: 25px 0;
  border-top: 1px solid var(--line-dark);
}

.operations-list article > span {
  color: var(--coral);
  font-family: var(--font-mono);
  font-size: 12px;
}

.operations-list h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.operations-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.plans {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

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

.plan {
  position: relative;
  display: flex;
  min-height: 620px;
  flex-direction: column;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.plan-featured {
  background: #e8f8ee;
  border: 2px solid var(--signal-dark);
}

.plan-tier {
  margin-bottom: 32px;
  color: var(--signal-dark);
}

.plan h3 {
  margin-bottom: 12px;
  font-size: 28px;
}

.plan-description {
  min-height: 58px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 14px;
}

.plan-ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  margin: 0;
  padding: 6px 9px;
  color: var(--white);
  background: var(--coral);
  border-radius: 1px;
}

.plan-price {
  display: flex;
  min-height: 100px;
  align-items: baseline;
  gap: 6px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.plan-price > span {
  font-family: var(--font-mono);
  font-size: 17px;
}

.plan-price strong {
  font-family: var(--font-mono);
  font-size: 39px;
  line-height: 1;
}

.plan-price small {
  color: var(--muted);
  font-size: 11px;
}

.plan-custom strong {
  font-family: var(--font-sans);
  font-size: 28px;
}

.plan ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 32px;
  padding: 0;
  list-style: none;
}

.plan li {
  position: relative;
  padding-left: 21px;
  color: var(--ink-soft);
  font-size: 13px;
}

.plan li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--signal-dark);
  font-family: var(--font-mono);
  font-weight: 700;
  content: "+";
}

.plan .button {
  width: 100%;
  margin-top: auto;
}

.campus {
  background: var(--cool);
}

.campus-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.76fr) minmax(0, 1.24fr);
  align-items: center;
  gap: 76px;
}

.campus-copy > p:not(.eyebrow) {
  margin-bottom: 32px;
  color: var(--muted);
}

.campus-facts {
  display: grid;
  margin-bottom: 34px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.campus-facts > div {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(17, 20, 17, 0.24);
}

.campus-facts > div:last-child {
  border-bottom: 0;
}

.campus-facts strong {
  font-family: var(--font-mono);
  font-size: 19px;
}

.campus-facts span {
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.campus-media {
  position: relative;
  margin: 0;
}

.campus-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.campus-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 10px 13px;
  color: var(--white);
  background: var(--coral);
}

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

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  list-style: none;
}

.process-list li {
  min-height: 320px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.process-list li:last-child {
  border-right: 0;
}

.process-list li > span {
  display: block;
  margin-bottom: 70px;
  color: var(--coral);
  font-family: var(--font-mono);
  font-size: 13px;
}

.process-list h3 {
  margin-bottom: 14px;
  font-size: 19px;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.network-row {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  align-items: end;
  gap: 90px;
}

.network-row > div > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.network-names {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.network-names li {
  padding: 20px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--font-mono);
  font-size: 16px;
}

.network-names li:nth-child(even) {
  border-right: 0;
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: start;
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-list {
  border-bottom: 1px solid var(--ink);
}

.faq-item {
  border-top: 1px solid var(--ink);
}

.faq-question {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) 24px;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
  background: transparent;
  font-size: 17px;
  font-weight: 700;
  text-align: left;
}

.faq-question i,
.faq-question i::after {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease;
}

.faq-question i::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-question i::after {
  transform: rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 28px;
}

.contact {
  background: var(--signal);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  gap: 90px;
}

.contact-copy h2 {
  font-size: 54px;
}

.contact-copy p {
  max-width: 600px;
  margin: 0;
  color: rgba(17, 20, 17, 0.7);
}

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

.contact-form label:nth-child(3),
.contact-form .form-note {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select {
  width: 100%;
  height: 56px;
  padding: 0 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--ink);
  border-radius: 2px;
  outline: none;
}

.contact-form input::placeholder {
  color: #596059;
}

.contact-form .button {
  min-height: 56px;
}

.form-note {
  margin: 2px 0 0;
  color: rgba(17, 20, 17, 0.68);
  font-size: 11px;
}

/* Footer */
.site-footer {
  padding: 78px 0 28px;
  color: var(--white);
  background: #080a08;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(150px, 0.7fr));
  gap: 50px;
  padding-bottom: 64px;
}

.footer-wordmark {
  margin-bottom: 24px;
}

.footer-brand > p {
  max-width: 380px;
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 12px;
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.59);
  font-size: 12px;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

html[dir="rtl"] .primary-nav,
html[dir="rtl"] .header-tools,
html[dir="rtl"] .lead-actions {
  direction: rtl;
}

html[dir="rtl"] .language-menu {
  right: auto;
  left: 0;
}

html[dir="rtl"] .language-option,
html[dir="rtl"] .faq-question {
  text-align: right;
}

html[dir="rtl"] .plan li {
  padding-right: 21px;
  padding-left: 0;
}

html[dir="rtl"] .plan li::before {
  right: 0;
  left: auto;
}

@media (max-width: 1120px) {
  .shell {
    width: min(var(--shell), calc(100% - 48px));
  }

  .primary-nav {
    gap: 18px;
  }

  .primary-nav a {
    font-size: 12px;
  }

  .header-contact {
    display: none;
  }

  .lead h1 {
    font-size: 56px;
  }

  .lead-layout {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 44px;
  }

  .operations-grid,
  .campus-grid {
    gap: 52px;
  }

  .operations-photo {
    min-height: 680px;
  }

  .plan {
    padding: 26px;
  }

  .plan-price strong {
    font-size: 32px;
  }

  .contact-grid,
  .network-row,
  .faq-grid {
    gap: 56px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 64px;
  }

  .section-pad {
    padding: 82px 0;
  }

  h2,
  .manifesto-copy h2,
  .contact-copy h2 {
    font-size: 40px;
  }

  .header-row {
    grid-template-columns: auto 1fr;
    gap: 18px;
  }

  .header-tools {
    justify-self: end;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 34px 24px;
    background: var(--paper);
  }

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

  .primary-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 20px;
  }

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

  .lead {
    height: calc(100svh - 92px);
    min-height: 570px;
  }

  .lead-layout {
    display: block;
    padding-top: 64px;
    padding-bottom: 94px;
  }

  .lead-copy {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: flex-end;
  }

  .lead h1 {
    font-size: 48px;
  }

  .lead-summary {
    font-size: 15px;
  }

  .lead-metrics {
    display: none;
  }

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

  .number-cell:nth-child(2) {
    border-right: 0;
  }

  .number-cell:nth-child(3),
  .number-cell:nth-child(4) {
    border-top: 1px solid rgba(17, 20, 17, 0.34);
  }

  .manifesto-grid,
  .section-heading,
  .section-heading.wide,
  .operations-grid,
  .campus-grid,
  .network-row,
  .faq-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-heading > *,
  .manifesto-grid > *,
  .operations-grid > *,
  .campus-grid > *,
  .network-row > *,
  .faq-grid > *,
  .contact-grid > * {
    min-width: 0;
  }

  .section-heading .eyebrow {
    grid-column: auto;
    margin-bottom: -30px;
  }

  .signal-row {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 32px;
  }

  .signal-label {
    grid-column: 2;
  }

  .operations-photo {
    min-height: 440px;
  }

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

  .plan {
    min-height: 0;
  }

  .plan-description {
    min-height: 0;
  }

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

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(3),
  .process-list li:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .faq-intro {
    position: static;
  }

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

@media (max-width: 560px) {
  .shell {
    width: calc(100% - 32px);
  }

  .section-pad {
    padding: 66px 0;
  }

  h2,
  .manifesto-copy h2,
  .contact-copy h2 {
    font-size: 34px;
  }

  .wordmark {
    font-size: 14px;
  }

  .wordmark-mark {
    width: 29px;
    height: 29px;
  }

  .header-tools {
    gap: 7px;
  }

  .language-trigger {
    min-width: 92px;
    padding: 0 9px;
  }

  .language-current {
    display: block;
    max-width: 62px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .language-menu {
    position: fixed;
    top: 72px;
    right: 16px;
    left: 16px;
    width: auto;
    max-height: calc(100svh - 88px);
    overflow-y: auto;
  }

  html[dir="rtl"] .language-menu {
    right: 16px;
    left: 16px;
  }

  .lead {
    height: calc(100svh - 82px);
    min-height: 550px;
    max-height: 720px;
  }

  .lead-layout {
    padding-top: 42px;
    padding-bottom: 90px;
  }

  .lead h1 {
    margin-bottom: 18px;
    font-size: 38px;
  }

  .lead-summary {
    margin-bottom: 22px;
    font-size: 13px;
    line-height: 1.6;
  }

  .lead-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .video-command {
    grid-template-columns: 42px minmax(70px, 1fr) auto;
    gap: 10px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .video-caption {
    max-width: 98px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .number-cell {
    min-height: 110px;
    padding: 18px 16px;
  }

  .number-cell strong {
    font-size: 24px;
  }

  .manifesto-grid {
    gap: 22px;
  }

  .section-heading,
  .section-heading.wide {
    gap: 48px;
    margin-bottom: 48px;
  }

  .signal-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 30px 0;
  }

  .signal-label {
    grid-column: auto;
  }

  .signal-number {
    font-size: 34px;
  }

  .operations-grid,
  .campus-grid,
  .network-row,
  .faq-grid,
  .contact-grid {
    gap: 42px;
  }

  .operations-photo {
    min-height: 360px;
  }

  .plan {
    padding: 24px 20px;
  }

  .plan h3 {
    padding-right: 70px;
    font-size: 24px;
  }

  .plan-price strong {
    font-size: 30px;
  }

  .campus-facts span {
    max-width: 150px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list li:last-child {
    border-bottom: 0;
  }

  .process-list li > span {
    margin-bottom: 32px;
  }

  .network-names {
    grid-template-columns: 1fr;
  }

  .network-names li,
  .network-names li:nth-child(even) {
    border-right: 0;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form label:nth-child(3),
  .contact-form .form-note {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

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

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

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