:root {
  color-scheme: light;
  --ink: #071327;
  --muted: #53627a;
  --paper: #f6f9ff;
  --panel: #ffffff;
  --blue: #075cff;
  --blue-strong: #0046e8;
  --blue-dark: #051b4d;
  --navy: #071327;
  --cyan: #2de2ff;
  --coral: #ff6a4f;
  --lime: #b6f264;
  --line: rgba(7, 19, 39, 0.13);
  --shadow: 0 28px 80px rgba(7, 19, 39, 0.16);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body::selection {
  background: rgba(7, 92, 255, 0.18);
}

body.menu-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(246, 249, 255, 0.88);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
  padding-block: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 132px;
}

.brand img {
  width: 152px;
  height: auto;
  object-fit: contain;
}

.nav {
  justify-self: center;
  display: flex;
  gap: 26px;
  color: rgba(7, 19, 39, 0.74);
  font-size: 0.95rem;
}

.nav a,
.mail-link {
  transition: color 160ms ease;
}

.nav a:hover,
.mail-link:hover {
  color: var(--blue);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 20px;
  font-weight: 760;
  line-height: 1;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.header-cta {
  background: var(--navy);
  border-color: rgba(7, 19, 39, 0.18);
  color: white;
  box-shadow: 0 16px 34px rgba(7, 19, 39, 0.2);
}

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

.button-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 16px 36px rgba(7, 92, 255, 0.34);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(7, 19, 39, 0.17);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  background: var(--navy);
}

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

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

.hero-overlay {
  background:
    linear-gradient(105deg, rgba(246, 249, 255, 0.98) 0%, rgba(246, 249, 255, 0.84) 38%, rgba(7, 92, 255, 0.1) 64%, rgba(7, 19, 39, 0.22) 100%),
    linear-gradient(0deg, rgba(246, 249, 255, 0.98) 0%, rgba(246, 249, 255, 0) 34%);
}

.hero-grid {
  opacity: 0.56;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(7, 92, 255, 0.24) 42.2% 43.2%, transparent 43.4%),
    linear-gradient(115deg, transparent 0 58%, rgba(45, 226, 255, 0.18) 58.2% 58.8%, transparent 59%),
    repeating-linear-gradient(90deg, rgba(7, 92, 255, 0.08) 0 1px, transparent 1px 92px);
  pointer-events: none;
  animation: energy-drift 16s linear infinite;
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 96px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 7.2vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  line-height: 1.55;
}

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

.hero-ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 700px;
  margin-top: 24px;
}

.hero-ticker span {
  border: 1px solid rgba(7, 92, 255, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--blue-dark);
  font-size: 0.85rem;
  font-weight: 780;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.store-links a {
  display: grid;
  grid-template-columns: 26px 1fr;
  column-gap: 10px;
  min-width: 144px;
  min-height: 54px;
  align-items: center;
  border: 1px solid rgba(7, 92, 255, 0.18);
  border-radius: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 820;
  line-height: 1.05;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.store-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(7, 92, 255, 0.42);
  background: white;
}

.store-links svg {
  width: 25px;
  height: 25px;
  fill: var(--blue);
}

.store-links span {
  display: grid;
  gap: 2px;
}

.store-links small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 780;
  line-height: 1;
  text-transform: uppercase;
}

.band {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 4vw, 56px);
}

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

h2 {
  max-width: 840px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro-grid,
.company-copy {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 5vw, 80px);
  color: var(--muted);
  font-size: 1.13rem;
  line-height: 1.7;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--navy);
  border-block: 1px solid var(--line);
}

.product-strip article {
  min-height: 330px;
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(150deg, rgba(7, 92, 255, 0.22), transparent 42%),
    var(--navy);
  color: white;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.product-strip article:hover {
  transform: translateY(-3px);
}

.product-strip article:nth-child(2) {
  background:
    linear-gradient(150deg, rgba(45, 226, 255, 0.2), transparent 42%),
    #081b36;
}

.product-strip article:nth-child(3) {
  background:
    linear-gradient(150deg, rgba(182, 242, 100, 0.17), transparent 42%),
    #061a33;
}

.icon-pill {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: var(--cyan);
  font-weight: 820;
}

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

.product-strip p,
.capability-list p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.product-strip p {
  color: rgba(255, 255, 255, 0.72);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(36px, 7vw, 90px);
  width: min(1292px, 100%);
  margin: 0 auto;
}

.split .section-heading {
  margin: 0;
}

.capability-list {
  display: grid;
  gap: 16px;
}

.capability-list div {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 36px rgba(7, 19, 39, 0.06);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.capability-list div:hover {
  transform: translateY(-2px);
  border-color: rgba(7, 92, 255, 0.24);
  box-shadow: 0 18px 46px rgba(7, 92, 255, 0.1);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: var(--blue);
  color: white;
}

.metrics div {
  min-height: 180px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(28px, 5vw, 56px);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.metrics div:last-child {
  border-right: 0;
}

.metrics strong {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1;
}

.metrics span {
  color: rgba(255, 255, 255, 0.78);
}

.company {
  background:
    linear-gradient(115deg, rgba(7, 92, 255, 0.08), transparent 44%),
    #eaf1ff;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.75fr);
  gap: clamp(34px, 8vw, 100px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(78px, 11vw, 140px) 0;
}

.contact-copy h2 {
  margin-bottom: 18px;
}

.mail-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue-dark);
  font-weight: 780;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.74;
  transform: none;
}

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

input,
textarea {
  width: 100%;
  border: 1px solid rgba(7, 19, 39, 0.17);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(7, 92, 255, 0.14);
}

.hidden {
  display: none;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--blue-dark);
  font-size: 0.94rem;
}

.form-status.is-error {
  color: #a13f31;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: white;
}

.site-footer p {
  margin: 0;
  justify-self: center;
}

.site-footer a:last-child {
  color: var(--blue-dark);
  font-weight: 760;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
    transition: transform 160ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    inset: 72px 16px auto;
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffdf9;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: grid;
  }

  .nav a {
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(246, 249, 255, 0.99) 0%, rgba(246, 249, 255, 0.88) 52%, rgba(246, 249, 255, 0.2) 100%),
      linear-gradient(90deg, rgba(246, 249, 255, 0.78), rgba(7, 92, 255, 0.08));
  }

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

  .hero-inner {
    padding-bottom: 56px;
  }

  .intro-grid,
  .company-copy,
  .product-strip,
  .split,
  .metrics,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .product-strip article {
    min-height: auto;
  }

  .metrics div {
    min-height: 145px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 244, 0.16);
  }

  .metrics div:last-child {
    border-bottom: 0;
  }

  .site-footer p {
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .button,
  .store-links,
  .store-links a {
    width: 100%;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@keyframes energy-drift {
  from {
    background-position:
      0 0,
      0 0,
      0 0;
  }
  to {
    background-position:
      120px 0,
      180px 0,
      92px 0;
  }
}
