:root {
  --dark: #111;
  --dark2: #171b1d;
  --green: #bcff00;
  --white: #fff;
  --light: #f4f6f7;
  --gray: #888;
  --line: rgba(17, 17, 17, 0.1);
  --serif: "Marcellus", serif;
  --sans: "DM Sans", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  color: var(--dark);
  font-family: var(--sans);
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
textarea,
select {
  font: inherit;
}
.container {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(17, 17, 17, 0.38);
  backdrop-filter: blur(14px);
  transition: 0.35s;
}
.site-header.solid {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(17, 17, 17, 0.1);
}
.nav-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link img,
.mobile-head img {
  height: 56px;
  width: auto;
}
.desktop-nav {
  display: flex;
  gap: 34px;
}
.desktop-nav a {
  font-size: 14px;
  font-weight: 600;
  position: relative;
  color: #fff;
  opacity: 0.75;
  padding: 28px 0;
}
.site-header.solid .desktop-nav a {
  color: #111;
}
.desktop-nav a.active,
.desktop-nav a:hover {
  opacity: 1;
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  height: 2px;
  background: var(--green);
  left: 0;
  right: 100%;
  bottom: 18px;
  transition: 0.25s;
}
.desktop-nav a.active:after {
  right: 0;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s;
}
.pill:hover {
  transform: translateY(-2px);
}
.green {
  background: var(--green);
  color: var(--dark);
  box-shadow: 0 0 0 rgba(188, 255, 0, 0);
}
.green:hover {
  box-shadow: 0 0 28px rgba(188, 255, 0, 0.42);
}
.outline {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}
.outline:hover {
  background: #fff;
  color: #111;
}
.dark-pill {
  background: #111;
  color: #fff;
}
.large {
  padding: 18px 30px;
}
.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
}
.site-header.solid .menu-btn {
  color: #111;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #111;
  z-index: 70;
  padding: 22px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: 0.35s;
}
.mobile-menu.open {
  transform: none;
}
.mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-head button {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 40px;
}
.mobile-menu nav {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
}
.mobile-menu nav a {
  font-family: var(--serif);
  font-size: 40px;
  color: #fff;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-cta {
  margin-top: auto;
}
.loader {
  position: fixed;
  inset: 0;
  background: #111;
  z-index: 100;
  display: grid;
  place-items: center;
  transition: 0.75s;
}
.loader.hide {
  transform: translateY(-100%);
}
.loader-inner {
  text-align: center;
  color: #888;
}
.bolt {
  font-size: 70px;
  color: var(--green);
}
.loader-bar {
  width: 160px;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  margin: 18px auto;
}
.loader-bar span {
  display: block;
  height: 100%;
  background: var(--green);
  animation: load 1.4s ease forwards;
}
@keyframes load {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.loader small,
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.25em;
  font-weight: 700;
}
.hero {
  height: 100vh;
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111;
  color: #fff;
}
.hero-bg,
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero:after,
.page-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    #111 0%,
    rgba(17, 17, 17, 0.45) 55%,
    rgba(17, 17, 17, 0.6) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 70px;
}
.hero h1 {
  font-size: clamp(54px, 7.2vw, 100px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin: 22px 0 28px;
}
.green-text {
  color: var(--green);
}
.hero p,
.page-intro p {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  max-width: 610px;
}
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 26px;
  left: 50%;
  font-size: 28px;
  animation: bounce 1.4s infinite;
}
@keyframes bounce {
  50% {
    transform: translateY(8px);
  }
}
.electric-lines {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 45%;
  opacity: 0.38;
}
.electric-lines path {
  fill: none;
  stroke: var(--green);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 6px var(--green));
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: draw 2.5s ease forwards;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.section {
  padding: 110px 0;
}
.light {
  background: var(--light);
}
.dark-section {
  background: var(--dark2);
  color: #fff;
}
.section-title {
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.08;
  margin: 18px 0;
}
.muted {
  color: var(--gray);
  line-height: 1.75;
}
.lead {
  font-size: 18px;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--line);
  gap: 1px;
}
.stat {
  background: #fff;
  padding: 32px;
}
.stat strong {
  font: 400 46px var(--serif);
  display: block;
}
.stat span {
  font-size: 14px;
  color: var(--gray);
}
.section-head {
  max-width: 700px;
  margin-bottom: 52px;
}
.cards-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.image-card {
  height: 420px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  color: #fff;
}
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: 0.7s;
}
.image-card:hover img {
  transform: scale(1.07);
}
.image-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.95), transparent 68%);
}
.card-content {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  padding: 30px;
}
.card-content h3 {
  font-size: 31px;
  margin-bottom: 12px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 12px;
}
.soon {
  position: absolute;
  z-index: 3;
  right: 18px;
  top: 18px;
  background: var(--green);
  color: #111;
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 12px;
  font-weight: 700;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--line);
  gap: 1px;
}
.info-card {
  background: #fff;
  padding: 34px;
  transition: 0.3s;
}
.info-card:hover {
  background: var(--light);
}
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 13px;
  background: #111;
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 24px;
}
.info-card h3 {
  font-size: 24px;
  margin: 22px 0 10px;
}
.cta-band {
  position: relative;
  padding: 135px 0;
  background: #171b1d;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-band .container {
  position: relative;
  z-index: 2;
}
.cta-band h2 {
  font-size: clamp(42px, 6vw, 72px);
  margin: 18px auto;
  max-width: 900px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.65);
}
.page-hero {
  height: 70vh;
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: flex-end;
  background: #111;
  color: #fff;
  overflow: hidden;
}
.page-hero.short {
  height: 60vh;
  min-height: 440px;
}
.page-hero .container {
  position: relative;
  z-index: 2;
  padding-bottom: 58px;
}
.page-hero h1,
.page-intro h1 {
  font-size: clamp(50px, 6vw, 78px);
  line-height: 0.95;
  margin: 16px 0 0;
}
.page-intro {
  background: #111;
  color: #fff;
  padding: 160px 0 100px;
}
.page-intro.white {
  background: #fff;
  color: #111;
}
.page-intro.white p {
  color: #888;
}
.chapters {
  max-width: 900px;
}
.chapter {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  border-top: 1px solid var(--line);
  padding: 44px 0;
}
.chapter .num {
  font: 400 50px var(--serif);
  color: var(--green);
}
.chapter h3 {
  font-size: 31px;
  margin-bottom: 14px;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mission {
  background: #202526;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 40px;
}
.mission h3 {
  font-size: 32px;
  margin: 24px 0 12px;
}
.mission p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.7;
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--line);
  gap: 1px;
}
.value {
  background: #fff;
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: center;
  transition: 0.3s;
}
.value:hover {
  background: #111;
  color: #fff;
}
.value b {
  font: 400 24px var(--serif);
  color: var(--green);
}
.value span {
  font: 400 24px var(--serif);
}
.product-row {
  padding: 90px 0;
}
.product-row.alt {
  background: var(--light);
}
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
}
.product-row.alt .product-image {
  order: 2;
}
.product-image {
  height: 450px;
  border-radius: 18px;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s;
}
.product-image:hover img {
  transform: scale(1.05);
}
.product-copy h2 {
  font-size: clamp(40px, 5vw, 58px);
  margin: 16px 0;
}
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}
.feature {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 14px;
}
.feature:before {
  content: "✓";
  color: #75a500;
  margin-right: 7px;
}
.autonomous {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.concept {
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: radial-gradient(
    circle,
    rgba(188, 255, 0, 0.1),
    rgba(17, 17, 17, 0.5) 65%
  );
  display: grid;
  place-items: center;
  text-align: center;
}
.concept .cpu {
  font-size: 70px;
  color: var(--green);
}
.service-grid .info-card:hover {
  background: #111;
  color: #fff;
}
.service-grid .info-card:hover .icon-box {
  background: var(--green);
  color: #111;
}
.custom-cta {
  margin-top: 55px;
  background: var(--light);
  border-radius: 18px;
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.custom-cta h3 {
  font-size: 30px;
  margin-bottom: 5px;
}
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contact-details {
  background: #171b1d;
  color: #fff;
  padding: 75px max(40px, calc((100vw - 1180px) / 2)) 75px
    max(40px, calc((100vw - 1180px) / 2));
}
.contact-form-wrap {
  padding: 75px max(40px, calc((100vw - 1180px) / 2)) 75px 70px;
}
.contact-details h2 {
  font-size: 42px;
}
.detail {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}
.detail-icon {
  flex: 0 0 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green);
  color: #111;
  display: grid;
  place-items: center;
}
.detail a,
.detail p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin: 6px 0;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.field {
  width: 100%;
  border: 0;
  border-bottom: 2px solid rgba(17, 17, 17, 0.15);
  padding: 14px 0;
  background: transparent;
  outline: 0;
  transition: 0.25s;
}
.field:focus {
  border-color: var(--green);
}
textarea.field {
  resize: vertical;
}
.form-group {
  margin-top: 28px;
}
.map {
  position: relative;
  height: 420px;
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.15);
}
.map-link {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 700;
}
.footer {
  position: relative;
  background: #111;
  color: #fff;
  overflow: hidden;
}
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.footer-cta {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding: 90px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-cta h2 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  margin: 18px 0 0;
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 5fr 3fr 4fr;
  gap: 60px;
  padding: 58px 0;
}
.footer-logo {
  height: 56px;
  width: auto;
}
.footer-grid p {
  color: #888;
  line-height: 1.7;
  max-width: 390px;
  margin-top: 24px;
}
.footer-grid h4 {
  font: 700 12px var(--sans);
  letter-spacing: 0.25em;
  color: var(--green);
}
.footer-grid > div > a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 14px;
}
.footer-grid a:hover {
  color: var(--green);
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.socials a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  color: #888;
  font-size: 14px;
}
.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  font-size: 20px;
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}
.back-top.show {
  opacity: 1;
  pointer-events: auto;
}
.toast {
  position: fixed;
  z-index: 90;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 30px);
  background: #111;
  color: #fff;
  padding: 13px 20px;
  border-radius: 10px;
  opacity: 0;
  transition: 0.3s;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .desktop-nav,
  .desktop-cta {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .two-col,
  .product-layout,
  .autonomous,
  .contact-split {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .cards-2,
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .product-row.alt .product-image {
    order: 0;
  }
  .contact-form-wrap,
  .contact-details {
    padding: 60px 34px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 620px) {
  .container {
    width: min(100% - 32px, 1180px);
  }
  .section {
    padding: 80px 0;
  }
  .hero {
    min-height: 720px;
  }
  .hero h1 {
    font-size: 50px;
  }
  .grid-3,
  .values,
  .stats,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .chapter {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .chapter .num {
    font-size: 38px;
  }
  .product-image {
    height: 330px;
  }
  .footer-cta,
  .custom-cta,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
  .contact-form-wrap,
  .contact-details {
    padding: 55px 24px;
  }
  .page-intro {
    padding-top: 130px;
  }
  .page-hero h1,
  .page-intro h1 {
    font-size: 48px;
  }
  .image-card {
    height: 360px;
  }
}
/* Reference-style contact information panel */
.reference-contact {
  background: #032338;
  padding-top: 82px;
  padding-bottom: 82px;
  display: flex;
  align-items: center;
}
.reference-contact .contact-list {
  width: 100%;
  max-width: 640px;
}
.reference-contact .detail {
  align-items: flex-start;
  gap: 24px;
  margin-top: 0;
  margin-bottom: 46px;
}
.reference-contact .detail:last-child {
  margin-bottom: 0;
}
.reference-contact .detail-icon {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #baff00;
  color: #061b27;
}
.reference-contact .detail-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.reference-contact .detail-copy {
  padding-top: 0;
  min-width: 0;
}
.reference-contact .contact-label {
  position: relative;
  display: inline-block;
  color: #baff00;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.24em;
  margin: 0 0 14px;
  padding-top: 6px;
}
.reference-contact .contact-label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 112px;
  height: 1px;
  background: #baff00;
}
.reference-contact .detail a,
.reference-contact .detail p {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
  transition: 0.25s;
}
.reference-contact .detail a:hover {
  color: #baff00;
}
@media (max-width: 900px) {
  .reference-contact {
    padding: 62px 34px;
  }
  .reference-contact .contact-list {
    max-width: none;
  }
}
@media (max-width: 620px) {
  .reference-contact {
    padding: 54px 24px;
  }
  .reference-contact .detail {
    gap: 17px;
    margin-bottom: 34px;
  }
  .reference-contact .detail-icon {
    flex-basis: 58px;
    width: 58px;
    height: 58px;
    border-radius: 15px;
  }
  .reference-contact .detail-icon svg {
    width: 28px;
    height: 28px;
  }
  .reference-contact .contact-label {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .reference-contact .contact-label:before {
    width: 88px;
  }
  .reference-contact .detail a,
  .reference-contact .detail p {
    font-size: 17px;
    line-height: 1.55;
  }
  .reference-contact .detail a br {
    display: none;
  }
}