:root {
  --bg: #f7f7ef;
  --bg-soft: #fffef6;
  --ink: #13231a;
  --muted: #4b5a52;
  --line: rgba(19, 35, 26, 0.12);
  --brand: #0f9d8a;
  --brand-2: #f97316;
  --card: rgba(255, 255, 255, 0.78);
  --mono: 'IBM Plex Mono', monospace;
  --sans: 'Space Grotesk', sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(15, 157, 138, 0.14), transparent 30%),
    radial-gradient(circle at 90% 18%, rgba(249, 115, 22, 0.12), transparent 28%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
  min-height: 100vh;
  line-height: 1.5;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(0, 0, 0, 0.03) 0.6px, transparent 0.6px);
  background-size: 4px 4px;
  opacity: 0.3;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
  background: rgba(247, 247, 239, 0.8);
}

.brand {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
}

.brand-logo {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav {
  display: inline-flex;
  gap: 16px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

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

main {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.launch-status {
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  padding: 12px 14px;
}

.status-row {
  margin: 8px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-family: var(--mono);
}

.status-pill.pending {
  background: rgba(249, 115, 22, 0.14);
  color: #b45309;
  border: 1px solid rgba(249, 115, 22, 0.24);
}

.hero {
  padding: 70px 0 45px;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  margin: 0;
  color: var(--brand);
  letter-spacing: 0.08em;
  font-size: 12px;
  text-transform: uppercase;
  font-family: var(--mono);
}

h1 {
  margin: 10px 0 10px;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.05;
}

.hero-sub {
  color: var(--muted);
  max-width: 60ch;
}

.hero-typing {
  margin-top: 16px;
  min-height: 28px;
  display: flex;
  gap: 8px;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
}

.mono {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--brand);
}

.typed {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
}

.hero-cta {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 10px 14px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  padding: 8px 12px;
  font-size: 13px;
}

.btn-primary {
  color: white;
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand), #14b8a6);
  box-shadow: 0 10px 22px rgba(15, 157, 138, 0.24);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.btn[aria-disabled="true"] {
  opacity: 0.6;
  pointer-events: none;
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
}

.hero-proof {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-proof div {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  background: var(--card);
}

.hero-proof strong {
  display: block;
  font-size: 14px;
}

.hero-proof span {
  font-size: 12px;
  color: var(--muted);
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transform: rotate(-1.2deg);
}

.hero-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  font-family: var(--mono);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.25);
}

.hero-card-body {
  padding: 14px;
}

.selection {
  margin-top: 0;
  background: rgba(15, 157, 138, 0.1);
  border-left: 3px solid var(--brand);
  border-radius: 8px;
  padding: 10px;
  font-size: 14px;
}

.mini-btn {
  margin: 8px 0 10px;
  background: #13231a;
  color: #fff;
  border: 0;
  border-radius: 20px;
  padding: 8px 12px;
  font-family: var(--sans);
}

.mini-answer {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  font-size: 14px;
  background: #fff;
}

.section {
  padding: 40px 0;
}

.section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(24px, 4vw, 38px);
}

.mode-panel {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  padding: 14px;
}

.mode-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.mode-tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  padding: 7px 12px;
  font-family: var(--sans);
  cursor: pointer;
}

.mode-tab.active {
  background: #13231a;
  color: white;
}

.mode-content h3 {
  margin: 2px 0 6px;
}

.mode-content p {
  color: var(--muted);
}

.mode-content ul {
  margin: 10px 0 0;
  padding-left: 16px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

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

.compare-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  padding: 14px;
}

.compare-card label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
  font-family: var(--mono);
}

.compare-card input {
  width: 100%;
}

.compare-output {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.raw, .smart {
  border-radius: 10px;
  padding: 10px;
  border: 1px solid var(--line);
}

.raw {
  background: #fff;
  color: #5d6a63;
}

.smart {
  background: rgba(15, 157, 138, 0.1);
  border-color: rgba(15, 157, 138, 0.25);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  padding: 16px;
}

.price-card h3 {
  margin: 0;
}

.price {
  margin: 8px 0 0;
  font-size: 36px;
  font-weight: 700;
}

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

.price-card ul {
  margin: 12px 0;
  padding-left: 16px;
}

.featured {
  border-color: rgba(15, 157, 138, 0.5);
  box-shadow: 0 18px 34px rgba(15, 157, 138, 0.15);
}

.tag {
  margin: 0 0 8px;
  display: inline-block;
  background: rgba(15, 157, 138, 0.14);
  color: #0b6e62;
  border-radius: 999px;
  font-size: 11px;
  font-family: var(--mono);
  padding: 4px 8px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

details {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 10px;
  padding: 12px;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

details p {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer {
  width: min(1100px, 92vw);
  margin: 20px auto 30px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: inline-flex;
  gap: 10px;
}

.footer-links a {
  color: var(--ink);
}

.legal-main {
  width: min(860px, 92vw);
  margin: 40px auto;
}

.legal-hero {
  margin-bottom: 14px;
}

.legal-hero h1 {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: clamp(34px, 6vw, 58px);
}

.future-main {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.future-hero {
  padding: 58px 0 30px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
}

.future-sub {
  color: var(--muted);
  max-width: 60ch;
}

.future-stat-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.future-stat {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  padding: 10px;
}

.future-stat strong {
  display: block;
  font-size: 18px;
}

.future-stat span {
  font-size: 12px;
  color: var(--muted);
}

.future-preview {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  padding: 14px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.future-preview-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--brand-2);
  box-shadow: 0 0 0 rgba(249, 115, 22, 0.45);
  animation: pulseGlow 1.6s ease-in-out infinite;
}

.future-preview ul {
  margin: 8px 0 0;
  padding-left: 16px;
  color: var(--muted);
}

.future-kicker {
  margin-top: 12px;
  border: 1px dashed rgba(15, 157, 138, 0.34);
  border-radius: 10px;
  padding: 10px;
  font-size: 13px;
  background: rgba(15, 157, 138, 0.08);
}

.roadmap-controls {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.roadmap-filter {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 7px 12px;
  font-family: var(--sans);
  cursor: pointer;
}

.roadmap-filter.active {
  background: #13231a;
  color: #fff;
}

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

.roadmap-card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 12px;
  padding: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.25s ease;
}

.roadmap-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.roadmap-card.hidden {
  display: none;
}

.roadmap-card.reveal {
  opacity: 0;
  transform: translateY(10px);
}

.roadmap-card.reveal.seen {
  opacity: 1;
  transform: translateY(0);
}

.roadmap-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 11px;
  font-family: var(--mono);
  margin-bottom: 8px;
}

.roadmap-badge.done {
  background: rgba(15, 157, 138, 0.14);
  color: #0b6e62;
}

.roadmap-badge.next {
  background: rgba(249, 115, 22, 0.14);
  color: #b45309;
}

.roadmap-badge.tease {
  background: rgba(19, 35, 26, 0.12);
  color: #13231a;
}

.tease-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.tease-card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 12px;
  padding: 14px;
  position: relative;
  overflow: hidden;
}

.tease-card::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  top: -30px;
  right: -30px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 157, 138, 0.22), transparent 70%);
}

.tease-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.tease-lock {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}

.tease-hint {
  font-size: 13px;
  color: var(--muted);
}

.vote-btn {
  margin-top: 10px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
  padding: 8px 11px;
  font-weight: 600;
  cursor: pointer;
}

.vote-btn.voted {
  background: rgba(15, 157, 138, 0.12);
  border-color: rgba(15, 157, 138, 0.3);
  color: #0b6e62;
}

.future-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(249, 115, 22, 0); }
  100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

.legal-card {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
  padding: 22px;
}

.legal-card h2 {
  font-size: 29px;
  margin: 0 0 8px;
  line-height: 1.2;
}

.legal-card h2:not(:first-child) {
  margin-top: 18px;
}

.legal-card p,
.legal-card li {
  color: #263830;
  font-size: 18px;
  line-height: 1.7;
}

.legal-card ul {
  margin: 8px 0;
  padding-left: 24px;
}

.legal-footer {
  width: min(860px, 92vw);
}

@media (max-width: 720px) {
  .legal-card {
    padding: 16px;
  }

  .legal-card h2 {
    font-size: 24px;
  }

  .legal-card p,
  .legal-card li {
    font-size: 16px;
  }

  .nav.nav-legal {
    justify-content: flex-start;
    gap: 14px;
  }
}

@media (max-width: 940px) {
  .hero,
  .split,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .future-hero,
  .roadmap-grid,
  .tease-grid {
    grid-template-columns: 1fr;
  }

  .future-stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card {
    transform: none;
  }
}

@media (max-width: 720px) {
  .topbar {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .future-stat-grid {
    grid-template-columns: 1fr;
  }
}
