:root {
  --bg: #0c0d12;
  --bg-2: #12141c;
  --text: #f2f3f7;
  --muted: #9aa3b5;
  --accent: #6d67ff;
  --accent-deep: #534fff;
  --ok: #3ecf8e;
  --border: rgb(255 255 255 / 0.09);
  --font: "Sora", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, Consolas, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  max-width: 100%;
}

code {
  font-family: var(--mono);
  font-size: 0.92em;
  color: var(--text);
}

.wrap {
  width: min(980px, calc(100% - 32px));
  margin-inline: auto;
}

.hero {
  position: relative;
  isolation: isolate;
  padding-bottom: 8px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(65% 50% at 85% 0%, rgb(83 79 255 / 0.28), transparent 55%),
    radial-gradient(40% 35% at 0% 100%, rgb(62 207 142 / 0.12), transparent 50%),
    linear-gradient(165deg, #10121a 0%, #0c0d12 60%, #141726 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.028) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 0 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.brand img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.nav-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 28px;
  align-items: center;
  padding: 36px 0 28px;
  min-height: min(520px, calc(100dvh - 100px));
}

.hero-copy-block {
  display: grid;
  gap: 12px;
  max-width: 30rem;
}

.eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-mark {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}

.hero-lead {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--text);
}

.hero-copy {
  margin: 0;
  max-width: 36ch;
  font-size: 1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 11px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.12s ease, border-color 0.15s ease;
}

.btn:hover {
  filter: brightness(1.06);
}

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

.btn-primary {
  background: var(--accent-deep);
  color: #fff;
  box-shadow: 0 10px 28px rgb(83 79 255 / 0.3);
}

.btn-secondary {
  background: rgb(255 255 255 / 0.04);
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

/* Live finds — interactive surface */
.live-card {
  background: #f4f5f7;
  color: #182122;
  border-radius: 16px;
  border: 1px solid #e4e7ea;
  box-shadow: 0 18px 48px rgb(0 0 0 / 0.35);
  overflow: hidden;
  min-height: 0;
}

.live-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px 10px;
  border-bottom: 1px solid #e6e9e9;
  background: #eef0f2;
}

.live-card-head h2 {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: #182122;
}

.live-card-head p {
  margin: 2px 0 0;
  font-size: 0.72rem;
  color: #5a6566;
}

.live-card .status-live {
  color: #2f9e44;
  font-size: 0.72rem;
}

.live-card .feed {
  list-style: none;
  margin: 0;
  padding: 4px 8px 6px;
  max-height: 280px;
  overflow: hidden;
}

.live-card .feed li {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto minmax(0, 0.95fr) auto;
  gap: 8px;
  align-items: center;
  padding: 10px 6px;
  border-bottom: 1px solid #e8ebec;
  font-size: 0.78rem;
  color: #182122;
  border-radius: 8px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.live-card .feed li:last-child {
  border-bottom: 0;
}

.live-card .feed li.is-new {
  background: color-mix(in srgb, #534fff 10%, transparent);
  transform: translateY(-2px);
  animation: find-in 0.45s ease;
}

@keyframes find-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.feed-nick {
  font-family: var(--mono);
  color: #5a6566;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feed-chain {
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  border: 1px solid #e0e4e4;
  background: #fff;
}

.feed-sum {
  font-family: var(--mono);
  font-weight: 700;
  color: #2f9e44;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.feed-ago {
  color: #7a8687;
  font-size: 0.68rem;
  text-align: right;
  min-width: 4rem;
}

.live-foot {
  margin: 0;
  padding: 8px 14px 12px;
  font-size: 0.72rem;
  color: #7a8687;
  border-top: 1px solid #e6e9e9;
}

.status-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0 rgb(47 158 68 / 0.45);
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 8px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

.strip {
  padding: 16px 0;
  border-block: 1px solid var(--border);
  background: var(--bg-2);
}

.strip-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.strip-row div {
  display: grid;
  gap: 2px;
}

.strip-row strong {
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.strip-row span {
  color: var(--muted);
  font-size: 0.78rem;
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--bg-2);
  border-block: 1px solid var(--border);
}

.section-narrow {
  max-width: 40rem;
}

.section-head {
  display: grid;
  gap: 10px;
  max-width: 36rem;
  margin-bottom: 28px;
}

.section h2,
.section-narrow h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 48ch;
}

.process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.process li {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.process-num {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  padding-top: 3px;
}

.process h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.process p {
  margin: 0;
  color: var(--muted);
  max-width: 48ch;
}

.chain-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chain-row li {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: rgb(255 255 255 / 0.03);
  letter-spacing: 0.04em;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 32px;
  align-items: start;
}

.fee-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 4px 0 0;
}

.fee-cell {
  display: grid;
  gap: 4px;
  padding: 18px 16px;
  border: 1px solid var(--border);
  background: rgb(255 255 255 / 0.03);
}

.fee-cell strong {
  font-size: 2rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.fee-cell span {
  color: var(--muted);
  font-size: 0.8rem;
}

.fee-cell.you strong {
  color: var(--ok);
}

.fee-cell.us strong {
  color: var(--accent);
}

.fee-note {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.start-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.start-steps li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.start-steps li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.start-steps > li > strong {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 22%, transparent);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.8rem;
}

.start-steps h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.start-steps p {
  margin: 0 0 8px;
  color: var(--muted);
  max-width: 48ch;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.text-link:hover {
  filter: brightness(1.15);
}

.faq {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.faq details {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  font-family: var(--mono);
  font-weight: 500;
}

.faq details[open] summary::after {
  content: "−";
}

.faq p {
  margin: 0 0 16px;
  color: var(--muted);
  max-width: 52ch;
}

.faq a {
  color: var(--accent);
  font-weight: 600;
}

.closing {
  padding: 72px 0 56px;
}

.closing-inner {
  display: grid;
  gap: 12px;
  max-width: 32rem;
}

.closing h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  letter-spacing: -0.035em;
}

.closing p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.site-footer {
  padding: 18px 0 28px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: var(--text);
}

.site-footer a:hover {
  color: var(--accent);
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal.delay-1 {
  transition-delay: 0.08s;
}
.reveal.delay-2 {
  transition-delay: 0.16s;
}
.reveal.delay-3 {
  transition-delay: 0.24s;
}

/* get page */
.get-page {
  min-height: 100dvh;
  padding-bottom: 40px;
}

.get-page .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.get-main {
  max-width: 34rem;
  padding: 36px 0 20px;
  display: grid;
  gap: 14px;
}

.get-main h1 {
  margin: 0;
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  letter-spacing: -0.035em;
}

.get-main > p {
  margin: 0;
  color: var(--muted);
}

.get-note {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgb(255 255 255 / 0.03);
  display: grid;
  gap: 8px;
}

.get-note ol {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  display: grid;
  gap: 5px;
  font-size: 0.86rem;
}

.get-back {
  margin: 6px 0 0 !important;
  font-size: 0.86rem !important;
}

.get-back a {
  color: var(--accent);
}

@media (max-width: 860px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-grid {
    padding-top: 24px;
  }

  .live-card .feed {
    max-height: 240px;
  }

  .strip-row {
    grid-template-columns: 1fr 1fr;
  }

  .process li {
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .nav-actions .btn-ghost {
    display: none;
  }

  .section {
    padding: 48px 0;
  }

  .live-card .feed li {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "nick ago"
      "chain sum";
    gap: 3px 8px;
  }

  .feed-nick {
    grid-area: nick;
  }
  .feed-chain {
    grid-area: chain;
    justify-self: start;
  }
  .feed-sum {
    grid-area: sum;
  }
  .feed-ago {
    grid-area: ago;
  }

  .strip-row {
    gap: 14px;
  }
}

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

  .status-dot,
  .live-card .feed li.is-new,
  .reveal {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}
