/* ==========================================================================
   OBAF TECHNOLOGY — REDESIGN
   Design system: "Signal Sweep"
   Ink navy + warm parchment + amber signal + electric wire-blue
   Display: Space Grotesk · Body: IBM Plex Sans · Utility: IBM Plex Mono
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=IBM+Plex+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root {
  /* Color tokens */
  --ink: #0B1020;
  --ink-soft: #141B33;
  --paper: #F6F3EC;
  --paper-dim: #ECE6D6;
  --signal: #F2A63C;
  --signal-dim: #C97F1E;
  --wire: #3452E1;
  --wire-bright: #5C74FF;
  --mute: #5B6270;
  --mute-2: #A7AEC7;
  --line: #E1DAC4;
  --line-dark: rgba(255, 255, 255, 0.12);
  --white: #FFFFFF;
  --success: #2F9E6E;

  /* Type */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Layout */
  --max-w: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --radius-lg: 10px;

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.08; letter-spacing: -0.01em; }
p { margin: 0; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wire);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--signal);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(242,166,60,0.22);
}
.on-dark .eyebrow { color: var(--signal); }

.section { padding-top: clamp(64px, 9vw, 120px); padding-bottom: clamp(64px, 9vw, 120px); }
.section-tight { padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(40px, 6vw, 72px); }
.on-dark { background: var(--ink); color: var(--paper); }
.on-dim { background: var(--paper-dim); }

.h-xl { font-size: clamp(2.4rem, 5.4vw, 4.4rem); font-weight: 700; }
.h-lg { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 700; }
.h-md { font-size: clamp(1.4rem, 2.2vw, 1.9rem); font-weight: 600; }
.lede { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--mute); max-width: 62ch; }
.on-dark .lede { color: var(--mute-2); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--wire); transform: translateY(-2px); }
.on-dark .btn-primary { background: var(--signal); color: var(--ink); }
.on-dark .btn-primary:hover { background: var(--wire-bright); color: var(--white); }

.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { border-color: var(--wire); color: var(--wire); transform: translateY(-2px); }
.on-dark .btn-ghost { border-color: var(--line-dark); color: var(--paper); }
.on-dark .btn-ghost:hover { border-color: var(--signal); color: var(--signal); }

.btn svg { width: 15px; height: 15px; flex-shrink: 0; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--ink);
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand small { display: block; font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: 0.1em; color: var(--mute); text-transform: uppercase; }
.footer-brand .brand-logo-full { height: 65px; width: auto; margin-bottom: 4px; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--mute);
  position: relative;
  padding: 6px 0;
  transition: color .2s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--signal);
}
.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-cta {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 11px 20px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.nav-cta:hover { background: var(--wire); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none; border: none;
  width: 40px; height: 40px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); transition: transform .25s var(--ease), opacity .25s var(--ease); }

@media (max-width: 900px) {
  .nav-links { position: fixed; top: 78px; left: 0; right: 0; bottom: 0; background: var(--paper); flex-direction: column; align-items: flex-start; padding: 32px var(--gutter); gap: 4px; transform: translateX(100%); transition: transform .3s var(--ease); overflow-y: auto; }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  body.nav-open { overflow: hidden; }
}

/* ---------- Hero / Radar signature ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(56px, 8vw, 100px);
}
@media (max-width: 940px) { .hero { grid-template-columns: 1fr; } }

.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-copy h1 { margin-bottom: 22px; }
.hero-copy .lede { margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.radar-col { width: 100%; }

.radar {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 440px;
  margin-inline: auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(52,82,225,0.06), transparent 65%),
    var(--ink);
  overflow: hidden;
  border: 1px solid var(--line-dark);
}
.radar-ring { position: absolute; border: 1px solid var(--line-dark); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.radar-ring.r1 { width: 30%; height: 30%; }
.radar-ring.r2 { width: 58%; height: 58%; }
.radar-ring.r3 { width: 84%; height: 84%; }
.radar-ring.r4 { width: 100%; height: 100%; border: none; }
.radar-cross { position: absolute; inset: 0; }
.radar-cross::before, .radar-cross::after { content: ""; position: absolute; background: var(--line-dark); }
.radar-cross::before { left: 0; right: 0; top: 50%; height: 1px; }
.radar-cross::after { top: 0; bottom: 0; left: 50%; width: 1px; }
.radar-sweep {
  position: absolute; inset: 0;
  background: conic-gradient(from 0deg, rgba(242,166,60,0.55), rgba(242,166,60,0) 26%, transparent 100%);
  animation: sweep 5.5s linear infinite;
  mix-blend-mode: screen;
}
@keyframes sweep { to { transform: rotate(360deg); } }
.radar-blip {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0 rgba(242,166,60,0.6);
  animation: ping 2.6s var(--ease) infinite;
}
.radar-blip.wire { background: var(--wire-bright); box-shadow: 0 0 0 0 rgba(92,116,255,0.6); }
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(242,166,60,0.55); }
  70% { box-shadow: 0 0 0 16px rgba(242,166,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(242,166,60,0); }
}
.radar-blip.wire { animation-name: pingWire; }
@keyframes pingWire {
  0% { box-shadow: 0 0 0 0 rgba(92,116,255,0.55); }
  70% { box-shadow: 0 0 0 16px rgba(92,116,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(92,116,255,0); }
}
.radar-caption {
  text-align: center;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}
.radar-caption strong { color: var(--signal-dim); font-weight: 500; }

/* ---------- Stat strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.stat { padding: 30px 24px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat b { display: block; font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; }
.stat span { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); }
@media (max-width: 640px) { .stats { grid-template-columns: 1fr; } .stat { border-right: none; border-bottom: 1px solid var(--line); } .stat:last-child { border-bottom: none; } }

/* ---------- Section headers ---------- */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 48px; flex-wrap: wrap; }
.section-head h2 { max-width: 34ch; }
.section-head .lede { margin-top: 14px; }

/* ---------- Cards: services ---------- */
.grid-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
@media (max-width: 900px) { .grid-services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-services { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  transition: background .3s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 40%, rgba(242,166,60,0.12) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease);
}
.service-card:hover::before { transform: translateX(120%); }
.service-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--wire); background: rgba(52,82,225,0.08); padding: 4px 9px; border-radius: 3px; display: inline-block; margin-bottom: 20px; }
.service-icon { width: 40px; height: 40px; margin-bottom: 18px; color: var(--ink); }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { color: var(--mute); font-size: 0.96rem; }

/* ---------- VetraGo band ---------- */
.vetrago-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) { .vetrago-band { grid-template-columns: 1fr; } }
.vetrago-badge {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--signal);
  padding: 6px 12px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 20px;
}
.vetrago-panel {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--ink-soft);
}
.vetrago-panel ul li {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.96rem;
  color: var(--mute-2);
}
.vetrago-panel ul li:last-child { border-bottom: none; }
.vetrago-panel ul li svg { width: 16px; height: 16px; color: var(--signal); flex-shrink: 0; }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 780px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; }
.testimonial p { font-size: 1.05rem; margin-bottom: 22px; }
.testimonial footer { display: flex; align-items: center; gap: 12px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: var(--paper); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 14px; flex-shrink: 0; }
.testimonial .who b { display: block; font-size: 0.92rem; }
.testimonial .who span { font-family: var(--font-mono); font-size: 11.5px; color: var(--mute); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- Newsletter / CTA band ---------- */
.cta-band { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center; }
@media (max-width: 800px) { .cta-band { grid-template-columns: 1fr; } }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  flex: 1;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  background: var(--ink);
  color: var(--paper);
}
.newsletter-form input::placeholder { color: var(--mute-2); }
.newsletter-form input:focus { outline: 2px solid var(--signal); outline-offset: 0; }
.form-note { font-family: var(--font-mono); font-size: 12px; color: var(--mute-2); margin-top: 10px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--mute-2); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 56px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { margin-top: 16px; max-width: 34ch; font-size: 0.92rem; }
.footer-col h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--paper); margin-bottom: 18px; font-weight: 500; }
.footer-col ul li { margin-bottom: 11px; font-size: 0.92rem; }
.footer-col ul li a:hover { color: var(--signal); }
.footer-col address { font-style: normal; font-size: 0.92rem; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 34px; height: 34px; border: 1px solid var(--line-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: border-color .2s var(--ease), color .2s var(--ease); }
.footer-social a:hover { border-color: var(--signal); color: var(--signal); }
.footer-social svg { width: 15px; height: 15px; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; font-family: var(--font-mono); }

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Page header (inner pages) ---------- */
.page-header { padding-top: clamp(52px, 8vw, 88px); padding-bottom: clamp(36px, 5vw, 56px); }
.breadcrumb { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mute); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--wire); }

/* ---------- About: pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }
.pillar { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); }
.pillar .service-icon { margin-bottom: 14px; width: 32px; height: 32px; }
.pillar h4 { font-size: 1rem; margin-bottom: 8px; }
.pillar p { font-size: 0.9rem; color: var(--mute); }

.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split h2 { margin-bottom: 20px; }
.split .lede + .lede { margin-top: 16px; }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 700px) { .mv-grid { grid-template-columns: 1fr; } }
.mv-card { padding: 32px; border-radius: var(--radius-lg); border: 1px solid var(--line-dark); }
.mv-card.mission { background: var(--ink); color: var(--paper); }
.mv-card.vision { background: var(--wire); color: var(--white); border-color: transparent; }
.mv-card .eyebrow { margin-bottom: 14px; }
.mv-card.mission .eyebrow { color: var(--signal); }
.mv-card.vision .eyebrow { color: var(--white); opacity: 0.85; }
.mv-card p { color: inherit; opacity: 0.9; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 800px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { text-align: left; }
.team-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--ink), var(--ink-soft));
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
}
.team-photo span { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--signal); opacity: 0.9; }
.team-photo::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(52,82,225,0.35), transparent 60%); }
.team-card h4 { font-size: 1.05rem; margin-bottom: 2px; }
.team-card .role { font-family: var(--font-mono); font-size: 11.5px; color: var(--wire); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; display: block; }
.team-card a.email { font-size: 0.88rem; color: var(--mute); }
.team-card a.email:hover { color: var(--wire); }

/* ---------- Services page detail rows ---------- */
.service-rows { display: flex; flex-direction: column; }
.service-row {
  display: grid;
  grid-template-columns: 90px 1fr 1.3fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
@media (max-width: 800px) { .service-row { grid-template-columns: 1fr; gap: 14px; } }
.service-row:first-child { padding-top: 0; }
.service-row .service-icon { width: 44px; height: 44px; }
.service-row h3 { font-size: 1.35rem; margin-bottom: 10px; }
.service-row p { color: var(--mute); max-width: 56ch; }
.service-row .service-tag { margin-bottom: 0; }

/* ---------- Products page ---------- */
.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-dark);
}
@media (max-width: 860px) { .product-hero { grid-template-columns: 1fr; } }
.product-hero .p-copy { background: var(--ink); color: var(--paper); padding: clamp(32px, 5vw, 56px); }
.product-hero .p-visual { background: var(--wire); padding: clamp(32px, 5vw, 56px); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.product-hero .p-visual::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 55%); }
.p-list { list-style: none; padding: 0; margin: 24px 0 0; position: relative; }
.p-list li { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.22); color: var(--white); font-size: 0.96rem; position: relative; }
.p-list li:last-child { border-bottom: none; }
.p-list li svg { width: 16px; height: 16px; flex-shrink: 0; }

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 800px) { .audience-grid { grid-template-columns: 1fr; } }
.audience-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); }
.audience-card .eyebrow { margin-bottom: 14px; }
.audience-card h4 { margin-bottom: 8px; font-size: 1.05rem; }
.audience-card p { color: var(--mute); font-size: 0.92rem; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-list { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item .ico { width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: var(--signal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-item .ico svg { width: 18px; height: 18px; }
.contact-info-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { color: var(--mute); font-size: 0.94rem; }
.contact-info-item a:hover { color: var(--wire); }

.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--mute); }
.field input, .field select, .field textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--wire); outline: none; }
.field textarea { resize: vertical; min-height: 120px; }
.form-status { font-family: var(--font-mono); font-size: 12.5px; margin-top: 14px; display: none; }
.form-status.show { display: block; }
.form-status.ok { color: var(--success); }

.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); margin-top: 20px; }
.map-frame iframe { width: 100%; height: 280px; border: 0; display: block; filter: grayscale(0.3) contrast(1.05); }

/* ---------- Career page ---------- */
.job-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.job-row h4 { font-size: 1.05rem; margin-bottom: 6px; }
.job-meta { font-family: var(--font-mono); font-size: 11.5px; color: var(--mute); text-transform: uppercase; letter-spacing: 0.05em; display: flex; gap: 12px; }
.job-row .btn-ghost { padding: 10px 18px; }
.empty-note { text-align: center; padding: 40px 0; color: var(--mute); }

/* ---------- Blog placeholder ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 860px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); }
.blog-thumb { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--ink), var(--wire)); position: relative; }
.blog-thumb span { position: absolute; bottom: 14px; left: 14px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); background: rgba(0,0,0,0.35); padding: 4px 9px; border-radius: 3px; }
.blog-body { padding: 22px; }
.blog-body .date { font-family: var(--font-mono); font-size: 11.5px; color: var(--mute); text-transform: uppercase; letter-spacing: 0.05em; }
.blog-body h3 { font-size: 1.05rem; margin: 10px 0; }
.blog-body p { font-size: 0.9rem; color: var(--mute); }

/* ---------- Capability triptych (AI / Automation / Cybersecurity) ---------- */
.triptych { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px) { .triptych { grid-template-columns: 1fr; } }
.triptych-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-dark); background: var(--ink); }
.triptych-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.triptych-body { padding: 24px; }
.triptych-body .eyebrow { margin-bottom: 10px; }
.triptych-body h3 { color: var(--paper); font-size: 1.1rem; margin-bottom: 8px; }
.triptych-body p { color: var(--mute-2); font-size: 0.92rem; }

/* ---------- Team photos (real headshots) ---------- */
.team-photo { background: var(--ink); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(1) contrast(1.05); position: relative; z-index: 1; }

/* ---------- Sponsors / certifications band ---------- */
.sponsors-band { background: var(--ink); border-radius: var(--radius-lg); padding: 40px clamp(20px, 4vw, 48px); }
.sponsors-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 32px; }
.sponsors-row { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.sponsor-logo { display: flex; align-items: center; height: 120px; opacity: 0.9; transition: opacity .2s var(--ease); }
.sponsor-logo:hover { opacity: 1; }
.sponsor-logo img { height: 100%; width: auto; max-width: 140px; object-fit: contain; }
.sponsor-logo.badge img { height: 80px; border-radius: 12px; }

/* ---------- Service row visual (illustration accompaniment) ---------- */
.service-row.has-visual { grid-template-columns: 90px 1fr 1fr; }
@media (max-width: 900px) { .service-row.has-visual { grid-template-columns: 90px 1fr; } .service-row.has-visual .row-visual { grid-column: 1 / -1; order: 3; } }
@media (max-width: 800px) { .service-row.has-visual { grid-template-columns: 1fr; } }
.row-visual img { width: 100%; border-radius: var(--radius-lg); display: block; aspect-ratio: 4/3; object-fit: cover; }

/* ---------- Product hero background illustration ---------- */
.p-visual.has-illustration { position: relative; }
.p-visual.has-illustration .illustration-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.28; z-index: 0; }
.p-visual.has-illustration > * { position: relative; z-index: 1; }

/* ---------- Utility ---------- */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--signal); color: var(--ink); padding: 12px 18px; z-index: 999; font-family: var(--font-mono); font-size: 13px; }
.skip-link:focus { left: 16px; top: 16px; }
