@font-face {
  font-display: swap;
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/PlusJakartaSans-Regular.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 600;
  src: url("assets/fonts/PlusJakartaSans-SemiBold.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 700;
  src: url("assets/fonts/PlusJakartaSans-Bold.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 800;
  src: url("assets/fonts/PlusJakartaSans-ExtraBold.ttf") format("truetype");
}

:root {
  color-scheme: dark;
  --bg: #101014;
  --ink: #f7f7fc;
  --muted: #aeaabd;
  --dim: #6f6b7d;
  --panel: #19191f;
  --panel-2: #24242d;
  --panel-3: #2c2c35;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.15);
  --accent: #8b5cf6;
  --blue: #5f8dff;
  --mint: #43d6b5;
  --amber: #ffd44a;
  --danger: #ff5c7a;
  --max: 1180px;
  --radius: 24px;
  --radius-lg: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(95, 141, 255, 0.12), rgba(16, 16, 20, 0) 280px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.08), rgba(16, 16, 20, 0) 46%),
    var(--bg);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 70%);
  animation: roadGrid 24s linear infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: auto -10vw 0;
  z-index: -1;
  height: 36vh;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      112deg,
      transparent 0 58px,
      rgba(255, 255, 255, 0.04) 58px 59px,
      transparent 59px 132px
    );
  opacity: 0.55;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
p,
dl,
figure {
  margin-top: 0;
}

p {
  color: var(--muted);
}

.wrap {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(16, 16, 20, 0.98);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 40px, var(--max));
  min-height: 70px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
}

.brand-logo {
  width: 134px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--panel-2);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  color: #fff;
  box-shadow: 0 18px 38px rgba(95, 141, 255, 0.18);
}

.button.quiet {
  background: rgba(36, 36, 45, 0.72);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

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

.waitlist-form {
  max-width: 560px;
  margin-top: 30px;
}

.waitlist-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 6px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(25, 25, 31, 0.92);
}

.waitlist-fields input[type="email"] {
  min-width: 0;
  height: 48px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  padding: 0 16px;
}

.waitlist-fields input[type="email"]::placeholder {
  color: var(--dim);
}

.waitlist-fields input[type="email"]:focus-visible {
  box-shadow: inset 0 -2px 0 var(--mint);
}

.waitlist-fields .button {
  min-height: 48px;
  white-space: nowrap;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-note {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--dim);
  font-size: 0.86rem;
  font-weight: 700;
}

.form-note.success {
  color: var(--mint);
}

.form-note.error {
  color: var(--danger);
}

[data-reveal],
[data-tilt] {
  --base-rotate: 0deg;
  --lift: 0px;
  --reveal-y: 0px;
  --rx: 0deg;
  --ry: 0deg;
  transform: perspective(900px) rotateZ(var(--base-rotate)) rotateX(var(--rx)) rotateY(var(--ry)) translateY(calc(var(--lift) + var(--reveal-y)));
}

.motion-ready [data-reveal] {
  --reveal-y: 24px;
  opacity: 1;
  filter: none;
  transition:
    opacity 680ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 680ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0ms);
}

.motion-ready [data-reveal].is-visible {
  --reveal-y: 0px;
  opacity: 1;
  filter: blur(0);
}

.delay-80 {
  --delay: 80ms;
}

.delay-90 {
  --delay: 90ms;
}

.delay-100 {
  --delay: 100ms;
}

.delay-140 {
  --delay: 140ms;
}

.delay-160 {
  --delay: 160ms;
}

.delay-180 {
  --delay: 180ms;
}

.delay-200 {
  --delay: 200ms;
}

.delay-240 {
  --delay: 240ms;
}

.delay-270 {
  --delay: 270ms;
}

.delay-300 {
  --delay: 300ms;
}

.delay-320 {
  --delay: 320ms;
}

[data-tilt] {
  --mx: 50%;
  --my: 40%;
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
  will-change: transform;
}

[data-tilt]::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transition: opacity 220ms ease;
}

[data-tilt]:hover::after {
  opacity: 1;
}

.hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.82fr);
  gap: 56px;
  align-items: center;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 54px 0 48px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: 6.8rem;
  font-weight: 800;
  line-height: 0.91;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 4.7rem;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.17;
  letter-spacing: 0;
}

.lede,
.section-copy {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  margin: 52px 0 0;
  border-top: 1px solid var(--line);
}

.hero-stats div {
  min-width: 0;
  padding: 18px 18px 0 0;
}

.hero-stats div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.hero-stats dt,
.eyebrow,
.screen-copy span,
.receipt-row span,
.timeline span,
.plus-list span {
  color: var(--dim);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-stats dt {
  margin-bottom: 10px;
}

.hero-stats dd {
  margin: 0;
  color: var(--ink);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--mint);
}

.hero-media {
  position: relative;
  min-height: 650px;
}

.device-stack {
  position: absolute;
  inset: 0;
}

.phone-shot {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: #050507;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.phone-shot img,
.mini-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.phone-shot-primary {
  top: 4px;
  left: 50%;
  z-index: 3;
  width: 315px;
  aspect-ratio: 828 / 1800;
  transform: translateX(-50%);
}

.phone-shot-secondary {
  top: 82px;
  z-index: 1;
  width: 230px;
  aspect-ratio: 828 / 1800;
  opacity: 0.78;
}

.phone-shot-secondary.left {
  left: 0;
  --base-rotate: -5deg;
}

.phone-shot-secondary.right {
  right: 0;
  --base-rotate: 5deg;
}

.receipt-band {
  border-bottom: 1px solid var(--line);
  background: #141419;
  padding: 34px 0;
}

.receipt-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(520px, 1fr);
  gap: 34px;
  align-items: center;
}

.receipt-grid h2 {
  margin-bottom: 0;
  font-size: 2.15rem;
  line-height: 1.12;
}

.receipt-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--panel);
}

.receipt-row {
  min-width: 0;
  padding: 18px;
}

.receipt-row + .receipt-row {
  border-left: 1px solid var(--line);
}

.receipt-row strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.section {
  padding: 96px 0;
}

.section-ruled,
.plus-section {
  border-top: 1px solid var(--line);
}

.section-head {
  max-width: 900px;
  margin-bottom: 44px;
}

.screen-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 18px;
}

.screen-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 20px;
  align-content: space-between;
  min-height: 510px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 42%),
    var(--panel);
  padding: 18px;
}

.screen-card:hover {
  border-color: rgba(95, 141, 255, 0.36);
  background:
    linear-gradient(180deg, rgba(95, 141, 255, 0.07), transparent 44%),
    var(--panel);
}

.screen-card > * {
  position: relative;
  z-index: 1;
}

.screen-card.featured {
  grid-row: span 2;
  min-height: 680px;
  background:
    linear-gradient(180deg, rgba(139, 92, 246, 0.12), transparent 46%),
    var(--panel);
}

.screen-copy {
  padding: 6px 4px 0;
}

.screen-copy span {
  color: var(--mint);
}

.screen-copy h3 {
  max-width: 440px;
  margin-top: 16px;
  font-size: 1.75rem;
}

.screen-copy p {
  margin-bottom: 0;
}

.mini-phone {
  overflow: hidden;
  width: min(100%, 250px);
  height: 380px;
  margin: 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: #050507;
}

.featured .mini-phone {
  width: min(100%, 330px);
  height: 500px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1fr);
  gap: 64px;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 104px;
  margin-bottom: 0;
}

.timeline {
  border-top: 1px solid var(--line);
}

.timeline article {
  display: grid;
  grid-template-columns: 72px 1fr;
  column-gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.timeline article span {
  color: var(--blue);
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
}

.timeline article h3 {
  margin-bottom: 8px;
}

.timeline article p {
  grid-column: 2;
  margin-bottom: 0;
  max-width: 560px;
}

.plus-section {
  background: #141419;
}

.plus-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1fr);
  gap: 18px;
  align-items: stretch;
}

.plus-panel,
.plus-list {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
}

.plus-panel {
  padding: 34px;
}

.plus-panel .button {
  margin-top: 18px;
}

.plus-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.plus-list article {
  min-height: 190px;
  padding: 24px;
}

.plus-list article:nth-child(even) {
  border-left: 1px solid var(--line);
}

.plus-list article:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}

.plus-list span {
  color: var(--mint);
}

.plus-list strong {
  display: block;
  margin-top: 30px;
  color: var(--ink);
  font-size: 1.32rem;
  line-height: 1.28;
}

.final-cta {
  padding-top: 72px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid rgba(95, 141, 255, 0.32);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(139, 92, 246, 0.16), rgba(95, 141, 255, 0.08) 46%, rgba(67, 214, 181, 0.06)),
    var(--panel);
  padding: 36px;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 760px;
  font-size: 3.6rem;
}

.cta-panel p {
  max-width: 680px;
  margin-bottom: 0;
}

.cta-panel .waitlist-form {
  width: 100%;
  max-width: none;
  margin-top: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.policy {
  width: min(100% - 40px, 860px);
  margin: 0 auto;
  padding: 76px 0 96px;
}

.policy h1 {
  font-size: 5.4rem;
}

.policy h2 {
  margin-top: 44px;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.policy p,
.policy li {
  color: var(--muted);
}

.policy ul {
  padding-left: 22px;
}

.notice {
  margin: 32px 0;
  border-left: 4px solid var(--mint);
  background: var(--panel);
  padding: 18px 20px;
  color: var(--ink);
}

@keyframes roadGrid {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 0 64px, 64px 0;
  }
}

@media (max-width: 1120px) {
  h1 {
    font-size: 5.5rem;
  }

  h2 {
    font-size: 3.9rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.82fr);
    gap: 36px;
  }

  .hero-media {
    min-height: 560px;
  }

  .phone-shot-primary {
    width: 280px;
  }

  .phone-shot-secondary {
    top: 92px;
    width: 200px;
  }

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

  .screen-card.featured {
    grid-row: auto;
    grid-column: span 2;
    min-height: 560px;
  }

  .featured .mini-phone {
    height: 430px;
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .receipt-grid,
  .split,
  .plus-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-media {
    min-height: 500px;
  }

  .receipt-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .receipt-row:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .receipt-row:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .sticky-copy {
    position: static;
  }
}

@media (max-width: 700px) {
  .wrap,
  .hero-grid,
  .nav {
    width: min(100% - 32px, var(--max));
  }

  .nav-links a:not(.nav-cta):not(.primary) {
    display: none;
  }

  .nav-links {
    gap: 0;
  }

  .brand-logo {
    width: 118px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.78rem;
  }

  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 3rem;
  }

  .policy h1 {
    font-size: 3.6rem;
  }

  .lede,
  .section-copy {
    font-size: 1.06rem;
  }

  .hero-grid {
    gap: 20px;
    padding-top: 34px;
    padding-bottom: 24px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 14px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .waitlist-form {
    margin-top: 24px;
  }

  .waitlist-fields {
    grid-template-columns: 1fr;
    border-radius: var(--radius);
    padding: 10px;
  }

  .waitlist-fields input[type="email"] {
    height: 46px;
    text-align: center;
  }

  .waitlist-fields .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
  }

  .hero-stats div {
    padding-right: 10px;
  }

  .hero-stats div + div {
    padding-left: 10px;
  }

  .hero-stats dt {
    font-size: 0.62rem;
  }

  .hero-stats dd {
    font-size: 1.18rem;
  }

  .hero-media {
    min-height: 190px;
    margin-top: 0;
    overflow: hidden;
  }

  .phone-shot-primary {
    width: 182px;
  }

  .phone-shot-secondary {
    top: 60px;
    width: 132px;
  }

  .phone-shot-secondary.left {
    left: -16px;
  }

  .phone-shot-secondary.right {
    right: -16px;
  }

  .receipt-band {
    padding: 28px 0;
  }

  .receipt-grid {
    gap: 22px;
  }

  .receipt-grid h2 {
    font-size: 1.75rem;
  }

  .screen-grid,
  .plus-list {
    grid-template-columns: 1fr;
  }

  .screen-card,
  .screen-card.featured {
    grid-column: auto;
    min-height: auto;
  }

  .mini-phone,
  .featured .mini-phone {
    width: min(100%, 250px);
    height: 380px;
  }

  .timeline article {
    grid-template-columns: 48px 1fr;
    column-gap: 14px;
  }

  .timeline article p {
    grid-column: 1 / -1;
    margin-top: 6px;
  }

  .plus-list article:nth-child(even),
  .plus-list article:nth-child(n + 3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .plus-list article:first-child {
    border-top: 0;
  }

  .cta-panel {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-panel h2 {
    font-size: 2.7rem;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 3.28rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .receipt-panel {
    grid-template-columns: 1fr;
  }

  .receipt-row + .receipt-row,
  .receipt-row:nth-child(3),
  .receipt-row:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .motion-ready [data-reveal],
  .motion-ready [data-reveal].is-visible {
    --reveal-y: 0px;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .button:hover,
  .button:focus-visible,
  [data-tilt],
  [data-tilt]:hover {
    transform: none;
  }
}
