:root {
  color-scheme: dark;
  --bg: #06111f;
  --panel: rgba(12, 28, 47, 0.82);
  --panel-strong: #0c1b2e;
  --text: #eef7ff;
  --muted: #adc1d0;
  --line: rgba(183, 221, 255, 0.18);
  --cyan: #2ad4ff;
  --gold: #f5b84b;
  --green: #47d18c;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.page {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(42, 212, 255, 0.2), transparent 31rem),
    radial-gradient(circle at 28% 88%, rgba(71, 209, 140, 0.11), transparent 26rem),
    linear-gradient(180deg, #06111f 0%, #081627 48%, #06111f 100%);
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 17, 31, 0.75);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border: 1px solid rgba(42, 212, 255, 0.35);
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(42, 212, 255, 0.22), rgba(245, 184, 75, 0.15));
  box-shadow: 0 0 32px rgba(42, 212, 255, 0.14);
}

.brand-mark::before {
  content: "";
  width: 1.78rem;
  height: 1.08rem;
  background: url("logo.svg") center / contain no-repeat;
}

.brand-mark svg {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.6vw, 1.45rem);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a {
  padding: 0.35rem 0;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.78rem 1.1rem;
  border: 1px solid rgba(42, 212, 255, 0.36);
  border-radius: 0.65rem;
  background: linear-gradient(135deg, var(--cyan), #3ee6b5);
  color: #03101d;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(42, 212, 255, 0.2);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.18);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 7.6rem clamp(1rem, 4vw, 4.5rem) 5rem;
}

.hero.short {
  min-height: 58vh;
  padding-bottom: 3.8rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 17, 31, 0.97) 0%, rgba(6, 17, 31, 0.88) 28%, rgba(6, 17, 31, 0.45) 62%, rgba(6, 17, 31, 0.2) 100%),
    linear-gradient(0deg, #06111f 0%, rgba(6, 17, 31, 0) 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 47rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.1rem;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: var(--gold);
}

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

h1 {
  max-width: 48rem;
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero.short h1 {
  font-size: clamp(2.7rem, 6vw, 5.5rem);
}

.lead {
  max-width: 43rem;
  margin-bottom: 2rem;
  color: #d7e8f5;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.2rem;
}

.proof {
  display: grid;
  max-width: 43rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.proof-item {
  min-height: 6.6rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(5, 15, 28, 0.56);
  backdrop-filter: blur(12px);
}

.proof-item strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1;
}

.proof-item span {
  display: block;
  margin-top: 0.42rem;
  color: var(--muted);
  font-size: 0.92rem;
}

section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4.5rem);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.7fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-head p,
.muted {
  color: var(--muted);
}

.services-grid,
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.service-card,
.info-card {
  min-height: 15.5rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: linear-gradient(180deg, rgba(13, 31, 52, 0.94), rgba(9, 21, 37, 0.88));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.service-icon {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 0.45rem;
  background: rgba(42, 212, 255, 0.1);
  color: var(--cyan);
}

.service-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke-width: 1.8;
}

.service-card h3,
.info-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
  line-height: 1.25;
}

.service-card p,
.info-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.capabilities,
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1rem;
  align-items: stretch;
}

.capability-panel,
.feature-panel {
  padding: clamp(1.35rem, 3vw, 2.1rem);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.capability-panel h2,
.feature-panel h2 {
  margin-bottom: 1rem;
}

.capability-list,
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.capability,
.feature {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.045);
}

.capability strong,
.feature strong {
  display: block;
  margin-bottom: 0.25rem;
}

.capability span,
.feature span {
  color: var(--muted);
  font-size: 0.94rem;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
}

.step {
  min-height: 13rem;
  padding: 1.2rem;
  border-right: 1px solid var(--line);
}

.step:last-child {
  border-right: 0;
}

.step span {
  display: inline-flex;
  width: 2.2rem;
  height: 2.2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  border-radius: 999px;
  background: rgba(245, 184, 75, 0.13);
  color: var(--gold);
  font-weight: 900;
}

.step h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.step p {
  color: var(--muted);
  font-size: 0.96rem;
}

.industries-band {
  background: linear-gradient(90deg, rgba(42, 212, 255, 0.12), rgba(245, 184, 75, 0.12));
  border-block: 1px solid var(--line);
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.tag {
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(6, 17, 31, 0.62);
  color: #d9ebf7;
  font-weight: 700;
  font-size: 0.94rem;
}

.page-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.page-list li {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
}

.page-list strong {
  color: var(--text);
}

.contact {
  padding-bottom: 2rem;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid rgba(42, 212, 255, 0.24);
  border-radius: 0.55rem;
  background:
    linear-gradient(135deg, rgba(42, 212, 255, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(13, 31, 52, 0.96), rgba(8, 19, 34, 0.96));
  box-shadow: var(--shadow);
}

.contact-box p {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-method {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.045);
}

.contact-method span {
  display: block;
  color: var(--muted);
}

.contact-method strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.1rem;
}

.site-footer {
  padding: clamp(3rem, 6vw, 4.8rem) clamp(1rem, 4vw, 4.5rem) 1.4rem;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(42, 212, 255, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(6, 17, 31, 0.28), rgba(4, 12, 22, 0.94));
  color: #9ab5c8;
}

.footer-inner {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(16rem, 1.35fr) repeat(3, minmax(9rem, 0.75fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 850;
}

.footer-summary {
  max-width: 25rem;
  margin-bottom: 1.3rem;
  color: var(--muted);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-badges span {
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(42, 212, 255, 0.2);
  border-radius: 999px;
  background: rgba(42, 212, 255, 0.075);
  color: #d9eefc;
  font-size: 0.83rem;
  font-weight: 700;
}

.footer-column h3 {
  margin: 0 0 0.8rem;
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  display: block;
  margin: 0.42rem 0;
  color: #a9c0d0;
  font-size: 0.94rem;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  width: min(1180px, 100%);
  margin: 2.2rem auto 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: space-between;
  gap: 1rem;
  color: #7894a8;
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 0.9rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 980px) {
  .nav {
    position: sticky;
    top: 0;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }

  .nav-links {
    order: 3;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 0.55rem;
    padding: 0.35rem 0 0.05rem;
    overflow: visible;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 0.5rem 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    color: #d2e3ef;
    font-size: 0.86rem;
  }

  .nav-links a[aria-current="page"] {
    border-color: rgba(42, 212, 255, 0.36);
    background: rgba(42, 212, 255, 0.12);
  }

  .hero {
    min-height: auto;
    padding-top: 4.5rem;
  }

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

  .proof,
  .section-head,
  .capabilities,
  .split,
  .contact-box,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .cards-grid,
  .workflow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step:nth-child(2) {
    border-right: 0;
  }

  .step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 0.78rem 1rem 0.72rem;
  }

  .brand {
    gap: 0.58rem;
  }

  .brand-mark {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 0.62rem;
  }

  .brand-mark::before {
    width: 1.58rem;
    height: 0.96rem;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    margin-inline: -0.15rem;
    padding-top: 0.2rem;
  }

  .nav-links a {
    padding: 0.47rem 0.64rem;
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero.short {
    padding-bottom: 3.2rem;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 4rem);
    line-height: 0.98;
  }

  .hero.short h1 {
    font-size: clamp(2.25rem, 12vw, 3.7rem);
  }

  .lead {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    gap: 0.7rem;
  }

  .hero-media img {
    opacity: 0.42;
    object-position: 64% center;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(6, 17, 31, 0.98), rgba(6, 17, 31, 0.78)),
      linear-gradient(0deg, #06111f 0%, rgba(6, 17, 31, 0) 44%);
  }

  .proof,
  .services-grid,
  .cards-grid,
  .capability-list,
  .feature-list,
  .workflow {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: auto;
  }

  section {
    padding-block: 3.6rem;
  }

  .step,
  .step:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .step:last-child {
    border-bottom: 0;
  }

  .site-footer {
    padding-top: 3rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
