html {
  min-height: 100%;
  background: #171725;
  scrollbar-width: none;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #e2e8f0;
  background: #171725;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  display: none;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6%;
  border-bottom: 1px solid #2d2d3a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #171725;
}

.header-wordmark-background {
  position: absolute;
  left: 280px;
  top: 50%;
  z-index: 0;
  width: 330px;
  max-width: 42vw;
  height: auto;
  transform: translateY(-54%) rotate(-4deg) scaleX(1.2);
  opacity: 0.14;
  filter: blur(0.4px) saturate(0.85);
  pointer-events: none;
  user-select: none;
}

.brand-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

.logo {
  display: block;
  width: 180px;
  max-width: 45vw;
  height: auto;
}

nav {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 20px;
}

nav a {
  color: #cbd5e1;
  text-decoration: none;
}

main {
  flex: 1;
  display: flex;
}

.hero {
  position: relative;
  overflow: hidden;
  flex: 1;
  width: 100%;
  min-height: 0;
  max-width: none;
  padding: 40px 8% 48px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1060px;
  margin: 0 auto;
}

.hero h2 {
  font-family: ui-rounded, "SF Pro Rounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 0 0 26px;
  color: #bfc8d8;
  text-wrap: balance;
}

.hero-intro {
  max-width: 700px;
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.35;
  color: #e2e8f0;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(76, 143, 247, 0.14);
  color: #9cc7ff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.features {
  margin: 0 0 8px 18px;
  padding: 0;
  max-width: 720px;
}

.features div {
  margin-bottom: 20px;
}

.features h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #dbe4f0;
}

.features p {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  color: #9faabd;
}

.hero-background-arrows {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 120px;
  width: 620px;
  max-width: 70vw;
  transform: translateX(-50%);
  opacity: 0.42;
  pointer-events: none;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4c8ff7, #79d756);
  color: #f8fafc;
  text-decoration: none;
  font-family: ui-rounded, "SF Pro Rounded", "Arial Rounded MT Bold", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
}

.apple-logo {
  font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 20px;
  line-height: 1;
}

footer {
  padding: 16px 8%;
  color: #94a3b8;
}

@media (max-width: 800px) {

  header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    min-height: 125px;
    padding: 44px 6% 24px;
  }

  .brand-link {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    gap: 14px;
  }

  .logo {
    width: 170px;
  }

  .header-wordmark-background {
    display: block;
    left: 38px;
    top: 100px;
    width: 250px;
    max-width: none;
    opacity: 0.3;
    filter: blur(1.2px) saturate(0.75);
    transform: rotate(-4deg) scaleX(1.2);
  }

  nav {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    margin-top: 0;
  }

  nav a {
    font-size: 18px;
    line-height: 1.2;
  }

  .hero {
    padding: 30px 8% 24px;
  }

  .hero h2 {
    font-size: 38px;
  }

  .hero-intro {
    font-size: 17px;
    line-height: 1.4;
  }

  .button {
    margin-top: 8px;
    margin-left: 18px;
  }

  .features {
    margin-left: 10px;
  }

  .hero-background-arrows {
    top: 165px;
    width: 500px;
    max-width: 115vw;
    opacity: 0.75;
  }

  footer {
    padding: 8px 8% 60px;
    transform: translateY(-5px);
    margin-left: 10px;
  }

  footer p {
    margin: 0;
  }
}