/* ════════════════════════════════════════════════════════════
   GLOBAL COR3 SOLUTIONS — styles.css
   Palette:
     Ink    #0C1424  · headings, footer
     Paper  #FAFBFD  · page background
     Slate  #49536A  · body text
     Cobalt #1E4FC2  · primary actions, links
     Mist   #DEE5F2  · hairlines, borders
     Ice    #EEF2FA  · tinted panels
   Type:
     Display — Bricolage Grotesque
     Body    — Public Sans
     Utility — IBM Plex Mono
════════════════════════════════════════════════════════════ */

@import url('https://cdn.jsdelivr.net/npm/@fontsource-variable/bricolage-grotesque/index.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource-variable/public-sans/index.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/ibm-plex-mono/400.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/ibm-plex-mono/500.css');

:root {
  --font-display: 'Bricolage Grotesque Variable', 'Bricolage Grotesque', sans-serif;
  --font-body:    'Public Sans Variable', 'Public Sans', sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;

  --ink:    #0C1424;
  --paper:  #FAFBFD;
  --slate:  #49536A;
  --cobalt: #1E4FC2;
  --cobalt-deep: #16389B;
  --mist:   #DEE5F2;
  --ice:    #EEF2FA;
  --white:  #FFFFFF;
  --ok:     #157F5F;

  --nav-h: 68px;
  --radius: 10px;
  --container: 1120px;
  --shadow-card: 0 1px 2px rgba(12, 20, 36, 0.05), 0 8px 28px rgba(12, 20, 36, 0.06);
}

/* ── Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  background: var(--paper);
  color: var(--slate);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.015em;
}

a { color: var(--cobalt); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 3px;
  border-radius: 3px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.35rem);
  max-width: 620px;
  margin-bottom: 12px;
}
.section-lede { max-width: 560px; font-size: 1.02rem; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
}
.btn:hover { text-decoration: none; }
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }

.btn-solid { background: var(--cobalt); color: var(--white); }
.btn-solid:hover { background: var(--cobalt-deep); transform: translateY(-1px); }

.btn-line { background: transparent; color: var(--ink); border-color: var(--mist); }
.btn-line:hover { border-color: var(--cobalt); color: var(--cobalt); }

/* ── Navbar ───────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(250, 251, 253, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--mist);
}
.site-nav .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand img { height: 30px; width: auto; }
.brand .brand-global {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--cobalt);
  display: block;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 13px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  border-radius: 8px;
}
.nav-links a:hover { color: var(--ink); background: var(--ice); text-decoration: none; }
.nav-links .nav-cta {
  margin-left: 8px;
  background: var(--cobalt);
  color: var(--white);
  font-weight: 600;
  padding: 9px 18px;
}
.nav-links .nav-cta:hover { background: var(--cobalt-deep); color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--mist);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { width: 20px; height: 20px; display: block; }

/* ── Hero ─────────────────────────────────────────────────── */
#hero { padding: 96px 0 72px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 64px;
  align-items: center;
}
.hero-kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 20px;
}
.hero-kicker b { color: var(--cobalt); font-weight: 500; }
.hero-title {
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  font-weight: 650;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: normal;
  color: var(--cobalt);
}
.hero-sub {
  font-size: 1.08rem;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }

.hero-proof {
  display: flex;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--mist);
}
.proof-item .proof-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 650;
  color: var(--ink);
  line-height: 1;
}
.proof-item .proof-label {
  font-size: 0.78rem;
  color: var(--slate);
  margin-top: 5px;
}

/* Coverage card — the hero's signature element */
.coverage-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  padding: 26px 26px 22px;
}
.coverage-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.coverage-head h3 { font-size: 1.02rem; font-weight: 600; }
.coverage-status {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  color: var(--ok);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.coverage-status::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ok);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.35; } }

.coverage-note {
  font-size: 0.82rem;
  color: var(--slate);
  margin-bottom: 20px;
}

.tz-row { padding: 13px 0; border-top: 1px solid var(--ice); }
.tz-row:first-of-type { border-top: 1px solid var(--mist); }
.tz-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.tz-city { font-size: 0.86rem; font-weight: 600; color: var(--ink); }
.tz-clock {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--slate);
  font-variant-numeric: tabular-nums;
}
.tz-bar {
  position: relative;
  height: 8px;
  border-radius: 4px;
  background: var(--ice);
  overflow: hidden;
}
.tz-fill {
  position: absolute;
  top: 0; bottom: 0;
  left: 37.5%;            /* 09:00 */
  width: 33.4%;           /* to 17:00 */
  border-radius: 4px;
  background: var(--cobalt);
  opacity: 0.85;
}
.coverage-foot {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  color: var(--slate);
}
.coverage-foot .swatch {
  display: inline-block;
  width: 16px; height: 8px;
  border-radius: 4px;
  background: var(--cobalt);
  opacity: 0.85;
  vertical-align: middle;
  margin-right: 7px;
}

/* ── Client strip ─────────────────────────────────────────── */
#clients { padding: 0 0 72px; }
.client-strip {
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
  padding: 26px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 40px;
}
.client-strip .strip-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
}
.client-name {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  opacity: 0.55;
  transition: opacity 0.18s;
}
.client-name:hover { opacity: 1; }

/* ── Services — spec-sheet ledger ─────────────────────────── */
#services { background: var(--white); border-block: 1px solid var(--mist); }
.services-head { margin-bottom: 52px; }

.service-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--mist);
}
.service-row:last-of-type { border-bottom: 1px solid var(--mist); }

.service-index {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--cobalt);
  padding-top: 6px;
}
.service-main h3 { font-size: 1.32rem; margin-bottom: 10px; }
.service-main p { max-width: 460px; }

.service-includes {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  line-height: 1.5;
  color: var(--slate);
  list-style: none;
  padding-top: 6px;
}
.service-includes li {
  padding: 7px 0 7px 20px;
  position: relative;
  border-bottom: 1px dashed var(--mist);
}
.service-includes li:last-child { border-bottom: none; }
.service-includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--cobalt);
}
.includes-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}

/* ── Work ─────────────────────────────────────────────────── */
.work-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.work-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 14px;
  overflow: hidden;
  color: inherit;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.work-card:hover {
  text-decoration: none;
  border-color: var(--cobalt);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.work-thumb {
  padding: 22px 26px 0;
  background: var(--ice);
}
.work-browser {
  background: var(--white);
  border: 1px solid var(--mist);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--ice);
}
.browser-bar i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mist);
}
.browser-url {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--slate);
  margin-left: 8px;
}
.browser-screen {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.work-body { padding: 20px 26px 24px; }
.work-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.work-type {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
}
.work-live {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--ok);
}
.work-body h3 { font-size: 1.12rem; margin-bottom: 6px; }
.work-body p { font-size: 0.92rem; }
.work-visit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--cobalt);
}
.work-visit svg { width: 13px; height: 13px; }

/* ── Process ──────────────────────────────────────────────── */
#process { background: var(--white); border-block: 1px solid var(--mist); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  border-left: 1px solid var(--mist);
}
.process-step {
  padding: 4px 28px 4px 24px;
  border-right: 1px solid var(--mist);
}
.step-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--cobalt);
  margin-bottom: 14px;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; }

/* ── Assurance ────────────────────────────────────────────── */
.assure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.assure-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 14px;
  padding: 28px;
}
.assure-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.assure-card p { font-size: 0.92rem; }
.assure-mark {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--cobalt);
  margin-bottom: 14px;
}

/* ── Contact ──────────────────────────────────────────────── */
#contact { background: var(--ink); color: #A9B4CC; }
#contact .eyebrow { color: #7FA0F2; }
#contact .section-title { color: var(--white); }
#contact .section-lede { color: #A9B4CC; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  margin-top: 48px;
}
.contact-channel {
  padding: 18px 0;
  border-top: 1px solid rgba(222, 229, 242, 0.14);
}
.contact-channel .ch-label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7C89A6;
  margin-bottom: 4px;
}
.contact-channel .ch-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.contact-channel a { color: var(--white); }
.contact-channel a:hover { color: #7FA0F2; }

.contact-form {
  background: var(--white);
  border-radius: 14px;
  padding: 34px;
  color: var(--slate);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--mist);
  border-radius: 8px;
  padding: 11px 14px;
  transition: border-color 0.15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--cobalt);
}
.form-field textarea { resize: vertical; min-height: 120px; }

.field-error {
  display: block;
  font-size: 0.74rem;
  color: #C0392B;
  margin-top: 5px;
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: #C0392B; }

.form-status {
  display: none;
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
}
.form-status.ok { display: block; background: #E8F6F0; color: var(--ok); }
.form-status.err { display: block; background: #FBEEEC; color: #C0392B; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(222, 229, 242, 0.1);
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 32px;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--white);
}
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a {
  font-size: 0.84rem;
  color: #7C89A6;
}
.footer-links a:hover { color: var(--white); text-decoration: none; }
.footer-copy { font-size: 0.78rem; color: #7C89A6; }

/* ── Page hero (subpages) ─────────────────────────────────── */
.page-hero { padding: 72px 0 40px; }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 12px; }
.page-hero p { max-width: 600px; }

/* Legal pages */
.legal-body { max-width: 720px; padding-bottom: 88px; }
.legal-body h2 { font-size: 1.25rem; margin: 40px 0 12px; }
.legal-body p, .legal-body li { font-size: 0.95rem; margin-bottom: 12px; }
.legal-body ul { padding-left: 22px; }
.legal-updated {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--slate);
  margin-bottom: 28px;
}

/* UGC reel grid (work page) */
.reel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.reel-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 14px;
  overflow: hidden;
}
.reel-embed { background: var(--ice); min-height: 200px; }
.reel-body { padding: 18px 20px 20px; }
.reel-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}
.reel-body p { font-size: 0.86rem; margin-bottom: 12px; }

/* ── Reveal on scroll ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .coverage-status::before { animation: none; }
  .btn, .work-card { transition: none; }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .coverage-card { max-width: 480px; }
  .service-row { grid-template-columns: 48px 1fr; }
  .service-includes { grid-column: 2; padding-top: 18px; }
  .process-grid { grid-template-columns: 1fr 1fr; border-left: none; }
  .process-step { border-right: none; border-top: 1px solid var(--mist); padding: 24px 8px; }
  .assure-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .reel-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  section { padding: 64px 0; }
  #hero { padding: 56px 0; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border-bottom: 1px solid var(--mist);
    padding: 12px 24px 20px;
    gap: 2px;
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-cta { margin: 10px 0 0; text-align: center; }
  .work-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-proof { gap: 24px; flex-wrap: wrap; }
  .reel-grid { grid-template-columns: 1fr; }
  .service-row { gap: 20px; padding: 32px 0; }
}

/* ── Utilities (replace inline styles; CSP-safe) ──────────── */
.w-100 { width: 100%; justify-content: center; }
.pt-0  { padding-top: 0; }
.pt-sm { padding-top: 24px; }
.mt-40 { margin-top: 40px; }
.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cta-band h3 { font-size: 1.3rem; }
.no-link { cursor: default; }

/* ── Imagery ──────────────────────────────────────────────── */
.browser-screen { height: auto; padding: 0; }
.browser-screen img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
  display: block;
}
.work-card:hover .browser-screen img { filter: saturate(1.06); }

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 32px;
  margin-top: 44px;
  align-items: stretch;
}
.assure-stack { display: grid; gap: 20px; }
.team-figure {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--mist);
  min-height: 320px;
}
.team-figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-figure figcaption {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  background: rgba(12, 20, 36, 0.82);
  color: #E7ECF7;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  padding: 10px 14px;
  border-radius: 8px;
}

@media (max-width: 992px) {
  .why-grid { grid-template-columns: 1fr; }
  .team-figure { min-height: 300px; }
}
/* ════════════════════════════════════════════════════════════
   REFINEMENTS — professional pass
════════════════════════════════════════════════════════════ */

/* ── Accessibility: skip link ─────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--cobalt);
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus-visible {
  left: 0;
  text-decoration: none;
  outline-offset: -3px;
}

/* ── Hero: three-clause headline needs tighter measure ────── */
.hero-title {
  font-size: clamp(2.2rem, 4.6vw, 3.25rem);
  max-width: 15ch;
  text-wrap: balance;
}
.hero-sub { max-width: 54ch; }
.section-title { text-wrap: balance; }
.section-lede { text-wrap: pretty; }

.hero-proof { gap: 32px; }
.proof-item { flex: 1 1 0; min-width: 118px; }
.proof-item .proof-num {
  font-size: 1.65rem;
  font-variant-numeric: tabular-nums;
}
.proof-item .proof-label {
  font-size: 0.76rem;
  line-height: 1.4;
  max-width: 17ch;
}

/* ── Coverage card: live "now" marker on each timezone ────── */
.coverage-head h2 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.tz-bar { position: relative; }
.tz-now {
  position: absolute;
  top: -3px;
  bottom: -3px;
  width: 2px;
  border-radius: 2px;
  background: var(--ink);
  opacity: 0;
  transform: translateX(-1px);
  transition: left 0.6s ease, opacity 0.3s ease;
}
.tz-now.set { opacity: 0.9; }

/* ── Nav: current-page state ──────────────────────────────── */
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: var(--ice);
}
.nav-links .nav-cta[aria-current="page"] {
  background: var(--cobalt-deep);
  color: var(--white);
}

/* ── Work cards: graceful state when a screenshot is missing ─ */
.browser-screen {
  background: var(--ice);
  min-height: 96px;
}
.browser-screen img { background: var(--ice); }

/* ── Process: semantic list, no bullets ───────────────────── */
.process-grid { list-style: none; }
.process-step { list-style: none; }

/* ── Contact form: honeypot + fine print ──────────────────── */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-note {
  font-size: 0.76rem;
  color: var(--slate);
  margin-top: 14px;
  text-align: center;
}
.form-note a { color: var(--cobalt); }

/* ── Section rhythm: keep tinted bands from doubling up ───── */
#why { padding-top: 88px; }
.services-head .section-lede { margin-top: 4px; }

/* ── Footer: give the nav room on wide screens ────────────── */
.footer-links { flex: 1 1 auto; justify-content: center; }
.site-footer .footer-brand,
.site-footer .footer-copy { flex: 0 0 auto; }

/* ── Team figure ──────────────────────────────────────────
   NB: do not set aspect-ratio here. The figure is a stretched
   grid item, so an aspect-ratio would derive its width from
   its height and overflow the column onto the cards beside it.
   Let the grid set the width; object-fit handles the crop.   */
.team-figure { min-height: 320px; }
.team-figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

/* ── Type polish ──────────────────────────────────────────── */
body { text-rendering: optimizeLegibility; }
p { text-wrap: pretty; }
::selection { background: rgba(30, 79, 194, 0.16); }

/* ── Responsive corrections ───────────────────────────────── */
@media (max-width: 992px) {
  .team-figure { min-height: 300px; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .hero-title { max-width: none; }
  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .proof-item { min-width: 0; }
  .proof-item .proof-num { font-size: 1.35rem; }
  .proof-item .proof-label { font-size: 0.7rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .work-thumb { padding: 16px 18px 0; }
  .work-body { padding: 18px 20px 22px; }
  .coverage-card { max-width: none; padding: 22px 20px 18px; }
}

@media (max-width: 420px) {
  .hero-proof { grid-template-columns: 1fr 1fr; }
  .hero-proof .proof-item:last-child { grid-column: span 2; }
}

/* ── Print ────────────────────────────────────────────────── */
@media print {
  .site-nav, .nav-toggle, .hero-actions, .contact-form, .skip-link { display: none; }
  body { background: #fff; color: #000; }
  section { padding: 24px 0; }
  .reveal { opacity: 1; transform: none; }
}

/* ── Missing-image fallback (set by script.js) ────────────── */
.browser-screen.img-missing,
.team-figure.img-missing {
  background:
    linear-gradient(135deg, var(--ice), var(--white)),
    var(--ice);
  position: relative;
}
.browser-screen.img-missing img,
.team-figure.img-missing img { visibility: hidden; }
.browser-screen.img-missing::after,
.team-figure.img-missing::after {
  content: 'GLOBAL COR3 SOLUTIONS';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--slate);
  opacity: 0.45;
}
.team-figure.img-missing { background: var(--ice); }

/* ── Fix: service "Includes" column on tablet/mobile ───────
   The <ul> sits inside a wrapper <div>, so the original
   `.service-includes { grid-column: 2 }` retargeted the list
   but not its parent — leaving the wrapper in a sliver of an
   implicit third column and wrapping text one word per line. */
@media (max-width: 992px) {
  .service-row { grid-template-columns: 48px minmax(0, 1fr); }
  .service-row > div:last-of-type { grid-column: 2; padding-top: 20px; }
  .service-includes { grid-column: auto; padding-top: 4px; }
  .service-main p { max-width: none; }
}

/* ── Landscape screenshots + placeholder state ─────────────
   Every work thumbnail is locked to 16:9 landscape, whatever
   the source image's own shape. Real screenshots crop from
   the top (where the hero lives); the generated SVG
   placeholders are already 16:9 so they sit flush.          */
.browser-screen {
  height: auto;
  min-height: 0;
  padding: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.browser-screen img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
}

/* Placeholder is a real image, so no text overlay and no crop. */
.browser-screen.img-placeholder img { object-fit: fill; }
.browser-screen.img-placeholder::after,
.team-figure.img-placeholder::after { content: none; }
.team-figure.img-placeholder img { object-fit: cover; }
.work-card:hover .browser-screen.img-placeholder img { filter: none; }
