:root {
  --bg: #F7F5F1;
  --surface: #FFFFFF;
  --ink: #14120F;
  --ink-muted: #7A756C;
  --border: #DEDACF;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--ink); }
a:hover { color: var(--ink-muted); }

.page { width: 100%; }

.wordmark {
  display: flex;
  justify-content: center;
  padding: clamp(32px, 6vw, 48px) 24px 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
}

.headline {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.005em;
  margin: 0;
  text-wrap: pretty;
  font-size: clamp(2rem, 6vw, 3rem);
}

.headline.hero-size {
  font-size: clamp(2.5rem, 9vw, 4.25rem);
}

.section {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 88px) 24px;
}

.section.narrow { max-width: 560px; }
.section.center { text-align: center; }
.section.bordered { border-top: 1px solid var(--border); }

.picker {
  max-width: 600px;
  margin: 0 auto;
  padding: clamp(48px, 10vw, 96px) 24px clamp(40px, 7vw, 64px);
  text-align: center;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.chip {
  padding: 14px 22px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.chip.selected {
  background: var(--ink);
  color: var(--bg);
}

.change-link {
  margin: 20px 0 0;
  font-size: 12.5px;
}

.change-link a { text-decoration: underline; }

.lede {
  font-size: 17px;
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.6;
}

.lede.italic {
  font-style: italic;
  font-size: clamp(1.05rem, 3vw, 1.25rem);
}

.lede.muted { color: var(--ink-muted); }

.section .lede:not(.italic) { margin-bottom: 28px; }

.small-gap { margin-bottom: 36px !important; }

.section > .headline { margin-bottom: 20px; }
.section > .lede.italic { margin: 20px auto 44px; }

.quotes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 460px;
  margin: 0 auto;
}

.quotes p {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
}

.quotes p::before { content: '"'; }
.quotes p::after { content: '"'; }

@keyframes shake {
  0%   { transform: translateX(0) rotate(0deg); }
  15%  { transform: translateX(-2px) rotate(-0.4deg); }
  30%  { transform: translateX(2px) rotate(0.4deg); }
  45%  { transform: translateX(-1.5px) rotate(-0.2deg); }
  60%  { transform: translateX(1.5px) rotate(0.2deg); }
  75%  { transform: translateX(-0.8px) rotate(0deg); }
  100% { transform: translateX(0) rotate(0deg); }
}

.notif-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(20, 18, 15, 0.10);
  padding: 16px 18px;
  max-width: 380px;
  margin: 0 auto;
  text-align: left;
  animation: shake 0.6s ease-in-out both;
}

@media (prefers-reduced-motion: reduce) {
  .notif-card { animation: none; }
}

.notif-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.notif-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Anton', sans-serif;
  font-size: 13px;
}

.notif-app { font-size: 13px; font-weight: 700; }
.notif-time { font-size: 12px; color: var(--ink-muted); margin-left: auto; }

.notif-title { font-size: 13.5px; font-weight: 700; margin: 0 0 2px; line-height: 1.4; }
.notif-body { font-size: 12.5px; font-weight: 400; color: #3F3B35; margin: 0; line-height: 1.45; }

.notif-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

.notif-row .notif-card { width: 100%; max-width: 300px; }
.notif-row .notif-card:nth-child(2) { animation-delay: 0.25s; }

.reinforce {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0;
}

.framework {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 420px;
  margin: 40px auto 0;
  text-align: left;
}

.mono-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  margin: 0 0 4px;
}

.framework p:last-child { font-size: 16px; margin: 0; line-height: 1.5; }

.mono-strong {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin: 0;
}

.section .lede + .mono-strong { margin-top: 0; }

.pause {
  background: var(--ink);
  padding: clamp(72px, 12vw, 128px) 24px;
}

.pause p {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1.2rem, 3.4vw, 1.7rem);
  font-weight: 500;
  color: var(--bg);
  line-height: 1.55;
}

.waitlist-embed {
  max-width: 360px;
  margin: 36px auto 0;
  text-align: center;
}

.waitlist-embed iframe {
  margin-left: auto !important;
  margin-right: auto !important;
}

.phone-mockup {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.store-badge {
  padding: 12px 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--ink-muted);
}

.foot {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 24px clamp(48px, 8vw, 72px);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.foot-word {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.foot-domain {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-muted);
}
