:root {
  color-scheme: dark;
  --canvas: #050706;
  --surface: #111512;
  --surface-2: #171c18;
  --line: rgba(255, 255, 255, .11);
  --ink: #f7f7f2;
  --ink-2: #b6b9b3;
  --muted: #777d76;
  --green: #4bc83d;
  --blue: #12a9e8;
  --orange: #ff8a00;
}

* { box-sizing: border-box; }
html { background: var(--canvas); }
body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 88% 2%, rgba(75, 200, 61, .11), transparent 26rem),
    radial-gradient(circle at 5% 48%, rgba(18, 169, 232, .07), transparent 28rem),
    var(--canvas);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.page-glow {
  position: fixed;
  z-index: -1;
  inset: 0;
  opacity: .33;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 68%);
}
.site-header, main, footer { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.site-header {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 1.08rem; font-weight: 780; }
.brand img { border-radius: 12px; box-shadow: 0 0 32px rgba(75,200,61,.13); }
.quiet-link { color: var(--ink-2); font-size: .88rem; }
.quiet-link span { display: inline-block; margin-left: 7px; transition: transform .2s ease; }
.quiet-link:hover span { transform: translateX(4px); }
.launch-hero { max-width: 1000px; padding: 92px 0 66px; }
.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-2);
  font-size: .7rem;
  font-weight: 720;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow span { width: 28px; height: 1px; background: var(--green); box-shadow: 0 0 12px rgba(75,200,61,.7); }
h1, h2, p { margin-top: 0; }
h1 {
  max-width: 1040px;
  margin-bottom: 30px;
  font-size: clamp(3.8rem, 8.3vw, 7.9rem);
  line-height: .9;
  letter-spacing: -.075em;
}
h1 em { color: var(--green); font-style: normal; }
.lede { max-width: 760px; color: var(--ink-2); font-size: clamp(1.05rem, 1.6vw, 1.28rem); line-height: 1.65; }
.launch-total { margin-top: 38px; display: flex; align-items: baseline; gap: 14px; color: var(--muted); }
.launch-total strong { color: var(--ink); font-size: 2.15rem; letter-spacing: -.04em; }
.launch-total span { font-size: .88rem; }
.notice {
  margin: 0 0 20px;
  padding: 14px 17px;
  border: 1px solid rgba(242,201,76,.3);
  border-radius: 15px;
  background: rgba(242,201,76,.08);
  color: #f2d989;
}
.platform-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.platform-card {
  min-height: 560px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.045), transparent 40%), var(--surface);
}
.platform-card::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -125px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .13;
  pointer-events: none;
}
.ios-card::after { background: var(--green); }
.mac-card::after { background: var(--blue); }
.card-topline { display: flex; justify-content: space-between; color: var(--muted); font: 650 .67rem ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .12em; text-transform: uppercase; }
.device-mark {
  width: 78px;
  height: 78px;
  margin: 76px 0 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(75,200,61,.45);
  border-radius: 23px;
  color: var(--green);
  font-size: 2.2rem;
  background: rgba(75,200,61,.08);
  box-shadow: 0 0 50px rgba(75,200,61,.08);
}
.device-mark.laptop { border-color: rgba(18,169,232,.45); color: var(--blue); background: rgba(18,169,232,.08); box-shadow: 0 0 50px rgba(18,169,232,.08); }
.platform-name { margin-bottom: 8px; color: var(--muted); font-size: .75rem; font-weight: 760; letter-spacing: .13em; text-transform: uppercase; }
.platform-card h2 { margin-bottom: 15px; font-size: clamp(2.2rem, 4vw, 4.25rem); line-height: .98; letter-spacing: -.055em; }
.platform-card > p:not(.platform-name) { max-width: 520px; margin-bottom: 36px; color: var(--ink-2); line-height: 1.6; }
.claim-form { margin-top: auto; }
.claim-button {
  width: 100%;
  min-height: 58px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  border-radius: 16px;
  background: var(--green);
  color: #071008;
  cursor: pointer;
  font-weight: 790;
  transition: transform .2s ease, filter .2s ease;
}
.mac-card .claim-button { background: var(--blue); color: #041015; }
.claim-button:hover:not(:disabled) { transform: translateY(-2px); filter: brightness(1.1); }
.claim-button:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }
.claim-button:disabled { justify-content: center; color: var(--muted); background: #202520; cursor: not-allowed; }
.honey { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.how-it-works {
  margin-top: 22px;
  padding: 74px 42px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #0a0d0b;
}
.how-it-works h2 { margin-bottom: 0; font-size: clamp(2.4rem, 4.6vw, 5rem); line-height: .96; letter-spacing: -.06em; }
.how-it-works ol { margin: 0; padding: 0; list-style: none; }
.how-it-works li { padding: 20px 0; display: grid; grid-template-columns: 40px 1fr; gap: 16px; border-top: 1px solid var(--line); }
.how-it-works li > span { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--green); font-size: .76rem; font-weight: 760; }
.how-it-works li p { margin: 0; color: var(--ink-2); line-height: 1.55; }
.how-it-works li strong { color: var(--ink); }
.fine-print { max-width: 850px; margin: 28px auto 100px; color: var(--muted); text-align: center; font-size: .76rem; line-height: 1.6; }
footer { min-height: 96px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }
footer p { margin: 0; }
footer > a:last-child { justify-self: end; }
footer > a:last-child:hover { color: var(--green); }

@media (max-width: 780px) {
  .launch-hero { padding-top: 64px; }
  .platform-grid, .how-it-works { grid-template-columns: 1fr; }
  .how-it-works { gap: 44px; padding: 48px 28px; }
  .platform-card { min-height: 510px; }
  .device-mark { margin-top: 55px; }
}

@media (max-width: 520px) {
  .site-header, main, footer { width: min(100% - 28px, 1180px); }
  .site-header { height: 76px; }
  .quiet-link { font-size: 0; }
  .quiet-link span { font-size: 1rem; }
  .launch-hero { padding: 55px 0 48px; }
  h1 { font-size: clamp(3.3rem, 17vw, 5.2rem); }
  .platform-card { min-height: 500px; padding: 24px; border-radius: 24px; }
  .fine-print { margin-bottom: 70px; }
  footer { grid-template-columns: 1fr auto; }
  footer p { display: none; }
}

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


/* Exhausted state: always leave a way to buy. */
.claim-button-store {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: rgba(255, 255, 255, .06); color: #f7f7f2; border: 1px solid rgba(255, 255, 255, .18);
}
.claim-button-store:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .3); }
.launch-total.is-exhausted strong { font-size: 1.5rem; color: #b6b9b3; }
.launch-store { margin: 18px 0 0; }
.buy-anyway { margin: 34px 0 0; color: #b6b9b3; font-size: .9rem; }
.buy-anyway a { color: #4bc83d; font-weight: 700; }
