:root {
  --navy-950: #081633;
  --navy-900: #0C1E45;
  --navy-800: #12305F;
  --navy-700: #1A4180;
  --red-600: #E8342A;
  --red-500: #F2493D;
  --amber-500: #F2A93B;
  --paper: #F6F7FB;
  --paper-dim: #EDEFF6;
  --ink: #101A33;
  --muted: #5B6478;
  --line: #DEE2ED;
  --white: #FFFFFF;

  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --container: 1180px;
  --radius: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

:focus-visible {
  outline: 2.5px solid var(--amber-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-600);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-600);
  box-shadow: 0 0 0 3px rgba(232, 52, 42, 0.15);
}

.eyebrow.on-dark {
  color: var(--amber-500);
}

.eyebrow.on-dark::before {
  background: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(242, 169, 59, 0.18);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
}

.section-head p {
  color: var(--muted);
  font-size: 16.5px;
  margin-top: 14px;
  max-width: 520px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center p {
  margin-inline: auto;
}

section {
  padding: 96px 0;
  position: relative;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red-600);
  color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(232, 52, 42, 0.55);
}

.btn-primary:hover {
  background: var(--red-500);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  border-color: var(--amber-500);
  color: var(--amber-500);
}

.btn-dark {
  background: var(--navy-900);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--navy-800);
}

.btn-outline-navy {
  background: transparent;
  border: 1.5px solid var(--navy-800);
  color: var(--navy-900);
}

.btn-outline-navy:hover {
  background: var(--navy-900);
  color: var(--white);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 13.5px;
}

/* ---------- NAV ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: #ffffff;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}

header .wrap {
  max-width: 100%;
  padding: 0 40px;
}

header.scrolled {
  background: #ffffff;
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: var(--navy-900);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--white);
}

.brand .logo {
  height: 90px;
  width: auto;
}

.brand .bolt {
  width: 26px;
  height: 26px;
  flex: none;
}

.brand small {
  display: block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}

nav.primary {
  display: flex;
  align-items: center;
  gap: 34px;
  flex: 1;
  justify-content: center;
}

nav.primary a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy-900);
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
  text-decoration: none;
}

nav.primary a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0%;
  background: var(--red-600);
  transition: width .25s ease;
}

nav.primary a:hover {
  color: var(--amber-500);
}

nav.primary a:hover::after {
  width: 100%;
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  z-index: 110;
}

.menu-toggle span {
  height: 2px;
  width: 100%;
  background: var(--navy-900);
  border-radius: 2px;
  transition: .3s;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(1100px 700px at 82% -10%, rgba(242, 169, 59, 0.16), transparent 60%),
    radial-gradient(900px 600px at 10% 110%, rgba(232, 52, 42, 0.14), transparent 55%),
    linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 46%, var(--navy-800) 100%);
  overflow: hidden;
  padding-top: 120px;
}

/* Subtle real-photo underlay behind the hero gradient */
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-photo-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.12;
  mix-blend-mode: luminosity;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0.9) 80%, transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero-copy h1 {
  color: var(--white);
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.015em;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--amber-500);
}

.hero-copy p.lede {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17.5px;
  max-width: 480px;
  margin-top: 22px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-links {
  display: flex;
  gap: 26px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}

.hero-links a:hover {
  color: var(--white);
  border-color: var(--amber-500);
}

/* signature circuit visual */
.circuit-stage {
  position: relative;
  height: 520px;
}

.circuit-stage svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.pulse-dot {
  r: 5.5;
  fill: var(--amber-500);
  filter: drop-shadow(0 0 8px rgba(242, 169, 59, 0.9));
  offset-path: path('M 40,460 C 130,460 130,360 200,340 C 300,310 300,230 200,200 C 120,175 120,90 220,70 C 300,50 340,50 380,40');
  animation: travel 6s linear infinite;
}

@keyframes travel {
  0% {
    offset-distance: 0%;
  }

  100% {
    offset-distance: 100%;
  }
}

.node {
  fill: var(--navy-900);
  stroke: var(--amber-500);
  stroke-width: 2;
}

.node-lit {
  fill: var(--amber-500);
}

.hero-stat-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 14px 18px;
  color: #fff;
}

.hero-stat-card strong {
  font-family: var(--font-mono);
  font-size: 22px;
  display: block;
  color: var(--amber-500);
}

.hero-stat-card span {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.03em;
}

.hsc-1 {
  top: 6%;
  right: 2%;
}

.hsc-2 {
  bottom: 10%;
  left: 0%;
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.scroll-cue .line {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.scroll-cue .line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--amber-500);
  animation: scrollline 2s ease-in-out infinite;
}

@keyframes scrollline {
  0% {
    top: -10px;
  }

  100% {
    top: 30px;
  }
}

/* ---------- TICKER ---------- */
.ticker-band {
  background: var(--navy-900);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  padding: 13px 0;
}

.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: tick 32s linear infinite;
  width: max-content;
}

.ticker-track span {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  gap: 10px;
}

.ticker-track span::before {
  content: '●';
  color: var(--amber-500);
  font-size: 9px;
}

@keyframes tick {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ---------- ABOUT ---------- */
.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.about-visual {
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--navy-900), var(--navy-700));
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.about-visual img.about-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.65;
  transition: opacity 0.4s ease;
}

.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,22,51,0.1) 0%, rgba(8,22,51,0.75) 100%);
  pointer-events: none;
}

.about-visual:hover img.about-photo {
  opacity: 0.8;
}

.about-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.12;
  z-index: 1;
}

.about-visual .cap {
  position: relative;
  z-index: 2;
  color: #fff;
}

.about-visual .cap .k {
  font-family: var(--font-mono);
  font-size: 34px;
  color: var(--amber-500);
}

.about-visual .cap p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
}

.about-copy p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 18px;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.mv-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.mv-card .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-600);
  margin-bottom: 10px;
  display: block;
}

.mv-card p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
}

.mv-card h4 {
  font-size: 17px;
  margin-bottom: 6px;
}

/* ---------- VALUES NETWORK ---------- */
.values {
  background: var(--navy-950);
  color: #fff;
  position: relative;
}

.values .section-head h2,
.values .section-head {
  color: #fff;
}

.values .section-head p {
  color: rgba(255, 255, 255, 0.6);
}

.values-network {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.vnode {
  background: var(--navy-900);
  padding: 34px 26px;
  position: relative;
  transition: background .25s ease;
}

.vnode:hover {
  background: var(--navy-800);
}

.vnode::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--amber-500);
  transition: width .3s ease;
}

.vnode:hover::before {
  width: 100%;
}

.vnode .icon {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  color: var(--amber-500);
}

.vnode h4 {
  color: #fff;
  font-size: 16.5px;
  margin-bottom: 8px;
}

.vnode p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13.5px;
}

/* ---------- SERVICES ---------- */
.services {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .22s ease, box-shadow .22s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -20px rgba(16, 26, 51, 0.18);
  border-color: transparent;
}

.service-card .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card .icon-wrap svg {
  width: 24px;
  height: 24px;
  color: var(--amber-500);
}

.service-card h4 {
  font-size: 17.5px;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 16px;
}

.service-card a.link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--red-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card a.link svg {
  width: 14px;
  height: 14px;
  transition: transform .2s ease;
}

.service-card a.link:hover svg {
  transform: translateX(3px);
}

/* ---------- STATS ---------- */
.stats {
  background: linear-gradient(150deg, var(--navy-900), var(--navy-950));
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-cell {
  padding: 32px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-cell:last-child {
  border-right: none;
}

.stat-cell .num {
  font-family: var(--font-mono);
  font-size: clamp(28px, 3.6vw, 40px);
  color: var(--amber-500);
  font-weight: 600;
}

.stat-cell .lbl {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
  line-height: 1.4;
}

/* ---------- CX ---------- */
.cx {
  background: var(--paper-dim);
}

.cx-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cx-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 8px;
}

.cx-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cx-item .num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--red-600);
  background: rgba(232, 52, 42, 0.08);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.cx-item h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.cx-item p {
  color: var(--muted);
  font-size: 14px;
}

.cx-visual {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 30px 60px -30px rgba(16, 26, 51, 0.2);
}

.fake-app-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.fake-app-bar .dot-row {
  display: flex;
  gap: 6px;
}

.fake-app-bar .dot-row span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}

.fake-balance {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: 10px;
  padding: 20px;
  color: #fff;
  margin-bottom: 16px;
}

.fake-balance .lbl {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}

.fake-balance .amt {
  font-family: var(--font-mono);
  font-size: 26px;
  margin-top: 6px;
}

.fake-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
}

.fake-row span:first-child {
  color: var(--muted);
}

.fake-row span:last-child {
  font-weight: 600;
}

/* ---------- COMMUNITY ---------- */
.community {
  background: var(--paper);
}

.comm-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 20px;
  grid-template-rows: 220px 220px;
}

.comm-card {
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.comm-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(8, 22, 51, 0.92));
}

.comm-card .bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.comm-card h4 {
  color: #fff;
  position: relative;
  z-index: 1;
  font-size: 17px;
}

.comm-card p {
  position: relative;
  z-index: 1;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
}

.comm-1 {
  grid-row: 1 / 3;
  background: linear-gradient(160deg, #1A4180, #0C1E45);
}

.comm-2 {
  background: linear-gradient(160deg, #E8342A, #8f1912);
}

.comm-3 {
  background: linear-gradient(160deg, #F2A93B, #a86a12);
}

.comm-4 {
  background: linear-gradient(160deg, #12305F, #081633);
}

.comm-5 {
  background: linear-gradient(160deg, #8f1912, #3d0b07);
}

/* ---------- INNOVATION ---------- */
.innovation {
  background: var(--navy-950);
  color: #fff;
}

.innovation .section-head p {
  color: rgba(255, 255, 255, 0.6);
}

.innov-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.innov-feature {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.innov-feature:first-child {
  border-top: none;
}

.innov-feature .icon {
  width: 22px;
  height: 22px;
  color: var(--amber-500);
  flex: none;
  margin-top: 2px;
}

.innov-feature h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 4px;
}

.innov-feature p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13.5px;
}

.grid-visual {
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.grid-visual img.innov-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.45;
  transition: opacity 0.4s ease, transform 0.6s ease;
}

.grid-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(242,169,59,0.18), transparent 65%),
    linear-gradient(180deg, rgba(8,22,51,0.3) 0%, rgba(8,22,51,0.6) 100%);
  pointer-events: none;
}

.grid-visual svg {
  position: relative;
  z-index: 1;
}

.grid-visual:hover img.innov-photo {
  opacity: 0.6;
  transform: scale(1.04);
}

/* ---------- NEWS ---------- */
.news {
  background: var(--paper);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -24px rgba(16, 26, 51, 0.2);
}

.news-thumb {
  height: 140px;
  position: relative;
  overflow: hidden;
}

.news-body {
  padding: 22px;
}

.news-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red-600);
  margin-bottom: 10px;
  display: block;
}

.news-body h4 {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-date {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 12px;
  display: block;
}

/* ---------- CONTACT ---------- */
.contact {
  background: var(--navy-950);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact .section-head p {
  color: rgba(255, 255, 255, 0.6);
}

.emergency-card {
  background: rgba(232, 52, 42, 0.12);
  border: 1px solid rgba(232, 52, 42, 0.3);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 26px;
}

.emergency-card .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--red-500);
  text-transform: uppercase;
}

.emergency-card .num {
  font-family: var(--font-mono);
  font-size: 30px;
  color: #fff;
  margin-top: 8px;
}

.emergency-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13.5px;
  margin-top: 8px;
}

.contact-rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-row .icon {
  width: 20px;
  height: 20px;
  color: var(--amber-500);
  margin-top: 3px;
  flex: none;
}

.contact-row h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 3px;
}

.contact-row p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13.5px;
}

.form-card {
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 11px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--amber-500);
  background: rgba(255, 255, 255, 0.18);
}

.form-field select option {
  background: var(--navy-900);
  color: #fff;
}

.form-field textarea {
  resize: vertical;
  min-height: 80px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  padding: 56px 0 28px;
}

footer .wrap {
  max-width: 100%;
  padding: 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.footer-brand svg {
  width: 22px;
  height: 22px;
}

.footer-col h5 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-weight: 500;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color .2s ease;
}

.footer-col a:hover {
  color: var(--amber-500);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 14px;
}

.social-row {
  display: flex;
  gap: 14px;
}

.social-row a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-row a:hover {
  border-color: var(--amber-500);
  background: rgba(242, 169, 59, 0.1);
}

.social-row svg {
  width: 16px;
  height: 16px;
}

/* ---------- utility reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:1080px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-cell:nth-child(3) {
    border-right: none;
  }

  .comm-grid {
    grid-template-columns: 1fr 1fr;
  }

  .comm-1 {
    grid-row: 1/2;
  }
}

@media (max-width:980px) {
  nav.primary {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .circuit-stage {
    height: 340px;
    order: -1;
  }

  .about-grid,
  .cx-grid,
  .innov-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .values-network {
    grid-template-columns: 1fr 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-cell:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width:620px) {
  section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 100px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .comm-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .comm-1 {
    grid-row: auto;
  }

  .comm-card {
    height: 200px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stat-card {
    display: none;
  }
}

/* mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform .4s ease;
}

.mobile-drawer.open {
  transform: translateY(0);
}

.mobile-drawer a {
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
}

.mobile-drawer .nav-ctas {
  flex-direction: column;
  margin-top: 20px;
}

/* ---------- PRIVACY SECTION ---------- */
.privacy-section {
  padding: 60px 0 80px;
}

.privacy-section h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  color: var(--navy-900);
  margin-bottom: 12px;
}

.privacy-section .last-updated {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 40px;
  display: block;
}

.privacy-section h2 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--navy-900);
  margin: 36px 0 12px;
}

.privacy-section h3 {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--navy-900);
  margin: 24px 0 10px;
}

.privacy-section p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 14px;
}

.privacy-section ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 15px;
}

.privacy-section ul li {
  margin-bottom: 6px;
}

.privacy-section .highlight-box {
  background: var(--white);
  border-left: 4px solid var(--red-600);
  padding: 18px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 16px 0;
}

.privacy-section .highlight-box p {
  margin: 0;
  font-size: 14px;
}

.privacy-section .table-wrap {
  overflow-x: auto;
  margin: 16px 0 24px;
}

.privacy-section table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}

.privacy-section th {
  background: var(--navy-900);
  color: var(--white);
  text-align: left;
  padding: 12px 16px;
  font-weight: 600;
}

.privacy-section td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.privacy-section tr:last-child td {
  border-bottom: none;
}

.privacy-section .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red-600);
  font-weight: 600;
  margin-top: 40px;
}

.privacy-section .back-link:hover {
  color: var(--navy-900);
}

@media (max-width:768px) {
  .privacy-section {
    padding: 40px 0 60px;
  }
}