/* ================================================================
   VEKTRA — Freight in Motion (concept)
   Design language: ink/paper industrial minimal, mono micro-labels,
   fluid vw-rem scale, pill UI, full-bleed media sections.
   ================================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Overused Grotesk';
  src: url('../fonts/OverusedGrotesk-Roman.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Overused Grotesk';
  src: url('../fonts/OverusedGrotesk-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Overused Grotesk';
  src: url('../fonts/OverusedGrotesk-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('../fonts/IBMPlexMono-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('../fonts/IBMPlexMono-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --ink: #151515;
  --ink-88: rgba(21,21,21,.88);
  --ink-64: rgba(21,21,21,.64);
  --ink-48: rgba(21,21,21,.48);
  --ink-16: rgba(21,21,21,.16);
  --ink-08: rgba(21,21,21,.08);
  --paper: #EDEDED;
  --paper-64: rgba(237,237,237,.64);
  --paper-48: rgba(237,237,237,.48);
  --paper-16: rgba(237,237,237,.16);
  --paper-08: rgba(237,237,237,.08);
  --card: #FDFCFB;
  --news-bg: #DFDFDD;
  --grotesk: 'Overused Grotesk', Arial, sans-serif;
  --mono: 'IBM Plex Mono', 'SF Mono', monospace;
  --r-pill: .44rem;      /* 6.3px */
  --r-card: .56rem;      /* 8px  */
  --pad-x: 1.78rem;      /* 25.6px */
  --sec-y: 6.67rem;      /* 96px  */
  --ease: cubic-bezier(.25,.8,.25,1);
}

/* ---------- Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 1vw; scroll-behavior: smooth; }
@media (max-width: 991px) { html { font-size: clamp(9.5px, 1.5vw, 12px); } }
@media (max-width: 767px) { html { font-size: clamp(10px, 2.7vw, 11.5px); } }
@media (min-width: 1921px) { html { font-size: 19.2px; } }

body {
  font-family: var(--grotesk);
  font-size: .89rem;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

h1, h2, h3 { font-weight: 500; line-height: 1.05; letter-spacing: -.032em; }
.dim { color: var(--ink-48); }
.network .dim, .footer .dim { color: var(--paper-48); }

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

/* mono micro tag */
.mono-tag {
  font-family: var(--mono);
  font-size: .67rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: .67rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .04em;
  padding: .62rem 1rem; border-radius: var(--r-pill);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn--light { background: var(--paper); color: var(--ink); }
.btn--light:hover { background: #fff; }
.btn--ghost-dark { background: var(--paper-08); color: var(--paper); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.btn--ghost-dark:hover { background: var(--paper-16); }
.btn--ghost-light { background: var(--ink-08); color: var(--ink); }
.btn--ghost-light:hover { background: var(--ink); color: var(--paper); }
.btn--dark { background: var(--ink); color: var(--paper); }
.btn--dark:hover { background: #000; }

/* ---------- Label (+ prefix) ---------- */
.label {
  display: flex; align-items: center; gap: .5rem;
  font-size: .89rem; color: var(--ink);
}
.label_plus { font-weight: 400; font-size: 1rem; line-height: 1; }
.label--center { justify-content: center; }
.label--ondark { color: var(--paper); }

/* ================= NAV ================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem var(--pad-x);
}
.logo-word {
  font-family: var(--grotesk); font-weight: 600; font-size: 1.15rem;
  letter-spacing: .3em; display: inline-block;
  transform: scaleX(1.28); transform-origin: left center;
}
.nav_links { display: flex; gap: .28rem; position: absolute; left: 50%; transform: translateX(-50%); }
.nav_right { display: flex; gap: .28rem; align-items: center; }
.nav_pill {
  display: inline-block;
  font-family: var(--mono); font-size: .67rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .04em;
  padding: .44rem .67rem; border-radius: var(--r-pill);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: background .25s, color .25s;
}
.nav--dark { color: var(--paper); }
.nav--dark .nav_pill { background: var(--paper-08); color: var(--paper); }
.nav--dark .nav_pill:hover { background: var(--paper-16); }
.nav--dark .nav_cta { background: var(--paper); color: var(--ink); }
.nav--light { color: var(--ink); }
.nav--light .nav_pill { background: var(--ink-08); color: var(--ink); }
.nav--light .nav_pill:hover { background: var(--ink-16); }
.nav--light .nav_cta { background: var(--ink); color: var(--paper); }
.nav_burger { display: none; }

/* mobile menu */
.mmenu {
  position: fixed; inset: 0; z-index: 90; background: var(--ink); color: var(--paper);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  gap: 2rem; padding: var(--pad-x); opacity: 0; pointer-events: none; transition: opacity .35s var(--ease);
}
.mmenu.open { opacity: 1; pointer-events: auto; }
.mmenu ul li a { font-size: 3rem; font-weight: 500; letter-spacing: -.03em; line-height: 1.3; }

/* menu-open state: lock scroll + force nav pills onto dark overlay,
   overriding the section theme flip while the ink overlay is up */
html.menu-open { overflow: hidden; }
html.menu-open .nav { color: var(--paper); }
html.menu-open .nav .nav_pill { background: var(--paper-08); color: var(--paper); }
html.menu-open .nav .nav_pill:hover { background: var(--paper-16); }
html.menu-open .nav .nav_cta { background: var(--paper); color: var(--ink); }

/* ================= HERO ================= */
.hero { position: relative; height: 100vh; min-height: 42rem; color: var(--paper); overflow: hidden; }
.hero_media { position: absolute; inset: 0; }
.hero_media video { width: 100%; height: 100%; object-fit: cover; }
.hero_shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.18) 42%, rgba(0,0,0,.44) 100%);
}
.hero_content { position: absolute; top: 44%; left: 30%; transform: translateY(-50%); z-index: 2; }
.hero_title { font-size: 5.33rem; letter-spacing: -.032em; }
.hero_ctas { display: flex; gap: .44rem; margin-top: 2.2rem; }
.hero_note {
  position: absolute; right: var(--pad-x); top: 44%; z-index: 2;
  width: 18rem; font-size: .89rem; color: var(--paper); opacity: .92;
}
.hero_bottom {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; align-items: flex-end; padding: 1.78rem var(--pad-x);
}
.hero_scrollhint {
  position: absolute; left: 31.5%;
  display: flex; align-items: center; gap: .5rem; font-size: .89rem;
  bottom: 2rem;
}
.hero_scrollhint svg { animation: hint-bob 2.2s var(--ease) infinite; }
@keyframes hint-bob { 0%,100% { transform: translateY(-2px); } 50% { transform: translateY(3px); } }
.hero_bottom .media-toggle { position: static; order: 1; margin-left: auto; align-self: flex-end; margin-bottom: .3rem; }
.hero_newscard { order: 2; }
.hero_newscard {
  margin-left: .67rem; margin-right: 0;
  display: flex; gap: .67rem; width: 18.4rem; padding: .67rem;
  background: rgba(21,21,21,.48); border-radius: var(--r-pill);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: background .3s;
}
.hero_newscard:hover { background: rgba(21,21,21,.64); }
.hero_newscard img { width: 4.4rem; height: 4.4rem; object-fit: cover; border-radius: .33rem; flex-shrink: 0; }
.hero_newscard-body { display: flex; flex-direction: column; justify-content: space-between; flex: 1; }
.hero_newscard-body > p { font-size: .89rem; line-height: 1.35; }
.hero_newscard-meta { display: flex; justify-content: space-between; align-items: center; color: var(--paper-64); }

/* media pause toggle */
.media-toggle {
  position: absolute; right: var(--pad-x); bottom: 2rem; z-index: 3;
  width: 2.2rem; height: 1.7rem; border-radius: .33rem;
  background: var(--paper-08); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center; color: var(--paper);
  transition: background .25s;
}
.media-toggle:hover { background: var(--paper-16); }
.media-toggle--dark { background: var(--ink-08); color: var(--ink); }
.media-toggle--dark:hover { background: var(--ink-16); }
.mt-pause { position: relative; width: .5rem; height: .6rem; }
.mt-pause::before, .mt-pause::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: .14rem; background: currentColor;
}
.mt-pause::before { left: 0; } .mt-pause::after { right: 0; }
.media-toggle.paused .mt-pause::before {
  left: 0; width: 0; height: 0; top: -0.03rem; bottom: auto; background: transparent;
  border-left: .55rem solid currentColor; border-top: .34rem solid transparent; border-bottom: .34rem solid transparent;
}
.media-toggle.paused .mt-pause::after { display: none; }

/* ================= SECTIONS ================= */
.section { padding: var(--sec-y) var(--pad-x); }

/* ---------- About ---------- */
.about { padding-bottom: 0; }
.about_head { display: flex; justify-content: space-between; align-items: flex-start; gap: 3rem; }
.about_statement { max-width: 44rem; text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 1.78rem; }
.about_title { font-size: 2rem; line-height: 1.2; letter-spacing: -.015em; }

/* ---------- Slider (generic) ---------- */
.slider { overflow: hidden; cursor: grab; touch-action: pan-y; }
.slider.dragging { cursor: grabbing; }
.slider_track { display: flex; gap: 1.1rem; will-change: transform; }
.slider_track > * { flex-shrink: 0; }
.slider_nav { display: flex; gap: .44rem; margin-top: 1.78rem; }
.slider_btn {
  width: 2.8rem; height: 2.8rem; border-radius: var(--r-pill);
  display: flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--paper);
  transition: background .25s, color .25s, opacity .25s;
}
.slider_btn:hover { background: #000; }
.slider_btn[disabled] { background: var(--ink-08); color: var(--ink-48); cursor: default; }

/* ---------- Services ---------- */
.services { margin-top: 4.44rem; padding-bottom: var(--sec-y); }
.svc-card {
  position: relative; width: 32.9vw; border-radius: var(--r-card); overflow: hidden;
  color: var(--paper);
}
.svc-card_img { aspect-ratio: 474/500; overflow: hidden; }
.svc-card_img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease); will-change: transform;
}
.svc-card:hover .svc-card_img img { transform: scale(1.06); }
.svc-card_body {
  position: absolute; inset: auto 0 0 0; padding: 1.55rem;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 100%);
}
.svc-card_body h3 { font-size: 1.56rem; margin-bottom: .55rem; }
.svc-card_body p { font-size: .89rem; color: var(--paper-64); max-width: 26rem; }

/* ---------- Clients: shrink-on-scroll ---------- */
.clients { position: relative; height: 280vh; background: var(--paper); }
.clients_sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.clients_text {
  position: absolute; top: 0; left: 0; right: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 1.55rem;
  padding: 9rem var(--pad-x) 0;
  text-align: center;
}
.clients_text h2 { font-size: 2.67rem; max-width: 46rem; letter-spacing: -.03em; }
.clients_media {
  position: absolute; top: 50%; left: 50%;
  width: 100vw; height: 100vh;
  transform: translate(-50%, -50%);
  border-radius: 0; overflow: hidden;
  will-change: width, height, transform;
}
.clients_media video { width: 100%; height: 100%; object-fit: cover; }
.clients_media .media-toggle { right: 1rem; bottom: 1rem; }

/* ---------- Logo marquee ---------- */
.logos { padding: 4.44rem 0; overflow: hidden; }
.logos_marquee { display: flex; width: max-content; }
.logos_set {
  display: flex; align-items: center; gap: 4.44rem; padding-right: 4.44rem;
  color: var(--ink-64);
}
.lg { font-size: 1.67rem; white-space: nowrap; }
.lg sup { font-size: .6em; }
.lg-1 { font-weight: 600; letter-spacing: -.02em; }
.lg-2 { font-weight: 500; letter-spacing: .18em; font-size: 1.4rem; }
.lg-3 { font-weight: 400; font-style: italic; }
.lg-4 { font-family: var(--mono); font-weight: 500; font-size: 1.35rem; letter-spacing: .1em; }
.lg-5 { font-weight: 400; }
.lg-6 { font-weight: 600; }
.lg-7 { font-family: var(--mono); font-size: 1.45rem; }
.lg-8 { font-weight: 500; font-style: italic; letter-spacing: -.01em; }

/* ---------- Testimonial ---------- */
.testimonial { background: var(--paper); }
.testimonial_grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.testimonial_left { display: flex; flex-direction: column; gap: 2rem; }
.testimonial_left h2 { font-size: 2.67rem; letter-spacing: -.03em; max-width: 38rem; }
.testimonial_attr { color: var(--ink-64); font-size: .89rem; }
.testimonial_media { position: relative; border-radius: var(--r-card); overflow: hidden; aspect-ratio: 640/600; }
.testimonial_media img { width: 100%; height: 100%; object-fit: cover; }
.testimonial_case {
  position: absolute; right: 1rem; bottom: 1rem; left: auto;
  display: flex; flex-direction: column; gap: .2rem;
  background: rgba(21,21,21,.48); color: var(--paper);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: .78rem 1rem; border-radius: var(--r-pill); font-size: .89rem;
  transition: background .3s;
}
.testimonial_case:hover { background: rgba(21,21,21,.64); }
.testimonial_case-link { color: var(--paper-64); text-decoration: underline; text-underline-offset: 3px; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.78rem; margin-top: 5.5rem; max-width: 44rem; }
.stat { border-top: 1px solid var(--ink-16); padding-top: 1.33rem; }
.stat_num { font-size: 3.56rem; font-weight: 500; letter-spacing: -.03em; line-height: 1; margin-bottom: .67rem; }
.stat p { color: var(--ink-64); }

/* ---------- Network ---------- */
.network {
  position: relative; background: var(--ink); color: var(--paper);
  min-height: 72rem; overflow: hidden; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.network_title { font-size: 5.33rem; margin-top: 1.55rem; position: relative; z-index: 2; }
.network_title .dim { color: var(--paper-48); }
.network_cta { margin-top: 2rem; position: relative; z-index: 2; }
.network_earth {
  position: absolute; left: 50%; bottom: -4rem; transform: translateX(-50%);
  width: 120rem; max-width: none; z-index: 0; opacity: .92;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
}
.network_earth img { width: 100%; will-change: transform; }
.network_overlay {
  position: absolute; left: 0; right: 0; bottom: 18rem; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 1.55rem;
  padding: 0 var(--pad-x);
}
.network_caption { color: var(--paper-64); }
.network_tags {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .44rem; max-width: 42rem;
}
.network_tags li {
  font-family: var(--mono); font-size: .67rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .04em;
  background: var(--paper-08); border-radius: var(--r-pill);
  padding: .44rem .67rem;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}

/* ---------- Newsroom ---------- */
.newsroom { background: var(--news-bg); padding-right: 0; overflow: clip; }
.newsroom_head {
  display: grid; grid-template-columns: 1fr 2fr; gap: 3rem;
  margin-bottom: 4rem; padding-right: var(--pad-x);
}
.newsroom_head h2 { font-size: 3.56rem; letter-spacing: -.031em; }
.newsroom .slider { padding-right: var(--pad-x); }
.news-card {
  width: 24.9rem; background: var(--card); border-radius: var(--r-card);
  padding: 1.33rem; display: flex; flex-direction: column; gap: 1.1rem;
}
.news-card > .mono-tag {
  align-self: flex-start; background: var(--ink-08); border-radius: var(--r-pill);
  padding: .3rem .55rem;
}
.news-card h3 { font-size: 2rem; letter-spacing: -.015em; line-height: 1.15; min-height: 6.7rem; }
.news-card_img { border-radius: .44rem; overflow: hidden; aspect-ratio: 4/3; }
.news-card_img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.news-card:hover .news-card_img img { transform: scale(1.05); }
.news-card_meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: var(--ink-64); margin-top: .2rem;
}
.news-card_meta a { text-decoration: underline; text-underline-offset: 3px; color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); padding-top: 8.9rem; }
.faq_giant { font-size: 8.9rem; letter-spacing: -.028em; line-height: .9; margin-bottom: 4.44rem; }
.faq_item { border-bottom: 1px solid var(--ink-16); }
.faq_item:first-child { border-top: 1px solid var(--ink-16); }
.faq_q {
  width: 100%; display: flex; justify-content: space-between; align-items: baseline;
  padding: 2rem 0; text-align: left; gap: 2rem;
}
.faq_no { font-family: var(--mono); font-size: .89rem; color: var(--ink-64); }
.faq_question {
  font-size: 2rem; font-weight: 500; letter-spacing: -.015em; text-align: right;
  transition: color .3s, transform .4s var(--ease);
}
.faq_q:hover .faq_question { color: var(--ink-64); }
.faq_a {
  overflow: hidden; height: 0; opacity: 0;
  display: flex; justify-content: flex-end;
  transition: height .45s var(--ease), opacity .4s var(--ease);
}
.faq_a p {
  max-width: 40rem; text-align: right; color: var(--ink-64);
  padding: 0 0 2rem; font-size: 1rem; line-height: 1.6;
}
.faq_item.open .faq_a { opacity: 1; }

/* ---------- CTA ---------- */
.cta { position: relative; min-height: 40rem; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.cta > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta_wash { position: absolute; inset: 0; background: rgba(237,237,237,.4); }
.cta_content { position: relative; z-index: 2; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.cta_content h2 { font-size: 3.56rem; letter-spacing: -.031em; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--paper); padding: 4.44rem 0 1.78rem; overflow: hidden; }
.footer a:hover { color: #fff; }
.footer_marquee { overflow: hidden; margin-bottom: 5.5rem; }
.footer_marquee-inner { display: flex; width: max-content; will-change: transform; }
.footer_marquee-inner span {
  font-size: 8rem; font-weight: 500; letter-spacing: -.03em; line-height: 1.1;
  white-space: nowrap;
}
.footer_grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 2rem; padding: 0 var(--pad-x); margin-bottom: 8rem;
}
.footer_col .mono-tag { display: block; margin-bottom: 1.1rem; }
.footer_col p, .footer_col li { font-size: .89rem; line-height: 1.6; }
.footer_col li { margin-bottom: .22rem; }
.footer_sub { margin-top: 2rem; }
.footer_tel { text-decoration: underline; text-underline-offset: 3px; }
.footer_form {
  display: flex; align-items: center; background: var(--paper-08);
  border-radius: var(--r-pill); padding: .3rem .3rem .3rem 1rem;
}
.footer_form input {
  flex: 1; background: none; border: 0; outline: none; color: var(--paper);
  font: inherit; font-size: .89rem;
}
.footer_form input::placeholder { color: var(--paper-48); }
.footer_form button {
  width: 2.2rem; height: 2.2rem; border-radius: .33rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper-08); color: var(--paper); transition: background .25s;
}
.footer_form button:hover { background: var(--paper-16); }
.footer_disclaimer { margin-top: .78rem; font-size: .78rem; }
.footer_bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.78rem var(--pad-x) 0; border-top: 1px solid var(--paper-16);
}
.logo-word--big { font-size: 2rem; }
.footer_social { display: flex; gap: 1.1rem; }
.footer_social a { opacity: .64; transition: opacity .25s; display: flex; }
.footer_social a:hover { opacity: 1; }
.footer_credit { font-size: .78rem; }

/* ---------- Reveal helpers (JS sets final state) ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(1.5rem); }
.js .split-lines .line, .js .split-lines-scroll .line { display: block; overflow: hidden; }
.js .split-lines .line-inner, .js .split-lines-scroll .line-inner {
  display: block; transform: translateY(110%);
}
.js .img-reveal img { clip-path: inset(0 0 100% 0); }

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .svc-card { width: 46vw; }
  .news-card { width: 34rem; }
}

@media (max-width: 767px) {
  .nav_links, .nav_lang { display: none; }
  .nav_burger { display: inline-block; position: relative; }
  /* invisible 44x44 minimum tap target around the small pill */
  .nav_burger::after {
    content: ''; position: absolute; left: 50%; top: 50%;
    width: 44px; height: 44px; min-width: 100%; min-height: 100%;
    transform: translate(-50%, -50%);
  }
  .hero_content { left: var(--pad-x); right: var(--pad-x); top: 40%; }
  .hero_title { font-size: 3.7rem; }
  .hero_note { display: none; }
  .hero_scrollhint { position: static; transform: none; }
  .hero_newscard { display: none; }
  .hero_bottom { justify-content: space-between; }
  .media-toggle { position: static; }
  .about_head { flex-direction: column; }
  .about_statement { text-align: left; align-items: flex-start; }
  .about_title { font-size: 1.7rem; }
  .svc-card { width: 80vw; }
  .clients { height: 220vh; }
  .clients_text { padding-top: 7rem; }
  .clients_text h2 { font-size: 2rem; }
  .testimonial_grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; margin-top: 3rem; }
  .network { min-height: 56rem; }
  .network_title { font-size: 3.2rem; }
  .network_earth { width: 70rem; }
  .network_overlay { bottom: 6rem; }
  .newsroom_head { grid-template-columns: 1fr; gap: 1.5rem; }
  .newsroom_head h2 { font-size: 2.6rem; }
  .news-card { width: 78vw; }
  .news-card h3 { font-size: 1.7rem; min-height: auto; }
  .faq_giant { font-size: 22vw; }
  .faq_question { font-size: 1.35rem; }
  .faq_a p { max-width: 100%; }
  .cta_content h2 { font-size: 2.4rem; }
  .cta .media-toggle { position: absolute; right: var(--pad-x); bottom: 1.5rem; }
  .footer_marquee-inner span { font-size: 4rem; }
  .footer_grid { grid-template-columns: 1fr; gap: 3rem; margin-bottom: 4rem; }
  .footer_bottom { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .js .split-lines .line-inner, .js .split-lines-scroll .line-inner { transform: none; }
  .js .img-reveal img { clip-path: none; }
  .hero_scrollhint svg { animation: none; }
  .mmenu { transition: none; }
}
