/* ================================================
   CECHOES TECHNOLOGY | DESIGN SYSTEM v9
   Navy Intelligence
   ================================================ */

/* ── 1. Design Tokens ───────────────────────────────────────── */
:root {
  /* Navy background scale */
  --navy:      #091933;
  --navy-deep: #060F22;
  --navy-mid:  #0D2040;
  --panel:     #0F2548;
  --panel-2:   #122B52;
  --glass:     rgba(9,25,51,0.88);

  /* Text */
  --ink:     #EAE8DF;
  --ink-mid: rgba(234,232,223,0.68);
  --ink-dim: rgba(234,232,223,0.35);

  /* Brand accents */
  --gold:      #C89010;
  --gold-lt:   #E4B840;
  --gold-glow: rgba(200,144,16,0.32);
  --green:     #22C41A;
  --teal:      #05CFA0;

  /* Lines */
  --line:      rgba(234,232,223,0.07);
  --line-md:   rgba(234,232,223,0.13);
  --line-gold: rgba(200,144,16,0.20);

  /* Per-brand colours */
  --bz:  #3A6FD4;
  --tf:  #1AA896;
  --zap: #C89010;
  --dr:  #9B50E0;
  --ada: #22C41A;

  /* Light-section palette */
  --light:            #F5F4F0;
  --light-2:          #FFFFFF;
  --ink-dark:         #0B1525;
  --ink-dark-mid:     #3C4A5E;
  --ink-dark-dim:     #7A8799;
  --line-light:       rgba(11,21,37,0.10);
  --line-light-md:    rgba(11,21,37,0.18);

  /* Typography */
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', sans-serif;

  /* Shape */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur:  0.45s;

  /* Layout */
  --section-pad:    140px;
  --section-pad-sm: 88px;
  --ticker-h:  36px;
  --nav-h:     80px;
  --top-offset: calc(var(--ticker-h) + var(--nav-h));
}

/* ── 2. Reset + Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--navy-deep);
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

/* ── 3. Circuit-board texture overlay ──────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><g fill='none' stroke='rgba(200,144,16,.08)' stroke-width='1.5' stroke-linecap='square'><polyline points='0,50 70,50 70,100'/><polyline points='70,100 130,100 130,50 200,50'/><polyline points='40,200 40,150 100,150'/><polyline points='100,150 100,200'/><polyline points='0,130 50,130 50,100'/><polyline points='160,0 160,70 200,70'/><polyline points='130,160 200,160'/><polyline points='0,170 30,170 30,200'/></g><g fill='rgba(200,144,16,.18)'><circle cx='70' cy='50' r='2.5'/><circle cx='70' cy='100' r='2.5'/><circle cx='130' cy='100' r='2.5'/><circle cx='130' cy='50' r='2.5'/><circle cx='40' cy='150' r='2.5'/><circle cx='100' cy='150' r='2.5'/><circle cx='50' cy='130' r='2.5'/><circle cx='50' cy='100' r='2.5'/><circle cx='160' cy='70' r='2.5'/><circle cx='30' cy='170' r='2.5'/></g></svg>");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

/* All direct content sits above the texture */
body > * { position: relative; z-index: 1; }

/* ── 4. CT Cursor ───────────────────────────────────────────── */
#ct-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  user-select: none;
  opacity: 0;
  transition: color 0.18s ease, opacity 0.25s ease;
  mix-blend-mode: normal;
}

#ct-cursor.visible { opacity: 1; }
#ct-cursor.hover   { color: var(--green); }

@media (hover: none) {
  body { cursor: auto; }
  #ct-cursor { display: none; }
}

/* ── 5. Skip Nav ────────────────────────────────────────────── */
.skip-nav {
  position: absolute;
  top: -80px;
  left: 1.5rem;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  z-index: 2000;
  transition: top 0.2s;
}
.skip-nav:focus { top: 0; }

/* ── 6. Ticker ──────────────────────────────────────────────── */
.ticker-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--ticker-h);
  background: var(--gold);
  z-index: 1100;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  will-change: transform;
  animation: ticker-scroll 55s linear infinite;
}

.tk-item {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-deep);
  padding: 0 1.5rem;
}

.tk-sep {
  color: rgba(9,25,51,0.4);
  font-size: 0.5rem;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── 7. Navigation ──────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: var(--ticker-h);
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line);
  z-index: 1000;
  transition: background var(--dur) var(--ease), border-color var(--dur);
}

.site-nav.scrolled {
  background: rgba(6,15,34,0.94);
  border-color: var(--line-gold);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo-mark {
  flex-shrink: 0;
  width: 32px;
  height: 44px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.nav-logo-sub {
  font-family: var(--ff-body);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  padding: 0.5rem 0.875rem;
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: var(--ink); background: rgba(234,232,223,0.05); }

/* Dropdown */
.nav-dd { position: relative; }

.dd-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--panel);
  border: 1px solid var(--line-gold);
  border-radius: var(--r-md);
  padding: 0.5rem;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.nav-dd:hover .dd-menu,
.nav-dd:focus-within .dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dd-menu a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: var(--r-sm);
  transition: background 0.18s, color 0.18s;
}
.dd-menu a:hover { background: var(--panel-2); color: var(--ink); }

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-nav {
  font-family: var(--ff-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy-deep);
  background: var(--gold);
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.22s, transform 0.22s var(--ease);
  will-change: transform;
}
.btn-nav:hover { background: var(--gold-lt); }

/* Hamburger */
.nav-ham {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--line-md);
  border-radius: var(--r-sm);
  cursor: none;
  padding: 0;
}
.nav-ham span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.25s;
}

/* ── 8. Mobile Overlay ──────────────────────────────────────── */
.mob-overlay {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease), opacity 0.3s, visibility 0.3s;
}
.mob-overlay.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mob-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.mob-close {
  background: none;
  border: 1px solid var(--line-md);
  color: var(--ink);
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  font-size: 1rem;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mob-links {
  list-style: none;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mob-links > li > a {
  display: block;
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.18s;
  font-style: italic;
}
.mob-links > li > a:hover { color: var(--gold); }

.mob-brands {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 1rem;
  margin-top: 0.25rem;
}
.mob-brands a {
  font-family: var(--ff-body);
  font-size: 0.875rem;
  color: var(--ink-mid);
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.18s;
}
.mob-brands a:hover { color: var(--gold); }

.mob-footer {
  margin-top: auto;
  padding-top: 2rem;
}
.mob-footer a {
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
}

/* ── 9. Hero ────────────────────────────────────────────────── */
.hero-split {
  position: relative;
  min-height: 100vh;
  padding-top: var(--top-offset);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 0;
}

/* Headline glow ── applied to .hero-h1 */
@keyframes headline-pulse {
  0%, 100% {
    text-shadow:
      0 0 20px rgba(200,144,16,0.20),
      0 0 40px rgba(200,144,16,0.08);
  }
  50% {
    text-shadow:
      0 0 36px rgba(200,144,16,0.50),
      0 0 72px rgba(200,144,16,0.18),
      0 0 100px rgba(200,144,16,0.08);
  }
}

.hero-provenance {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 1.25rem;
}

.hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  animation: headline-pulse 4s ease-in-out infinite;
}

.gold-italic {
  font-style: italic;
  color: var(--gold);
}

.hero-body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-mid);
  max-width: 500px;
  margin-bottom: 2.25rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 2rem;
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* Chip illustration (hero right) */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wisdom-svg {
  width: 100%;
  max-width: 480px;
  opacity: 0.92;
}

/* ── 10. Buttons ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-deep);
  background: var(--gold);
  padding: 0.8125rem 1.875rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.22s, transform 0.22s var(--ease);
  will-change: transform;
}
.btn-primary:hover { background: var(--gold-lt); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  padding: 0.8125rem 1.875rem;
  border: 1px solid var(--line-md);
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: border-color 0.22s, color 0.22s, transform 0.22s var(--ease);
  will-change: transform;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── 11. Intelligence Meter ─────────────────────────────────── */
#intel-meter {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.intel-label {
  font-family: var(--ff-body);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink-dim);
  text-transform: uppercase;
}

.intel-track {
  width: 3px;
  height: 72px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column-reverse;
}

.intel-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(to top, var(--gold), var(--green));
  border-radius: 2px;
  transition: height 0.2s ease;
}

.intel-pct {
  font-family: var(--ff-body);
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* ── 12. KPI Strip ──────────────────────────────────────────── */
.kpi-strip {
  background: var(--panel);
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 0;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.kpi-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.kpi-num {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.kpi-num sup {
  font-size: 1.5rem;
  vertical-align: super;
  line-height: 0;
}

.kpi-label {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  color: var(--ink-dim);
  margin-top: 0.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── 13. Marquee ────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  background: var(--navy-mid);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.125rem 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
}

.marquee-track span {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding: 0 1.25rem;
}
.marquee-track .mq-dot { color: var(--gold); padding: 0 0.25rem; }

/* ── 14. Section Defaults ───────────────────────────────────── */
.section {
  padding: var(--section-pad) 0;
}

.section-header {
  max-width: 640px;
  margin-bottom: 4rem;
}

.overline {
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
}

h4 {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

p {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-mid);
}

a { color: var(--gold); }

.section-sub {
  font-size: 1.0625rem;
  color: var(--ink-mid);
  margin-top: 0.875rem;
}

.section-line {
  height: 1px;
  background: var(--line);
  width: 100%;
}

/* ── 15. Brands Index (homepage) ────────────────────────────── */
.brands-index-section {
  padding: var(--section-pad) 0;
  background: var(--light);
}

/* Section heading text on light background */
.brands-index-section h2          { color: var(--ink-dark); }
.brands-index-section .section-sub { color: var(--ink-dark-mid); }

.brands-index {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-light-md);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--light-2);
}

/* ── Brand rows (dark context: used on contact.php, etc.) */
.brand-row {
  display: grid;
  grid-template-columns: 56px 220px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 2rem;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  border-left: 4px solid transparent;
  transition: background 0.25s var(--ease), border-left-color 0.25s var(--ease);
}
.brand-row:last-child { border-bottom: none; }
.brand-row:hover { background: var(--panel); }

/* ── Brand rows inside the light brands-index-section */
.brands-index-section .brand-row {
  border-bottom: 1px solid var(--line-light);
  border-left: 4px solid transparent;
}
.brands-index-section .brand-row:hover { background: var(--light); }

/* Brand-specific left-border on hover (light context) */
.brands-index-section .brand-row.bz:hover  { border-left-color: var(--bz); }
.brands-index-section .brand-row.tf:hover  { border-left-color: var(--tf); }
.brands-index-section .brand-row.zap:hover { border-left-color: var(--zap); }
.brands-index-section .brand-row.dr:hover  { border-left-color: var(--dr); }
.brands-index-section .brand-row.ada:hover { border-left-color: var(--ada); }

.br-num {
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
}
.brands-index-section .br-num { color: var(--ink-dark-dim); }

.br-name {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  font-style: italic;
}

/* Dark context: colored brand names */
.brand-row.bz  .br-name { color: var(--bz); }
.brand-row.tf  .br-name { color: var(--tf); }
.brand-row.zap .br-name { color: var(--zap); }
.brand-row.dr  .br-name { color: var(--dr); }
.brand-row.ada .br-name { color: var(--ada); }

/* Light context: all brand names in strong dark ink */
.brands-index-section .brand-row .br-name { color: var(--ink-dark); font-style: normal; font-weight: 600; }

.br-desc {
  font-family: var(--ff-body);
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.6;
}
.brands-index-section .br-desc { color: var(--ink-dark-mid); }

.br-arrow {
  font-size: 1.125rem;
  color: var(--ink-dim);
  transition: color 0.2s, transform 0.2s;
}
.brands-index-section .br-arrow { color: var(--ink-dark-dim); }
.brand-row:hover .br-arrow       { color: var(--gold); transform: translateX(4px); }
.brands-index-section .brand-row:hover .br-arrow { color: var(--gold); transform: translateX(4px); }

/* ── 16. Editorial Conviction ───────────────────────────────── */
.section-editorial {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--line);
}

.editorial-quote {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 1.5rem 0 2rem;
  font-style: italic;
}
.editorial-quote em {
  color: var(--gold);
  font-style: normal;
}

.eq-rule {
  height: 1px;
  background: var(--line-gold);
  margin: 2.5rem 0;
}

.eq-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.eq-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.eq-link:hover { color: var(--gold-lt); }

/* ── 17. Recognition Section ────────────────────────────────── */
.recognition-editorial {
  padding: var(--section-pad) 0;
  background: var(--light);
  border-top: none;
}

.rel-header { margin-bottom: 3.5rem; }

.recognition-editorial .rel-header h2,
.recognition-editorial .rel-heading { color: var(--ink-dark); }
.recognition-editorial .overline { color: var(--gold); }
.recognition-editorial .rel-sidebar-note { color: var(--ink-dark-dim); }
.recognition-editorial .rel-list { border-top: 1px solid var(--line-light-md); }
.recognition-editorial .rel-item { border-bottom: 1px solid var(--line-light); }
.recognition-editorial .rel-name { color: var(--ink-dark); }
.recognition-editorial .rel-desc { color: var(--ink-dark-mid); }

.rel-heading {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  margin-top: 0.5rem;
}

.rel-items {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
}

.rel-sidebar-note {
  font-size: 0.8125rem;
  color: var(--ink-dim);
  line-height: 1.6;
}

.rel-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.rel-item {
  display: grid;
  grid-template-columns: 72px 1fr 3fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.rel-marker {
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 0.1rem;
}

.rel-name {
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

.rel-desc {
  font-family: var(--ff-body);
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.65;
}

/* ── 17b. Section-light utility (sections on off-white background) ── */
/* Use .section-light class on any <section> to get full light treatment */
.section-light {
  background: var(--light);
}
.section-light h2,
.section-light h3,
.section-light h4                 { color: var(--ink-dark); }
.section-light p                  { color: var(--ink-dark-mid); }
.section-light .overline          { color: var(--gold); }
.section-light .section-sub       { color: var(--ink-dark-mid); }
.section-light a:not(.btn-primary):not(.btn-ghost):not(.btn-nav) { color: var(--gold); }
.section-light .btn-ghost {
  color: var(--ink-dark);
  border-color: var(--line-light-md);
}
.section-light .btn-ghost:hover   { border-color: var(--gold); color: var(--gold); }
.section-light .section-line      { background: var(--line-light-md); }

/* ── 18. CTA Section ────────────────────────────────────────── */
.cta-section { background: var(--navy-mid); }

.cta-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  padding: 5rem;
  background: var(--panel);
  border: 1px solid var(--line-gold);
  border-radius: var(--r-lg);
}

.cta-left h2 { margin: 0.5rem 0 1rem; }
.cta-left p  { color: var(--ink-mid); font-size: 1rem; }

.cta-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cta-detail-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cta-detail {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cta-detail-label {
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.cta-detail-val a {
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.18s;
}
.cta-detail-val a:hover { color: var(--gold); }

/* ── 19. Page Hero (Interior Pages) ────────────────────────── */
.page-hero-editorial {
  padding: calc(var(--top-offset) + 5rem) 0 5rem;
  position: relative;
}

.phe-inner { max-width: 840px; }

.phe-h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-top: 0.5rem;
  animation: headline-pulse 4s ease-in-out infinite;
}

.phe-sub {
  font-size: 1.125rem;
  color: var(--ink-mid);
  margin-top: 1rem;
  max-width: 640px;
}

/* Brand page hero */
.brand-page-hero {
  padding: calc(var(--top-offset) + 5rem) 0 5rem;
  position: relative;
}

.bph-inner { max-width: 720px; }

.bph-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.bph-num {
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.bph-parent {
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.bph-name {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  font-style: italic;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 1.25rem;
  animation: headline-pulse 4s ease-in-out infinite;
}

.bph-headline {
  font-size: 1.125rem;
  color: var(--ink-mid);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.bph-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Brand page hero per-brand accent */
.bz-hero  { border-bottom: 2px solid var(--bz); }
.tf-hero  { border-bottom: 2px solid var(--tf); }
.zap-hero { border-bottom: 2px solid var(--zap); }
.dr-hero  { border-bottom: 2px solid var(--dr); }
.ada-hero { border-bottom: 2px solid var(--ada); }

/* ── 20. Brands Page Specifics ──────────────────────────────── */
.brands-page-hero .brands-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-bottom: 3rem;
}

.brands-hero-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}

.bhv-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.5rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}
.bhv-item:last-child { border-bottom: none; }
.bhv-item:hover { background: var(--panel); }

.bhv-num {
  font-family: var(--ff-body);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  width: 24px;
}

.bhv-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.bhv-name {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
}

.bhv-bz  .bhv-name { color: var(--bz); }
.bhv-tf  .bhv-name { color: var(--tf); }
.bhv-zap .bhv-name { color: var(--zap); }
.bhv-dr  .bhv-name { color: var(--dr); }
.bhv-ada .bhv-name { color: var(--ada); }

/* Brand showcase sections */
.brand-showcase { padding: var(--section-pad) 0; }

.brand-showcase-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}

.brand-showcase-alt {
  grid-template-columns: 380px 1fr;
}
.brand-showcase-alt .bs-left { order: 2; }
.brand-showcase-alt .bs-right-panel { order: 1; }

.bs-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.bs-num {
  font-family: var(--ff-body);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.bs-tag {
  font-family: var(--ff-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.625rem;
  border-radius: 100px;
}

.bz-tag  { background: rgba(58,111,212,0.15); color: var(--bz); }
.tf-tag  { background: rgba(26,168,150,0.15); color: var(--tf); }
.zap-tag { background: rgba(200,144,16,0.15); color: var(--zap); }
.dr-tag  { background: rgba(155,80,224,0.15); color: var(--dr); }
.ada-tag { background: rgba(34,196,26,0.15);  color: var(--ada); }

.bs-name {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 1rem;
}

.bs-headline {
  font-family: var(--ff-body);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.bs-body {
  font-size: 0.9375rem;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 0.875rem;
}
.bs-body:last-of-type { margin-bottom: 2rem; }

.bs-right-panel {
  position: sticky;
  top: calc(var(--top-offset) + 2rem);
}

.bs-stat-panel {
  background: var(--panel);
  border: 1px solid var(--line-gold);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bs-stat {}

.bss-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  font-style: italic;
}

.bss-label {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
}

/* ── 21. About Page Specifics ───────────────────────────────── */
.conviction-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
}

.conviction-left h2 {
  margin-top: 0.5rem;
}

.conviction-right p + p { margin-top: 1rem; }

.values-section {}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
}

.value-block {}
.value-num {
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.value-title {
  font-family: var(--ff-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.value-body {
  font-size: 0.9375rem;
  color: var(--ink-mid);
  line-height: 1.7;
}

.methodology-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.methodology-left p { margin-top: 1rem; }

.methodology-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.method-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}
.method-step:last-child { border-bottom: none; }

.method-step-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  font-style: italic;
}

.method-step-body h4 { margin-bottom: 0.5rem; }

.credentials-section {}

.credentials-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line-gold);
  border-radius: var(--r-lg);
  padding: 3rem 2.5rem;
}

.cred-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}

.cred-num {
  font-family: var(--ff-display);
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  font-style: italic;
}
.cred-num sup { font-size: 1.4rem; }

.cred-label {
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  color: var(--ink-dim);
  margin-top: 0.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 140px;
}

.cred-divider {
  width: 1px;
  height: 64px;
  background: var(--line);
}

/* ── 22. Contact Page ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.cd-item {}
.cd-label {
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.cd-val {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--ink);
}
.cd-val a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.18s;
}
.cd-val a:hover { color: var(--gold); }

/* Contact form */
#contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-label {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line-md);
  border-radius: var(--r-sm);
  padding: 0.8125rem 1rem;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--gold); }

.form-select { appearance: none; cursor: none; }
.form-textarea { resize: vertical; min-height: 120px; }

.form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-submit {
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy-deep);
  background: var(--gold);
  border: none;
  padding: 0.875rem 2rem;
  border-radius: var(--r-sm);
  cursor: none;
  transition: background 0.22s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--gold-lt); }

/* Brands listed on contact page */
.contact-brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

/* ── 23. Legal Pages ────────────────────────────────────────── */
.legal-wrap { max-width: 780px; }

.legal-intro {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
.legal-intro p + p { margin-top: 1rem; }

.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.legal-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.legal-section p + p { margin-top: 0.875rem; }

.legal-contact-block {
  margin-top: 1rem;
  padding: 1.25rem;
  background: var(--panel);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

/* ── 24. Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--line-gold);
  padding: 5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--ink-dim);
  line-height: 1.65;
  margin-top: 1.25rem;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-md);
  border-radius: var(--r-sm);
  color: var(--ink-mid);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social:hover { border-color: var(--gold); color: var(--gold); }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  font-family: var(--ff-body);
  font-size: 0.875rem;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom span {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  color: var(--ink-dim);
}

.footer-bot-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bot-links a {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  color: var(--ink-dim);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-bot-links a:hover { color: var(--gold); }

/* ── 25. Back to Top ────────────────────────────────────────── */
.btt {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 40px;
  height: 40px;
  background: var(--panel);
  border: 1px solid var(--line-gold);
  border-radius: var(--r-sm);
  color: var(--gold);
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s var(--ease);
}
.btt.show { opacity: 1; visibility: visible; transform: translateY(0); }
.btt:hover { background: var(--panel-2); }

/* ── 26. Scroll Reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ── 27. SVG Animations ─────────────────────────────────────── */
@keyframes svg-spin {
  100% { transform: rotate(360deg); transform-origin: center; }
}
.svg-spin { animation: svg-spin 24s linear infinite; transform-origin: 280px 280px; }

@keyframes svg-draw {
  0%   { stroke-dashoffset: 800; opacity: 0.2; }
  100% { stroke-dashoffset: 0;   opacity: 1; }
}
.svg-draw {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: svg-draw 3s var(--ease) forwards;
}

/* ── 28. Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-split-inner   { grid-template-columns: 1fr; }
  .hero-right         { display: none; }
  .brand-showcase-inner,
  .brand-showcase-alt { grid-template-columns: 1fr; }
  .brand-showcase-alt .bs-left,
  .brand-showcase-alt .bs-right-panel { order: unset; }
  .bs-right-panel     { position: static; }
  .eq-body            { grid-template-columns: 1fr; }
  .conviction-grid,
  .methodology-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
  .rel-items          { grid-template-columns: 1fr; }
  .rel-sidebar        { display: none; }
  .cta-wrap           { grid-template-columns: 1fr; padding: 3rem; gap: 3rem; }
  .brands-page-hero .brands-hero-split { grid-template-columns: 1fr; }
  .brands-hero-visual { display: none; }
  .credentials-bar {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
  }
  .cred-divider       { display: none; }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
    --section-pad-sm: 48px;
  }

  .nav-links  { display: none; }
  .btn-nav    { display: none; }
  .nav-ham    { display: flex; }

  .kpi-grid   { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  .brand-row  { grid-template-columns: 40px 1fr; }
  .br-desc    { display: none; }
  .br-arrow   { display: none; }

  .rel-item   { grid-template-columns: 56px 1fr; }
  .rel-desc   { display: none; }

  .values-grid { grid-template-columns: 1fr; }

  .contact-grid  { grid-template-columns: 1fr; }
  .form-2col     { grid-template-columns: 1fr; }

  .footer-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .footer-cols   { grid-template-columns: 1fr 1fr; }

  .credentials-bar { grid-template-columns: 1fr 1fr; padding: 2rem; }
  .contact-brands-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .kpi-grid          { grid-template-columns: 1fr 1fr; }
  .cta-wrap          { padding: 2rem; }
  .footer-cols       { grid-template-columns: 1fr; }
  .footer-bottom     { flex-direction: column; align-items: flex-start; }
  .contact-brands-grid { grid-template-columns: 1fr; }
  .credentials-bar   { grid-template-columns: 1fr; }
}

/* ── 29. Touch device cursor reset ─────────────────────────── */
@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  .btn-primary,
  .btn-ghost,
  .btn-nav,
  .nav-ham,
  .mob-close,
  .btt,
  .form-submit,
  .form-select { cursor: pointer; }
}
