@font-face {
  font-display: swap;
  font-family: Manrope;
  font-style: normal;
  font-weight: 200 900;
  src: url("/fonts/Manrope-VariableFont_wght.ttf") format("truetype");
}

:root {
  color-scheme: dark;
  --ink: #030409;
  --ink-soft: #080b14;
  --surface: rgba(13, 16, 28, 0.82);
  --surface-strong: rgba(18, 22, 38, 0.94);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f8f8fb;
  --muted: #a7abba;
  --faint: #777d90;
  --violet: #8b6cff;
  --indigo: #5b67ff;
  --blue: #2f8cff;
  --cyan: #26d3e8;
  --green: #35e58d;
  --danger: #ff6d8e;
  --ease: cubic-bezier(0.2, 0, 0, 1);
}

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

html,
body {
  width: 100%;
  min-width: 320px;
  min-height: 100%;
  background: var(--ink);
}

body {
  overflow-x: hidden;
  color: var(--text);
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

button {
  border: 0;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.landing-main-root {
  min-height: 100svh;
}

.landing-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: 100%;
  min-height: 100svh;
  padding:
    max(22px, env(safe-area-inset-top))
    max(clamp(24px, 3.5vw, 64px), env(safe-area-inset-right))
    max(18px, env(safe-area-inset-bottom))
    max(clamp(24px, 3.5vw, 64px), env(safe-area-inset-left));
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(61, 46, 120, 0.12), transparent 31%),
    linear-gradient(115deg, #030409 0%, #050713 58%, #030409 100%);
}

.landing-shell::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background-image: url("/noise.png");
  background-repeat: repeat;
  background-size: 420px;
  opacity: 0.025;
}

.landing-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.landing-glow {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(110px);
}

.landing-glow-violet {
  top: 16%;
  left: 27%;
  width: min(36vw, 620px);
  aspect-ratio: 1;
  background: rgba(91, 66, 196, 0.18);
}

.landing-glow-cyan {
  right: -10%;
  bottom: -32%;
  width: min(44vw, 760px);
  aspect-ratio: 1;
  background: rgba(24, 159, 183, 0.1);
}

.landing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  width: min(100%, 1480px);
  min-height: 0;
  margin-inline: auto;
}

.landing-product,
.landing-access {
  min-width: 0;
}

.landing-product {
  display: grid;
  grid-template-rows: auto auto minmax(230px, 1fr);
  align-items: start;
  padding-right: clamp(34px, 5vw, 84px);
  border-right: 1px solid var(--line);
}

.landing-wordmark {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  min-height: 42px;
  font-size: 27px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.055em;
  transition: opacity 180ms var(--ease);
}

.landing-wordmark img {
  width: 31px;
  height: 31px;
}

.landing-wordmark:hover {
  opacity: 0.78;
}

.landing-intro {
  padding-top: clamp(24px, 4vh, 48px);
}

.landing-intro h1 {
  max-width: 760px;
  font-size: clamp(46px, 4.65vw, 76px);
  font-weight: 830;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.landing-intro h1 span {
  color: transparent;
  background: linear-gradient(92deg, var(--violet) 2%, var(--blue) 52%, var(--cyan) 98%);
  background-clip: text;
  -webkit-background-clip: text;
}

.landing-intro p {
  max-width: 530px;
  margin-top: clamp(14px, 2vh, 22px);
  color: var(--muted);
  font-size: clamp(14px, 1.08vw, 17px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.landing-preview {
  position: relative;
  align-self: end;
  display: grid;
  place-items: end center;
  width: min(100%, 650px);
  min-height: 230px;
  height: clamp(240px, 39vh, 390px);
  margin-top: clamp(14px, 2.5vh, 28px);
  pointer-events: none;
}

.landing-preview-glow {
  position: absolute;
  left: 50%;
  bottom: -20%;
  width: 72%;
  height: 62%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83, 98, 255, 0.25), rgba(38, 211, 232, 0.06) 44%, transparent 72%);
  filter: blur(35px);
  transform: translateX(-50%);
}

.landing-phone,
.landing-preview-card {
  position: absolute;
  bottom: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #050608;
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.58);
}

.landing-phone img,
.landing-preview-card img {
  display: block;
  width: 100%;
  height: auto;
}

.landing-phone {
  z-index: 3;
  left: 50%;
  width: clamp(145px, 11.2vw, 184px);
  border-radius: clamp(22px, 2vw, 30px);
  transform: translateX(-50%);
}

.landing-preview-card {
  z-index: 1;
  bottom: 5%;
  width: clamp(104px, 8.7vw, 140px);
  border-radius: clamp(18px, 1.7vw, 25px);
  opacity: 0.72;
}

.landing-preview-card-left {
  left: calc(50% - clamp(142px, 11.2vw, 185px));
  transform: translateY(8%) rotate(-6deg);
}

.landing-preview-card-right {
  right: calc(50% - clamp(142px, 11.2vw, 185px));
  transform: translateY(10%) rotate(6deg);
}

.landing-access {
  display: grid;
  grid-template-rows: auto 1fr;
  padding-left: clamp(34px, 5vw, 84px);
}

.landing-beta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(13, 16, 28, 0.72);
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 650;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.landing-beta > span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.landing-beta strong {
  color: var(--text);
  font-weight: 800;
}

.landing-beta i {
  color: var(--faint);
  font-style: normal;
}

.landing-beta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(53, 229, 141, 0.62);
}

.landing-access-panel {
  align-self: center;
  justify-self: center;
  width: min(100%, 470px);
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(18, 22, 38, 0.86), rgba(8, 10, 19, 0.9));
  box-shadow:
    0 36px 90px -45px rgba(0, 0, 0, 0.92),
    inset 0 1px rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

.landing-eyebrow {
  margin-bottom: 12px;
  color: #a89aff !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.13em !important;
  text-transform: uppercase;
}

.landing-access-copy h2 {
  font-size: clamp(30px, 2.3vw, 40px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.landing-access-copy > p:last-child {
  margin-top: 15px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.landing-waitlist {
  margin-top: 27px;
}

.landing-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.landing-form-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 58px;
  padding: 5px;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  background: rgba(3, 5, 11, 0.76);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.landing-form-shell:focus-within {
  border-color: rgba(75, 166, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(47, 140, 255, 0.12);
}

.landing-form-shell input {
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0 13px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.landing-form-shell input::placeholder {
  color: #8d92a3;
  opacity: 1;
}

.landing-form-shell button {
  min-width: 130px;
  height: 46px;
  padding: 0 17px;
  border-radius: 11px;
  background: linear-gradient(100deg, #735df3, #397dff 58%, #20bfd5);
  box-shadow: 0 13px 32px -18px rgba(47, 140, 255, 0.85);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms var(--ease), filter 180ms var(--ease), opacity 180ms var(--ease);
}

.landing-form-shell button:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.landing-form-shell button:disabled {
  cursor: default;
  opacity: 0.58;
  transform: none;
}

.landing-form-note {
  min-height: 17px;
  margin: 9px 2px 0;
  color: var(--faint);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
  transition: color 180ms var(--ease);
}

.landing-waitlist[data-state="success"] .landing-form-note {
  color: var(--green);
}

.landing-waitlist[data-state="error"] .landing-form-note {
  color: var(--danger);
}

.landing-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 21px 0;
  color: var(--faint);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.landing-divider::before,
.landing-divider::after {
  height: 1px;
  flex: 1;
  content: "";
  background: var(--line);
}

.landing-app-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  transition: border-color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

.landing-app-button:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.065);
  transform: translateY(-1px);
}

.landing-wordmark:focus-visible,
.landing-footer a:focus-visible,
.landing-app-button:focus-visible,
.landing-form-shell button:focus-visible {
  outline: 3px solid rgba(47, 140, 255, 0.72);
  outline-offset: 4px;
}

.landing-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100%, 1480px);
  min-height: 46px;
  margin: 12px auto 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 11px;
  font-weight: 600;
}

.landing-footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(14px, 1.8vw, 28px);
}

.landing-footer a {
  transition: color 160ms var(--ease);
}

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

.landing-footer > p {
  flex: 0 0 auto;
  text-align: right;
}

@media (max-width: 1100px) {
  .landing-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.88fr);
  }

  .landing-product {
    padding-right: 34px;
  }

  .landing-access {
    padding-left: 34px;
  }

  .landing-intro h1 {
    font-size: clamp(43px, 5vw, 60px);
  }

  .landing-access-panel {
    padding: 28px;
  }
}

@media (max-width: 767px) {
  html,
  body {
    min-height: 100%;
  }

  .landing-shell {
    display: block;
    min-height: 100svh;
    padding:
      max(20px, env(safe-area-inset-top))
      max(20px, env(safe-area-inset-right))
      max(22px, env(safe-area-inset-bottom))
      max(20px, env(safe-area-inset-left));
    overflow: hidden visible;
  }

  .landing-grid {
    display: block;
    width: min(100%, 560px);
  }

  .landing-product {
    display: block;
    padding: 0;
    border: 0;
  }

  .landing-wordmark {
    font-size: 25px;
  }

  .landing-wordmark img {
    width: 29px;
    height: 29px;
  }

  .landing-intro {
    padding-top: 38px;
  }

  .landing-intro h1 {
    font-size: clamp(40px, 12.5vw, 58px);
    line-height: 1;
  }

  .landing-intro p {
    margin-top: 17px;
    font-size: 14px;
  }

  .landing-preview {
    width: 100%;
    height: clamp(330px, 105vw, 445px);
    margin-top: 22px;
  }

  .landing-phone {
    bottom: 0;
    width: clamp(158px, 47vw, 206px);
  }

  .landing-preview-card {
    bottom: 2%;
    width: clamp(105px, 31vw, 137px);
    opacity: 0.62;
  }

  .landing-preview-card-left {
    left: calc(50% - clamp(132px, 38vw, 174px));
  }

  .landing-preview-card-right {
    right: calc(50% - clamp(132px, 38vw, 174px));
  }

  .landing-access {
    display: flex;
    flex-direction: column;
    padding: 58px 0 0;
  }

  .landing-beta {
    align-self: flex-start;
    order: 0;
  }

  .landing-access-panel {
    order: 1;
    width: 100%;
    margin-top: 18px;
    padding: clamp(24px, 7vw, 34px);
    border-radius: 24px;
  }

  .landing-access-copy h2 {
    font-size: clamp(31px, 9vw, 40px);
  }

  .landing-footer {
    align-items: flex-start;
    flex-direction: column;
    width: min(100%, 560px);
    margin-top: 42px;
    padding-top: 22px;
    gap: 22px;
  }

  .landing-footer-links {
    gap: 14px 22px;
  }

  .landing-footer > p {
    text-align: left;
  }
}

@media (max-width: 380px) {
  .landing-shell {
    padding-inline:
      max(16px, env(safe-area-inset-left))
      max(16px, env(safe-area-inset-right));
  }

  .landing-intro h1 {
    font-size: 39px;
  }

  .landing-preview {
    height: 350px;
  }

  .landing-preview-card {
    display: none;
  }

  .landing-form-shell {
    display: block;
    padding: 6px;
  }

  .landing-form-shell input,
  .landing-form-shell button {
    width: 100%;
  }

  .landing-form-shell input {
    height: 48px;
  }

  .landing-form-shell button {
    min-width: 0;
  }
}

@media (min-width: 768px) and (max-height: 760px) {
  .landing-shell {
    padding-top: 16px;
    padding-bottom: 12px;
  }

  .landing-intro {
    padding-top: 18px;
  }

  .landing-intro h1 {
    font-size: clamp(40px, 4.5vw, 58px);
  }

  .landing-intro p {
    margin-top: 11px;
    font-size: 13px;
  }

  .landing-preview {
    height: clamp(220px, 34vh, 280px);
    margin-top: 8px;
  }

  .landing-phone {
    width: clamp(128px, 10vw, 148px);
  }

  .landing-preview-card {
    width: clamp(94px, 7.7vw, 112px);
  }

  .landing-access-panel {
    padding: 25px;
  }

  .landing-access-copy h2 {
    font-size: 31px;
  }

  .landing-waitlist {
    margin-top: 19px;
  }

  .landing-divider {
    margin-block: 14px;
  }

  .landing-footer {
    min-height: 38px;
    margin-top: 7px;
    padding-top: 10px;
  }
}

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

@media (prefers-contrast: more) {
  .landing-access-panel,
  .landing-beta,
  .landing-form-shell,
  .landing-app-button {
    border-color: rgba(255, 255, 255, 0.34);
    background: #0d101b;
  }

  .landing-form-note,
  .landing-footer,
  .landing-access-copy > p:last-child {
    color: #c4c7d2;
  }
}
