@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700;800&family=Libre+Baskerville:wght@400;700&display=swap');

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

:root {
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f7f4ee;
  --muted: rgba(247, 244, 238, 0.64);
  --dim: rgba(247, 244, 238, 0.44);
  --paper: #fbfaf3;
  --ink: #151518;
  --blue: #4e79ff;
  --red: #d85d57;
  --green: #65a47f;
  --gold: #d6c8a3;
}

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: linear-gradient(135deg, #111113 0%, #252628 48%, #151516 100%);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

.shell {
  width: min(1940px, calc(100% - 80px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.mark {
  position: relative;
  width: 46px;
  height: 30px;
  flex: 0 0 auto;
}

.mark span {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 2px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.32);
}

.mark span:nth-child(1) { left: 0; top: 0; background: var(--blue); }
.mark span:nth-child(2) { left: 15px; top: 0; background: var(--red); }
.mark span:nth-child(3) { left: 30px; top: 0; background: var(--green); }
.mark span:nth-child(4) { left: 15px; top: 15px; background: var(--gold); }

.brand-name {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.mode-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 2px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.25), 0 18px 44px rgba(0,0,0,0.22);
  color: rgba(255,255,255,0.74);
  font-size: 20px;
  font-weight: 800;
}

.mode {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  white-space: nowrap;
}

.mode.active {
  background: rgba(255,255,255,0.16);
  box-shadow: inset 0 0 0 2px rgba(78,121,255,0.46);
  color: var(--text);
}

.mode-dot {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.45);
  background: var(--paper);
  box-shadow: 0 1px 8px rgba(255,255,255,0.28);
}

.mode:last-child .mode-dot {
  background: #050505;
  border-color: rgba(255,255,255,0.28);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.nav-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 44px 0 82px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.nav-row::-webkit-scrollbar { display: none; }

.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 24px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-pill.active {
  background: rgba(255,255,255,0.14);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.hero-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 54px;
  align-items: stretch;
  min-height: 760px;
  padding: 76px;
  border: 2px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(0,0,0,0.92) 0%, rgba(10,10,11,0.9) 34%, rgba(46,47,49,0.95) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 32px 90px rgba(0,0,0,0.34);
}

.hero-copy,
.preview { position: relative; z-index: 1; }

h1 {
  max-width: 1120px;
  margin-bottom: 30px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 112px;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

.lede {
  max-width: 1180px;
  margin-bottom: 20px;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
}

.sublede {
  max-width: 1040px;
  color: var(--muted);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.button.primary {
  background: var(--paper);
  color: #151515;
  box-shadow: 0 16px 42px rgba(0,0,0,0.22);
}

.button.secondary {
  background: rgba(255,255,255,0.08);
  color: var(--text);
}

.button-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 5px;
  font-size: 13px;
  line-height: 1;
}

.install-pill {
  display: inline-flex;
  max-width: 100%;
  margin-top: 26px;
  padding: 14px 18px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.install-pill span {
  margin-right: 8px;
  color: var(--green);
}

.preview {
  align-self: end;
  display: grid;
  gap: 18px;
}

.paper-window,
.hello-card {
  min-height: 470px;
  padding: 30px;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: 28px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 40px 90px rgba(0,0,0,0.4);
  transform: rotate(2deg);
}

.window-bar,
.hello-card .bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 34px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.paper-window .dot:nth-child(1) { background: #d58a9c; }
.paper-window .dot:nth-child(2) { background: #89a2e8; }
.paper-window .dot:nth-child(3) { background: #8fb79c; }

.hello-card .dot:nth-child(1) { background: #4285f4; }
.hello-card .dot:nth-child(2) { background: #ea4335; }
.hello-card .dot:nth-child(3) { background: #fbbc05; }
.hello-card .dot:nth-child(4) { background: #34a853; }

.window-title {
  margin-left: auto;
  color: #aa5854;
  font-size: 22px;
  font-weight: 800;
}

.window-lines {
  display: grid;
  gap: 13px;
  margin-bottom: 38px;
}

.window-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(20,20,20,0.08);
}

.window-line:nth-child(1) { width: 78%; }
.window-line:nth-child(2) { width: 92%; }
.window-line:nth-child(3) { width: 64%; }

.window-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}

.window-tags span {
  padding: 7px 12px;
  border-radius: 999px;
  background: #f1e5e2;
  color: rgba(20,20,20,0.58);
  font-size: 13px;
  font-weight: 900;
}

.paper-window h2,
.hello-word {
  margin-bottom: 14px;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0;
}

.paper-window p,
.hello-card p {
  color: rgba(20,20,20,0.58);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.42;
}

.hello-word {
  font-size: 54px;
  font-weight: 900;
}

.hello-word span:nth-child(1),
.hello-word span:nth-child(5),
.hello-word span:nth-child(10) { color: #4285f4; }
.hello-word span:nth-child(2),
.hello-word span:nth-child(7),
.hello-word span:nth-child(11) { color: #ea4335; }
.hello-word span:nth-child(3),
.hello-word span:nth-child(8) { color: #fbbc05; }
.hello-word span:nth-child(4),
.hello-word span:nth-child(9) { color: #34a853; }

.mini-stats,
.receipt-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.mini-stat,
.receipt-chip {
  min-height: 82px;
  padding: 15px;
  border-radius: 18px;
  background: #f1eee7;
}

.receipt-chip {
  margin-top: 0;
  border: 2px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
}

.mini-stat strong,
.receipt-chip strong {
  display: block;
  margin-bottom: 7px;
  font-size: 28px;
  line-height: 1;
}

.receipt-chip strong { font-size: 17px; }

.mini-stat span,
.receipt-chip span {
  color: rgba(20,20,20,0.58);
  font-size: 13px;
  font-weight: 900;
}

.receipt-chip span { color: var(--muted); font-size: 14px; }

.section {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 82px 0;
}

.section-label {
  margin-bottom: 18px;
  color: var(--dim);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section h2 {
  max-width: 880px;
  margin-bottom: 18px;
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: 0;
}

.section p {
  max-width: 820px;
  color: var(--muted);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.55;
}

code {
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.92em;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.info-card {
  min-height: 174px;
  padding: 24px;
  border: 2px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.info-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: 0;
}

.info-card p {
  font-size: 16px;
  line-height: 1.5;
}

.state {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.done .state { color: var(--green); }
.waived .state { color: var(--blue); }
.blocked .state { color: var(--red); }

.steps {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-top: 30px;
}

.step {
  padding: 16px 18px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  font-size: 15px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.step span {
  display: block;
  margin-bottom: 5px;
  color: var(--dim);
  font-size: 13px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 32px 0 64px;
  border-top: 2px solid var(--line);
  color: var(--dim);
  font-size: 14px;
  font-weight: 700;
}

footer a { color: var(--muted); }

.launch-page .hero-card {
  grid-template-columns: 1fr;
}

.launch-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
  gap: 36px;
  align-items: stretch;
  min-height: 560px;
  padding: 68px;
  border: 2px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(110deg, rgba(0,0,0,0.92) 0%, rgba(17,18,19,0.94) 48%, rgba(50,51,54,0.95) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 32px 90px rgba(0,0,0,0.34);
}

.launch-hero h1 {
  max-width: 980px;
}

.launch-hero .lede {
  max-width: 980px;
  font-size: 42px;
}

.launch-hero .sublede {
  max-width: 960px;
}

.launch-receipt {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  padding: 28px;
  border: 2px solid rgba(255,255,255,0.13);
  border-radius: 24px;
  background: rgba(255,255,255,0.065);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.launch-receipt h2 {
  margin: 18px 0 28px;
  font-size: 32px;
  line-height: 1.08;
}

.launch-receipt dl {
  display: grid;
  gap: 18px;
}

.launch-receipt dt {
  margin-bottom: 5px;
  color: var(--dim);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.launch-receipt dd {
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.state.partial { color: var(--gold); }
.state.missing { color: var(--red); }
.state.ready { color: var(--green); }

.launch-view-list {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.launch-view-row {
  display: grid;
  grid-template-columns: minmax(140px, 0.3fr) minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 64px;
  padding: 14px 18px;
  border: 2px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
}

.launch-view-row.active {
  border-color: rgba(247,244,238,0.34);
  background: rgba(255,255,255,0.08);
}

.launch-view-row span,
.launch-view-row strong,
.launch-view-row em {
  min-width: 0;
}

.launch-view-row span {
  font-size: 16px;
  font-weight: 900;
}

.launch-view-row strong {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.launch-view-row em {
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .shell { width: min(100% - 48px, 1100px); padding-top: 28px; }
  header { align-items: flex-start; flex-direction: column; }
  .brand-name { font-size: 44px; }
  .nav-row { margin-bottom: 36px; }
  .nav-pill { font-size: 20px; }
  .hero-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 54px;
  }
  h1 { font-size: 82px; }
  .lede { font-size: 40px; }
  .sublede { font-size: 23px; }
  .preview { max-width: 560px; }
  .grid { grid-template-columns: 1fr; }
  .launch-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 54px;
  }
  .launch-receipt { min-height: 0; }
}

@media (max-width: 700px) {
  .shell { width: min(100% - 28px, 520px); }
  .brand-name { white-space: normal; }
  .mode-switch { width: 100%; justify-content: space-between; font-size: 14px; }
  .mode { padding: 0 12px; min-height: 38px; }
  .mode-dot { width: 16px; height: 16px; }
  .nav-row { gap: 6px; margin: 26px 0 22px; }
  .nav-pill { min-height: 44px; padding: 0 18px; font-size: 15px; }
  .hero-card { padding: 28px; border-radius: 22px; }
  h1 { margin-bottom: 18px; font-size: 48px; }
  .lede { margin-bottom: 16px; font-size: 30px; }
  .sublede { font-size: 16px; line-height: 1.34; }
  .tags { display: none; }
  .actions { margin-top: 24px; }
  .button { width: 100%; }
  .install-pill { border-radius: 18px; font-size: 14px; }
  .paper-window,
  .hello-card {
    min-height: 340px;
    padding: 22px;
    border-radius: 22px;
    transform: none;
  }
  .paper-window h2 { font-size: 30px; }
  .hello-word { font-size: 38px; }
  .paper-window p,
  .hello-card p { font-size: 16px; }
  .mini-stats,
  .receipt-strip { grid-template-columns: 1fr; }
  .section,
  footer { width: min(100% - 28px, 520px); }
  .section { padding: 58px 0; }
  .section h2 { font-size: 32px; }
  .section p { font-size: 16px; }
  .step { border-radius: 18px; }
  .launch-hero {
    padding: 28px;
    border-radius: 22px;
  }
  .launch-hero .lede { font-size: 28px; }
  .launch-receipt {
    padding: 22px;
    border-radius: 18px;
  }
  .launch-view-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
