/* ===================================================================
   VEYDROS COLLECTIVE — vc.veydros.com
   Design system: dark teal/navy, bold uppercase sans, teal accent.
   Mirrors the visual language of the live veydros.com (Framer).
   =================================================================== */

/* ---------- Tokens ---------- */
:root {
  --bg-0:       #000909;             /* near-black */
  --bg-1:       #000d12;             /* hero top   */
  --bg-2:       #003547;             /* mid        */
  --bg-3:       #004f6b;             /* warm teal  */
  --paper:      #ffffff;
  --ink:        #0b0d10;
  --ink-soft:   rgba(255,255,255,0.78);
  --ink-mute:   rgba(255,255,255,0.55);
  --ink-faint:  rgba(255,255,255,0.32);
  --hairline:   rgba(255,255,255,0.10);
  --hairline-2: rgba(255,255,255,0.18);
  --teal:       #1F89AD;
  --teal-soft:  #2EA1C9;
  --teal-deep:  #0E5C78;

  --max:        1280px;
  --gutter:     clamp(20px, 4vw, 48px);
  --section:    clamp(72px, 10vw, 144px);

  --display:    'Satoshi', 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --body:       'Manrope', 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --condensed:  'Saira Condensed', 'Helvetica Neue', Arial, sans-serif;
  --serif-i:    'Cormorant Garamond', 'Times New Roman', serif;

  --t-fast: 180ms cubic-bezier(.2,.7,.3,1);
  --t-base: 320ms cubic-bezier(.2,.7,.3,1);
  --t-slow: 460ms cubic-bezier(.2,.7,.3,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--bg-1); }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--paper);
  background:
    radial-gradient(80% 60% at 80% 0%, rgba(46,161,201,0.10), transparent 60%),
    radial-gradient(60% 50% at 0% 30%, rgba(31,137,173,0.08), transparent 60%),
    linear-gradient(180deg, var(--bg-1) 0%, #001b25 35%, var(--bg-2) 75%, var(--bg-3) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "kern";
}
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(31,137,173,0.45); color: #fff; }

/* ---------- Layout primitives ---------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
  z-index: 1;
}
.section { padding: var(--section) 0; }
.section--tight { padding: calc(var(--section) * 0.6) 0; }

/* ---------- Type scale ---------- */
.eyebrow {
  font-family: var(--condensed);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--ink-mute);
}
.eyebrow .dot {
  display: inline-block; width: 5px; height: 5px;
  background: var(--teal); border-radius: 50%;
  vertical-align: middle; margin-right: 10px; transform: translateY(-2px);
  box-shadow: 0 0 0 4px rgba(31,137,173,0.18);
}
h1, .h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(46px, 9vw, 120px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin: 0;
  text-transform: uppercase;
  color: var(--paper);
}
h2, .h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(34px, 5.5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.005em;
  margin: 0 0 24px;
  text-transform: uppercase;
  color: var(--paper);
}
h3, .h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.18;
  margin: 0 0 16px;
  color: var(--paper);
}
.lede {
  font-family: var(--body);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 62ch;
}
p { margin: 0 0 1em; max-width: 68ch; color: var(--ink-soft); }
.serif-hi {
  font-family: var(--serif-i);
  font-style: italic;
  font-weight: 400;
  color: var(--teal-soft);
}
.cap {
  font-family: var(--condensed);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
}
.accent-i {
  font-family: var(--serif-i);
  font-style: italic;
  font-weight: 400;
  color: var(--teal-soft);
  text-transform: none;
  letter-spacing: 0;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0, 13, 18, 0.65);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.site-header.is-scrolled {
  border-bottom-color: var(--hairline);
  background: rgba(0, 9, 13, 0.85);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.brand {
  display: inline-flex; align-items: center;
  color: var(--paper);
}
.brand-mark {
  height: 20px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  font-family: var(--condensed);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--paper);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--teal-soft);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--t-fast);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1); transform-origin: left;
}
.nav-cta {
  font-family: var(--condensed);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,0.45);
  color: var(--paper);
  background: transparent;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.nav-cta:hover { background: var(--paper); color: var(--bg-1); border-color: var(--paper); }

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid rgba(255,255,255,0.35);
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  padding: 0;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: ''; display: block;
  width: 18px; height: 1px; background: var(--paper);
  position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top:  6px; }

@media (max-width: 920px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.is-open .nav-mobile { transform: translateY(0); opacity: 1; pointer-events: auto; }
}
.nav-mobile {
  position: fixed; top: 78px; left: 0; right: 0; bottom: 0;
  background: var(--bg-1);
  padding: 48px var(--gutter);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--t-base), opacity var(--t-base);
  border-top: 1px solid var(--hairline);
  z-index: 49;
}
.nav-mobile ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 20px;
}
.nav-mobile a {
  font-family: var(--display);
  font-weight: 300;
  font-size: 36px;
  text-transform: uppercase;
  display: block;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 16px;
  color: var(--paper);
}
.nav-mobile .meta {
  margin-top: 48px;
  font-family: var(--condensed);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex; flex-direction: column; gap: 10px;
}
.nav-mobile .meta a { color: var(--paper); border-bottom: none; padding: 0; font-size: 12px; font-family: var(--condensed); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--condensed);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 18px 28px;
  border: 1px solid rgba(255,255,255,0.45);
  background: transparent;
  color: var(--paper);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.btn:hover { background: var(--paper); color: var(--bg-1); border-color: var(--paper); }
.btn .arrow { display: inline-block; transition: transform var(--t-fast); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--solid {
  background: var(--teal); color: var(--paper); border-color: var(--teal);
  box-shadow: 0 8px 24px -10px rgba(31,137,173,0.5);
}
.btn--solid:hover { background: var(--teal-soft); color: var(--paper); border-color: var(--teal-soft); }
.btn--ghost-light { border-color: rgba(255,255,255,0.45); color: var(--paper); }
.btn--ghost-light:hover { background: var(--paper); color: var(--bg-1); border-color: var(--paper); }
.btn--pill { border-radius: 999px; padding: 16px 28px; }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(96px, 14vw, 180px) 0 clamp(72px, 10vw, 120px);
  border-bottom: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: calc(100vh - 78px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero--bg {
  padding-bottom: clamp(110px, 14vw, 180px);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 90% 0%, rgba(46,161,201,0.16), transparent 70%),
    radial-gradient(40% 60% at 0% 100%, rgba(31,137,173,0.10), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero--bg .hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.45) saturate(0.85) contrast(1.05);
}
.hero--bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 0% 100%, rgba(0,9,13,0.85) 0%, rgba(0,9,13,0.0) 60%),
    linear-gradient(180deg, rgba(0,13,18,0.55) 0%, rgba(0,13,18,0.30) 40%, rgba(0,13,18,0.85) 100%),
    radial-gradient(60% 80% at 100% 0%, rgba(31,137,173,0.20), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Hero corner details — coordinates + scroll cue, like gtgroupusa */
.hero-corners,
.page-head-corners {
  position: absolute;
  bottom: clamp(20px, 3vw, 36px);
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  font-family: var(--condensed);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  pointer-events: none;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-corners .coord-mark,
.page-head-corners .coord-mark {
  font-family: var(--serif-i);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,0.85);
  margin-right: 14px;
}
.hero-corners .scroll-cue,
.page-head-corners .scroll-cue {
  display: inline-flex; align-items: center; gap: 14px;
}
.hero-corners .scroll-cue .rule,
.page-head-corners .scroll-cue .rule {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.55), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(8px); }
}
@media (max-width: 720px) {
  .hero-corners,
  .page-head-corners { font-size: 10px; }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.4fr 1fr; align-items: end; }
}
.hero h1 .accent {
  font-family: var(--serif-i);
  font-style: italic;
  color: var(--teal-soft);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.hero-meta {
  border-left: 1px solid var(--hairline);
  padding-left: clamp(24px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 28px;
}
.hero-meta .label {
  font-family: var(--condensed);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero-meta .value {
  font-family: var(--body);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Stat band ---------- */
.stat-band {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: rgba(0,0,0,0.20);
}
.stat-row {
  display: grid;
  grid-template-columns: 1fr;
  padding: clamp(48px, 6vw, 72px) 0;
}
@media (min-width: 700px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .stat-row { grid-template-columns: repeat(4, 1fr); }
}
.stat {
  padding: 16px clamp(20px, 3vw, 32px);
  border-left: 1px solid var(--hairline);
}
.stat:first-child { border-left: 0; }
@media (max-width: 979px) {
  .stat { border-left: 0; border-top: 1px solid var(--hairline); padding-top: 32px; padding-bottom: 32px; }
  .stat:first-child { border-top: 0; padding-top: 0; }
}
.stat .num {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(56px, 7vw, 92px);
  line-height: 1;
  color: var(--paper);
  letter-spacing: -0.02em;
}
.stat .num .suffix {
  font-family: var(--serif-i);
  font-style: italic;
  font-weight: 400;
  font-size: 0.45em;
  color: var(--teal-soft);
  margin-left: 6px;
  vertical-align: top;
  position: relative; top: 6px;
}
.stat .lbl {
  font-family: var(--condensed);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 16px;
  max-width: 28ch;
  line-height: 1.55;
}

/* ---------- Two-column intro ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(280px, 0.7fr) 1.3fr; }
}
.split .label-col {
  font-family: var(--condensed);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.25;
  position: sticky; top: 100px;
}
.split .label-col .dot {
  display: inline-block; width: 8px; height: 8px;
  background: var(--teal); border-radius: 50%;
  margin-right: 12px; vertical-align: middle;
  box-shadow: 0 0 0 5px rgba(31,137,173,0.20);
  position: relative; top: -2px;
}
.split .body-col p {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
}
.split .body-col p strong {
  color: var(--paper); font-weight: 600;
}

/* ---------- Capability rows ---------- */
.caps {
  border-top: 1px solid var(--hairline);
}
.cap-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(32px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--hairline);
  align-items: start;
  transition: background var(--t-base);
  cursor: default;
}
.cap-row:hover { background: rgba(31,137,173,0.04); }
.cap-row .num {
  font-family: var(--condensed);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--teal-soft);
  padding-top: 6px;
}
.cap-row .body { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 900px) {
  .cap-row .body { grid-template-columns: minmax(280px, 1fr) 1.4fr; gap: 56px; }
}
.cap-row h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0;
  color: var(--paper);
}
.cap-row .arrow-track {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--condensed);
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 14px;
}
.cap-row .arrow-track .line {
  width: 28px; height: 1px; background: var(--hairline-2);
  transition: width var(--t-base), background var(--t-base);
}
.cap-row:hover .arrow-track .line { width: 56px; background: var(--teal-soft); }

/* ---------- Manifesto block ---------- */
.manifesto {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.manifesto p {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.04;
  color: var(--paper);
  max-width: 22ch;
  text-transform: uppercase;
  margin: 0;
}
.manifesto p .em {
  font-family: var(--serif-i);
  font-style: italic;
  font-weight: 400;
  color: var(--teal-soft);
  text-transform: none;
}

/* ---------- Quote / pullout ---------- */
.pull {
  border-left: 2px solid var(--teal);
  padding-left: clamp(20px, 3vw, 36px);
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  color: var(--paper);
  max-width: 36ch;
  text-transform: uppercase;
}

/* ---------- Image moment ---------- */
.image-moment {
  position: relative;
  margin: 0 calc(var(--gutter) * -1);
  height: clamp(360px, 56vw, 620px);
  background: var(--bg-1);
  overflow: hidden;
  border: 1px solid var(--hairline);
}
.image-moment img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.78) contrast(1.04) saturate(0.85);
}
.image-moment::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 100% at 0% 100%, rgba(0,9,13,0.75) 0%, rgba(0,9,13,0.0) 55%),
    linear-gradient(180deg, rgba(0,13,18,0.25) 0%, rgba(0,13,18,0.55) 100%),
    radial-gradient(60% 100% at 90% 0%, rgba(31,137,173,0.18), transparent 65%);
  pointer-events: none;
  mix-blend-mode: normal;
}
.image-moment .caption {
  position: absolute;
  left: clamp(20px, 4vw, 56px);
  bottom: clamp(20px, 4vw, 40px);
  z-index: 2;
  color: var(--paper);
  max-width: 36ch;
}
.image-moment .caption .eyebrow { color: rgba(255,255,255,0.78); }
.image-moment .caption .eyebrow .dot { background: var(--teal-soft); }
.image-moment .caption h2 { color: var(--paper); margin-top: 14px; text-shadow: 0 2px 18px rgba(0,0,0,0.55); }

/* ---------- Sectors (legacy plain grid — kept for services page) ---------- */
.sectors {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--hairline);
}
@media (min-width: 700px) { .sectors { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .sectors { grid-template-columns: repeat(4, 1fr); } }
.sector {
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  transition: background var(--t-base);
}
.sector:hover { background: rgba(31,137,173,0.05); }
.sector:last-child { border-right: 0; }
@media (max-width: 999px) {
  .sector:nth-child(2n) { border-right: 0; }
}
.sector .num {
  font-family: var(--condensed);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--teal-soft);
}
.sector h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  margin: 14px 0 8px;
  color: var(--paper);
}
.sector p { font-size: 14px; color: var(--ink-mute); }

/* ---------- Sector photo cards (rich grid for home) ---------- */
.sector-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2vw, 24px);
}
@media (min-width: 700px) { .sector-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .sector-cards { grid-template-columns: repeat(4, 1fr); } }
.sector-card {
  position: relative;
  aspect-ratio: 3 / 4.2;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(18px, 1.6vw, 24px);
  color: var(--paper);
  background: var(--bg-1);
  border: 1px solid var(--hairline);
  transition: transform var(--t-base), border-color var(--t-base);
  text-decoration: none;
}
.sector-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46,161,201,0.45);
}
.sector-card .bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.45) saturate(0.85) contrast(1.05);
  transition: transform var(--t-slow), filter var(--t-slow);
}
.sector-card:hover .bg { transform: scale(1.04); filter: brightness(0.55) saturate(0.9); }
.sector-card::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,9,13,0.20) 0%, rgba(0,9,13,0.85) 100%),
    radial-gradient(60% 60% at 0% 100%, rgba(0,9,13,0.55), transparent 70%);
  pointer-events: none;
}
.sector-card > * { position: relative; z-index: 2; }
.sector-card .meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--condensed);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.sector-card .meta .tag {
  border: 1px solid rgba(255,255,255,0.32);
  padding: 4px 10px;
  border-radius: 999px;
}
.sector-card .meta .status { color: var(--teal-soft); }
.sector-card .meta .status::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px; background: var(--teal-soft);
  border-radius: 50%; margin-right: 6px; vertical-align: middle;
  box-shadow: 0 0 0 3px rgba(46,161,201,0.18);
}
.sector-card .body h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 1.8vw, 26px);
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--paper);
  line-height: 1.05;
}
.sector-card .body h4 .em {
  font-family: var(--serif-i);
  font-style: italic;
  font-weight: 400;
  color: var(--teal-soft);
  text-transform: none;
}
.sector-card .body p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  margin: 0;
  max-width: 32ch;
}

/* ---------- CTA strip (deeper teal) ---------- */
.cta-strip {
  background:
    radial-gradient(60% 100% at 80% 0%, rgba(46,161,201,0.30), transparent 65%),
    radial-gradient(40% 100% at 0% 100%, rgba(14,92,120,0.40), transparent 65%),
    linear-gradient(180deg, var(--teal-deep) 0%, #08364A 100%);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: clamp(72px, 9vw, 120px) 0;
  align-items: end;
}
@media (min-width: 900px) {
  .cta-inner { grid-template-columns: 1.4fr 1fr; gap: 56px; }
}
.cta-strip h2 { color: var(--paper); margin: 0 0 8px; }
.cta-strip h2 .em {
  font-family: var(--serif-i);
  font-style: italic;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  text-transform: none;
}
.cta-strip p { color: rgba(255,255,255,0.78); margin-top: 18px; }
.cta-strip .actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer {
  background: rgba(0,0,0,0.30);
  border-top: 1px solid var(--hairline);
  padding: clamp(56px, 7vw, 88px) 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.foot-brand .brand-mark { height: 28px; }
.foot-brand p {
  margin-top: 18px; font-size: 14px;
  max-width: 36ch;
  color: var(--ink-mute);
}
.foot-col h5 {
  font-family: var(--condensed);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 18px;
  font-weight: 500;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.foot-col a { font-size: 15px; color: var(--paper); }
.foot-col a:hover { color: var(--teal-soft); }
.foot-line {
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--condensed);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute);
}
.foot-line a { color: var(--paper); }

/* ---------- Page header (interior) ---------- */
.page-head {
  padding: clamp(120px, 16vw, 200px) 0 clamp(110px, 14vw, 160px);
  border-bottom: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(80vh - 78px);
}
.page-head::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 90% 0%, rgba(46,161,201,0.18), transparent 70%),
    radial-gradient(40% 60% at 0% 100%, rgba(31,137,173,0.10), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.page-head--bg .page-head-bg {
  position: absolute; inset: 0; z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.42) saturate(0.85) contrast(1.05);
}
.page-head--bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 0% 100%, rgba(0,9,13,0.85) 0%, rgba(0,9,13,0.0) 60%),
    linear-gradient(180deg, rgba(0,13,18,0.50) 0%, rgba(0,13,18,0.30) 50%, rgba(0,13,18,0.85) 100%),
    radial-gradient(60% 80% at 100% 0%, rgba(31,137,173,0.20), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.page-head .crumb {
  font-family: var(--condensed);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 32px;
}
.page-head h1 { max-width: 18ch; }
.page-head .lede { margin-top: 28px; }

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 720px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 10px; }
.field label {
  font-family: var(--condensed);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-mute);
}
.field input,
.field textarea,
.field select {
  font: inherit;
  font-family: var(--body);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline-2);
  padding: 12px 0;
  color: var(--paper);
  outline: none;
  border-radius: 0;
  transition: border-color var(--t-fast);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-color: var(--teal-soft);
}
.field select option { color: var(--ink); }
.field textarea { min-height: 140px; resize: vertical; }
.form-status {
  font-family: var(--condensed);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  margin-top: 16px;
}
.form-status.ok { color: var(--teal-soft); }
.form-status.err { color: #FF8A8A; }

/* ---------- Innovation page tiles ---------- */
.amt-card {
  border: 1px solid var(--hairline);
  padding: clamp(28px, 4vw, 48px);
  background: rgba(0,0,0,0.25);
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  position: relative;
  overflow: hidden;
}
.amt-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(60% 100% at 100% 0%, rgba(46,161,201,0.15), transparent 70%);
  pointer-events: none;
}
@media (min-width: 900px) { .amt-card { grid-template-columns: 1fr 1fr; align-items: center; gap: 56px; } }
.amt-card > * { position: relative; z-index: 1; }
.amt-card h2 { margin: 0 0 14px; }
.amt-card .lede { font-size: 17px; }

.product-list {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid var(--hairline);
}
.product-list .product {
  padding: clamp(20px, 3vw, 32px) 0;
  border-bottom: 1px solid var(--hairline);
  display: grid; grid-template-columns: 1fr; gap: 8px;
  transition: background var(--t-base), padding var(--t-base);
}
.product-list .product:hover { background: rgba(31,137,173,0.04); }
@media (min-width: 800px) {
  .product-list .product { grid-template-columns: 220px 1fr 80px; align-items: center; gap: 32px; }
}
.product .name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--paper);
}
.product .desc { color: var(--ink-mute); font-size: 15px; margin: 0; max-width: 60ch; }
.product .arrow {
  font-family: var(--condensed); font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-mute);
  text-align: right;
  transition: opacity var(--t-fast), transform var(--t-fast), color var(--t-fast);
}
.product:hover .arrow { color: var(--teal-soft); transform: translateX(4px); }

/* ---------- Coming soon (Insights) ---------- */
.coming {
  min-height: calc(100vh - 78px);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px var(--gutter);
}
.coming::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 50% 40%, rgba(46,161,201,0.32), transparent 70%),
    radial-gradient(60% 40% at 90% 100%, rgba(31,137,173,0.30), transparent 70%);
  pointer-events: none;
}
.coming-inner { position: relative; text-align: center; max-width: 720px; }
.coming .word {
  display: inline-block;
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(72px, 16vw, 220px);
  letter-spacing: -0.01em;
  line-height: 0.92;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff 30%, rgba(255,255,255,0.35) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.coming .word .blink {
  display: inline-block; width: 0.10em; height: 0.86em;
  background: var(--teal-soft); margin-left: 0.06em;
  vertical-align: -8%;
  animation: blink 1.1s steps(2, start) infinite;
  -webkit-text-fill-color: var(--teal-soft);
}
@keyframes blink { 50% { opacity: 0; } }
.coming .label {
  font-family: var(--condensed);
  font-size: 12px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}
.coming .sub {
  margin: 28px auto 0;
  font-family: var(--serif-i);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
  color: rgba(255,255,255,0.78);
  max-width: 38ch;
  font-style: italic;
}
.coming .meta {
  margin-top: clamp(56px, 7vw, 88px);
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  font-family: var(--condensed);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.coming .meta a { color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--t-slow), transform var(--t-slow);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
.hero .reveal,
.page-head .reveal,
.coming .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0ms !important; animation-iteration-count: 1 !important; transition-duration: 0ms !important; scroll-behavior: auto !important; }
}

/* ---------- Utility ---------- */
.divider-h { height: 1px; background: var(--hairline); margin: 0; border: 0; }
.center { text-align: center; }
.muted { color: var(--ink-mute); }
.spacer-sm { height: 24px; } .spacer-md { height: 48px; } .spacer-lg { height: 96px; }
.row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
