:root {
  color-scheme: dark;
  --ink: #060816;
  --ink-2: #0b1024;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --line: rgba(255, 255, 255, 0.16);
  --text: #f6f8ff;
  --muted: #b8c0d7;
  --cyan: #16e1ff;
  --teal: #27f5ba;
  --coral: #ff6f61;
  --magenta: #d96bff;
  --gold: #f6c85f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 8% 18%, rgba(22, 225, 255, 0.18), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(217, 107, 255, 0.16), transparent 24%),
    linear-gradient(135deg, #050713 0%, #0b1024 45%, #080915 100%);
}

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

img,
svg {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 16px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 8, 22, 0.78);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 36px;
}

.brand-mark img {
  position: relative;
  z-index: 1;
  width: 31px;
  height: 33px;
  object-fit: contain;
  filter:
    saturate(0.68)
    brightness(0.88)
    drop-shadow(0 0 5px rgba(22, 225, 255, 0.18))
    drop-shadow(0 0 9px rgba(134, 116, 216, 0.12));
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.header-cta {
  padding: 0 18px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--cyan), var(--teal) 48%, var(--gold));
  box-shadow: 0 16px 44px rgba(39, 245, 186, 0.26);
  color: #061019;
  font-size: 0.9rem;
}

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

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(620px, 64svh);
  overflow: hidden;
  isolation: isolate;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  filter: saturate(1.08) contrast(1.08);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 8, 22, 0.97) 0%, rgba(6, 8, 22, 0.86) 34%, rgba(6, 8, 22, 0.48) 64%, rgba(6, 8, 22, 0.18) 100%),
    linear-gradient(180deg, rgba(6, 8, 22, 0.16), rgba(6, 8, 22, 0.94));
}

.hero-content {
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding: 24px 0;
}

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

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

h1 {
  max-width: 12ch;
  margin-bottom: 16px;
  font-size: clamp(4.25rem, 9vw, 6.25rem);
  line-height: 0.89;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 0;
  color: #dce4f7;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.section-jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 38px;
}

.button {
  min-width: 180px;
  padding: 0 22px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
}

.button-primary {
  background: linear-gradient(135deg, var(--cyan), var(--teal) 48%, var(--gold));
  color: #061019;
  box-shadow: 0 16px 44px rgba(39, 245, 186, 0.26);
}

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

.jump-button {
  position: relative;
  min-width: 184px;
  border-color: rgba(255, 255, 255, 0.2);
  overflow: visible;
}

.jump-button::before {
  position: absolute;
  inset: -8px;
  z-index: -1;
  border-radius: 12px;
  content: "";
  opacity: 0.34;
  filter: blur(12px);
}

.jump-solutions {
  background: linear-gradient(135deg, rgba(22, 225, 255, 0.16), rgba(255, 255, 255, 0.075));
}

.jump-solutions::before {
  background: rgba(22, 225, 255, 0.2);
}

.jump-industries {
  background: linear-gradient(135deg, rgba(39, 245, 186, 0.15), rgba(217, 107, 255, 0.075));
}

.jump-industries::before {
  background: rgba(39, 245, 186, 0.18);
}

.jump-approach {
  background: linear-gradient(135deg, rgba(217, 107, 255, 0.15), rgba(246, 200, 95, 0.075));
}

.jump-approach::before {
  background: rgba(217, 107, 255, 0.18);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
}

.proof-item {
  min-height: 150px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(8, 12, 30, 0.82);
}

.proof-item strong {
  display: block;
  margin-bottom: 16px;
  color: var(--coral);
  font-size: 0.84rem;
}

.proof-item span {
  display: block;
  color: #eff3ff;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 750;
  line-height: 1.35;
}

.section,
.contact-section,
.site-footer {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 6vw, 88px);
}

.section-heading {
  max-width: 920px;
  margin-bottom: clamp(36px, 6vw, 72px);
}

.section-heading p {
  max-width: 760px;
  font-size: 1.08rem;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr;
  gap: 18px;
}

.solution-card {
  min-height: 320px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.primary-card {
  background:
    linear-gradient(135deg, rgba(22, 225, 255, 0.18), rgba(255, 255, 255, 0.07) 54%),
    rgba(255, 255, 255, 0.08);
}

.accent-card {
  background:
    linear-gradient(135deg, rgba(255, 111, 97, 0.16), rgba(217, 107, 255, 0.15) 46%, rgba(255, 255, 255, 0.07)),
    rgba(255, 255, 255, 0.08);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.card-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--cyan);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.solution-card h3 {
  max-width: 18ch;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
}

.solution-card p {
  max-width: 34rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(22, 225, 255, 0.09), transparent 40%),
    rgba(255, 255, 255, 0.025);
}

.split-copy p {
  max-width: 680px;
}

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

.industry-panel span {
  min-height: 84px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(8, 12, 30, 0.7);
  color: #f4f7ff;
  font-weight: 800;
  line-height: 1.2;
}

.application-section {
  background: #f7f9ff;
  color: #08101f;
}

.application-section .eyebrow {
  color: #006e88;
}

.application-section p {
  color: #4c5971;
}

.app-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(8, 16, 31, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(8, 16, 31, 0.12);
}

.app-list article {
  min-height: 280px;
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
}

.app-list article + article {
  border-left: 1px solid rgba(8, 16, 31, 0.14);
}

.app-number {
  display: inline-flex;
  margin-bottom: 54px;
  color: #d83e87;
  font-size: 0.78rem;
  font-weight: 900;
}

.approach-section {
  background:
    linear-gradient(135deg, rgba(217, 107, 255, 0.12), transparent 42%),
    #090d1e;
}

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

.timeline article {
  position: relative;
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
}

.timeline span {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
  background:
    radial-gradient(circle at 78% 18%, rgba(22, 225, 255, 0.18), transparent 26%),
    linear-gradient(135deg, #071326, #11091e 56%, #180f18);
}

.contact-copy {
  position: sticky;
  top: 112px;
}

.contact-copy p {
  max-width: 600px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.full,
.form-button,
.form-status {
  grid-column: 1 / -1;
}

label {
  color: #f4f7ff;
  font-size: 0.88rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(5, 8, 18, 0.72);
  color: var(--text);
  font: inherit;
  line-height: 1.4;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

input,
select {
  min-height: 50px;
  padding: 0 14px;
}

textarea {
  min-height: 136px;
  padding: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(22, 225, 255, 0.16);
  background: rgba(5, 8, 18, 0.9);
}

.form-button {
  width: 100%;
  min-height: 54px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #dce4f7;
  font-size: 0.95rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #050713;
}

.site-footer p {
  max-width: 520px;
  margin-bottom: 0;
  text-align: right;
}

@media (max-width: 1000px) {
  .nav-links {
    display: none;
  }

  .solution-grid,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }

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

  .app-list article + article {
    border-left: 0;
  }

  .app-list article:nth-child(even) {
    border-left: 1px solid rgba(8, 16, 31, 0.14);
  }

  .app-list article:nth-child(n + 3) {
    border-top: 1px solid rgba(8, 16, 31, 0.14);
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 64px;
    padding-inline: 16px;
  }

  .brand {
    gap: 9px;
    font-size: 0.9rem;
  }

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

  .brand-mark img {
    width: 28px;
    height: 30px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 62svh;
  }

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

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 8, 22, 0.98) 0%, rgba(6, 8, 22, 0.86) 62%, rgba(6, 8, 22, 0.38) 100%),
      linear-gradient(180deg, rgba(6, 8, 22, 0.18), rgba(6, 8, 22, 0.96));
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-inline: 16px;
    padding: 28px 0;
  }

  h1 {
    font-size: clamp(3rem, 13vw, 4.05rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .button {
    width: 100%;
  }

  .section-jump-links {
    gap: 12px;
    margin-top: 28px;
  }

  .proof-band,
  .timeline,
  .app-list,
  .industry-panel,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .app-list article:nth-child(even),
  .app-list article + article {
    border-left: 0;
  }

  .app-list article:nth-child(n + 2) {
    border-top: 1px solid rgba(8, 16, 31, 0.14);
  }

  .solution-card,
  .timeline article,
  .app-list article {
    min-height: auto;
  }

  .card-icon,
  .app-number,
  .timeline span {
    margin-bottom: 32px;
  }

  .site-footer {
    display: grid;
  }

  .site-footer p {
    text-align: left;
  }
}
