:root {
  --landing-bg: #09090b;
  --landing-surface: #121318;
  --landing-surface-2: #191a21;
  --landing-line: rgba(255, 255, 255, 0.10);
  --landing-line-strong: rgba(255, 255, 255, 0.16);
  --landing-text: #f7f5ef;
  --landing-muted: #a7a8b1;
  --landing-muted-2: #73757f;
  --landing-accent: #3182ff;
  --landing-accent-2: #7ee35f;
  --landing-max: 1500px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.landing-body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 78% 42%, rgba(49, 130, 255, 0.13), transparent 29%),
    radial-gradient(circle at 18% 82%, rgba(126, 227, 95, 0.06), transparent 24%),
    linear-gradient(180deg, #09090b 0%, #0b0c10 100%);
  color: var(--landing-text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.landing-page {
  min-height: 100vh;
  overflow: hidden;
}

.landing-topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 50%;
  display: flex;
  width: min(calc(100% - 40px), var(--landing-max));
  height: 76px;
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--landing-line);
  backdrop-filter: blur(18px);
}

.landing-brand,
.landing-login-btn,
.landing-primary-cta,
.landing-text-link,
.landing-details-cta {
  color: inherit;
  text-decoration: none;
}

.landing-brand {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.landing-login-btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid var(--landing-line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 14px;
  font-weight: 800;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.landing-login-btn:hover,
.landing-primary-cta:hover,
.landing-details-cta:hover {
  transform: translateY(-1px);
}

.landing-login-btn:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.075);
}

.landing-login-icon,
.landing-cta-icon,
.landing-micro-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.landing-login-icon svg,
.landing-micro-icon svg {
  width: 19px;
  height: 19px;
}

.landing-hero {
  display: grid;
  min-height: 100vh;
  width: min(calc(100% - 40px), var(--landing-max));
  margin: 0 auto;
  padding: 126px 0 70px;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.98fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
}

.landing-hero-copy {
  max-width: 690px;
}

.landing-eyebrow,
.landing-details-kicker {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--landing-accent-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.landing-hero h1,
.landing-details h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.94;
}

.landing-hero h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(64px, 8vw, 122px);
  font-weight: 900;
}

.landing-accent-dot {
  color: var(--landing-accent);
}

.landing-lead {
  max-width: 620px;
  margin: 0 0 38px;
  color: var(--landing-muted);
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.55;
}

.landing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.landing-primary-cta,
.landing-details-cta {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  background: var(--landing-text);
  color: #09090b;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.landing-primary-cta {
  padding: 0 24px;
}

.landing-details-cta {
  padding: 0 26px;
}

.landing-cta-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #121318;
  color: var(--landing-text);
  font-size: 18px;
  line-height: 1;
}

.landing-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  background: transparent;
  color: var(--landing-muted);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.landing-text-link:hover {
  color: var(--landing-text);
}

.landing-micro-benefits {
  display: grid;
  max-width: 720px;
  margin-top: 62px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.landing-micro-benefit {
  display: flex;
  min-width: 0;
  gap: 13px;
  align-items: center;
  padding-right: 22px;
  border-right: 1px solid var(--landing-line);
}

.landing-micro-benefit:last-child {
  border-right: 0;
}

.landing-micro-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(49, 130, 255, 0.10);
  color: var(--landing-accent);
}

.landing-micro-benefit strong,
.landing-micro-benefit small {
  display: block;
}

.landing-micro-benefit strong {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 900;
}

.landing-micro-benefit small {
  color: var(--landing-muted-2);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.landing-preview-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.landing-preview-glow {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(49, 130, 255, 0.24);
  filter: blur(72px);
  opacity: 0.72;
}

.landing-preview-card {
  position: relative;
  width: min(100%, 760px);
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.035));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.46);
}

.landing-preview-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.landing-details {
  width: min(calc(100% - 40px), var(--landing-max));
  margin: 0 auto;
  padding: 30px 0 90px;
}

.landing-detail-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--landing-line-strong), transparent);
}

.landing-details-inner {
  max-width: 900px;
  padding: 92px 0 20px;
}

.landing-details h2 {
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 900;
}

.landing-details-inner > p:not(.landing-details-kicker) {
  max-width: 760px;
  margin: 0 0 34px;
  color: var(--landing-muted);
  font-size: 21px;
  line-height: 1.55;
}

@media (max-width: 1050px) {
  .landing-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 132px;
  }

  .landing-hero-copy {
    max-width: none;
  }

  .landing-preview-wrap {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .landing-topbar {
    width: min(calc(100% - 28px), var(--landing-max));
    height: 68px;
  }

  .landing-brand {
    font-size: 15px;
  }

  .landing-login-btn {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .landing-hero,
  .landing-details {
    width: min(calc(100% - 28px), var(--landing-max));
  }

  .landing-hero {
    padding: 112px 0 50px;
    gap: 42px;
  }

  .landing-hero h1 {
    font-size: clamp(50px, 15vw, 72px);
  }

  .landing-lead {
    font-size: 16px;
  }

  .landing-hero-actions {
    align-items: stretch;
    gap: 12px;
  }

  .landing-primary-cta,
  .landing-text-link {
    width: 100%;
  }

  .landing-micro-benefits {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 46px;
  }

  .landing-micro-benefit {
    padding-right: 0;
    border-right: 0;
  }

  .landing-details-inner {
    padding-top: 72px;
  }

  .landing-details h2 {
    font-size: 42px;
  }

  .landing-details-inner > p:not(.landing-details-kicker) {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
