:root {
  --ink: #070b12;
  --muted: #687488;
  --line: #d9e1ed;
  --paper: #f5f7fb;
  --white: #f4f6fb;
  --royal: #0047c9;
  --blue: #008bff;
  --cyan: #13e6f0;
  --purple: #7628ff;
  --graphite: #1d222b;
  --navy: #02050a;
  --shadow: 0 24px 70px rgba(2, 8, 18, 0.28);
  --tech-font: "Bank Gothic", "Eurostile", "Orbitron", "Arial Black", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 12px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--white);
  background: rgba(3, 7, 14, 0.92);
  border-color: rgba(0, 141, 255, 0.18);
  box-shadow: 0 14px 40px rgba(2, 8, 18, 0.26);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  flex: 0 0 auto;
  width: clamp(206px, 25vw, 330px);
  max-height: 74px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  border-radius: 8px;
  padding: 10px 14px;
  color: currentColor;
  font-size: 0.94rem;
  font-family: var(--tech-font);
  text-transform: uppercase;
  opacity: 0.84;
}

.main-nav a:hover {
  background: rgba(25, 183, 216, 0.14);
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: currentColor;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.section {
  padding: 96px clamp(18px, 5vw, 72px);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(0, 0, 0, 0.98), rgba(3, 10, 22, 0.94) 45%, rgba(0, 71, 201, 0.76)),
    #02050a;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(0deg, var(--paper), rgba(247, 249, 252, 0));
  pointer-events: none;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-top: 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-family: var(--tech-font);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--tech-font);
   font-size: clamp(28px, 3vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-family: var(--tech-font);
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin: 0 0 10px;
  font-family: var(--tech-font);
  font-size: 1.12rem;
  line-height: 1.22;
  text-transform: uppercase;
}

.hero-logo {
  display: block;
  width: min(560px, 100%);
  height: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 14px 34px rgba(0, 91, 255, 0.4));
}

.brand-slogan {
  display: inline-flex;
  margin: 0 0 18px;
  border-left: 3px solid var(--cyan);
  padding-left: 14px;
  color: var(--white);
  font-family: var(--tech-font);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  font-weight: 800;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 640px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 800;
  font-family: var(--tech-font);
  text-transform: uppercase;
}

.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--royal), var(--blue), var(--cyan));
  box-shadow: 0 14px 32px rgba(0, 91, 255, 0.28);
}

.btn.primary:hover {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn.wide {
  width: 100%;
}

.signal-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.panel-top,
.metric-row,
.progress-block {
  display: grid;
  gap: 12px;
}

.panel-top {
  grid-template-columns: auto 1fr;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(19, 230, 240, 0.14);
}

.monogram-row {
  display: flex;
  gap: 12px;
  margin: 26px 0 0;
}

.monogram-row img {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(244, 246, 251, 0.28);
  border-radius: 18px;
  background: rgba(2, 5, 10, 0.72);
  box-shadow: 0 12px 28px rgba(0, 71, 201, 0.2);
}

.metric-row {
  margin: 30px 0;
}

.metric-row strong {
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.9;
}

.metric-row span {
  color: rgba(255, 255, 255, 0.68);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 30px;
}

.metric-grid span {
  display: grid;
  place-items: center;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.metric-grid span:nth-child(1) {
  border-color: rgba(0, 71, 201, 0.64);
  background: rgba(0, 71, 201, 0.18);
}

.metric-grid span:nth-child(2) {
  border-color: rgba(0, 139, 255, 0.64);
  background: rgba(0, 139, 255, 0.18);
}

.metric-grid span:nth-child(3) {
  border-color: rgba(19, 230, 240, 0.64);
  background: rgba(19, 230, 240, 0.14);
}

.metric-grid span:nth-child(4) {
  border-color: rgba(118, 40, 255, 0.64);
  background: rgba(118, 40, 255, 0.18);
}

.progress-block {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.progress-block i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--royal), var(--blue), var(--cyan) var(--value), rgba(255, 255, 255, 0.14) var(--value));
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 36px));
  margin: -70px auto 0;
  padding: 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 18px 55px rgba(13, 23, 38, 0.12);
}

.intro-band::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--royal), var(--blue), var(--cyan), var(--purple), var(--white), var(--graphite));
}

.intro-item {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 28px;
  background: var(--white);
}

.intro-item strong {
  font-size: 1.08rem;
}

.intro-item span {
  color: var(--muted);
}

.split,
.process,
.sectors,
.brand-system,
.ai-reporting,
.contact {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.ai-reporting {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: center;
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(19, 230, 240, 0.18), transparent 34%),
    linear-gradient(135deg, #020817, #071a3f 58%, #020817);
  box-shadow: var(--shadow);
}

.ai-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  max-width: 680px;
  color: rgba(244, 246, 251, 0.72);
}

.voice-panel {
  background: #0f172a;
  border-radius: 20px;
  padding: 24px;
}

.voice-line {
  margin-bottom: 12px;
  padding: 14px;
  border-radius: 12px;
}
.voice-line.ask {
  background: #1e293b;
}

.voice-line span {
  color: var(--cyan);
  font-family: var(--tech-font);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.voice-line strong {
  display: block;
  margin-top: 6px;
}

.voice-line.answer {
  background: #111827;
}

.voice-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.voice-metrics span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid rgba(244, 246, 251, 0.12);
  border-radius: 8px;
  color: rgba(244, 246, 251, 0.78);
  background: rgba(255, 255, 255, 0.05);
  font-family: var(--tech-font);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.brand-system {
  padding-top: 110px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(244, 246, 251, 0.08);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(2, 5, 10, 0.98), rgba(5, 20, 54, 0.96)),
    var(--navy);
  box-shadow: var(--shadow);
}

.brand-grid article {
  min-height: 210px;
  padding: 28px;
  border-right: 1px solid rgba(244, 246, 251, 0.08);
  border-bottom: 1px solid rgba(244, 246, 251, 0.08);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(19, 230, 240, 0.07), transparent 44%),
    rgba(255, 255, 255, 0.015);
}

.brand-grid article:nth-child(3n) {
  border-right: 0;
}

.brand-grid article:nth-child(n + 4) {
  border-bottom: 0;
}

.brand-grid span {
  display: block;
  margin-bottom: 48px;
  color: var(--blue);
  font-family: var(--tech-font);
  font-size: 0.9rem;
}

.brand-grid strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--tech-font);
  font-size: 1.24rem;
  text-transform: uppercase;
}

.brand-grid small {
  display: block;
  color: rgba(244, 246, 251, 0.68);
  font-size: 0.95rem;
  line-height: 1.5;
}

.split {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(34px, 6vw, 70px);
  align-items: start;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  background: #fff;
  transition: 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5f5;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}
.service-card h3 {
  font-size: 18px;
  margin-top: 12px;
  font-weight: 700;
}
.service-mark {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  border: 1px solid rgba(0, 139, 255, 0.18);
  border-radius: 12px;
  background: var(--navy);
  box-shadow: 0 12px 26px rgba(0, 71, 201, 0.12);
}

.service-card p
{
  .service-card p {
  color: #64748b;
  margin-top: 8px;
  line-height: 1.5;
}
}
.timeline p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.timeline > div {
  padding: 20px;
  border-left: 2px solid #e2e8f0;
  position: relative;
}

.timeline span {
  position: absolute;
  left: -12px;
  top: 20px;
  background: #2563eb;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.sector-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}
.sector {
  padding: 10px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  font-size: 14px;
  color: #334155;
  background: #fff;
  transition: 0.2s ease;
}
.sector:hover {
  background: #0f172a;
  color: #fff;
  border-color: #0f172a;
  transform: translateY(-2px);
}
.sector-list span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  background: var(--white);
  font-weight: 800;
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 76px;
  overflow: hidden;
  border: 1px solid rgba(244, 246, 251, 0.08);
  border-radius: 8px;
  background: rgba(244, 246, 251, 0.08);
  box-shadow: 0 18px 55px rgba(2, 8, 18, 0.12);
}

.capability-strip div {
  display: grid;
  gap: 4px;
  min-height: 118px;
  padding: 20px 14px;
  color: var(--white);
  background: var(--navy);
}

.capability-strip span {
  min-height: 32px;
  color: var(--blue);
  font-family: var(--tech-font);
  font-size: 1.55rem;
  line-height: 1;
}

.capability-strip strong {
  font-family: var(--tech-font);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.capability-strip small {
  color: rgba(244, 246, 251, 0.58);
}

.contact {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 420px);
  gap: clamp(34px, 6vw, 70px);
  margin-bottom: 72px;
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(19, 230, 240, 0.2), transparent 32%),
    linear-gradient(135deg, #02050a, #061c52 45%, #210b4d 76%, #02050a);
}

.contact .eyebrow {
  color: #8eeeff;
}

.contact-copy p {
  max-width: 660px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.74);
}

.contact-actions {
  display: grid;
  gap: 12px;
  align-content: start;
}

.contact-link {
  display: block;
  padding: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  transition: 0.25s ease;
  text-decoration: none;
}

.contact-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border-color: #cbd5f5;
}
.contact-link span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.contact-link strong {
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.card {
  transition: all 0.25s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-6px);
  border-color: #94a3b8;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.contact-company {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  color: #ffffff;
  font-size: 14px;
}

.contact-company strong {
  display: block;
  color: #ffffff;
  margin-bottom: 6px;
}

.to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #008bff;
  background-color: #008bff;
  color: whitesmoke;
  text-decoration: none;
  transition: 0.2s ease;
}

.to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 76px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    border-radius: 8px;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .hero-grid,
  .split,
  .ai-reporting,
  .brand-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .intro-band,
  .timeline {
    grid-template-columns: 1fr;
  }

  .intro-band {
    margin-top: -32px;
  }

  .timeline div {
    min-height: auto;
    padding-bottom: 28px;
  }

  .brand-grid article,
  .brand-grid article:nth-child(3n),
  .brand-grid article:nth-child(n + 4) {
    border-right: 0;
    border-bottom: 1px solid rgba(244, 246, 251, 0.08);
  }

  .brand-grid article:last-child {
    border-bottom: 0;
  }

  .capability-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
  }

  .brand img {
    width: 190px;
    max-height: 54px;
  }

  .section {
    padding: 72px 18px;
  }

  .hero {
    padding-top: 104px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .service-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .capability-strip {
    grid-template-columns: 1fr;
  }

  .voice-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .btn,
  .hero-actions a {
    width: 100%;
  }
}
