:root {
  color-scheme: dark;
  --obsidian: #02060d;
  --navy: #07101f;
  --blue: #1276c9;
  --cyan: #5ed9ff;
  --platinum: #f7f1e6;
  --champagne: #d8c7a5;
  --silver: #b8c5cf;
  --wine: #8f1028;
  --wine-bright: #e1324b;
  --ink: #08101a;
  --muted: rgba(247, 241, 230, 0.74);
  --muted-strong: rgba(247, 241, 230, 0.88);
  --line: rgba(216, 199, 165, 0.24);
  --line-blue: rgba(94, 217, 255, 0.22);
  --panel: rgba(6, 14, 26, 0.76);
  --panel-soft: rgba(8, 18, 34, 0.58);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--platinum);
  font-family:
    Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(2, 6, 13, 0.97), rgba(4, 11, 23, 0.91) 38%, rgba(8, 20, 40, 0.7) 74%),
    linear-gradient(180deg, rgba(2, 6, 13, 0.4), rgba(2, 6, 13, 0.86)),
    url("assets/high-tech-ai-global-reach.png") center / cover fixed,
    var(--obsidian);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(216, 199, 165, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(216, 199, 165, 0.045) 1px, transparent 1px);
  background-size: 86px 86px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 72%);
}

a {
  color: inherit;
}

.site-frame,
.page-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 199, 165, 0.16);
  background:
    linear-gradient(180deg, rgba(2, 6, 13, 0.94), rgba(2, 6, 13, 0.78)),
    rgba(2, 6, 13, 0.86);
  backdrop-filter: blur(18px) saturate(135%);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 96px;
  padding: 10px 0;
}

.brand,
.nav-links a,
.button,
.text-link {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.brand-logo {
  display: block;
  width: clamp(156px, 14vw, 224px);
  height: auto;
  filter:
    drop-shadow(0 16px 34px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 24px rgba(94, 217, 255, 0.12));
}

.primary-nav {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  padding: 6px;
  border: 1px solid rgba(216, 199, 165, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(247, 241, 230, 0.08), transparent),
    rgba(3, 9, 18, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 54px rgba(0, 0, 0, 0.24);
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(247, 241, 230, 0.78);
  font-family:
    "Space Grotesk", Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  background: transparent;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 14px;
  bottom: 7px;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--champagne), var(--cyan));
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  border-color: rgba(216, 199, 165, 0.3);
  color: var(--platinum);
  background:
    linear-gradient(180deg, rgba(216, 199, 165, 0.12), rgba(94, 217, 255, 0.05)),
    rgba(8, 16, 29, 0.82);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  transform: translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.page-shell {
  min-height: calc(100vh - 96px);
  padding: 58px 0 78px;
}

.hero,
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.74fr);
  gap: 48px;
  align-items: center;
}

.hero {
  min-height: calc(100vh - 164px);
  padding: 8px 0 54px;
}

.hero-copy,
.page-hero-copy,
.section-heading,
.copy-flow {
  max-width: 760px;
}

.eyebrow,
.metric-label,
.visual-kicker,
.slot-label {
  margin: 0 0 14px;
  color: var(--champagne);
  font-family:
    "Space Grotesk", Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.statement-band strong {
  font-family:
    "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
}

h1 {
  max-width: 960px;
  margin-bottom: 24px;
  color: var(--platinum);
  font-size: 5.2rem;
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 16px;
  color: var(--platinum);
  font-size: 2.7rem;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  color: var(--platinum);
  font-family:
    "Space Grotesk", Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.22;
}

.lede {
  max-width: 660px;
  margin-bottom: 24px;
  color: var(--muted-strong);
  font-size: 1.34rem;
  font-weight: 500;
  line-height: 1.55;
}

.intro {
  max-width: 700px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 21px;
  border-radius: 8px;
  font-family:
    "Space Grotesk", Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: linear-gradient(180deg, #fffaf0, #cfb98e);
  box-shadow: 0 16px 36px rgba(216, 199, 165, 0.16);
}

.button-email {
  border: 1px solid rgba(225, 50, 75, 0.44);
  color: var(--platinum);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent),
    rgba(143, 16, 40, 0.88);
  box-shadow: 0 16px 34px rgba(143, 16, 40, 0.24);
}

.button-email:hover {
  border-color: rgba(225, 50, 75, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent),
    rgba(178, 22, 48, 0.94);
}

.button-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  flex: 0 0 auto;
}

.hero-visual,
.page-visual,
.asset-slot,
.proof-band article,
.capability-grid article,
.content-band,
.section-block,
.statement-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(247, 241, 230, 0.07), rgba(247, 241, 230, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px) saturate(128%);
}

.hero-visual,
.page-visual {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 30px;
}

.hero-visual::before,
.page-visual::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(94, 217, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(216, 199, 165, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  opacity: 0.45;
}

.visual-content {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100%;
  gap: 28px;
  align-content: space-between;
}

.visual-title {
  display: block;
  max-width: 360px;
  color: var(--platinum);
  font-family:
    "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
}

.signal-list {
  display: grid;
  gap: 12px;
}

.signal-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(216, 199, 165, 0.16);
  border-radius: 8px;
  color: var(--muted-strong);
  font-family:
    "Space Grotesk", Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  background: rgba(2, 6, 13, 0.46);
}

.signal-list span::after {
  width: 38px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--champagne), var(--cyan));
  content: "";
}

.proof-band,
.capability-grid,
.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.proof-band {
  margin-top: 18px;
}

.proof-band article,
.capability-grid article {
  min-height: 218px;
  padding: 28px;
}

.number {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--champagne);
  font-family:
    "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1;
}

.proof-band p,
.capability-grid p,
.copy-flow p,
.asset-slot p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.72;
}

.section-block,
.content-band,
.statement-band {
  margin-top: 34px;
  padding: 34px;
}

.section-heading {
  margin-bottom: 28px;
}

.capability-grid.detailed {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 34px;
}

.capability-grid.detailed article {
  min-height: 236px;
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--champagne);
  font-family:
    "Space Grotesk", Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.text-link:hover {
  color: var(--platinum);
}

.page-hero {
  padding: 12px 0 42px;
}

.page-hero h1 {
  font-size: 4.35rem;
}

.page-visual {
  min-height: 330px;
}

.asset-grid {
  margin-top: 34px;
}

.asset-slot {
  min-height: 210px;
  padding: 24px;
}

.asset-slot strong {
  display: block;
  max-width: 260px;
  margin-bottom: 12px;
  color: var(--platinum);
  font-family:
    "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.04;
}

.copy-flow {
  display: grid;
  gap: 20px;
}

.copy-flow.two-column {
  grid-template-columns: repeat(2, 1fr);
  max-width: none;
}

.statement-band {
  background:
    linear-gradient(135deg, rgba(143, 16, 40, 0.72), rgba(2, 6, 13, 0.88)),
    var(--panel);
}

.statement-band p {
  margin-bottom: 10px;
  color: rgba(247, 241, 230, 0.74);
  font-size: 1rem;
}

.statement-band strong {
  display: block;
  max-width: 780px;
  color: var(--platinum);
  font-size: 2.9rem;
  line-height: 1.02;
}

.contact-hero {
  min-height: calc(100vh - 230px);
}

@media (max-width: 980px) {
  .header-inner,
  .hero,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .primary-nav {
    justify-content: flex-start;
    width: 100%;
  }

  .nav-links {
    justify-content: flex-start;
    width: 100%;
    margin-left: 0;
  }

  .page-shell {
    padding-top: 44px;
  }

  h1 {
    font-size: 3.8rem;
  }

  .page-hero h1 {
    font-size: 3.3rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual,
  .page-visual {
    min-height: 300px;
  }

  .proof-band,
  .capability-grid,
  .capability-grid.detailed,
  .asset-grid,
  .copy-flow.two-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    background-attachment: scroll;
  }

  .site-frame,
  .page-shell {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    gap: 14px;
    min-height: 88px;
  }

  .brand-logo {
    width: 148px;
  }

  .nav-links {
    gap: 6px;
  }

  .nav-links a {
    flex: 1 1 calc(50% - 6px);
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .page-shell {
    padding: 32px 0 54px;
  }

  h1,
  .page-hero h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .lede {
    font-size: 1.08rem;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .section-block,
  .content-band,
  .statement-band,
  .proof-band article,
  .capability-grid article,
  .asset-slot,
  .hero-visual,
  .page-visual {
    padding: 22px;
  }

  .statement-band strong {
    font-size: 2.1rem;
  }
}

@media (max-width: 380px) {
  .nav-links a {
    flex-basis: 100%;
  }

  h1,
  .page-hero h1 {
    font-size: 2.25rem;
  }
}
