:root {
  --paper: #e7e5df;
  --surface: #efede7;
  --ink: #171816;
  --muted: #686b65;
  --line: #ceccc5;
  --line-strong: #b8b7b0;
  --dark: #171816;
  --focus: #365d49;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 4px; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--dark);
  color: #fff;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header, .site-footer, main {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.03em;
  text-decoration: none;
}
.header-action, .text-link {
  font-size: 13px;
  font-weight: 700;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.header-action {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
}

.hero {
  min-height: min(780px, calc(100dvh - 88px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .82fr);
  align-items: center;
  gap: clamp(54px, 7vw, 104px);
  padding: 86px 0 104px;
}
.hero-copy, .chain-field, .section-heading, .provider-stage { min-width: 0; }
.hero-stat {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 34px;
}
.hero-stat strong {
  font-family: var(--serif);
  font-size: 39px;
  font-weight: 400;
  line-height: .8;
}
.hero-stat span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.55;
  text-transform: uppercase;
}
.eyebrow {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
h1, h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.05em;
  text-wrap: balance;
}
h1 {
  max-width: 650px;
  font-size: clamp(5rem, 9vw, 7.5rem);
  line-height: .84;
}
h1 em, h2 em {
  color: var(--muted);
  font-style: italic;
  font-weight: 400;
}
.hero-lead {
  max-width: 480px;
  margin: 34px 0 0;
  font-size: clamp(16px, 1.4vw, 19px);
  letter-spacing: -.02em;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 18px 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: background-color .2s ease, transform .16s ease;
}
.button--primary {
  min-width: 220px;
  background: var(--dark);
  color: white;
}
.button--primary:hover { background: #30312e; }
.button:active { transform: scale(.98); }
.button-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,.22);
}
.hero-note {
  max-width: 510px;
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.chain-field {
  padding: 22px;
  border: 1px solid var(--line-strong);
  background: rgba(239,237,231,.55);
}
.chain-field-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.chain-cloud {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.chain-cloud img {
  min-width: 0;
  width: 100%;
  aspect-ratio: 1;
  padding: clamp(9px, 1.25vw, 15px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  object-fit: contain;
  filter: grayscale(1) saturate(0) contrast(1.2);
  mix-blend-mode: multiply;
  opacity: .7;
  transition: opacity .18s ease, background-color .18s ease;
}
.chain-cloud img:hover { background: rgba(255,255,255,.28); opacity: 1; }
.chain-field > p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.section {
  padding: 112px 0 128px;
  border-top: 1px solid var(--line);
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 410px);
  align-items: end;
  gap: 28px 56px;
  margin-bottom: 48px;
}
.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -6px;
}
h2 {
  font-size: clamp(3rem, 5.8vw, 5.2rem);
  line-height: .94;
}
.section-heading > p:last-child {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.founder-context {
  align-self: end;
  margin-bottom: 5px;
}
.founder-context p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.founder-context a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  font-size: 12px;
  font-weight: 700;
  text-underline-offset: 4px;
}
.founder-context a span {
  color: var(--muted);
  transition: transform .18s ease;
}
.founder-context a:hover span { transform: translate(2px, -2px); }

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--dark);
  border: 1px solid var(--line-strong);
}
.video-frame iframe { width: 100%; height: 100%; border: 0; }

.wallet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.wallet-card {
  position: relative;
  display: grid;
  min-height: 220px;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
  gap: 24px;
  padding: 27px;
  border-right: 1px solid var(--line);
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease;
}
.wallet-card:last-child { border-right: 0; }
.wallet-card:hover {
  z-index: 1;
  background: var(--surface);
  transform: translateY(-4px);
}
.wallet-card img {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 9px;
  object-fit: cover;
  background: white;
}
.wallet-card strong {
  align-self: end;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -.035em;
}
.card-arrow {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  color: var(--muted);
}

.provider-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 690px;
  margin-bottom: 14px;
}
.provider-tab {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, transform .16s ease;
}
.provider-tab:hover { border-color: var(--line-strong); }
.provider-tab:active { transform: scale(.985); }
.provider-tab.is-active { border-color: var(--ink); background: var(--surface); }
.provider-tab > span:nth-child(2) { display: flex; flex-direction: column; gap: 3px; }
.provider-tab strong { font-size: 13px; }
.provider-tab small { color: var(--muted); font-size: 10px; }
.provider-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
}
.provider-mark img { width: 100%; height: 100%; object-fit: cover; }
.provider-check {
  width: 12px;
  height: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}
.provider-tab.is-active .provider-check { border: 4px solid var(--ink); }
.provider-stage { border: 1px solid var(--line-strong); background: var(--surface); }
.provider-stage-head {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.provider-stage-head a { color: var(--ink); text-underline-offset: 3px; }
.provider-panel { min-height: 720px; padding: 24px; background: #10110f; }
.migration-frame {
  display: block;
  width: 100%;
  height: 672px;
  border: 0;
  background: #10110f;
}
.migration-frame--squid { width: min(100%, 560px); margin-inline: auto; }
.widget-fallback { margin: 0; padding: 24px; color: white; }
.safety-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 18px;
  color: var(--muted);
}
.safety-icon {
  display: grid;
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 14px;
}
.safety-note p {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0;
  font-size: 10px;
  line-height: 1.55;
}
.safety-note strong { color: var(--ink); }

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
}
.community-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 108px;
  padding: 19px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background-color .2s ease;
}
.community-card:last-child { border-right: 0; }
.community-card:hover { background: var(--surface); }
.community-card img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(.25);
}
.community-card > span:nth-child(2) { display: flex; flex-direction: column; gap: 4px; }
.community-card strong { font-size: 15px; }
.community-card small { color: var(--muted); font-size: 10px; }
.community-card > span:last-child { color: var(--muted); }

.done { max-width: 870px; }
.done h2 { margin-bottom: 25px; }
.done > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.done .button { min-width: 230px; }
.credits {
  margin-bottom: 96px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.credits summary {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 38px);
  letter-spacing: -.035em;
}
.credits summary::-webkit-details-marker { display: none; }
.credits-toggle {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 18px;
  transition: transform .25s ease, background-color .2s ease, color .2s ease;
}
.credits summary:hover .credits-toggle {
  background: var(--dark);
  color: white;
}
.credits[open] .credits-toggle { transform: rotate(45deg); }
.credits-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.credits-group {
  display: flex;
  flex-direction: column;
  padding: 26px 28px 30px 0;
}
.credits-group + .credits-group {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}
.credits-group p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.credits-group a {
  display: flex;
  min-height: 39px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.credits-group a:last-child { border-bottom: 0; }
.credits-group a > span:last-child { color: var(--muted); }
.credits-group i {
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
}
.credits-film {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  border-top: 1px solid var(--line);
}
.credits-film-media {
  min-width: 0;
  padding: 28px 28px 28px 0;
}
.credits-film-media video {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  border: 0;
  background: var(--dark);
  object-fit: cover;
}
.credits-film-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 31px 0 28px 28px;
  border-left: 1px solid var(--line);
}
.credits-film-label {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.credits-film-views {
  display: flex;
  align-items: flex-end;
  gap: 11px;
  margin: 30px 0 34px;
}
.credits-film-views strong {
  font-family: var(--serif);
  font-size: clamp(67px, 6.6vw, 96px);
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: .72;
}
.credits-film-views span {
  padding-bottom: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.credits-film h3 {
  max-width: 360px;
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .97;
}
.credits-film-byline {
  max-width: 35ch;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}
.credits-film-byline a { color: var(--ink); text-underline-offset: 3px; }
.credits-film-meta {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 32px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.credits-film-meta a { text-underline-offset: 3px; }
.site-footer {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
}
.site-footer nav { display: flex; gap: 22px; }
.site-footer a { text-underline-offset: 3px; }

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.credits:target { opacity: 1; transform: none; }

@media (max-width: 850px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 70px;
    padding: 80px 0 96px;
  }
  .chain-field { width: 100%; }
  .section-heading { grid-template-columns: 1fr; }
  .wallet-grid { grid-template-columns: 1fr 1fr; }
  .wallet-card:nth-child(2) { border-right: 0; }
  .wallet-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 600px) {
  .mobile-arrow { display: none !important; }
  .site-header, .site-footer, main {
    width: calc(100vw - 30px);
    max-width: calc(100vw - 30px);
  }
  .site-header { min-height: 70px; }
  .header-action { font-size: 10px; }
  .hero { padding: 60px 0 82px; gap: 52px; }
  h1 { max-width: 100%; font-size: clamp(4rem, 20vw, 5rem); }
  .hero-lead { max-width: 31ch; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .button--primary { width: 100%; }
  .chain-field { padding: 14px; }
  .hero > *, .hero-actions, .chain-field, .chain-cloud { max-width: 100%; }
  .chain-cloud { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .chain-cloud img { padding: 8px; }
  .section { padding: 82px 0 94px; }
  .section-heading { margin-bottom: 36px; }
  .wallet-grid { grid-template-columns: 1fr; }
  .wallet-card {
    min-height: 114px;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: 1fr;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 19px;
  }
  .wallet-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .wallet-card:last-child { border-bottom: 0; }
  .wallet-card strong { align-self: center; font-size: 25px; }
  .wallet-card .card-arrow { grid-column: 3; grid-row: 1; align-self: center; }
  .provider-tabs { grid-template-columns: 1fr; }
  .provider-stage-head { align-items: flex-start; flex-direction: column; padding: 14px; }
  .provider-panel { min-height: 680px; padding: 8px; }
  .migration-frame { height: 664px; }
  .community-grid { grid-template-columns: 1fr; }
  .community-card { border-right: 0; }
  .credits { margin-bottom: 72px; }
  .credits summary { min-height: 74px; }
  .credits-panel { grid-template-columns: 1fr; }
  .credits-group { padding: 23px 0 25px; }
  .credits-group + .credits-group {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .credits-film { grid-template-columns: 1fr; }
  .credits-film-media { padding: 24px 0; }
  .credits-film-copy {
    padding: 24px 0 26px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .credits-film-views { margin: 32px 0 42px; }
  .site-footer { align-items: flex-start; flex-direction: column; padding: 28px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
