:root {
  color-scheme: dark;
  --bg: #050806;
  --bg-2: #08120d;
  --panel: #0d1711;
  --panel-2: #111c16;
  --line: rgba(218, 255, 230, 0.13);
  --ink: #f5fff7;
  --muted: #a7b7ab;
  --green: #73f6a7;
  --green-2: #1fc879;
  --gold: #f4c96a;
  --orange: #e88948;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(31, 200, 121, 0.18), transparent 34%),
    radial-gradient(circle at 86% 38%, rgba(232, 137, 72, 0.18), transparent 30%),
    linear-gradient(180deg, #040604 0%, #07120c 46%, #040604 100%);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
  padding: 0 max(28px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 8, 6, 0.72);
  backdrop-filter: blur(18px);
}

.brand,
nav,
.beta-proof,
.window-dots {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-size: 19px;
  font-weight: 850;
}

.brand img,
.download img {
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(115, 246, 167, 0.16);
}

nav {
  gap: 8px;
}

nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

nav a:hover,
.nav-cta {
  background: rgba(255, 255, 255, 0.09);
  color: var(--ink);
}

main {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 56px;
  text-align: center;
}

.hero-media {
  width: min(930px, 100%);
  margin: 0 auto 54px;
  overflow: hidden;
  border: 1px solid rgba(218, 255, 230, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 22% 25%, rgba(115, 246, 167, 0.22), transparent 30%),
    radial-gradient(circle at 80% 72%, rgba(244, 201, 106, 0.2), transparent 32%),
    linear-gradient(145deg, rgba(13, 23, 17, 0.96), rgba(6, 9, 7, 0.96));
  box-shadow: var(--shadow);
}

.trackpad-stage {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  padding: 54px;
}

.trackpad-stage::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(115, 246, 167, 0.15), transparent 62%);
  filter: blur(18px);
}

.trackpad-glass {
  position: relative;
  width: min(680px, 100%);
  aspect-ratio: 1.55 / 1;
  overflow: hidden;
  border: 1px solid rgba(226, 246, 233, 0.24);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 22% 18%, rgba(115, 246, 167, 0.28), transparent 26%),
    radial-gradient(circle at 82% 84%, rgba(232, 137, 72, 0.22), transparent 32%),
    #111b16;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -24px 60px rgba(0, 0, 0, 0.28),
    0 36px 80px rgba(0, 0, 0, 0.38);
}

.corner-zone {
  position: absolute;
  width: 31%;
  height: 31%;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(245, 255, 247, 0.26);
  background: rgba(5, 8, 6, 0.22);
  color: rgba(245, 255, 247, 0.62);
  font-size: 13px;
  font-weight: 850;
}

.corner-zone.active {
  border-style: solid;
  border-color: rgba(115, 246, 167, 0.58);
  background: rgba(115, 246, 167, 0.16);
  color: var(--ink);
}

.zone-tl {
  top: 0;
  left: 0;
  border-radius: 34px 0 12px 0;
}

.zone-tr {
  top: 0;
  right: 0;
  border-radius: 0 34px 0 12px;
}

.zone-bl {
  bottom: 0;
  left: 0;
  border-radius: 0 12px 0 34px;
}

.zone-br {
  right: 0;
  bottom: 0;
  border-radius: 12px 0 34px 0;
}

.tap-dot {
  position: absolute;
  border-radius: 999px;
  background: var(--green);
  box-shadow:
    0 0 0 12px rgba(115, 246, 167, 0.13),
    0 0 42px rgba(115, 246, 167, 0.46);
}

.dot-one {
  top: 16%;
  left: 16%;
  width: 18px;
  height: 18px;
  animation: tap 2.4s ease-in-out infinite;
}

.dot-two {
  top: 23%;
  left: 23%;
  width: 12px;
  height: 12px;
  animation: tap 2.4s ease-in-out 0.24s infinite;
}

@keyframes tap {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.82);
  }

  35% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.floating-panel {
  position: absolute;
  right: 9%;
  bottom: 11%;
  width: min(310px, 44%);
  padding: 16px;
  border: 1px solid rgba(218, 255, 230, 0.16);
  border-radius: 18px;
  background: rgba(7, 12, 9, 0.72);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  text-align: left;
}

.window-dots {
  gap: 6px;
  margin-bottom: 15px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.window-dots span:nth-child(2) {
  background: var(--gold);
}

.window-dots span:nth-child(3) {
  background: var(--orange);
}

.floating-panel strong {
  display: block;
  margin-bottom: 4px;
  font-size: 22px;
}

.floating-panel p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.hero-copy {
  max-width: 840px;
  margin: 0 auto;
}

.system-pill,
.price-pill {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(218, 255, 230, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #d6e6da;
  font-size: 14px;
  font-weight: 760;
}

h1 {
  margin-top: 28px;
  font-size: clamp(56px, 9vw, 104px);
  line-height: 0.95;
  letter-spacing: 0;
}

h1 span {
  display: block;
  background: linear-gradient(90deg, var(--green), var(--gold) 55%, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  width: min(760px, 100%);
  margin: 26px auto 0;
  color: #c4d0c7;
  font-size: 21px;
  line-height: 1.55;
}

.price-pill {
  min-height: 32px;
  margin-top: 34px;
  border-color: rgba(244, 201, 106, 0.34);
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 850;
  white-space: nowrap;
}

.button.primary {
  background: var(--ink);
  color: #061009;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 20px 48px rgba(115, 246, 167, 0.18);
}

.button.primary:hover {
  background: #dfffe8;
}

.subnote {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
}

.beta-proof {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.beta-proof span {
  color: var(--gold);
  font-size: 20px;
  font-weight: 850;
  text-shadow: 0 0 24px rgba(244, 201, 106, 0.2);
}

.beta-proof span + span::before {
  content: "/";
  margin-right: 10px;
  color: rgba(245, 255, 247, 0.24);
}

.quote-strip {
  width: min(1280px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(4, minmax(250px, 1fr));
  gap: 24px;
  margin: 28px auto 0;
  padding: 0 0 66px;
}

.quote-strip article,
.steps article,
.feature-list article {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(7, 13, 9, 0.72);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.quote-strip article {
  min-height: 170px;
  padding: 28px;
}

.quote-strip p {
  color: #e7f3e9;
  font-size: 17px;
  font-style: italic;
  line-height: 1.5;
}

.quote-strip strong {
  display: block;
  margin-top: 24px;
  color: var(--green);
  font-size: 13px;
  text-transform: uppercase;
}

.section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.eyebrow {
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

h2 {
  margin-top: 10px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
}

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

.steps article {
  min-height: 250px;
  padding: 28px;
}

.steps span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 40px;
  border-radius: 14px;
  background: rgba(115, 246, 167, 0.14);
  color: var(--green);
  font-size: 18px;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

.steps p,
.split p,
.feature-list p,
.download p,
.download li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.78fr);
  gap: 72px;
  align-items: center;
}

.split > div:first-child p:last-child {
  margin-top: 22px;
}

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

.feature-list article {
  padding: 24px;
}

.download {
  width: min(830px, calc(100% - 48px));
  margin: 46px auto 96px;
  padding: 48px;
  border: 1px solid rgba(218, 255, 230, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 15%, rgba(115, 246, 167, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  text-align: center;
}

.download img {
  margin: 0 auto 20px;
}

.download p {
  width: min(620px, 100%);
  margin: 18px auto 0;
}

.download ol {
  display: inline-block;
  margin: 34px 0 0;
  padding-left: 22px;
  text-align: left;
}

.download li + li {
  margin-top: 8px;
}

footer {
  width: min(1120px, calc(100% - 48px));
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

footer a,
.legal-page a {
  color: var(--green);
}

.legal-page {
  width: min(840px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 96px;
}

.legal-page h1 {
  margin-top: 12px;
  font-size: clamp(44px, 7vw, 72px);
  line-height: 0.98;
}

.legal-updated {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
}

.legal-page section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.legal-page section:first-of-type {
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.legal-page h2 {
  margin-bottom: 14px;
  font-size: 26px;
}

.legal-page p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.legal-page p + p {
  margin-top: 14px;
}

@media (max-width: 980px) {
  .quote-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps,
  .split {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 34px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
  }

  .hero {
    width: min(100% - 28px, 1120px);
    padding-top: 44px;
  }

  .hero-media {
    margin-bottom: 38px;
    border-radius: 24px;
  }

  .trackpad-stage {
    min-height: 330px;
    padding: 24px;
  }

  .floating-panel {
    right: 24px;
    bottom: 22px;
    width: min(260px, calc(100% - 48px));
  }

  .zone-bl span,
  .zone-br span {
    display: none;
  }

  h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .hero-text {
    font-size: 18px;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .quote-strip,
  .steps {
    grid-template-columns: 1fr;
  }

  .quote-strip,
  .section,
  .download,
  footer {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 60px 0;
  }

  .download {
    padding: 32px 22px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}
