:root {
  --ink: #101114;
  --paper: #f7f3ea;
  --muted: #6d6a61;
  --lime: #c9ff3d;
  --tomato: #ff4d38;
  --aqua: #46e6c7;
  --grape: #6f4bff;
  --black: #090a0d;
  --white: #fffdf8;
  --line: rgba(16, 17, 20, 0.14);
  --shadow: 0 24px 70px rgba(9, 10, 13, 0.22);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--ink);
  scroll-padding-top: 6rem;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 8% 18%, rgba(201, 255, 61, 0.30), transparent 22rem),
    radial-gradient(circle at 88% 10%, rgba(70, 230, 199, 0.22), transparent 24rem),
    linear-gradient(180deg, #111216 0%, #22211d 48%, var(--paper) 48%);
  color: var(--ink);
  overflow-x: hidden;
}

body::selection {
  background: var(--lime);
  color: var(--black);
}

#deal-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.48;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 38%, rgba(0, 0, 0, 0.35) 54%, #000 72%);
  mask-image: linear-gradient(90deg, transparent 0%, transparent 38%, rgba(0, 0, 0, 0.35) 54%, #000 72%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(0.9rem, 2vw, 1.4rem) clamp(1rem, 4vw, 3.5rem);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
  text-decoration: none;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border: 2px solid rgba(255, 253, 248, 0.78);
  border-radius: 50%;
  background: var(--lime);
  color: var(--black);
  transform: rotate(-9deg);
  box-shadow: 0 10px 30px rgba(201, 255, 61, 0.24);
}

.language-switcher {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.3rem;
  border: 1px solid rgba(255, 253, 248, 0.20);
  border-radius: 999px;
  background: rgba(9, 10, 13, 0.35);
  backdrop-filter: blur(18px);
}

.lang-button {
  min-width: 2.55rem;
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 0.6rem;
  background: transparent;
  color: rgba(255, 253, 248, 0.72);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
}

.lang-button.is-active {
  background: var(--white);
  color: var(--black);
}

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

#top,
section[id] {
  scroll-margin-top: 6rem;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.72fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(7rem, 11vw, 9rem) clamp(1rem, 6vw, 6rem) clamp(3rem, 6vw, 4rem);
  color: var(--white);
}

.hero-copy {
  min-width: 0;
  max-width: 54rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--lime);
  font-size: clamp(0.76rem, 1vw, 0.95rem);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: 7rem;
  line-height: 0.82;
  font-weight: 1000;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-text {
  max-width: 44rem;
  margin: 1.6rem 0 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.primary-action,
.secondary-action,
.waitlist-form button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.25rem;
  font-weight: 950;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.primary-action {
  background: var(--lime);
  color: var(--black);
  box-shadow: 0 18px 50px rgba(201, 255, 61, 0.28);
}

.secondary-action {
  border: 1px solid rgba(255, 253, 248, 0.24);
  background: rgba(255, 253, 248, 0.09);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.primary-action:hover,
.secondary-action:hover,
.waitlist-form button:hover {
  transform: translateY(-2px);
}

.deal-orbit {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: clamp(21.5rem, 52vh, 25rem);
  align-content: center;
  gap: 0.75rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(7.15rem, auto));
  transform: translateY(-0.75rem);
}

.deal-card {
  position: relative;
  min-width: 0;
  width: min(100%, 15.5rem);
  min-height: 7.35rem;
  padding: 0.95rem;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 1.4rem;
  background: rgba(255, 253, 248, 0.12);
  color: var(--white);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.deal-card span,
.deal-card small {
  display: block;
  color: rgba(255, 253, 248, 0.72);
  font-weight: 800;
}

.deal-card strong {
  display: block;
  margin: 0.68rem 0 0.54rem;
  color: var(--lime);
  font-size: clamp(1.9rem, 3.1vw, 3rem);
  line-height: 0.9;
  overflow-wrap: anywhere;
}

.card-one {
  z-index: 3;
  grid-column: 1 / 3;
  grid-row: 1;
  justify-self: start;
  transform: rotate(-6deg);
}

.card-two {
  z-index: 2;
  grid-column: 3 / 5;
  grid-row: 2;
  justify-self: end;
  transform: rotate(5deg);
}

.card-three {
  z-index: 1;
  grid-column: 1 / 3;
  grid-row: 3;
  justify-self: center;
  transform: rotate(-2deg);
}

.ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid rgba(255, 253, 248, 0.18);
  background: rgba(9, 10, 13, 0.86);
  color: var(--white);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  padding: 0.95rem 0;
  animation: ticker 28s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8rem;
  border: 1px solid rgba(255, 253, 248, 0.15);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  color: rgba(255, 253, 248, 0.80);
  font-weight: 900;
}

.feature-band,
.product-band,
.waitlist-band {
  background: var(--paper);
}

.feature-band {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 6vw, 6rem);
}

.section-heading {
  max-width: 54rem;
}

.feature-band .eyebrow,
.product-band .eyebrow,
.waitlist-band .eyebrow {
  color: var(--tomato);
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: 4.8rem;
  line-height: 0.94;
  font-weight: 1000;
  letter-spacing: 0;
  text-wrap: balance;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.feature-card {
  min-height: 17rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  padding: 1.4rem;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(16, 17, 20, 0.08);
}

.feature-number {
  color: var(--tomato);
  font-weight: 1000;
}

h3 {
  margin: 3.3rem 0 0.8rem;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1;
}

.feature-card p,
.product-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.product-band {
  display: grid;
  grid-template-columns: minmax(17rem, 0.62fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 6vw, 6rem);
}

.phone-shell {
  position: relative;
  width: min(100%, 23rem);
  min-height: 34rem;
  justify-self: center;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 3rem;
  background: var(--black);
  padding: 0.7rem;
  box-shadow:
    0 32px 90px rgba(16, 17, 20, 0.28),
    inset 0 0 0 1px rgba(255, 253, 248, 0.10);
  overflow: hidden;
  transform: rotate(-2deg);
}

.phone-shell::after {
  position: absolute;
  inset: 0.7rem;
  content: "";
  border-radius: 2.35rem;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(9, 10, 13, 0.10);
}

.dynamic-island {
  position: absolute;
  top: 1.15rem;
  left: 50%;
  z-index: 3;
  width: 6.5rem;
  height: 1.55rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #08090b;
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.08);
}

.app-screen {
  display: flex;
  min-height: 32.6rem;
  flex-direction: column;
  gap: 0.85rem;
  border-radius: 2.35rem;
  padding: 3.35rem 1rem 1rem;
  background:
    radial-gradient(circle at 20% 12%, rgba(201, 255, 61, 0.34), transparent 11rem),
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(247, 243, 234, 0.98)),
    var(--white);
}

.app-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 1000;
}

.app-status strong {
  border-radius: 999px;
  background: var(--lime);
  padding: 0.4rem 0.7rem;
  color: var(--black);
}

.app-search {
  display: grid;
  gap: 0.18rem;
  min-height: 4rem;
  border: 2px solid var(--black);
  border-radius: 1.4rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 253, 248, 0.82);
  color: var(--muted);
}

.app-search span {
  font-size: 0.72rem;
  font-weight: 900;
}

.app-search strong {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 1000;
}

.app-row {
  display: grid;
  min-height: 5.35rem;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "title price"
    "meta price";
  gap: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  padding: 1rem;
  background: var(--paper);
  font-weight: 900;
}

.app-row span {
  grid-area: title;
  color: var(--ink);
  font-size: 1.04rem;
}

.app-row strong {
  grid-area: price;
  color: var(--tomato);
  font-size: 1.15rem;
  white-space: nowrap;
}

.app-row small {
  grid-area: meta;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.app-row.hot {
  background: var(--lime);
}

.product-copy {
  max-width: 44rem;
}

.product-copy p {
  margin-top: 1.2rem;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.waitlist-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 28rem);
  gap: 1.5rem;
  align-content: start;
  align-items: start;
  min-height: 120vh;
  padding: clamp(8rem, 12vw, 10rem) clamp(1rem, 6vw, 6rem) clamp(4rem, 8vw, 7rem);
}

.waitlist-copy {
  max-width: 54rem;
}

.waitlist-form {
  display: grid;
  gap: 0.75rem;
}

.waitlist-form input {
  width: 100%;
  min-height: 3.35rem;
  border: 2px solid var(--black);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.waitlist-form button {
  border: 0;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font: inherit;
}

.form-note {
  min-height: 1.3rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.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;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
  }

  #deal-scene {
    opacity: 0.26;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.25) 32%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.25) 32%, #000 100%);
  }

  .hero {
    min-height: 100vh;
    grid-template-columns: 1fr;
    align-items: end;
  }

  h1 {
    max-width: 11ch;
    font-size: 5.2rem;
    line-height: 0.86;
  }

  h2 {
    font-size: 3.7rem;
  }

  .deal-orbit {
    min-height: auto;
    margin-top: 1.6rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
    transform: none;
  }

  .deal-card {
    width: 100%;
    min-height: 7.8rem;
  }

  .card-one {
    grid-column: 1;
    grid-row: 1;
    justify-self: stretch;
  }

  .card-two {
    grid-column: 2;
    grid-row: 1;
    justify-self: stretch;
  }

  .card-three {
    grid-column: 1 / 3;
    grid-row: 2;
    justify-self: center;
    width: min(100%, 16rem);
  }

  .feature-grid,
  .product-band,
  .waitlist-band {
    grid-template-columns: 1fr;
  }

  .product-band {
    padding-top: 4rem;
  }

  .product-copy {
    order: -1;
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.45rem;
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
    padding-inline: 0.85rem;
  }

  .brand {
    min-width: 0;
    flex: 0 1 auto;
    font-size: 1rem;
  }

  .brand-mark {
    width: 2.05rem;
    height: 2.05rem;
  }

  .language-switcher {
    flex: 0 0 auto;
    gap: 0.15rem;
    margin-right: -0.3rem;
    padding: 0.2rem;
    transform: scale(0.86);
    transform-origin: top right;
  }

  .lang-button {
    min-width: 2.1rem;
    padding: 0.48rem 0.38rem;
    font-size: 0.7rem;
  }

  .hero {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
    padding-inline: 0.85rem;
  }

  .hero-copy,
  .hero-text,
  .hero-actions,
  .deal-orbit {
    width: min(100%, 22rem);
    max-width: 22rem;
  }

  h1 {
    max-width: 9.2ch;
    font-size: 3.05rem;
    line-height: 0.95;
  }

  .hero-text {
    max-width: 100%;
    font-size: 1rem;
  }

  h2 {
    font-size: 2.55rem;
    line-height: 0.98;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .deal-card strong {
    font-size: 1.75rem;
  }

  .feature-band,
  .product-band,
  .waitlist-band {
    padding-inline: 0.85rem;
  }
}

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