:root {
  color-scheme: dark;
  --bg: #07090b;
  --panel: #101417;
  --panel-2: #151b1f;
  --text: #f2f6f7;
  --muted: #a7b3b9;
  --line: rgba(255, 255, 255, 0.12);
  --cyan: #34d5e5;
  --green: #55d67a;
  --amber: #f2b84b;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 56px);
  background: rgba(7, 9, 11, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.product-pills {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: #071012;
  border: 1px solid rgba(52, 213, 229, 0.55);
  border-radius: 8px;
}

.brand-mark::before,
.brand-mark::after,
.brand-orbit {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.brand-mark::before {
  width: 18px;
  height: 18px;
  border: 2px solid var(--cyan);
}

.brand-mark::after {
  width: 7px;
  height: 7px;
  background: var(--green);
  transform: translate(8px, -8px);
  box-shadow: -13px 17px 0 var(--amber);
}

.brand-orbit {
  width: 27px;
  height: 11px;
  border: 1px solid rgba(242, 246, 247, 0.85);
  transform: rotate(-34deg);
}

.nav {
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--cyan);
}

.header-cta,
.button {
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.header-cta {
  padding: 10px 14px;
  font-size: 14px;
  color: #071012;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 128px clamp(18px, 7vw, 80px) 86px;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 9, 11, 0.94) 0%, rgba(7, 9, 11, 0.78) 38%, rgba(7, 9, 11, 0.3) 100%),
    linear-gradient(0deg, #07090b 0%, rgba(7, 9, 11, 0) 28%);
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(50px, 8vw, 96px);
  line-height: 0.9;
  white-space: nowrap;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.hero-lead {
  max-width: 700px;
  color: #d7e0e3;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.35;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  cursor: pointer;
  font: inherit;
  text-align: center;
}

.button.primary {
  color: #061012;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  border-color: transparent;
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: var(--max);
  margin: -38px auto 0;
  position: relative;
  z-index: 2;
  padding: 0 clamp(18px, 4vw, 0px);
}

.strip div,
.service-card,
.feature-list article,
.capabilities div,
.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.strip div {
  padding: 22px;
}

.strip strong,
.strip span {
  display: block;
}

.strip span {
  margin-top: 6px;
  color: var(--muted);
}

.section,
.product-section,
.contact-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px clamp(18px, 4vw, 0px);
}

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

.section-heading.compact {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 270px;
  padding: 28px;
}

.card-index,
.capabilities span {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--amber);
  font-weight: 800;
}

.service-card p,
.feature-list p,
.capabilities p,
.contact-info p,
address span,
address a {
  color: var(--muted);
  line-height: 1.65;
}

address a:hover {
  color: var(--cyan);
}

.product-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-copy {
  position: sticky;
  top: 110px;
}

.product-copy p {
  color: #d7e0e3;
  line-height: 1.7;
}

.product-pills {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.product-pills span {
  padding: 9px 12px;
  background: rgba(52, 213, 229, 0.1);
  border: 1px solid rgba(52, 213, 229, 0.25);
  border-radius: 8px;
  color: #c9fbff;
  font-weight: 700;
  font-size: 13px;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article {
  padding: 24px;
}

.split,
.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.capabilities {
  display: grid;
  gap: 14px;
}

.capabilities div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
}

.capabilities span {
  margin: 0;
}

.contact-section {
  padding-top: 86px;
}

address {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-style: normal;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--text);
  background: #0b0f12;
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(52, 213, 229, 0.12);
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: #ff8b8b;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px clamp(18px, 4vw, 0px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    flex-wrap: wrap;
    gap: 14px 18px;
    padding: 14px 18px;
  }

  .nav {
    order: 3;
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 104px);
    padding-top: 72px;
  }

  .strip,
  .service-grid,
  .product-section,
  .split,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .product-copy {
    position: static;
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: flex-start;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
  }

  .nav {
    gap: 14px;
    font-size: 13px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 91px);
    align-items: end;
    padding: 58px 16px 48px;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 9, 11, 0.96), rgba(7, 9, 11, 0.72)),
      linear-gradient(0deg, #07090b 0%, rgba(7, 9, 11, 0) 42%);
  }

  .eyebrow {
    font-size: 10px;
    line-height: 1.45;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(34px, 11vw, 48px);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(28px, 9vw, 36px);
    line-height: 1.08;
  }

  .hero-lead {
    font-size: 18px;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .button {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    white-space: normal;
  }

  .strip {
    margin-top: 0;
  }

  .section,
  .product-section,
  .contact-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .service-card,
  .feature-list article,
  .capabilities div,
  .contact-form {
    padding: 20px;
  }

  .capabilities div {
    grid-template-columns: 40px 1fr;
  }
}
