:root {
  --bg: #070a08;
  --bg-soft: #0d120f;
  --panel: #111713;
  --panel-soft: #151d18;

  --text: #f4f7f5;
  --muted: #9ca8a1;
  --muted-dark: #66736c;

  --accent: #68dc90;
  --accent-soft: rgba(104, 220, 144, 0.12);

  --border: rgba(255,255,255,.08);

  --container: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 75% 0%, rgba(72,160,102,.10), transparent 35%),
    var(--bg);

  color: var(--text);

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.6;
}

img {
  max-width: 100%;
}

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

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}


/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  border-bottom: 1px solid var(--border);

  background: rgba(7,10,8,.78);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 72px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.logo {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 2px;
}

.logo span {
  color: var(--accent);
}

.desktop-nav {
  display: none;
}

.nav-contact {
  padding: 9px 14px;

  border: 1px solid var(--border);
  border-radius: 999px;

  font-size: 13px;
}


/* HERO */

.hero {
  padding: 62px 0 90px;
}

.hero-grid {
  display: grid;
  gap: 55px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 22px;

  padding: 7px 11px;

  background: var(--accent-soft);

  border: 1px solid rgba(104,220,144,.18);
  border-radius: 999px;

  color: var(--accent);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: .6px;
}

.status-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--accent);
}

.hero h1 {
  max-width: 820px;

  font-size: clamp(43px, 12vw, 80px);
  line-height: .98;

  letter-spacing: -2.6px;
}

.hero h1 span {
  display: block;

  color: var(--muted);
}

.hero-text {
  max-width: 650px;

  margin-top: 25px;

  color: var(--muted);

  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: grid;
  gap: 10px;

  margin-top: 32px;
}

.btn {
  min-height: 50px;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 0 20px;

  border-radius: 12px;

  font-size: 14px;
  font-weight: 800;
}

.btn-primary {
  background: var(--accent);
  color: #061009;
}

.btn-secondary {
  border: 1px solid var(--border);

  background: rgba(255,255,255,.02);
}

.hero-note {
  margin-top: 18px;

  color: var(--muted-dark);

  font-size: 12px;
}


/* PRODUCT */

.product-wrap {
  position: relative;

  min-height: 485px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.product-glow {
  position: absolute;

  width: 280px;
  height: 280px;

  border-radius: 50%;

  background: rgba(104,220,144,.12);

  filter: blur(75px);
}

.incubator {
  position: relative;

  width: min(285px, 82vw);
  height: 430px;

  overflow: hidden;

  border: 1px solid rgba(255,255,255,.11);

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      #2a302c,
      #151a17 55%,
      #0b0f0d
    );

  box-shadow:
    0 40px 80px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.incubator-header {
  height: 82px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 12px;

  padding: 0 18px;

  border-bottom: 1px solid var(--border);
}

.device-logo {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.device-logo span {
  color: var(--accent);
}

.screen {
  width: 94px;

  padding: 8px 10px;

  border-radius: 8px;

  border: 1px solid rgba(104,220,144,.2);

  background: #050806;
}

.screen strong {
  display: block;

  color: var(--accent);

  font-size: 13px;
}

.screen span {
  display: block;

  color: #7e8d85;

  font-size: 8px;
}

.door {
  position: absolute;

  top: 102px;
  left: 20px;
  right: 20px;
  bottom: 28px;

  overflow: hidden;

  border-radius: 13px;

  border: 1px solid rgba(255,255,255,.07);

  background:
    linear-gradient(
      150deg,
      rgba(70,95,80,.15),
      rgba(8,11,9,.75)
    );
}

.tray {
  height: 45px;

  margin: 14px;

  border-radius: 7px;

  border: 1px solid rgba(255,255,255,.06);

  background:
    radial-gradient(circle, #d6c19d 0 4px, transparent 5px)
    0 0 / 27px 18px,
    rgba(255,255,255,.02);
}

.floating-card {
  position: absolute;

  right: 0;
  bottom: 23px;

  width: 150px;

  padding: 14px;

  border: 1px solid var(--border);

  border-radius: 14px;

  background: rgba(14,20,16,.96);

  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.floating-card span {
  display: block;

  color: var(--muted);

  font-size: 9px;
}

.floating-card strong {
  display: block;

  margin-top: 4px;

  font-size: 22px;
}

.floating-card small {
  color: var(--accent);

  font-size: 10px;
}


/* GENERIC SECTION */

.section {
  padding: 85px 0;
}

.section-head {
  max-width: 760px;
}

.eyebrow {
  display: block;

  margin-bottom: 13px;

  color: var(--accent);

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
}

.section-head h2,
.control-copy h2,
.coming-content h2 {
  font-size: clamp(34px, 9vw, 58px);
  line-height: 1.06;

  letter-spacing: -2px;
}

.section-head p,
.control-copy p,
.coming-content p {
  margin-top: 18px;

  color: var(--muted);

  font-size: 16px;
  line-height: 1.75;
}


/* FEATURES */

.features-grid {
  display: grid;
  gap: 12px;

  margin-top: 44px;
}

.feature-card {
  min-height: 210px;

  padding: 24px;

  border: 1px solid var(--border);

  border-radius: 17px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.03),
      rgba(255,255,255,.008)
    );
}

.feature-icon {
  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  margin-bottom: 38px;

  border-radius: 11px;

  background: var(--accent-soft);

  color: var(--accent);

  font-weight: 800;
}

.feature-card h3 {
  margin-bottom: 8px;

  font-size: 17px;
}

.feature-card p {
  color: var(--muted);

  font-size: 14px;
  line-height: 1.7;
}


/* CONTROL */

.dark-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.012),
      transparent
    );
}

.control-grid {
  display: grid;
  gap: 45px;
}

.control-copy p + p {
  margin-top: 14px;
}

.dashboard {
  padding: 16px;

  border: 1px solid var(--border);

  border-radius: 20px;

  background: #0c110e;

  box-shadow: 0 35px 70px rgba(0,0,0,.3);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;

  margin-bottom: 13px;

  font-size: 11px;
}

.dashboard-header span {
  color: var(--accent);

  font-size: 9px;
}

.dash-grid {
  display: grid;
  gap: 10px;
}

.dash-card {
  padding: 17px;

  border: 1px solid var(--border);

  border-radius: 12px;

  background: rgba(255,255,255,.02);
}

.dash-card span {
  display: block;

  color: var(--muted);

  font-size: 9px;
}

.dash-card strong {
  display: block;

  margin-top: 4px;

  font-size: 25px;
}

.dash-card small {
  display: block;

  margin-top: 5px;

  color: var(--accent);

  font-size: 9px;
}


/* PROCESS */

.process-grid {
  display: grid;
  gap: 12px;

  margin-top: 42px;
}

.process-grid article {
  padding: 25px;

  border: 1px solid var(--border);

  border-radius: 17px;

  background: var(--bg-soft);
}

.process-grid article > span {
  display: block;

  margin-bottom: 34px;

  color: var(--accent);

  font-size: 11px;
}

.process-grid h3 {
  margin-bottom: 8px;

  font-size: 18px;
}

.process-grid p {
  color: var(--muted);

  font-size: 14px;
}


/* COMING SOON */

.coming-section {
  padding: 100px 0;

  text-align: center;
}

.coming-content {
  max-width: 760px;
}

.coming-content p {
  max-width: 620px;

  margin-inline: auto;
}

.coming-content a {
  display: inline-block;

  margin-top: 25px;
  padding-bottom: 4px;

  border-bottom: 1px solid rgba(104,220,144,.4);

  color: var(--accent);
}


/* FOOTER */

footer {
  padding: 30px 0;

  border-top: 1px solid var(--border);

  color: var(--muted-dark);

  font-size: 12px;
}

.footer-content {
  display: flex;
  flex-direction: column;

  gap: 6px;
}


/* TABLET */

@media (min-width: 640px) {

  .hero-actions {
    display: flex;
  }

  .btn {
    min-width: 160px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dash-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }

}


/* DESKTOP */

@media (min-width: 900px) {

  .container {
    width: min(calc(100% - 50px), var(--container));
  }

  .desktop-nav {
    display: flex;

    gap: 28px;

    color: var(--muted);

    font-size: 13px;
  }

  .desktop-nav a:hover {
    color: var(--text);
  }

  .hero {
    padding: 90px 0 120px;
  }

  .hero-grid {
    grid-template-columns: 1.05fr .95fr;
    align-items: center;

    gap: 65px;
  }

  .hero h1 {
    letter-spacing: -4px;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .control-grid {
    grid-template-columns: .9fr 1.1fr;
    align-items: center;

    gap: 70px;
  }

  .section {
    padding: 110px 0;
  }

  .coming-section {
    padding: 130px 0;
  }

  .floating-card {
    right: 15px;
  }

}