/* ─────────────────────────────────────────────
   METANOR · Professional Data & AI Site
   Typography: Syne (display) + DM Sans (body)
   Theme: Deep ink + champagne gold accents
───────────────────────────────────────────── */

/* ─── TOKENS ─── */
:root {
  --ink:        #070c14;
  --ink2:       #0c1422;
  --ink3:       #111d2e;
  --gold:       #c9a84c;
  --gold2:      #e8c96d;
  --gold-glow:  rgba(201,168,76,.22);
  --blue:       #2a6fca;
  --blue2:      #4f9bf5;
  --cyan:       #7dd3f5;
  --text:       #e8eff9;
  --text-muted: #8da0bb;
  --border:     rgba(255,255,255,.09);
  --border-gold:rgba(201,168,76,.28);
  --light-bg:   #f4f6fb;
  --light-text: #10192a;
  --light-muted:#5a6b82;
  --card-bg:    rgba(255,255,255,.055);
  --card-border:rgba(255,255,255,.10);
  --radius-sm:  12px;
  --radius-md:  18px;
  --radius-lg:  28px;
  --shadow:     0 32px 80px rgba(0,0,0,.38);
  --trans:      all .28s cubic-bezier(.4,0,.2,1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
p { margin: 0; }

/* ─── LAYOUT ─── */
.container { width: min(1180px, 92vw); margin: 0 auto; }
.section { padding: 100px 0; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; }
h1 {
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.06;
  letter-spacing: -.026em;
  font-weight: 700;
}
h2 {
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.04;
  letter-spacing: -.04em;
  font-weight: 700;
  margin-bottom: 16px;
}
h3 {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.02em;
  font-weight: 700;
  margin-bottom: 10px;
}
.label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.label.light { color: var(--blue); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
  border: none;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #0c1422;
  box-shadow: 0 10px 34px rgba(201,168,76,.36);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(201,168,76,.48);
}
.btn-ghost {
  background: rgba(255,255,255,.07);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-ghost-light {
  background: rgba(7,12,20,.12);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.25);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 15px; }

/* ─── SECTION HEADER ─── */
.section-header { max-width: 680px; margin-bottom: 56px; }
.section-desc { color: var(--text-muted); font-size: 18px; margin-top: 8px; }
.section-desc.light { color: var(--light-muted); }

/* ─── NAV ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(7,12,20,.82);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand img { width: 160px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  color: #b8c9de;
}
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #0c1422 !important;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,168,76,.38); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--trans);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 50%, rgba(42,111,202,.18) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 20%, rgba(201,168,76,.10) 0%, transparent 45%),
              linear-gradient(160deg, #060c18 0%, #0c1728 45%, #07111f 100%);
  padding-top: 80px;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.6), transparent 75%);
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.glow-1 { width: 600px; height: 600px; background: rgba(42,111,202,.20); top: -100px; left: -100px; }
.glow-2 { width: 400px; height: 400px; background: rgba(201,168,76,.12); top: 10%; right: 5%; }
.glow-3 { width: 300px; height: 300px; background: rgba(79,155,245,.15); bottom: 5%; left: 35%; }
.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: orbSpin linear infinite;
}
.orb-ring-1 {
  width: 500px; height: 500px;
  border-color: rgba(201,168,76,.08);
  top: 50%; right: -80px;
  transform: translateY(-50%);
  animation-duration: 24s;
}
.orb-ring-2 {
  width: 700px; height: 700px;
  border-color: rgba(42,111,202,.06);
  top: 50%; right: -180px;
  transform: translateY(-50%);
  animation-duration: 36s;
  animation-direction: reverse;
}
@keyframes orbSpin { from { transform: translateY(-50%) rotate(0deg); } to { transform: translateY(-50%) rotate(360deg); } }

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 58px;
  align-items: center;
  padding: 92px 0 82px;
}
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(201,168,76,.22);
  border-radius: 999px;
  padding: 7px 14px 7px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold2);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}
h1 .word-line {
  display: block;
}
h1 .word-line.gold {
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  color: #aebfd5;
  max-width: 610px;
  line-height: 1.72;
  margin: 24px 0 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tech-badges span {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 12px;
  font-weight: 600;
  color: #9bb8d8;
}

/* ─── HERO DIAGRAM ─── */
.hero-diagram { position: relative; }
.diagram-card {
  background: linear-gradient(160deg, rgba(255,255,255,.09) 0%, rgba(255,255,255,.04) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.diagram-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(201,168,76,.2), transparent 50%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}
.diagram-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #cde0f5;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 22px;
}
.dh-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
}
.dh-dot.active {
  background: #3ed98a;
  box-shadow: 0 0 14px rgba(62,217,138,.6);
  animation: pulse 2s infinite;
}
.dh-status {
  margin-left: auto;
  font-size: 10px;
  background: rgba(62,217,138,.14);
  color: #3ed98a;
  border: 1px solid rgba(62,217,138,.28);
  border-radius: 999px;
  padding: 2px 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.diagram-flow { display: flex; flex-direction: column; gap: 6px; }
.flow-node {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: var(--trans);
}
.flow-node:hover { background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.2); }
.flow-node.highlighted {
  background: linear-gradient(135deg, rgba(201,168,76,.16), rgba(42,111,202,.12));
  border-color: var(--border-gold);
}
.fn-icon { font-size: 18px; line-height: 1; }
.fn-text strong { display: block; font-size: 13px; font-weight: 700; color: #e8f2ff; }
.fn-text span { font-size: 11px; color: var(--text-muted); }
.flow-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 2px 0;
}
.flow-line {
  width: 1px;
  height: 14px;
  background: linear-gradient(to bottom, rgba(201,168,76,.4), rgba(42,111,202,.4));
}
.flow-label { font-size: 10px; color: var(--text-muted); letter-spacing: .06em; }
.diagram-footer {
  display: flex;
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.df-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  padding: 0 8px;
  border-right: 1px solid var(--border);
}
.df-stat:last-child { border-right: none; }
.df-num { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: var(--gold2); }
.df-stat span:last-child { font-size: 10px; color: var(--text-muted); }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,168,76,.8), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ─── MARQUEE ─── */
.marquee-bar {
  background: var(--ink2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #5a7899;
}
.marquee-track .sep { color: #2a3d54; font-size: 10px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── INTRO ─── */
.intro-section { background: var(--ink2); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 80px;
  align-items: start;
}
.intro-grid h2 { color: var(--text); margin-top: 0; }
.intro-right p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.75;
}
.market-flags {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.flag-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  flex: 1;
}
.flag-icon { font-size: 28px; }
.flag-item strong { display: block; font-weight: 700; font-size: 15px; color: var(--text); }
.flag-item span { font-size: 13px; color: var(--text-muted); }
.flag-divider { width: 1px; background: var(--border); }

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
  cursor: default;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-glow), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover { border-color: var(--border-gold); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.service-card:hover::before { opacity: 1; }
.sc-number {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: .7;
}
.sc-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold2);
  margin-bottom: 20px;
}
.service-card h3 { color: var(--text); }
.service-card p { font-size: 15px; color: var(--text-muted); flex: 1; line-height: 1.6; }
.sc-arrow {
  margin-top: 22px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--trans);
}
.service-card:hover .sc-arrow { opacity: 1; transform: translateX(0); }

/* ─── SOLUTIONS ─── */
.solutions-section { background: var(--ink2); }
.solutions-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.solution-item {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: var(--trans);
}
.solution-item:first-child { border-top: 1px solid var(--border); }
.si-indicator {
  width: 3px;
  min-height: 100%;
  border-radius: 4px;
  background: var(--border);
  flex-shrink: 0;
  transition: background .3s;
}
.solution-item.active .si-indicator { background: var(--gold); }
.si-content h3 {
  color: var(--text-muted);
  font-size: 17px;
  transition: color .3s;
  margin-bottom: 8px;
}
.solution-item.active .si-content h3 { color: var(--text); }
.si-content p { font-size: 14px; color: var(--text-muted); line-height: 1.65; display: none; }
.solution-item.active .si-content p { display: block; }

/* solutions visual */
.sv-card {
  background: rgba(255,255,255,.055);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 110px;
}
.sv-card.hidden { display: none; }
.sv-header {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold2);
  margin-bottom: 24px;
  letter-spacing: .02em;
}
.sv-diagram { display: flex; flex-direction: column; gap: 16px; }
.sv-row { display: flex; gap: 10px; }
.sv-box {
  flex: 1;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}
.sv-box.legacy { background: rgba(255,255,255,.06); border: 1px solid var(--border); color: var(--text-muted); }
.sv-box.modern { background: rgba(42,111,202,.16); border: 1px solid rgba(42,111,202,.3); color: #7db8f5; }
.sv-box.lake   { background: rgba(201,168,76,.12); border: 1px solid var(--border-gold); color: var(--gold2); }
.sv-box.stream { background: rgba(62,217,138,.1); border: 1px solid rgba(62,217,138,.25); color: #5de8a8; }
.sv-box.ai     { background: rgba(155,100,240,.12); border: 1px solid rgba(155,100,240,.28); color: #c09ef5; }
.sv-box.pulse { animation: pulseBox 2s ease-in-out infinite; }
@keyframes pulseBox { 0%,100%{opacity:1} 50%{opacity:.5} }
.sv-arrow-down {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: .06em;
}

/* ─── INDUSTRIES (light) ─── */
.light-panel {
  background: var(--light-bg);
  color: var(--light-text);
}
.light-panel h2 { color: var(--light-text); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.industry-card {
  background: #fff;
  border: 1px solid #e2e8f2;
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  transition: var(--trans);
}
.industry-card:hover {
  box-shadow: 0 20px 50px rgba(10,20,40,.1);
  transform: translateY(-4px);
  border-color: rgba(42,111,202,.2);
}
.ic-number {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--blue);
  margin-bottom: 14px;
  opacity: .6;
}
.ic-icon {
  width: 52px; height: 52px;
  background: rgba(42,111,202,.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 18px;
}
.industry-card h3 { color: var(--light-text); }
.industry-card p { font-size: 14px; color: var(--light-muted); line-height: 1.65; }

/* ─── ABOUT ─── */
.about-section { background: var(--ink); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 80px;
  align-items: start;
}
.about-left .label { margin-bottom: 14px; }
.about-left h2 { margin-bottom: 22px; }
.about-text { color: var(--text-muted); font-size: 16px; line-height: 1.78; margin-bottom: 18px; }
.about-left .btn-gold { margin-top: 10px; }
.location-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.lc {
  display: flex;
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  align-items: flex-start;
  transition: var(--trans);
}
.lc:hover { border-color: var(--border-gold); }
.lc-flag { font-size: 30px; }
.lc-content strong { display: block; font-weight: 700; font-size: 15px; color: var(--text); margin-bottom: 2px; }
.lc-content span { font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: .06em; display: block; margin-bottom: 8px; }
.lc-content p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }
.values-row {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
}
.value-item:last-child { border-bottom: none; }
.vi-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
  opacity: .7;
  letter-spacing: .1em;
}

/* ─── INSIGHTS ─── */
.insights-section { background: var(--light-bg); }
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.insight-card {
  background: #fff;
  border: 1px solid #e2e8f2;
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: var(--trans);
}
.insight-card:hover {
  box-shadow: 0 20px 50px rgba(10,20,40,.1);
  transform: translateY(-4px);
  border-color: rgba(42,111,202,.2);
}
.insight-tag {
  display: inline-block;
  background: rgba(42,111,202,.08);
  color: var(--blue);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  align-self: flex-start;
}
.insight-card h3 { color: var(--light-text); margin-bottom: 10px; font-size: 17px; }
.insight-card p { font-size: 14px; color: var(--light-muted); line-height: 1.65; flex: 1; }
.insight-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid #e8edf4;
  font-size: 13px;
  color: var(--light-muted);
}
.insight-footer svg { color: var(--blue); opacity: 0; transition: var(--trans); }
.insight-card:hover .insight-footer svg { opacity: 1; transform: translateX(4px); }

/* ─── CTA ─── */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(160deg, #05080f, #0c1828, #07111f);
}
.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-glow-1 {
  position: absolute;
  width: 500px; height: 500px;
  background: rgba(201,168,76,.12);
  border-radius: 50%;
  filter: blur(100px);
  top: -100px; right: 0;
}
.cta-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(42,111,202,.18);
  border-radius: 50%;
  filter: blur(100px);
  bottom: -100px; left: 10%;
}
.cta-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
}
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.cta-inner .label { margin-bottom: 16px; }
.cta-inner h2 { font-size: clamp(38px, 5vw, 64px); margin-bottom: 20px; }
.cta-inner > p { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; line-height: 1.7; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.cta-locations {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
  color: #5a7899;
}
.cta-sep { color: #2a3d54; }

/* ─── FOOTER ─── */
.footer {
  background: #040810;
  border-top: 1px solid var(--border);
  padding: 50px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand img { width: 148px; margin-bottom: 10px; }
.footer-brand p { font-size: 13px; color: #405570; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a { font-size: 14px; color: #5a7899; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-contact a { display: block; font-size: 14px; color: var(--gold); margin-bottom: 8px; }
.footer-contact p { font-size: 13px; color: #405570; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 12px;
  color: #304255;
}

/* ─── ANIMATIONS ─── */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s cubic-bezier(.4,0,.2,1), transform .75s cubic-bezier(.4,0,.2,1);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }
[style*="--d"] { transition-delay: var(--d) !important; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 46px; padding: 88px 0 58px; }
  .hero-diagram { max-width: 500px; margin: 0 auto; }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .solutions-layout { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 720px) {
  h1 { font-size: 40px; }
  h2 { font-size: 34px; }
  .section { padding: 70px 0; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    background: #0c1828;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 24px 60px rgba(0,0,0,.5);
  }
  .nav-links.open { display: flex; }
  .nav-cta { width: 100%; text-align: center; justify-content: center; }
  .brand img { width: 138px; }
  .hero-sub { font-size: 16px; }
  .hero-ctas { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .market-flags { flex-direction: column; }
  .flag-divider { display: none; }
}
