/* ══════════════════════════════════════════════
   DESIGN TOKENS — Project Hierophant v3
══════════════════════════════════════════════ */
:root {
  --bg:        #000000;
  --bg-deep:   #020304;
  --bg-soft:   #05070a;
  --bg-panel:  #0a0d12;
  --line:      rgba(255,255,255,.07);
  --line-2:    rgba(255,255,255,.12);
  --line-3:    rgba(255,255,255,.20);
  --ink:       #f2f0eb;
  --ink-soft:  rgba(242,240,235,.78);
  --ink-dim:   rgba(242,240,235,.62);
  --ink-muted: rgba(242,240,235,.38);
  --accent:    #e53e3e;
  --accent-2:  #c53030;
  --serif:     'Inria Serif', Georgia, serif;
  --sans:      'Inria Sans', -apple-system, sans-serif;
  --mono:      'JetBrains Mono', ui-monospace, monospace;
  /* aliases for colors_and_type.css compatibility */
  --font-serif: var(--serif);
  --font-sans:  var(--sans);
  --font-mono:  var(--mono);
}

/* ══════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════ */
.v3-body *, .v3-body *::before, .v3-body *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
.v3-body { background: var(--bg); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
.v3-body a { color: inherit; text-decoration: none; }
.v3-body img { display: block; max-width: 100%; }
.v3-body ul { list-style: none; }
.v3-body button { font: inherit; cursor: pointer; }

/* ══════════════════════════════════════════════
   FILM GRAIN + VIGNETTE (always on)
══════════════════════════════════════════════ */
.v3-body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 90;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.45 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
  opacity: .15; mix-blend-mode: overlay;
}
.v3-body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 85;
  background: radial-gradient(120% 80% at 50% 30%, transparent 36%, rgba(0,0,0,.75) 100%);
}

/* ══════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════ */
@keyframes pulse {
  0%,100% { box-shadow: 0 0 10px var(--accent); }
  50%      { box-shadow: 0 0 20px var(--accent); transform: scale(1.18); }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lineUp {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}
@keyframes scanDrift {
  from { background-position: 0 0; }
  to   { background-position: 0 100px; }
}

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.v3-body .btn {
  font-family: var(--mono); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; font-weight: 400;
  padding: 17px 30px; display: inline-flex; align-items: center; gap: 16px;
  border: 1px solid var(--ink); color: var(--bg); background: var(--ink);
  transition: background .22s, color .22s, border-color .22s, transform .18s;
  white-space: nowrap; cursor: pointer;
}
.v3-body .btn:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); transform: translateY(-1px); }
.v3-body .btn .arr { width: 22px; height: 1px; background: currentColor; position: relative; flex-shrink: 0; }
.v3-body .btn .arr::after { content: ""; position: absolute; right: -1px; top: -3.5px; width: 7px; height: 7px; border-right: 1px solid currentColor; border-top: 1px solid currentColor; transform: rotate(45deg); }

.v3-body .btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.v3-body .btn--ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.v3-body .btn--sm { font-size: 10px; padding: 11px 20px; gap: 12px; }

/* Same button rules for inner pages (body.v3-active) */
body.v3-active .btn {
  font-family: var(--mono); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; font-weight: 400;
  padding: 17px 30px; display: inline-flex; align-items: center; gap: 16px;
  border: 1px solid var(--ink); color: var(--bg); background: var(--ink);
  transition: background .22s, color .22s, border-color .22s, transform .18s;
  white-space: nowrap; cursor: pointer; text-decoration: none;
}
body.v3-active .btn:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); transform: translateY(-1px); }
body.v3-active .btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
body.v3-active .btn--ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 66px;
  border-bottom: 1px solid transparent;
  transition: border-color .4s, background .4s, backdrop-filter .4s;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(20px) saturate(140%);
}
.nav__brand { display: flex; align-items: center; gap: 16px; }
.nav__mark {
  width: 24px; height: 24px; border: 1px solid var(--ink);
  display: grid; place-items: center;
  font-family: var(--serif); font-style: italic; font-weight: 700; font-size: 15px; color: var(--ink);
}
.nav__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 10px var(--accent);
  animation: pulse 2.6s ease-in-out infinite;
}
.nav__sep { width: 1px; height: 22px; background: var(--line-2); flex-shrink: 0; }

/* Logo pair in nav */
.nav__logos { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav__logo-sep { width: 1px; height: 18px; background: var(--line-2); flex-shrink: 0; }
.nav__logo-h { height: 28px; width: auto; display: block; opacity: .92; }

/* GetTrusted wordmark wrapper + red dot/stripe */
.nav__gt-wrap { display: inline-block; position: relative; vertical-align: top; line-height: 0; }
.nav__logo-gt { height: 14px; width: auto; display: block; opacity: .9; }
.nav__gt-dot {
  display: block; position: absolute;
  bottom: 0; right: 0;
  width: 9px; height: 9px;
  border-radius: 50%;
  transform: translate(84%, 26%);
}
.nav__gt-dot::before {
  content: ""; display: block; position: absolute;
  top: 50%; right: 100%;
  width: 60px; height: 2px;
  background: linear-gradient(90deg, rgba(224,36,36,0) 0%, #e02424 100%);
  transform: translate(4px, -50%);
}
.nav__gt-dot::after {
  content: ""; display: block; position: absolute;
  left: 50%; top: 50%;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: linear-gradient(162deg, #b03609, #754432);
  transform: translate(-50%, -50%);
  z-index: 0;
}
.nav__gt-dot-inner {
  display: block; position: absolute;
  left: 50%; top: 50%;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: linear-gradient(342deg, #9b2c04 8.85%, #d03801 21.01%, #f19c7d 92.19%);
  box-shadow: inset 1px 1.5px 1px 0 rgba(255,253,253,.75), 0 4px 8px -2px rgba(0,0,0,.4);
  transform: translate(-50%, -50%);
  z-index: 2;
}
.nav__product {
  font-family: var(--mono); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ink-dim);
}
.nav__links {
  display: flex; gap: 36px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-dim);
}
.nav__links a { transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  font-family: var(--mono); font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; padding: 9px 18px;
  border: 1px solid var(--line-2); color: var(--ink); background: transparent;
  transition: all .22s;
}
.nav__cta:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

@media (max-width: 1100px) { .nav__links { display: none; } .nav__cta { display: none; } }
@media (max-width: 700px) { .nav { padding: 0 22px; } .nav__product, .nav__sep { display: none; } }

/* Burger button */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent; border: none; cursor: pointer; padding: 6px;
  margin-left: auto; flex-shrink: 0;
}
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s, opacity .2s;
  transform-origin: center;
}
.nav--open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav--open .nav__burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav--open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 1100px) { .nav__burger { display: flex; } }

/* Mobile drawer */
.nav__mobile {
  display: none;
  flex-direction: column;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  padding: 80px 28px 56px;
  overflow-y: auto;
  z-index: 99;
}
.nav--open .nav__mobile {
  display: flex;
}
.nav__mobile a {
  font-family: var(--sans); font-size: 15px; font-weight: 300;
  color: var(--ink-dim); text-decoration: none;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-1);
  transition: color .2s;
}
.nav__mobile a:hover { color: var(--ink); }
.nav__mobile-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-muted);
  padding: 18px 0 6px;
}
.nav__mobile-cta {
  margin-top: 24px;
  font-family: var(--mono) !important; font-size: 11px !important;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink) !important; border: 1px solid var(--line-2) !important;
  padding: 12px 20px !important; text-align: center; border-radius: 2px;
}

/* WordPress admin bar offset */
.admin-bar .nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .nav { top: 46px; } }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: grid; grid-template-rows: 1fr auto;
  overflow: hidden;
  background:
    radial-gradient(72% 52% at 80% 6%, rgba(229,62,62,.11), transparent 55%),
    radial-gradient(50% 44% at 6% 94%, rgba(20,50,130,.07), transparent 55%),
    linear-gradient(180deg, #000 0%, #030508 65%, #000 100%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.032) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.032) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 82% 68% at 50% 44%, #000 25%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse 82% 68% at 50% 44%, #000 25%, transparent 76%);
}
.hero__scan {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,.009) 3px 4px);
  mix-blend-mode: overlay;
}
.hero__inner {
  position: relative; z-index: 3;
  max-width: 1480px; margin: 0 auto; width: 100%;
  padding: 158px 56px 80px;
  display: grid; grid-template-columns: 1.2fr .8fr;
  gap: 80px; align-items: end;
}
.hero__eyebrow {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--ink-dim); display: inline-flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 42px;
  opacity: 0; animation: rise .9s .1s ease forwards;
}
.hero__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); flex-shrink: 0; }
.hero__badge {
  font-family: var(--mono); font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  padding: 4px 11px; border: 1px solid rgba(229,62,62,.55); color: var(--accent);
  display: inline-flex; align-items: center; gap: 7px;
}
.hero__badge::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); animation: pulse 2.2s ease-in-out infinite; }

.hero__h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(46px, 7.2vw, 112px);
  line-height: .94; letter-spacing: -0.022em; color: var(--ink);
  max-width: 14ch;
}
.hero__h1 .line { display: block; overflow: hidden; }
.hero__h1 .line span { display: inline-block; transform: translateY(110%); animation: lineUp 1.1s ease forwards; }
.hero__h1 .line:nth-child(1) span { animation-delay: .15s; }
.hero__h1 .line:nth-child(2) span { animation-delay: .28s; }
.hero__h1 .line:nth-child(3) span { animation-delay: .41s; }
.hero__h1 .line:nth-child(4) span { animation-delay: .54s; }
.hero__h1 em {
  font-style: italic; position: relative;
}
.hero__h1 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .05em;
  height: 1px; background: var(--accent); opacity: .9;
}

.hero__right {
  display: flex; flex-direction: column; gap: 34px; padding-bottom: 6px;
  opacity: 0; animation: rise 1s .72s ease forwards;
}
.hero__sub {
  font-family: var(--sans); font-weight: 300;
  font-size: clamp(15px, 1.1vw, 18px); line-height: 1.65;
  color: var(--ink-soft); max-width: 42ch;
}
.hero__sub strong { color: var(--ink); font-weight: 400; }
.hero__ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.hero__strip { display: none; }

@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; padding: 138px 28px 56px; }
}
@media (max-width: 580px) {
  .hero__h1 { font-size: clamp(38px, 10vw, 56px); }
  .hero__inner { padding: 118px 20px 44px; }
}

/* ══════════════════════════════════════════════
   FEATURED IN
══════════════════════════════════════════════ */
.featured {
  border-bottom: 1px solid var(--line); background: var(--bg-deep);
  padding: 38px 56px;
}
.featured__inner {
  max-width: 1480px; margin: 0 auto;
  display: grid; grid-template-columns: 180px 1fr; gap: 52px; align-items: center;
}
.featured__label {
  font-family: var(--mono); font-size: 9px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-muted); display: flex; align-items: center; gap: 12px;
}
.featured__label::before { content: ""; width: 20px; height: 1px; background: var(--ink-muted); }
.featured__list { display: flex; flex-wrap: wrap; align-items: center; gap: 48px; }
.featured__item a { display: inline-flex; flex-direction: column; gap: 5px; }
.featured__item a:hover .featured__name { color: var(--accent); }
.featured__name {
  font-family: var(--serif); font-weight: 400; font-size: 19px;
  line-height: 1.1; letter-spacing: -.005em; color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .2s;
}
.featured__name svg { width: 10px; height: 10px; opacity: .35; transition: opacity .2s, transform .2s; }
.featured__item a:hover .featured__name svg { opacity: 1; transform: translate(2px,-2px); }
.featured__meta { font-family: var(--mono); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-muted); }
.featured__badge { max-height: 38px; opacity: .8; transition: opacity .2s; }
.featured__item a:hover .featured__badge { opacity: 1; }

@media (max-width: 900px) {
  .featured { padding: 28px 22px; }
  .featured__inner { grid-template-columns: 1fr; gap: 18px; }
  .featured__list { gap: 22px; }
}

/* ══════════════════════════════════════════════
   MANIFESTO BAND
══════════════════════════════════════════════ */
.manifesto {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-deep);
  padding: clamp(88px, 12vw, 155px) 56px;
}
.manifesto__inner {
  max-width: 1480px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2.4fr; gap: 80px; align-items: start;
}
.manifesto__label {
  font-family: var(--mono); font-size: 10px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--ink-dim);
  padding-top: 14px; border-top: 1px solid var(--line-2);
}
.manifesto__text {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(26px, 3.2vw, 50px);
  line-height: 1.16; letter-spacing: -.012em; color: var(--ink);
}
.manifesto__text em { font-style: italic; color: var(--accent); }
.manifesto__sub {
  margin-top: 32px;
  font-family: var(--sans); font-weight: 300;
  font-size: clamp(15px, 1.1vw, 18px); line-height: 1.65; color: var(--ink-dim);
  max-width: 64ch;
}

@media (max-width: 900px) {
  .manifesto { padding: 80px 22px; }
  .manifesto__inner { grid-template-columns: 1fr; gap: 26px; }
}

/* ══════════════════════════════════════════════
   5 PROBLEMS
══════════════════════════════════════════════ */
.threats {
  background: var(--bg);
  padding: clamp(88px, 11vw, 148px) 56px clamp(56px, 7vw, 108px);
}
.threats__inner { max-width: 1480px; margin: 0 auto; }
.threats__head {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 60px; padding-bottom: 56px; border-bottom: 1px solid var(--line);
}
.kicker {
  font-family: var(--mono); font-size: 10px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: 12px; margin-bottom: 22px;
}
.kicker::before { content: ""; width: 26px; height: 1px; background: var(--accent); flex-shrink: 0; }
.threats__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px, 4.2vw, 64px);
  line-height: 1.02; letter-spacing: -.015em; color: var(--ink);
}
.threats__title em { font-style: italic; color: var(--accent); }
.threats__desc {
  font-family: var(--sans); font-weight: 300;
  font-size: 15px; line-height: 1.68; color: var(--ink-dim);
  max-width: 52ch; margin-top: 24px; align-self: end;
}

.threat {
  display: grid; grid-template-columns: 110px 1.15fr 2.1fr 54px;
  gap: 40px; align-items: start;
  padding: 38px 0 38px 0; border-bottom: 1px solid var(--line);
  position: relative; cursor: default;
  transition: padding-left .32s cubic-bezier(.2,.7,.2,1), background .32s;
}
.threat::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: var(--accent); transition: width .32s cubic-bezier(.2,.7,.2,1);
}
.threat:hover { padding-left: 24px; background: linear-gradient(90deg, rgba(229,62,62,.04), transparent 48%); }
.threat:hover::before { width: 3px; }
.threat:hover .threat__name { color: var(--accent); }
.threat:hover .threat__num { color: var(--ink); }

.threat__num {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(46px, 4.8vw, 72px); line-height: .9;
  color: var(--ink-muted); transition: color .32s;
}
.threat__name {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(22px, 2.2vw, 34px); line-height: 1.05; letter-spacing: -.01em;
  color: var(--ink); transition: color .32s;
}
.threat__name small {
  display: block; margin-top: 9px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--ink-dim); font-weight: 400;
}
.threat__body {
  font-family: var(--sans); font-weight: 300;
  font-size: clamp(13px, 1vw, 15px); line-height: 1.7;
  color: var(--ink-soft); /*max-width: 56ch;*/
}
.threat__arrow {
  justify-self: end; align-self: center;
  width: 24px; height: 24px;
  display: grid; place-items: center;
}
.threat__arrow svg { width: 20px; height: 20px; }

@media (max-width: 1050px) {
  .threats__head { grid-template-columns: 1fr; gap: 20px; padding-bottom: 36px; }
  .threat { grid-template-columns: 78px 1fr 36px; gap: 22px; padding: 26px 0; }
  .threat__body { grid-column: 2/4; }
}
@media (max-width: 580px) {
  .threats { padding: 66px 20px 48px; }
  .threat { grid-template-columns: 54px 1fr; gap: 14px; }
  .threat__arrow { display: none; }
  .threat__body { grid-column: 1/3; padding-top: 4px; }
}

/* ══════════════════════════════════════════════
   SOLUTIONS / ECOSYSTEM
══════════════════════════════════════════════ */
.solutions {
  background: var(--bg-deep); border-top: 1px solid var(--line);
  padding: clamp(80px, 10vw, 132px) 56px;
}
.solutions__inner { max-width: 1480px; margin: 0 auto; }
.solutions__head {
  display: grid; grid-template-columns: 1fr 1.8fr;
  gap: 80px; margin-bottom: 64px; align-items: start;
}
.solutions__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 3.8vw, 56px);
  line-height: 1.04; letter-spacing: -.015em; color: var(--ink);
}
.solutions__intro {
  font-family: var(--sans); font-weight: 300;
  font-size: clamp(14px, 1.05vw, 16px); line-height: 1.7;
  color: var(--ink-dim); max-width: 58ch;
  padding-top: 12px; border-top: 1px solid var(--line-2);
}

.solutions__layers {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
}
.layer {
  background: var(--bg-panel); padding: 28px 24px 32px;
  position: relative; overflow: hidden;
  transition: background .28s;
  cursor: default;
}
.layer::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: var(--accent); transition: width .28s cubic-bezier(.2,.7,.2,1);
}
.layer:hover { background: linear-gradient(90deg, rgba(229,62,62,.04), var(--bg-panel) 55%); }
.layer:hover::before { width: 2px; }
.layer__num {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 13px; color: var(--ink-muted); margin-bottom: 20px; letter-spacing: 0;
}
.layer__title {
  font-family: var(--serif); font-weight: 400; font-size: 18px;
  color: var(--ink); line-height: 1.2; margin-bottom: 10px;
}
.layer__desc {
  font-family: var(--sans); font-weight: 300; font-size: 13px;
  color: var(--ink-dim); line-height: 1.55;
}
.layer__tag {
  margin-top: 18px; font-family: var(--mono); font-size: 9px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--ink-muted);
}

@media (max-width: 1100px) { .solutions__layers { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) {
  .solutions { padding: 66px 20px; }
  .solutions__head { grid-template-columns: 1fr; gap: 22px; }
  .solutions__layers { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   USE CASES
══════════════════════════════════════════════ */
.usecases {
  background: var(--bg); border-top: 1px solid var(--line);
  padding: clamp(80px, 10vw, 132px) 56px;
}
.usecases__inner { max-width: 1480px; margin: 0 auto; }
.usecases__head { margin-bottom: 60px; }
.usecases__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 3.8vw, 54px);
  line-height: 1.04; letter-spacing: -.015em; color: var(--ink);
  max-width: 20ch;
}
.usecases__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line);
}
.usecase {
  background: var(--bg-panel); padding: 36px 30px 40px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
}
.usecase::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0; transition: opacity .3s;
}
.usecase:hover::after { opacity: 1; }
.usecase__sector {
  font-family: var(--mono); font-size: 9px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--accent);
}
.usecase__title {
  font-family: var(--serif); font-weight: 400; font-size: 22px;
  line-height: 1.15; color: var(--ink);
}
.usecase__body {
  font-family: var(--sans); font-weight: 300; font-size: 14px;
  line-height: 1.65; color: var(--ink-dim); font-style: italic;
  border-left: 2px solid var(--line-2); padding-left: 16px; margin-top: 4px;
}
.usecase__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 8px; }
.usecase__tag {
  font-family: var(--mono); font-size: 8.5px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-muted);
  border: 1px solid var(--line); padding: 4px 9px;
}

@media (max-width: 1100px) { .usecases__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .usecases { padding: 66px 20px; }
  .usecases__grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   STRATEGIC STATS STRIP
══════════════════════════════════════════════ */
.specs {
  background: var(--bg-deep); border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); padding: 0 56px;
}
.specs__inner {
  max-width: 1480px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5,1fr); gap: 0;
}
.spec {
  padding: 32px 24px; display: flex; flex-direction: column; gap: 10px;
  border-right: 1px solid var(--line); position: relative; overflow: hidden;
  transition: background .25s;
}
.spec:last-child { border-right: none; }
.spec:hover { background: rgba(229,62,62,.03); }
.spec__val {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 28px; color: var(--ink); line-height: 1; letter-spacing: -.01em;
}
.spec__title {
  font-family: var(--sans); font-weight: 400; font-size: 14px;
  color: var(--ink-soft); line-height: 1.2;
}
.spec__label {
  font-family: var(--mono); font-size: 9px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink-muted); line-height: 1.5; margin-top: 2px;
}
@media (max-width: 1000px) { .specs__inner { grid-template-columns: repeat(2,1fr); } .spec { border-bottom: 1px solid var(--line); } }
@media (max-width: 500px) { .specs { padding: 0 20px; } .specs__inner { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════
   INDUSTRIES
══════════════════════════════════════════════ */
.industries {
  background: var(--bg-soft); border-top: 1px solid var(--line);
  padding: clamp(72px,9vw,120px) 56px;
}
.industries__inner { max-width: 1480px; margin: 0 auto; }
.industries__head {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 60px; margin-bottom: 52px; align-items: end;
}
.industries__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(26px,3.2vw,48px);
  line-height: 1.06; letter-spacing: -.015em; color: var(--ink);
}
.industries__desc {
  font-family: var(--sans); font-weight: 300; font-size: 15px;
  line-height: 1.65; color: var(--ink-dim); /*max-width: 56ch;*/
}
.industries__grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line);
}
.industry {
  background: var(--bg-panel); padding: 24px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; cursor: pointer; position: relative;
  transition: background .25s, padding-left .28s;
}
.industry::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: var(--accent); transition: width .28s cubic-bezier(.2,.7,.2,1);
}
.industry:hover { padding-left: 18px; background: linear-gradient(90deg,rgba(229,62,62,.04),var(--bg-panel) 55%); }
.industry:hover::before { width: 2px; }
.industry:hover .industry__name { color: var(--accent); }
.industry__name {
  font-family: var(--serif); font-weight: 400; font-size: 16px;
  color: var(--ink); transition: color .25s; line-height: 1.2;
}
.industry__arrow { opacity: .25; flex-shrink: 0; transition: opacity .25s, transform .25s; }
.industry:hover .industry__arrow { opacity: .8; transform: translateX(2px); }
@media (max-width: 1000px) { .industries__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) {
  .industries { padding: 60px 20px; }
  .industries__head { grid-template-columns: 1fr; gap: 18px; }
  .industries__grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════════ */
.cta-final {
  background: linear-gradient(180deg, var(--bg) 0%, #030508 100%);
  border-top: 1px solid var(--line);
  padding: clamp(90px, 14vw, 150px) 56px;
  text-align: center; overflow: hidden; position: relative;
}
.cta-final::before {
  content: ""; position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(229,62,62,.08), transparent 70%);
  pointer-events: none;
}
.cta-final__inner { max-width: 1000px; margin: 0 auto; position: relative; }
.cta-final__kicker {
  font-family: var(--mono); font-size: 10px; letter-spacing: .32em;
  text-transform: uppercase; color: var(--ink-dim); margin-bottom: 28px;
}
.cta-final__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(38px, 6.2vw, 90px);
  line-height: .98; letter-spacing: -.022em; color: var(--ink);
  margin-bottom: 40px;
}
.cta-final__title em { font-style: italic; color: var(--ink-dim); }
.cta-final__ctas { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

@media (max-width: 580px) {
  .cta-final { padding: 80px 20px; }
  .cta-final__ctas { flex-direction: column; align-items: center; }
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--line); background: var(--bg-deep);
  padding: 48px 56px 32px;
}
.footer__top {
  max-width: 1480px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr repeat(3,1fr);
  gap: 48px; padding-bottom: 40px; border-bottom: 1px solid var(--line);
}
.footer__brand-mark {
  width: 24px; height: 24px; border: 1px solid var(--line-2);
  display: grid; place-items: center;
  font-family: var(--serif); font-style: italic; font-weight: 700;
  font-size: 15px; color: var(--ink-dim); margin-bottom: 14px;
}
.footer__brand-logos { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer__logo-h { height: 40px; width: auto; opacity: .95; }
.footer__logo-gt { height: 13px; width: auto; opacity: .88; }
.footer__brand-name {
  font-family: var(--mono); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 10px;
}
.footer__brand-desc {
  font-family: var(--sans); font-weight: 300; font-size: 13px;
  line-height: 1.6; color: var(--ink); max-width: 28ch;
  margin-bottom: 20px;
}
.footer__brand-addr {
  font-family: var(--mono); font-size: 9px; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(242,240,235,.78); line-height: 1.7;
}
.footer__col-title {
  font-family: var(--mono); font-size: 9px; letter-spacing: .28em;
  text-transform: uppercase; color: rgba(242,240,235,.72); margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.18);
}
.footer__col-links { display: flex; flex-direction: column; gap: 10px; }
.footer__col-links a {
  font-family: var(--sans); font-weight: 300; font-size: 14px;
  color: var(--ink); transition: color .2s;
}
.footer__col-links a:hover { color: var(--accent); }
.footer__bottom {
  max-width: 1480px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; gap: 20px; flex-wrap: wrap;
}
.footer__copy {
  font-family: var(--mono); font-size: 9px; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(242,240,235,.75);
}
.footer__legal { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer__legal a {
  font-family: var(--mono); font-size: 9px; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(242,240,235,.82); transition: color .2s;
}
.footer__legal a:hover { color: var(--ink); }
.footer__lang-sep { color: rgba(242,240,235,.40); }
.footer__lang-current { color: var(--ink) !important; }
@media (max-width: 1000px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .footer { padding: 40px 20px 24px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════════
   V3 GENERIC PAGE CONTENT
══════════════════════════════════════════════ */
.v3-page-content {
  background: var(--bg);
  padding: clamp(100px, 14vw, 160px) 56px clamp(80px, 10vw, 120px);
  min-height: 60vh;
}
.v3-page-inner {
  max-width: 900px; margin: 0 auto;
}
.v3-page-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1.04; letter-spacing: -.018em;
  color: var(--ink); margin-bottom: 48px;
  padding-bottom: 32px; border-bottom: 1px solid var(--line);
}
.v3-page-body {
  font-family: var(--sans); font-weight: 300;
  font-size: 16px; line-height: 1.75; color: var(--ink-soft);
}
.v3-page-body h2, .v3-page-body h3, .v3-page-body h4 {
  font-family: var(--serif); font-weight: 400; color: var(--ink);
  margin-top: 48px; margin-bottom: 18px;
}
.v3-page-body h2 { font-size: clamp(22px, 2.6vw, 36px); }
.v3-page-body h3 { font-size: clamp(18px, 2vw, 26px); }
.v3-page-body p { color: var(--ink-soft); margin-bottom: 20px; }
.v3-page-body a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--line-2); }
.v3-page-body a:hover { text-decoration-color: var(--accent); color: var(--accent); }
.v3-page-body ul, .v3-page-body ol { padding-left: 24px; margin-bottom: 20px; color: var(--ink-soft); }
.v3-page-body ul { list-style: disc; }
.v3-page-body ol { list-style: decimal; }
.v3-page-body li { margin-bottom: 8px; }
.v3-page-body strong { color: var(--ink); font-weight: 400; }

@media (max-width: 700px) {
  .v3-page-content { padding: 110px 20px 80px; }
}

/* ══════════════════════════════════════════════
   V3 ACTIVE — body base
══════════════════════════════════════════════ */
body.v3-active { background: var(--bg); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }

/* Content wrapper: offset for fixed nav */
.v3-inner-wrap { padding-top: 66px; min-height: calc(100vh - 66px); background: var(--bg); }
@media screen and (max-width: 782px) { .admin-bar .v3-inner-wrap { padding-top: 112px; } }
@media (max-width: 700px) { .v3-inner-wrap { padding-top: 56px; } }

/* ══════════════════════════════════════════════
   SHARED BREADCRUMB
══════════════════════════════════════════════ */
.tpage__breadcrumb { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 28px; }
.tpage__breadcrumb a { color: var(--ink-dim); text-decoration: none; transition: color .18s; }
.tpage__breadcrumb a:hover { color: var(--ink); }

/* ══════════════════════════════════════════════
   INNER PAGE HERO
══════════════════════════════════════════════ */
.v3-ih { padding: 72px 0 56px; border-bottom: 1px solid var(--line); background: var(--bg); }
.v3-ih__inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.v3-ih__breadcrumb {
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-dim); margin-bottom: 28px; display: flex; align-items: center; gap: 10px;
}
.v3-ih__breadcrumb a { color: var(--ink-dim); transition: color .18s; }
.v3-ih__breadcrumb a:hover { color: var(--ink); }
.v3-ih__sep { opacity: .3; }
.v3-ih__kicker {
  font-family: var(--mono); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 18px;
}
.v3-ih__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px, 4vw, 54px); line-height: 1.06; letter-spacing: -.018em;
  color: var(--ink); margin-bottom: 22px; max-width: 820px;
}
.v3-ih__lead {
  font-family: var(--sans); font-weight: 300; font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.68; color: var(--ink-soft); max-width: 660px;
}

/* ══════════════════════════════════════════════
   INNER PAGE CONTENT WRAPPER
══════════════════════════════════════════════ */
.v3-ic { max-width: 1200px; margin: 0 auto; padding: 64px 40px 96px; }
.v3-ic__lead {
  font-family: var(--sans); font-weight: 300; font-size: 18px; line-height: 1.72;
  color: var(--ink-soft); max-width: 760px; margin-bottom: 48px;
}
.v3-ic__section-title {
  font-family: var(--serif); font-weight: 400; font-size: clamp(18px, 1.8vw, 26px);
  color: var(--ink); margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.v3-ic__body {
  font-family: var(--sans); font-weight: 300; font-size: 16px; line-height: 1.78;
  color: var(--ink-soft); max-width: 760px;
}
.v3-ic__body p { margin-bottom: 16px; }
.v3-ic__body h2, .v3-ic__body h3 { font-family: var(--serif); font-weight: 400; color: var(--ink); margin: 36px 0 14px; }
.v3-ic__body h2 { font-size: clamp(18px, 1.8vw, 26px); }
.v3-ic__body h3 { font-size: clamp(16px, 1.4vw, 20px); }
.v3-ic__body a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--line-2); }
.v3-ic__body a:hover { color: var(--accent); text-decoration-color: var(--accent); }
.v3-ic__body ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.v3-ic__body li { margin-bottom: 6px; }
.v3-ic__body strong { color: var(--ink); font-weight: 400; }

/* ══════════════════════════════════════════════
   IMPLEMENTATION PANEL
══════════════════════════════════════════════ */
.v3-impl { margin-top: 56px; padding-top: 48px; border-top: 1px solid var(--line); max-width: 760px; }
.v3-impl__label { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 14px; }
.v3-impl__body { font-family: var(--sans); font-weight: 300; font-size: 16px; line-height: 1.75; color: var(--ink-soft); }
.v3-impl__body p { margin-bottom: 12px; }

/* ══════════════════════════════════════════════
   TECHNOLOGY TABLE
══════════════════════════════════════════════ */
.v3-tech-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.v3-tech-table__head th {
  font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-dim); text-align: left; padding: 0 24px 14px 0; border-bottom: 1px solid var(--line);
}
.v3-tech-table__group td {
  padding: 6px 0 2px; font-family: var(--mono); font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent); padding-top: 32px;
}
.v3-tech-table tr.v3-tech-table__row td { padding: 16px 24px 16px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.v3-tech-table__name { font-family: var(--sans); font-weight: 400; font-size: 15px; color: var(--ink); white-space: nowrap; }
.v3-tech-table__name a { color: var(--ink); border-bottom: 1px solid var(--line-2); transition: border-color .18s, color .18s; }
.v3-tech-table__name a:hover { color: var(--accent); border-color: var(--accent); }
.v3-tech-table__desc { font-family: var(--sans); font-weight: 300; font-size: 14px; line-height: 1.6; color: var(--ink-soft); }

/* ══════════════════════════════════════════════
   SOLUTIONS GRID
══════════════════════════════════════════════ */
.v3-sol-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 2px; margin-top: 40px; }
.v3-sol-card { background: var(--bg-panel); border: 1px solid var(--line); padding: 32px 28px; transition: background .22s, border-color .22s; }
.v3-sol-card:hover { background: #0e121a; border-color: var(--line-2); }
.v3-sol-card a { text-decoration: none; color: inherit; display: block; }
.v3-sol-card__arrow { color: var(--accent); font-size: 20px; margin-bottom: 20px; display: block; line-height: 1; }
.v3-sol-card__title { font-family: var(--serif); font-weight: 400; font-size: 18px; color: var(--ink); line-height: 1.3; }

/* ══════════════════════════════════════════════
   CONTACT BLOCKS
══════════════════════════════════════════════ */
.v3-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 40px; }
.v3-contact-block { background: var(--bg-panel); border: 1px solid var(--line); padding: 28px 32px; }
.v3-contact-block--wide { grid-column: 1 / -1; }
.v3-contact-block__label { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 12px; }
.v3-contact-block__value { font-family: var(--sans); font-weight: 300; font-size: 15px; color: var(--ink-soft); line-height: 1.72; }
.v3-contact-block__value a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--line-2); transition: color .18s; }
.v3-contact-block__value a:hover { color: var(--accent); text-decoration-color: var(--accent); }
.v3-contact-social { display: flex; flex-wrap: wrap; gap: 10px 24px; padding-top: 8px; }
.v3-contact-social a { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-dim); text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 2px; transition: color .18s, border-color .18s; }
.v3-contact-social a:hover { color: var(--ink); border-color: var(--ink-soft); }

/* ══════════════════════════════════════════════
   ENCRYPTED FORM
══════════════════════════════════════════════ */
.v3-form-note { font-family: var(--sans); font-weight: 300; font-size: 15px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 28px; max-width: 600px; }
.v3-form-note a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--line-2); }
.v3-form-field { margin-bottom: 24px; }
.v3-form-field label { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 10px; }
.v3-form-field textarea { width: 100%; background: var(--bg-panel); border: 1px solid var(--line-2); color: var(--ink); font-family: var(--mono); font-size: 13px; line-height: 1.65; padding: 16px 18px; resize: vertical; transition: border-color .18s; outline: none; }
.v3-form-field textarea:focus { border-color: var(--ink-soft); }
.v3-form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.v3-form-status { margin-top: 16px; font-family: var(--mono); font-size: 12px; color: var(--ink-soft); min-height: 1.5em; }
.v3-form-status.v3-err { color: var(--accent); }
.v3-form-status.v3-ok { color: #4ade80; }
.v3-cipher-box { margin-top: 32px; padding: 24px; background: var(--bg-panel); border: 1px solid var(--line); position: relative; display: none; }
.v3-cipher-box__label { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 10px; }
.v3-cipher-box textarea { width: 100%; background: transparent; border: none; color: var(--ink-soft); font-family: var(--mono); font-size: 11px; line-height: 1.6; resize: none; height: 160px; outline: none; }
.v3-cipher-box__copy { position: absolute; top: 16px; right: 16px; font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; background: var(--line-2); color: var(--ink); border: 1px solid var(--line-3); padding: 6px 12px; cursor: pointer; transition: background .15s; }
.v3-cipher-box__copy:hover { background: var(--line-3); }

/* ══════════════════════════════════════════════
   CTA STRIP
══════════════════════════════════════════════ */
.v3-cta { background: var(--bg-panel); border-top: 1px solid var(--line); padding: 72px 40px; text-align: center; }
.v3-cta__title { font-family: var(--serif); font-size: clamp(22px, 2.6vw, 36px); font-weight: 400; color: var(--ink); margin-bottom: 12px; }
.v3-cta__sub { font-family: var(--sans); font-weight: 300; font-size: 16px; color: var(--ink-soft); margin-bottom: 32px; }

/* ══════════════════════════════════════════════
   RESPONSIVE OVERRIDES
══════════════════════════════════════════════ */
@media (max-width: 700px) {
  .v3-ih__inner, .v3-ic { padding-left: 20px; padding-right: 20px; }
  .v3-ih { padding: 48px 0 40px; }
  .v3-sol-grid { grid-template-columns: 1fr 1fr; }
  .v3-contact-grid { grid-template-columns: 1fr; }
  .v3-contact-block--wide { grid-column: 1; }
  .v3-cta { padding: 48px 20px; }
}
@media (max-width: 480px) {
  .v3-sol-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   NAV SOLUTIONS DROPDOWN
══════════════════════════════════════════════ */
.nav__dropdown { position: relative; }
.nav__dropdown::before {
  content: ''; position: absolute; top: 100%;
  left: -20px; right: -20px; height: 20px;
}
.nav__dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
.nav__chevron {
  font-size: 9px; opacity: .50; display: inline-block;
  transition: transform .22s; line-height: 1;
}
.nav__dropdown:hover .nav__chevron { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute; top: calc(100% + 18px); left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--bg-panel); border: 1px solid var(--line-2);
  padding: 20px; min-width: 520px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 300;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-label {
  font-family: var(--mono); font-size: 8px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--ink-muted);
  padding-bottom: 9px; margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.nav__dropdown-col { display: flex; flex-direction: column; gap: 7px; }
.nav__dropdown-col a {
  font-family: var(--sans); font-size: 13px; font-weight: 300;
  color: var(--ink-dim); transition: color .2s; white-space: nowrap;
}
.nav__dropdown-col a:hover { color: var(--ink); }

/* ══════════════════════════════════════════════
   ABOUT PAGE — RECOGNITION GRID
══════════════════════════════════════════════ */
.recog__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 48px;
}
.recog__item {
  background: var(--bg-panel); border: 1px solid var(--line);
  padding: 36px 32px; display: flex; flex-direction: column; gap: 14px;
  transition: border-color .22s, background .22s;
}
.recog__item:hover { border-color: var(--line-2); background: #0e121a; }
.recog__item-label {
  font-family: var(--mono); font-size: 9px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--accent);
}
.recog__item-title {
  font-family: var(--serif); font-weight: 400; font-size: 19px;
  color: var(--ink); line-height: 1.3;
}
.recog__item-body {
  font-family: var(--sans); font-weight: 300; font-size: 14px;
  color: var(--ink-soft); line-height: 1.65; flex: 1;
}
.recog__item-link {
  font-family: var(--mono); font-size: 9px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-dim); text-decoration: none;
  border-bottom: 1px solid var(--line-2); padding-bottom: 2px;
  transition: color .18s, border-color .18s; align-self: flex-start;
}
.recog__item-link:hover { color: var(--accent); border-color: var(--accent); }
@media (max-width: 900px) { .recog__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .recog__grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════
   FOOTER 5-COLUMN GRID
══════════════════════════════════════════════ */
.footer__top--solutions {
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
}
@media (max-width: 1100px) { .footer__top--solutions { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px)  { .footer__top--solutions { grid-template-columns: 1fr; } }

