/* Tenexio — Site-specific styles */

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(237, 231, 214, 0.88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--ink);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--ink);
  position: relative;
}
.logo .logo-x {
  position: relative;
  display: inline-block;
  width: 18px; height: 18px;
  flex-shrink: 0;
  transform: translateY(-1px);
}
.logo .logo-x::before,
.logo .logo-x::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 100%;
  height: 28%;
  transform-origin: center;
}
.logo .logo-x::before {
  background: var(--blue);
  transform: translate(-50%, -50%) rotate(45deg);
}
.logo .logo-x::after {
  background: var(--ink);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 15px;
}
.nav-links a {
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--blue); }
.nav-lang {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 13px;
  gap: 4px;
}
.nav-lang button { padding: 4px 8px; color: var(--ink-subtle); }
.nav-lang button.active { color: var(--ink); border-bottom: 1px solid var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 20px; }

/* === HERO === */
.hero {
  padding: 56px 0 0;
  position: relative;
  overflow: hidden;
}
.hero-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 56px;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.hero-status {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-status-link {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
  transition: color 180ms var(--ease), border-color 180ms var(--ease);
}
.hero-status-link:hover { color: var(--blue); border-color: var(--blue); }

/* Massive headline — full width, poster-style */
.hero-display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 10.5vw, 10rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  margin: 0 0 72px;
  text-wrap: balance;
  position: relative;
  z-index: 2;
  color: var(--ink);
}
.hero-display .underline {
  display: inline;
  background: none;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.08em;
  text-decoration-skip-ink: none;
}

/* Bauhaus shape decorations — float in the hero canvas */
.hero-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.hero-shape-circle {
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid var(--ink);
  opacity: 0.85;
}
.hero-shape-square {
  bottom: 200px; left: -60px;
  width: 180px; height: 180px;
  background: var(--red);
  transform: rotate(8deg);
  border: 2px solid var(--ink);
  opacity: 0.6;
}
.hero-shape-triangle {
  right: 4%;
  bottom: 220px;
  width: 120px; height: 120px;
  opacity: 0.85;
}

.hero-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
  align-items: start;
}
.hero-body-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.hero-lede {
  font-size: clamp(1.0625rem, 1.3vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 52ch;
  margin: 0;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* System ticker — flat, no app-window chrome */
.hero-ticker {
  border: 2px solid var(--ink);
  background: var(--paper);
  font-family: var(--font-mono);
  font-size: 12px;
  box-shadow: 12px 12px 0 var(--ink);
}
.hero-ticker-head, .hero-ticker-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-ticker-foot { background: var(--paper-2); color: var(--ink-muted); border-top: 1px solid var(--line-strong); }
.hero-ticker-rows {
  display: flex;
  flex-direction: column;
}
.hero-ticker-row {
  display: grid;
  grid-template-columns: 56px 1.4fr 1fr 1fr 12px;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  border-bottom: 1px solid var(--line);
  transition: opacity 600ms var(--ease);
}
.hero-ticker-row:last-child { border-bottom: 0; }
.hero-ticker-row .t { color: var(--ink-subtle); }
.hero-ticker-row .proc { color: var(--ink); font-weight: 500; }
.hero-ticker-row .engine { color: var(--blue); }
.hero-ticker-row .step { color: var(--ink-muted); }
.hero-ticker-row .mark {
  width: 8px; height: 8px;
  display: inline-block;
}

/* Dark stats band — closes out the hero with no gap */
.hero-band {
  background: var(--ink);
  color: var(--paper);
  margin-top: 0;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 36px 0;
}
.hero-meta-item {
  padding: 0 32px 0 0;
  border-right: 1px solid rgba(244, 242, 234, 0.18);
}
.hero-meta-item:last-child { border-right: 0; }
.hero-meta-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0 0 10px;
  color: var(--paper);
}
.hero-meta-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 242, 234, 0.55);
  margin: 0;
}

/* === SECTION HEADERS === */
.sec-head {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 48px;
  margin-bottom: 80px;
  align-items: end;
  position: relative;
}
.sec-head-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 96px;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--ink);
  position: relative;
  z-index: 2;
}
.sec-head-num .sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 16px;
  line-height: 1;
}
.sec-head-shape {
  width: 96px; height: 96px;
  align-self: end;
  position: relative;
}
.sec-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5.6vw, 5.5rem);
  letter-spacing: -0.045em;
  line-height: 0.92;
  margin: 0;
  text-wrap: balance;
  color: var(--ink);
}
.sec-head h2 .blue { color: var(--blue); }
.sec-head h2 em {
  font-style: normal;
  background: var(--yellow);
  padding: 0 0.12em;
  margin: 0 -0.04em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid var(--ink);
}
.service {
  padding: 40px 36px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  position: relative;
  background: var(--paper);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
/* Remove edge borders on grid perimeter so the outer 2px border isn't doubled */
.service:nth-child(3n) { border-right: 0; }
.service:nth-last-child(-n+3) { border-bottom: 0; }

/* First card — primary (Opervium delivery) — color-coded, NOT size-coded */
.service.primary {
  background: var(--blue);
  color: #fff;
}
.service.primary .service-num { color: rgba(255,255,255,0.65); }
.service.primary h3 { color: #fff; }
.service.primary p { color: rgba(255,255,255,0.85); }
.service.primary .service-tags .tag { color: #fff; border-color: rgba(255,255,255,0.45); }
.service.primary::after {
  content: "";
  position: absolute;
  right: -32px; top: -32px;
  width: 96px; height: 96px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  pointer-events: none;
}
.service.primary .primary-pin {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--yellow);
  padding: 4px 8px;
  border: 1.5px solid var(--ink);
  z-index: 2;
}

.service-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 24px;
}
.service h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 14px;
}
.service p {
  color: var(--ink-muted);
  margin: 0 0 24px;
  max-width: 36ch;
  font-size: 14.5px;
  line-height: 1.55;
}
.service-tags {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* === WHY OPERVIUM === */
.opervium {
  background: #0F1B3A;
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.opervium::before {
  content: "";
  position: absolute;
  left: 50%; top: -180px;
  width: 360px; height: 360px;
  background: var(--blue);
  border-radius: 50%;
  opacity: 0.55;
  filter: blur(2px);
  pointer-events: none;
}
.opervium .sec-head h2 .blue { color: #6FA1FF; }
.opervium-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.opervium-copy p {
  color: rgba(244, 242, 234, 0.78);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 24px;
}
.opervium-feature {
  background: var(--paper);
  color: var(--ink);
  padding: 24px;
  border: 2px solid var(--paper);
  position: relative;
  box-shadow: 14px 14px 0 var(--yellow);
}
.opervium-feature::before,
.opervium-feature::after { display: none; }
.opervium-screenshot {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
}
.opervium-annot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed rgba(244, 242, 234, 0.2);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 242, 234, 0.7);
}
.opervium-annot div { position: relative; padding-left: 14px; }
.opervium-annot div::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 6px; height: 6px; background: var(--blue);
}
.opervium-annot div:nth-child(2)::before { background: var(--red); border-radius: 50%; }
.opervium-annot div:nth-child(3)::before {
  background: transparent;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 6px solid rgba(244, 242, 234, 0.7);
}
.opervium-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.opervium-stack-row {
  display: grid;
  grid-template-columns: 80px 1fr 120px;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  align-items: center;
}
.opervium-stack-row .k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 242, 234, 0.5);
}
.opervium-stack-row .v {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.01em;
}
.opervium-stack-row .vv {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(244, 242, 234, 0.5);
  text-align: right;
}

/* === INDUSTRIES === */
.industries-lede {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 64ch;
  margin: -40px 0 56px;
}
.industries-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--ink); }
.industry-row {
  display: grid;
  grid-template-columns: 70px 1fr 1.6fr 220px;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--ink);
  align-items: center;
  position: relative;
  transition: background 200ms var(--ease);
}
.industry-row:hover { background: var(--paper-2); }
.industry-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}
.industry-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.industry-region {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 400;
  margin-top: 6px;
}
.industry-body {
  font-size: 15.5px;
  color: var(--ink-muted);
  line-height: 1.5;
}
.industry-procs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}
.industry-proc {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 4px 9px;
  background: var(--paper);
  transition: background 180ms var(--ease), color 180ms var(--ease);
}
.industry-row:hover .industry-proc { background: var(--blue); color: #fff; border-color: var(--blue); }

/* === PROCESS === */
.process {
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
}
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.process-track::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 0; right: 0;
  height: 1px;
  background: var(--ink);
  z-index: 1;
}
.process-step {
  padding: 40px 32px 48px 0;
  position: relative;
  border-right: 1px solid var(--line);
}
.process-step:last-child { border-right: 0; }
.process-step::before {
  content: "";
  position: absolute;
  top: 72px;
  left: 0;
  width: 16px; height: 16px;
  background: var(--paper-2);
  border: 2px solid var(--ink);
  border-radius: 50%;
  z-index: 2;
}
.process-step.active::before { background: var(--blue); border-color: var(--blue); }
.process-step .week {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 96px 0 16px;
  line-height: 1.1;
}
.process-step p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.5;
  margin: 0;
  max-width: 28ch;
}
.process-step ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.process-step ul li { padding: 4px 0; }
.process-step ul li::before { content: "→ "; color: var(--blue); }

/* === WORKSHOP / CTA === */
.workshop {
  background: var(--blue);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.workshop::before {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 80px solid var(--yellow);
  opacity: 0.9;
  pointer-events: none;
}
.workshop::after {
  content: "";
  position: absolute;
  left: -60px; bottom: -120px;
  width: 240px; height: 240px;
  background: var(--red);
  transform: rotate(45deg);
  pointer-events: none;
}
.workshop-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.workshop .eyebrow { color: rgba(255,255,255,0.7); }
.workshop .eyebrow::before { background: #fff; }
.workshop h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 24px 0 32px;
  color: #fff;
}
.workshop p {
  font-size: 19px;
  line-height: 1.5;
  margin: 0 0 40px;
  color: rgba(255,255,255,0.85);
  max-width: 56ch;
}
.workshop .btn-primary { background: #fff; color: var(--blue); }
.workshop .btn-primary:hover { background: var(--ink); color: #fff; }
.workshop .btn-ghost { border-color: rgba(255,255,255,0.6); color: #fff; }
.workshop .btn-ghost:hover { background: #fff; color: var(--blue); }
.workshop-deliverables {
  margin-top: 56px;
  display: flex;
  align-items: stretch;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.25);
}
.wd-step {
  flex: 1;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wd-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}
.wd-step strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
}
.wd-desc {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.wd-arrow {
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 20px;
  color: rgba(255,255,255,0.3);
}

/* === CONTACT / FOOTER === */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0 32px;
  position: relative;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 64px;
  border-bottom: 1px solid #2a2a2a;
}
.footer h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0 0 40px;
  color: var(--paper);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact a {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--paper);
  transition: color 200ms var(--ease);
  width: fit-content;
}
.footer-contact a:hover { color: #6FA1FF; }

/* Contact form (in footer) */
.contact-form { display: grid; gap: 20px; }
.contact-form.is-hidden { display: none; }
.contact-success { display: none; padding: 32px; border: 1px solid rgba(244,242,234,0.15); border-radius: var(--r-sm); }
.contact-success.is-visible { display: block; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-label { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(244,242,234,0.5); margin-bottom: 6px; }
.cf-field { width: 100%; padding: 11px 14px; border: 1px solid rgba(244,242,234,0.2); border-radius: var(--r-sm); font-size: 15px; font-family: var(--font-sans); background: rgba(244,242,234,0.06); color: var(--paper); outline: none; transition: border-color 200ms; }
.cf-field:focus { border-color: var(--blue); }
.cf-field::placeholder { color: rgba(244,242,234,0.3); }
textarea.cf-field { resize: vertical; }
.cf-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.cf-chip { padding: 7px 14px; border-radius: 999px; border: 1px solid rgba(244,242,234,0.2); background: transparent; color: rgba(244,242,234,0.6); font-size: 13px; font-family: var(--font-sans); font-weight: 500; cursor: pointer; transition: all 200ms; }
.cf-chip.is-active { border-color: var(--blue); background: rgba(29,78,216,0.15); color: #6FA1FF; }
.cf-chip:hover { border-color: rgba(244,242,234,0.4); }
.cf-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 4px; }
.cf-note { font-family: var(--font-mono); font-size: 11px; color: rgba(244,242,234,0.4); letter-spacing: 0.04em; }

.footer-address {
  font-size: 15px;
  color: rgba(244, 242, 234, 0.5);
  margin-top: 8px;
}
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 36px;
}
.footer-direct h4, .footer-timeline h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 242, 234, 0.5);
  margin: 0 0 16px;
  font-weight: 500;
}
.ft-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(244,242,234,0.1);
}
.ft-item:last-child { border-bottom: 0; }
.ft-key { font-family: var(--font-mono); font-size: 12px; color: var(--blue); letter-spacing: 0.06em; padding-top: 2px; }
.ft-val { font-size: 14px; color: rgba(244,242,234,0.8); line-height: 1.5; }
.footer-links {
  display: flex;
  gap: 64px;
  padding-top: 48px;
  margin-top: 48px;
  border-top: 1px solid #2a2a2a;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 242, 234, 0.5);
  margin: 0 0 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: rgba(244, 242, 234, 0.85); font-size: 15px; }
.footer-col a:hover { color: #6FA1FF; }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(244, 242, 234, 0.5);
  text-transform: uppercase;
}
.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(7rem, 18vw, 16rem);
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: rgba(244, 242, 234, 0.06);
  padding: 80px 0 32px;
  text-transform: lowercase;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
}

/* === Floating language pill (mobile only) === */
.lang-float {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  font-family: var(--font-mono);
  font-size: 11px;
  gap: 1px;
  background: rgba(10,10,10,0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.lang-float button {
  padding: 5px 8px;
  color: rgba(244,242,234,0.4);
  transition: color 180ms var(--ease), background 180ms var(--ease);
}
.lang-float button.active {
  color: rgba(244,242,234,0.85);
}

/* === Responsive === */
@media (max-width: 1100px) {
  .industry-row { grid-template-columns: 60px 1fr 1.4fr 180px; gap: 20px; }
}
@media (max-width: 900px) {
  /* Nav: hide links, show floating lang pill */
  .nav-links { display: none !important; }
  .nav-lang { display: none !important; }
  .lang-float { display: flex; }

  .hero-body { grid-template-columns: 1fr; gap: 48px; }
  .hero-top-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-status { font-size: 10px; }
  .hero-shape-circle { width: 280px; height: 280px; top: -80px; right: -80px; }
  .hero-shape-square { display: none; }
  .hero-shape-triangle { display: none; }

  /* Ticker: simplify grid for narrow screens */
  .hero-ticker-row { grid-template-columns: 44px 1fr 1fr 10px; gap: 8px; padding: 10px 14px; }
  .hero-ticker-row .step { display: none; }
  .hero-ticker-head, .hero-ticker-foot { padding: 10px 14px; font-size: 10px; }

  .opervium-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .service { border-right: 0 !important; border-bottom: 2px solid var(--ink) !important; min-height: auto; }
  .service:last-child { border-bottom: 0 !important; }
  .process-track { grid-template-columns: 1fr; }
  .process-track::before { display: none; }
  .process-step { border-right: 0; border-bottom: 1px solid var(--line); }
  .industry-row { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .industry-num { display: none; }
  .industry-procs { justify-content: flex-start; }
  .sec-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .sec-head-num { font-size: 64px; }
  .sec-head-shape { display: none; }
  .hero-meta { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hero-meta-item:nth-child(2) { border-right: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .cf-row { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 32px; }
  .footer-wordmark { font-size: clamp(4rem, 14vw, 8rem); }
  .workshop-deliverables { flex-direction: column; }
  .wd-arrow { transform: rotate(90deg); padding: 8px 0; justify-content: center; }
  .opervium-stack-row { grid-template-columns: 60px 1fr 100px; gap: 12px; }
}

@media (max-width: 480px) {
  .hero-display { font-size: clamp(2.5rem, 11vw, 4rem); }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { text-align: center; justify-content: center; }
  .hero-meta-num { font-size: 28px; }
  .workshop h2 { font-size: clamp(2rem, 8vw, 3rem); }
  .footer h3 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .footer-contact a { font-size: 18px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
