:root {
  --bg: #07131d;
  --bg-soft: #0c1d2c;
  --panel: rgba(8, 22, 34, 0.86);
  --panel-strong: rgba(9, 26, 40, 0.94);
  --line: rgba(124, 178, 214, 0.16);
  --line-strong: rgba(124, 178, 214, 0.26);
  --text: #edf4fa;
  --muted: #acc1d1;
  --accent: #ff9b51;
  --accent-soft: rgba(255, 155, 81, 0.16);
  --cyan: #76d4ff;
  --shadow: 0 28px 72px rgba(0, 0, 0, 0.3);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1240px;
  --section-copy-width: 720px;
  --caption-copy-width: 620px;
  --caption-inset: clamp(20px, 4vw, 48px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  overflow-x: clip;
  background:
    radial-gradient(circle at top right, rgba(118, 212, 255, 0.14), transparent 22%),
    radial-gradient(circle at 14% 14%, rgba(255, 155, 81, 0.12), transparent 16%),
    linear-gradient(180deg, #07131d 0%, #081a29 58%, #08141d 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 62px 62px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.12));
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

button {
  font: inherit;
}

.site-shell {
  padding: 24px;
  overflow-x: clip;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 17, 27, 0.76);
  backdrop-filter: blur(24px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand strong,
.site-nav,
.hero h1,
.section-heading h2,
.solution-card h3,
.product-card h3,
.process-step h3,
.industry-card h3,
.contact-card h2,
.faq summary,
.image-band-copy h2,
.split-copy h2,
.hero-caption strong {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.brand strong {
  display: block;
  font-size: clamp(1.12rem, 1.6vw, 1.34rem);
  line-height: 1.08;
}

.brand small,
.site-nav a,
.hero-text,
.section-heading p,
.solution-card p,
.product-card p,
.process-step p,
.industry-card p,
.faq p,
.contact-card p,
.stats-band p,
.hero-metrics dt,
.image-band-copy p,
.split-copy p,
.site-footer,
.network-list li {
  color: var(--muted);
  line-height: 1.75;
}

.brand small {
  font-size: 0.78rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #07131d;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), #ffd7a7);
  box-shadow: 0 14px 28px rgba(255, 155, 81, 0.24);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  color: #07131d !important;
  background: linear-gradient(135deg, var(--cyan), #f0fbff);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-full {
  padding: 0 0 64px;
}

.hero-grid {
  display: grid;
  gap: 24px;
  width: auto;
  margin-left: 0;
  padding-top: 118px;
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 18px;
}

.hero-copy-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 640px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(118, 212, 255, 0.16);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(118, 212, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(8, 24, 37, 0.96), rgba(7, 18, 28, 0.96));
  box-shadow: var(--shadow);
  text-align: left;
}

.hero-copy-panel .eyebrow {
  margin-bottom: 0;
}

.hero-copy-panel h1 {
  margin: 0;
  max-width: 11ch;
}

.hero-text {
  max-width: 39ch;
  margin: 0;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 10, 16, 0.02) 0%, rgba(4, 10, 16, 0.22) 100%),
    linear-gradient(90deg, rgba(4, 10, 16, 0.04) 0%, rgba(4, 10, 16, 0) 30%);
  content: "";
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-highlights {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-highlights li {
  max-width: 50ch;
  padding-left: 18px;
  color: rgba(237, 244, 250, 0.82);
  line-height: 1.65;
  position: relative;
}

.hero-highlights li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 155, 81, 0.12);
  content: "";
}

.hero-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hero-proof-card {
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(7, 21, 33, 0.92), rgba(8, 24, 37, 0.82));
  box-shadow: var(--shadow);
}

.hero-proof-card span,
.slider-status {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-proof-card strong {
  display: block;
  margin-top: 12px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.04rem;
}

.hero-proof-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.02;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #08131c;
  background: linear-gradient(135deg, var(--accent), #ffcf91);
  box-shadow: 0 18px 34px rgba(255, 155, 81, 0.22);
}

.button-secondary {
  border-color: rgba(118, 212, 255, 0.28);
  background: rgba(255, 255, 255, 0.03);
}

.hero-metrics div,
.solution-card,
.product-card,
.process-step,
.industry-card,
.faq details,
.stats-band article {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-media-frame,
.split-photo,
.gallery-tile,
.image-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-media-frame img,
.split-photo img,
.gallery-tile img,
.image-band > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.14);
  transform-origin: center;
}

.gallery-tile::after,
.image-band-overlay,
.split-photo::after {
  position: absolute;
  inset: 0;
  content: "";
}

.hero-caption span,
.gallery-tile figcaption span {
  color: rgba(237, 244, 250, 0.74);
  font-size: 0.84rem;
}

.hero-caption strong,
.gallery-tile figcaption strong {
  display: block;
  margin-top: 8px;
  line-height: 1.28;
}

.hero-caption strong {
  font-size: 1.34rem;
}

.gallery-tile figcaption strong {
  font-size: 1.08rem;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stats-band article,
.solution-card,
.product-card,
.process-step,
.industry-card,
.faq details {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.stats-band span,
.product-card span,
.process-step strong {
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.stats-band h2,
.image-band-copy h2,
.split-copy h2,
.section-heading h2,
.contact-card h2 {
  margin: 0 0 16px;
  font-size: clamp(1.32rem, 2.2vw, 2.1rem);
  line-height: 1.15;
}

.stats-band h2 {
  margin-top: 18px;
  font-size: 1.32rem;
}

.section-grid,
.experience-section,
.product-showcase,
.engineering-support,
.process,
.industry-grid,
.faq {
  display: grid;
  gap: 34px;
}

.section-heading {
  max-width: var(--section-copy-width);
  text-align: left;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.experience-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.experience-card span {
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.experience-card h3 {
  margin: 14px 0 12px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.18rem;
}

.experience-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.solution-grid,
.product-grid,
.industry-cards,
.process-grid {
  display: grid;
  gap: 18px;
}

.solution-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solution-slider-block {
  display: grid;
  gap: 24px;
}

.solution-subheading {
  max-width: var(--section-copy-width);
}

.solution-card h3,
.product-card h3,
.process-step h3,
.industry-card h3 {
  margin: 10px 0 12px;
  font-size: 1.18rem;
}

.solution-card-accent {
  background:
    linear-gradient(135deg, rgba(255, 155, 81, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(8, 24, 37, 0.98), rgba(8, 22, 34, 0.9));
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 28px;
  align-items: stretch;
}

.product-slider {
  display: grid;
  gap: 20px;
}

.product-slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.product-slider-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.product-slider-head p {
  margin: 0;
  max-width: var(--section-copy-width);
  color: var(--muted);
  text-align: left;
}

.slider-status {
  min-width: 84px;
  margin: 0;
  text-align: right;
}

.product-slider-controls {
  display: flex;
  gap: 10px;
}

.slider-button {
  min-width: 96px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.slider-button:hover,
.slider-button:focus-visible {
  border-color: rgba(118, 212, 255, 0.42);
  background: rgba(118, 212, 255, 0.08);
}

.slider-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.product-slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-slider-track:focus-visible {
  outline: 2px solid rgba(118, 212, 255, 0.7);
  outline-offset: 8px;
  border-radius: var(--radius-lg);
}

.product-slider-track::-webkit-scrollbar {
  display: none;
}

.product-media-card {
  min-height: calc(100vh - 220px);
  margin: 0;
  scroll-snap-align: start;
}

.product-media-card::after {
  background: linear-gradient(180deg, rgba(5, 12, 18, 0.12) 18%, rgba(5, 12, 18, 0.84) 100%);
}

.product-media-card figcaption {
  max-width: var(--caption-copy-width);
}

.product-media-card figcaption p {
  margin: 12px 0 0;
  color: rgba(237, 244, 250, 0.78);
  line-height: 1.72;
}

.product-slider-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.slider-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.slider-dot:hover,
.slider-dot:focus-visible {
  transform: scale(1.08);
}

.slider-dot.is-active,
.slider-dot[aria-current="true"] {
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 155, 81, 0.14);
}

.split-photo {
  min-height: 620px;
  border: 1px solid var(--line);
}

.split-photo::after {
  background: linear-gradient(180deg, transparent 20%, rgba(6, 14, 20, 0.16) 100%);
}

.split-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  max-width: var(--section-copy-width);
  text-align: left;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-grid-tight {
  margin-top: 12px;
}

.image-band {
  min-height: 560px;
  margin: 34px 0;
}

.image-band-generated {
  background: linear-gradient(180deg, #0a2133 0%, #07131d 100%);
}

.image-band-tall {
  min-height: 720px;
}

.image-band-overlay {
  background:
    linear-gradient(90deg, rgba(4, 10, 16, 0.84) 0%, rgba(4, 10, 16, 0.58) 42%, rgba(4, 10, 16, 0.18) 100%),
    linear-gradient(180deg, rgba(4, 10, 16, 0.18) 0%, rgba(4, 10, 16, 0.72) 100%);
}

.image-band-copy {
  position: absolute;
  left: var(--caption-inset);
  bottom: var(--caption-inset);
  z-index: 1;
  max-width: var(--caption-copy-width);
  text-align: left;
}

.image-band-copy-wide {
  top: 56px;
  bottom: auto;
  max-width: var(--section-copy-width);
}

.wide-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
  gap: 20px;
}

.gallery-tile {
  min-height: 420px;
  margin: 0;
}

.gallery-tile-large {
  min-height: 540px;
}

.gallery-tile::after {
  background: linear-gradient(180deg, transparent 28%, rgba(5, 12, 18, 0.8) 100%);
}

.gallery-tile figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  max-width: var(--caption-copy-width);
  text-align: left;
}

.process-grid,
.industry-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.network-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.network-list li {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(6, 18, 28, 0.4);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq summary {
  cursor: pointer;
  font-size: 1.03rem;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  margin: 16px 0 0;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: center;
  padding: 36px;
  border: 1px solid rgba(118, 212, 255, 0.16);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(118, 212, 255, 0.1), transparent 40%),
    linear-gradient(160deg, rgba(255, 155, 81, 0.12), rgba(8, 22, 34, 0.92));
  box-shadow: var(--shadow);
}

.contact-card > div:first-child {
  max-width: var(--section-copy-width);
  text-align: left;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 0 24px;
  font-size: 0.92rem;
}

.footer-brand {
  margin: 0 0 10px;
  color: var(--text);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.08rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-grid,
  .split-feature,
  .contact-card,
  .wide-gallery,
  .experience-grid,
  .solution-grid,
  .product-grid,
  .industry-cards,
  .process-grid,
  .stats-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-proof-strip {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    grid-template-columns: 1fr;
  }

  .hero-copy-panel,
  .hero-visual {
    min-height: 560px;
  }
}

@media (max-width: 840px) {
  .site-shell {
    padding: 16px;
  }

  .site-header {
    top: 12px;
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 10px;
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .hero-grid,
  .hero-metrics,
  .experience-grid,
  .solution-grid,
  .engineering-support-grid,
  .product-grid,
  .industry-cards,
  .process-grid,
  .stats-band,
  .split-feature,
  .wide-gallery,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .product-slider-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-slider-meta {
    width: 100%;
    justify-content: space-between;
  }

  .product-slider-track {
    grid-auto-columns: 100%;
  }

  .product-media-card {
    min-height: 72vh;
  }

  .section,
  .section-full {
    padding: 74px 0;
  }

  .hero-grid {
    padding-top: 92px;
  }

  .hero-copy-panel {
    min-height: auto;
    padding: 28px 24px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 3rem);
    line-height: 1.04;
  }

  .hero-text {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-highlights li {
    max-width: none;
    font-size: 0.95rem;
  }

  .split-photo,
  .gallery-tile,
  .gallery-tile-large,
  .image-band,
  .image-band-tall {
    min-height: 320px;
  }

  .image-band-copy {
    right: 24px;
    left: 24px;
    bottom: 24px;
    max-width: none;
  }

  .image-band-copy-wide {
    top: auto;
    bottom: 24px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .slider-dot {
    transition: none;
  }
}