:root {
  color-scheme: light dark;
  --bg: #f8f8fa;
  --bg-deep: #eeeeF3;
  --ink: #18181a;
  --muted: #6e6e73;
  --accent: #087ff5;
  --accent-2: #7357ff;
  --line: rgba(0, 0, 0, .09);
  --card: rgba(255, 255, 255, .84);
  --card-solid: #fff;
  --shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 14px 38px rgba(34, 34, 54, .08);
  --shadow-lift: 0 2px 5px rgba(0, 0, 0, .06), 0 24px 54px rgba(34, 34, 54, .13);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #121214;
    --bg-deep: #09090b;
    --ink: #f4f4f6;
    --muted: #9a9aa1;
    --accent: #409cff;
    --accent-2: #9a85ff;
    --line: rgba(255, 255, 255, .1);
    --card: rgba(28, 28, 32, .82);
    --card-solid: #1c1c20;
    --shadow: 0 1px 2px rgba(0, 0, 0, .55), 0 14px 38px rgba(0, 0, 0, .34);
    --shadow-lift: 0 2px 6px rgba(0, 0, 0, .6), 0 24px 54px rgba(0, 0, 0, .48);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -12rem, color-mix(in srgb, var(--accent) 14%, transparent), transparent 35rem),
    linear-gradient(180deg, var(--bg), var(--bg-deep)) fixed;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 8px; }
img { display: block; max-width: 100%; }
.wrap { width: min(100% - 48px, 980px); margin-inline: auto; }
.narrow { width: min(100% - 48px, 760px); margin-inline: auto; }
h1, h2, h3 { margin: 0; line-height: 1.1; letter-spacing: -.025em; text-wrap: balance; }
.eyebrow { margin: 0 0 20px; color: var(--muted); font-size: 13px; letter-spacing: .13em; text-transform: uppercase; }

.site-header { padding: 98px 0 18px; text-align: center; }
.site-header h1 { max-width: 800px; margin: 0 auto 20px; font-size: clamp(42px, 7vw, 68px); font-weight: 650; }
.lede { max-width: 37rem; margin: 0 auto; color: var(--muted); font-size: clamp(18px, 2.25vw, 22px); text-wrap: pretty; }

.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin: 58px 0 26px; padding: 0; list-style: none; }
.product-grid > li { display: flex; }
.product {
  position: relative;
  display: flex;
  flex: 1;
  min-height: 300px;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  overflow: hidden;
  padding: 30px 24px 24px;
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: 22px;
  background: #fdfdfe;
  box-shadow: var(--shadow);
  color: #1d1d1f;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 10%, rgba(77, 137, 255, .09), transparent 45%);
  content: "";
  pointer-events: none;
}
a.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); text-decoration: none; }
.product img { z-index: 1; width: 112px; height: 112px; object-fit: contain; }
.product .name { z-index: 1; margin-top: 14px; font-size: 22px; font-weight: 620; }
.product .verb { z-index: 1; color: #0a84ff; font-size: 12px; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; }
.product .what { z-index: 1; max-width: 23rem; color: #6e6e73; font-size: 14.5px; line-height: 1.45; text-wrap: pretty; }
.product .tag { z-index: 1; margin-top: auto; padding: 3px 10px; border: 1px solid rgba(0, 0, 0, .12); border-radius: 100px; color: #6e6e73; font-size: 11.5px; letter-spacing: .04em; text-transform: uppercase; }
.product.live { grid-column: 1 / -1; min-height: 350px; }
.product.live img { width: 138px; height: 138px; }
.product.live .name { font-size: 27px; }
.product.live .tag { border-color: transparent; background: #0a84ff; color: #fff; }
.product.soon img { opacity: .88; filter: saturate(.8); }

.note { max-width: 36rem; margin: 0 auto 78px; color: var(--muted); font-size: 14px; text-align: center; }
.promise { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding: 48px 0 92px; border-top: 1px solid var(--line); }
.promise h3 { margin-bottom: 7px; font-size: 16px; font-weight: 620; }
.promise p { margin: 0; color: var(--muted); font-size: 14.5px; text-wrap: pretty; }

.back { display: inline-block; padding-top: 28px; color: var(--muted); font-size: 14px; }
.back:hover { color: var(--accent); }
.product-header { padding: 42px 0 12px; text-align: center; }
.hero-icon { width: 142px; height: 142px; margin: 0 auto; filter: drop-shadow(0 15px 30px rgba(0, 0, 0, .24)); }
.product-header h1 { margin: 22px 0 15px; font-size: clamp(42px, 7vw, 58px); font-weight: 650; }
.product-header .lede { max-width: 36rem; margin-bottom: 30px; }
.actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.button { display: inline-block; padding: 12px 22px; border: 1px solid transparent; border-radius: 12px; background: var(--accent); color: #fff; font-size: 16px; font-weight: 600; }
.button:hover { filter: brightness(1.06); text-decoration: none; }
.button.secondary { border-color: var(--line); background: var(--card-solid); box-shadow: var(--shadow); color: var(--ink); }
.terms { margin: 16px auto 0; color: var(--muted); font-size: 13.5px; text-align: center; }

.wave-window {
  position: relative;
  overflow: hidden;
  margin: 54px 0 0;
  padding: 20px 18px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #111216;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
  color: #d6dae2;
  font: 500 12px/1.7 ui-monospace, "SFMono-Regular", Menlo, monospace;
}
.window-bar { display: flex; align-items: center; gap: 7px; margin-bottom: 17px; }
.window-dot { width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; }
.window-dot:nth-child(2) { background: #febc2e; }
.window-dot:nth-child(3) { background: #28c840; }
.window-title { margin: 0 auto; padding-right: 44px; color: #777d89; font: 500 11px -apple-system, BlinkMacSystemFont, sans-serif; }
.track-row { display: grid; grid-template-columns: 34px repeat(4, 1fr); gap: 14px; padding: 2px 10px; border-radius: 5px; white-space: nowrap; }
.track-row span:first-child { color: #606774; }
.track-row span:not(:first-child) { color: #7cb5ff; }
.track-row span:nth-child(3n) { color: #d88dff; }
.track-row.active { background: rgba(49, 140, 255, .2); }
.track-row.active span:first-child { color: #fff; }

.batch-window { margin-top: 54px; padding: 20px 18px 18px; border: 1px solid var(--line); border-radius: 20px; background: #17191d; box-shadow: 0 24px 70px rgba(0, 0, 0, .28); color: #d6dae2; }
.batch-wave { display: grid; grid-template-columns: 62px 1fr; align-items: center; gap: 12px; margin: 12px 4px; font-size: 11px; }
.batch-wave b { color: #8a909b; font-weight: 600; }
.wave-line { display: block; height: 46px; border-radius: 6px; background-color: #22262c; background-size: 24px 100%; }
.wave-line.original { background-image: linear-gradient(90deg, transparent 45%, #8f98a7 45%, #8f98a7 55%, transparent 55%); }
.wave-line.after { background-image: linear-gradient(90deg, transparent 38%, #35d784 38%, #35d784 62%, transparent 62%); }
.batch-steps { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 9px; margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.08); }
.batch-steps span { padding: 6px 10px; border: 1px solid rgba(255,255,255,.1); border-radius: 8px; background: #262a31; font-size: 12px; }
.batch-steps i { color: #69717e; font-style: normal; }
.privacy-copy { color: var(--muted); }
.privacy-copy p { text-wrap: pretty; }

section.detail { padding-top: 68px; }
section.detail h2 { margin-bottom: 26px; font-size: 28px; font-weight: 630; }
.features { display: grid; gap: 18px; }
.features article { padding: 23px 24px; border: 1px solid var(--line); border-radius: 17px; background: var(--card); box-shadow: var(--shadow); backdrop-filter: blur(20px); }
.features h3 { margin-bottom: 6px; font-size: 17px; font-weight: 620; }
.features p { margin: 0; color: var(--muted); font-size: 15.5px; text-wrap: pretty; }
.features b { color: var(--ink); font-weight: 590; }
.specs { display: grid; gap: 0; margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.specs li { display: flex; justify-content: space-between; gap: 24px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15.5px; }
.specs span:first-child { color: var(--muted); }
.specs span:last-child { text-align: right; }

footer { margin-top: 88px; padding: 52px 0 64px; border-top: 1px solid var(--line); text-align: center; }
footer p { margin: 0; }
footer .invite { margin-bottom: 22px; color: var(--ink); font-size: 15px; }
footer .sibling { margin-bottom: 30px; color: var(--muted); font-size: 15px; }
footer .colophon { color: var(--muted); font-size: 14.5px; line-height: 1.7; }
footer .colophon a { color: var(--muted); text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 2px; }

@media (max-width: 700px) {
  .wrap, .narrow { width: min(100% - 32px, 760px); }
  .site-header { padding-top: 74px; }
  .product-grid { grid-template-columns: 1fr; margin-top: 44px; }
  .product.live { grid-column: auto; }
  .promise { grid-template-columns: 1fr; gap: 26px; }
  .track-row { grid-template-columns: 30px repeat(2, 1fr); gap: 9px; }
  .track-row span:nth-last-child(-n+2) { display: none; }
  .batch-steps i { transform: rotate(90deg); }
  .specs li { display: grid; gap: 2px; }
  .specs span:last-child { text-align: left; }
}

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