:root {
  --ink: #13110f;
  --ink-soft: #211c17;
  --orange: #ff941f;
  --orange-bright: #ffac38;
  --cream: #fff3df;
  --paper: #f2e4cd;
  --white: #fffaf1;
  --line-dark: rgba(255, 243, 223, 0.16);
  --line-light: rgba(19, 17, 15, 0.16);
  --max: 1180px;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.17;
  z-index: 20;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
}

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

img,
svg {
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--orange-bright);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--orange);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--max));
  min-height: 92px;
  border-bottom: 1px solid var(--line-dark);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: var(--orange);
  border-radius: 10px;
  font-weight: 950;
  transform: rotate(-4deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav > a:not(.nav-cta) {
  color: rgba(255, 243, 223, 0.74);
  transition: color 180ms ease;
}

.site-nav > a:not(.nav-cta):hover {
  color: var(--cream);
}

.nav-cta {
  padding: 10px 18px;
  color: var(--ink);
  background: var(--orange);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 243, 223, 0.06);
  border-radius: 50%;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--cream);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  min-height: 860px;
  padding: 136px max(24px, calc((100vw - var(--max)) / 2)) 80px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 83% 43%, rgba(255, 148, 31, 0.15), transparent 32%),
    linear-gradient(115deg, transparent 57%, rgba(255, 255, 255, 0.025) 57%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-bottom: 32px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

h1 {
  max-width: 710px;
  font-size: clamp(4rem, 7vw, 7.2rem);
}

h1 span,
.final-cta h2 span {
  color: var(--orange);
}

h2 {
  font-size: clamp(3rem, 5.3vw, 5.7rem);
}

h3 {
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.hero-lead {
  max-width: 570px;
  margin: 30px 0 0;
  color: rgba(255, 243, 223, 0.72);
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 56px;
  padding: 0 25px;
  border-radius: 12px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--ink);
  background: var(--orange);
  box-shadow: 0 14px 50px rgba(255, 148, 31, 0.18);
}

.button-primary:hover {
  background: var(--orange-bright);
}

.text-link {
  position: relative;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding-bottom: 9px;
  font-weight: 800;
  line-height: 1.25;
}

.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: scaleX(0.35);
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 34px;
  color: rgba(255, 243, 223, 0.5);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-divider {
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
}

.hero-art {
  position: relative;
  z-index: 2;
  align-self: stretch;
  min-height: 650px;
}

.hero-halo {
  position: absolute;
  top: 11%;
  left: 8%;
  width: min(46vw, 640px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 148, 31, 0.18);
  border-radius: 50%;
}

.hero-halo::before,
.hero-halo::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 148, 31, 0.12);
  border-radius: 50%;
}

.hero-halo::before {
  inset: 9%;
}

.hero-halo::after {
  inset: 20%;
}

.mascot {
  position: absolute;
  top: 1%;
  left: -1%;
  width: min(51vw, 730px);
  height: auto;
  filter: drop-shadow(0 34px 60px rgba(0, 0, 0, 0.4));
  transform: rotate(-2deg);
  transform-origin: 55% 70%;
}

.hero-stamp {
  position: absolute;
  right: -38px;
  bottom: 19%;
  margin: 0;
  color: rgba(255, 243, 223, 0.08);
  font-size: 4.7rem;
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.8;
  writing-mode: vertical-rl;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  padding: 9px 14px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(19, 17, 15, 0.1);
  border-radius: 999px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.chip-one {
  top: 17%;
  left: 2%;
  transform: rotate(-6deg);
}

.chip-two {
  right: -1%;
  bottom: 21%;
  transform: rotate(4deg);
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 243, 223, 0.52);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.section {
  padding: 120px max(24px, calc((100vw - var(--max)) / 2));
}

.benefits {
  color: var(--ink);
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: end;
  gap: 80px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -50px;
}

.section-heading > p:last-child {
  max-width: 490px;
  margin: 0 0 6px;
  color: rgba(19, 17, 15, 0.65);
  font-size: 1.05rem;
}

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

.benefit-card {
  position: relative;
  min-height: 370px;
  padding: 34px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.benefit-card.featured {
  color: var(--cream);
  background: var(--ink);
  border-color: var(--ink);
}

.benefit-number {
  position: absolute;
  top: 25px;
  right: 27px;
  color: rgba(19, 17, 15, 0.35);
  font-size: 0.75rem;
  font-weight: 900;
}

.featured .benefit-number {
  color: rgba(255, 243, 223, 0.35);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 86px;
  color: var(--ink);
  background: var(--orange);
  border-radius: 15px;
}

.icon-box svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.icon-box svg.line-icon {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.benefit-card h3 {
  max-width: 260px;
  margin: 0 0 15px;
  font-size: 1.55rem;
}

.benefit-card p {
  margin: 0;
  color: rgba(19, 17, 15, 0.62);
}

.featured p {
  color: rgba(255, 243, 223, 0.66);
}

.product-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 90px;
  min-height: 800px;
  background: var(--ink-soft);
}

.product-copy h2 {
  max-width: 530px;
}

.product-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 30px 0;
  color: rgba(255, 243, 223, 0.66);
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-weight: 800;
}

.check-list li {
  position: relative;
  padding-left: 31px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
}

.wallet-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 590px;
}

.wallet-glow {
  position: absolute;
  width: 80%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 148, 31, 0.22), transparent 65%);
}

.wallet-window {
  position: relative;
  width: min(100%, 520px);
  color: #22201d;
  background: #f8f5ee;
  border: 7px solid #3b342c;
  border-radius: 28px;
  box-shadow: 28px 35px 0 rgba(255, 148, 31, 0.82), 0 50px 90px rgba(0, 0, 0, 0.38);
  transform: rotate(2.5deg);
}

.wallet-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(19, 17, 15, 0.12);
  font-size: 0.76rem;
  font-weight: 800;
}

.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mini-brand b {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--ink);
  background: var(--orange);
  border-radius: 7px;
}

.network-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  background: #e9e4da;
  border-radius: 999px;
}

.network-pill i {
  width: 7px;
  height: 7px;
  background: #3b9e5f;
  border-radius: 50%;
}

.wallet-body {
  padding: 32px;
}

.wallet-label,
.wallet-change {
  margin: 0;
  color: #7a746d;
  font-size: 0.78rem;
  font-weight: 700;
}

.wallet-balance {
  margin: 3px 0 2px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.wallet-change {
  color: #338553;
}

.wallet-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin: 28px 0;
}

.wallet-actions > span {
  display: grid;
  place-items: center;
  min-height: 70px;
  background: #ebe5da;
  border-radius: 13px;
  font-size: 1.2rem;
  font-weight: 900;
}

.wallet-actions small {
  font-size: 0.66rem;
}

.token-list {
  display: grid;
  gap: 7px;
}

.token-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px;
  background: #fff;
  border: 1px solid rgba(19, 17, 15, 0.08);
  border-radius: 12px;
}

.token-row > span:last-child {
  text-align: right;
}

.token-row b,
.token-row small {
  display: block;
}

.token-row b {
  font-size: 0.75rem;
}

.token-row small {
  color: #8a837a;
  font-size: 0.64rem;
}

.token-icon {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.token-icon.brl {
  color: #0c5f34;
  background: #bfe9c9;
}

.token-icon.eth {
  color: #354a91;
  background: #d9e0ff;
}

.steps {
  color: var(--ink);
  background: var(--white);
}

.section-heading.centered {
  display: block;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
  margin-bottom: 20px;
}

.steps-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 90px;
}

.progress-line {
  position: absolute;
  top: 36px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: rgba(19, 17, 15, 0.14);
}

.progress-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--orange);
  transform-origin: left;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-number {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 30px;
  color: var(--ink);
  background: var(--orange);
  border: 9px solid var(--white);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 950;
}

.step h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.step p {
  max-width: 280px;
  margin: 0 auto;
  color: rgba(19, 17, 15, 0.62);
}

.hardware-section {
  padding-top: 0;
  color: var(--ink);
  background: var(--white);
}

.hardware-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
  padding: 50px 58px;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
}

.hardware-panel h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.hardware-panel p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 0;
  color: rgba(19, 17, 15, 0.62);
}

.hardware-logos {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}

.hardware-logos span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 21px;
  background: var(--white);
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.hardware-logos img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.manifesto {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 110px;
  color: var(--ink);
  background: var(--orange);
}

.manifesto-intro {
  position: sticky;
  top: 60px;
  align-self: start;
}

.manifesto .eyebrow {
  color: rgba(19, 17, 15, 0.63);
}

.manifesto h2 {
  max-width: 520px;
}

.manifesto-body {
  padding-left: 70px;
  border-left: 1px solid rgba(19, 17, 15, 0.2);
}

.manifesto-body h3 {
  margin: 0 0 25px;
  font-size: 1.75rem;
}

.manifesto-body p {
  margin: 0 0 24px;
  color: rgba(19, 17, 15, 0.78);
  font-size: 1.02rem;
}

blockquote {
  margin: 45px 0;
  padding: 35px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.security {
  background: var(--ink);
}

.security-card {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.security-card .eyebrow {
  justify-content: center;
}

.security-card > p:not(.eyebrow) {
  max-width: 720px;
  margin: 30px auto 0;
  color: rgba(255, 243, 223, 0.64);
  font-size: 1.08rem;
}

.security-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.security-facts span {
  padding: 27px 18px;
}

.security-facts span + span {
  border-left: 1px solid var(--line-dark);
}

.security-facts b,
.security-facts small {
  display: block;
}

.security-facts b {
  color: var(--orange);
  font-size: 1.1rem;
}

.security-facts small {
  margin-top: 3px;
  color: rgba(255, 243, 223, 0.52);
}

.stablecoins {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 100px;
  color: var(--ink);
  background: var(--paper);
}

.coin-visual {
  position: relative;
  min-height: 440px;
}

.coin {
  position: absolute;
  display: grid;
  place-items: center;
  width: 260px;
  height: 260px;
  border: 10px solid var(--ink);
  border-radius: 50%;
  font-size: 6rem;
  font-weight: 950;
  letter-spacing: -0.08em;
  box-shadow: 15px 17px 0 var(--ink);
}

.coin-back {
  top: 20px;
  left: 18px;
  color: var(--orange);
  background: var(--ink-soft);
  transform: rotate(-11deg);
}

.coin-front {
  right: 20px;
  bottom: 15px;
  background: var(--orange);
  transform: rotate(8deg);
}

.coin-visual > span {
  position: absolute;
  bottom: 18px;
  left: 50%;
  z-index: 4;
  padding: 8px 13px;
  color: var(--cream);
  background: var(--ink);
  border: 2px solid var(--orange);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.stablecoin-copy h2 {
  max-width: 680px;
}

.stablecoin-copy > p {
  max-width: 650px;
  color: rgba(19, 17, 15, 0.68);
}

.stablecoin-copy > p:first-of-type {
  margin-top: 30px;
}

.text-link.dark {
  margin-top: 15px;
}

.faq {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
  background: var(--ink-soft);
}

.faq .section-heading {
  display: block;
  align-self: start;
}

.faq .section-heading .eyebrow {
  margin: 0 0 20px;
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq details {
  border-bottom: 1px solid var(--line-dark);
}

.faq summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 25px;
  padding: 27px 0;
  cursor: pointer;
  font-size: 1.03rem;
  font-weight: 850;
  list-style: none;
}

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

.faq summary span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: var(--ink);
  background: var(--orange);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.faq details[open] summary span {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 660px;
  margin: -5px 0 27px;
  color: rgba(255, 243, 223, 0.62);
}

.final-cta {
  position: relative;
  color: var(--ink);
  background: var(--orange);
  overflow: hidden;
  text-align: center;
}

.final-cta .eyebrow {
  justify-content: center;
  color: rgba(19, 17, 15, 0.65);
}

.final-cta h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(3.5rem, 7vw, 7.4rem);
}

.final-cta h2 span {
  color: var(--cream);
}

.final-cta > p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  margin: 30px 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.button-dark {
  color: var(--cream);
  background: var(--ink);
}

.cta-actions > span {
  color: rgba(19, 17, 15, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-noise {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, transparent 0 120px, rgba(19, 17, 15, 0.035) 120px 121px);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 45px;
  padding: 55px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
}

.site-footer > p {
  color: rgba(255, 243, 223, 0.48);
  font-size: 0.84rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  font-size: 0.82rem;
  font-weight: 800;
}

.site-footer small {
  grid-column: 1 / -1;
  padding-top: 20px;
  color: rgba(255, 243, 223, 0.36);
  border-top: 1px solid var(--line-dark);
}

/* Privacy policy */
.legal-page {
  color: var(--ink);
  background: var(--paper);
}

.legal-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--max));
  min-height: 96px;
  margin: 0 auto;
  color: var(--cream);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 243, 223, 0.4);
  font-size: 0.82rem;
  font-weight: 850;
}

.back-link span {
  color: var(--orange);
  font-size: 1.1rem;
}

.legal-hero {
  margin-top: -96px;
  padding: 190px max(24px, calc((100vw - var(--max)) / 2)) 105px;
  color: var(--cream);
  background:
    radial-gradient(circle at 80% 25%, rgba(255, 148, 31, 0.2), transparent 28%),
    var(--ink);
}

.legal-hero h1 {
  max-width: 940px;
  margin-top: 25px;
}

.legal-hero h1 span {
  color: var(--orange);
}

.legal-lead {
  max-width: 760px;
  margin: 36px 0 0;
  color: rgba(255, 243, 223, 0.68);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.legal-updated {
  margin: 38px 0 0;
  color: rgba(255, 243, 223, 0.42);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  color: var(--cream);
  background: rgba(255, 243, 223, 0.16);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.privacy-highlights article {
  min-height: 255px;
  padding: 43px max(24px, calc((100vw - var(--max)) / 6));
  background: var(--ink-soft);
}

.privacy-highlights article > span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.privacy-highlights h2 {
  margin: 48px 0 8px;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  letter-spacing: -0.04em;
}

.privacy-highlights p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 243, 223, 0.58);
}

.legal-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 760px);
  justify-content: center;
  gap: 95px;
  padding: 110px 24px 135px;
}

.legal-nav {
  position: sticky;
  top: 35px;
  align-self: start;
  display: grid;
  gap: 4px;
  padding: 22px;
  background: rgba(255, 250, 241, 0.55);
  border: 1px solid var(--line-light);
  border-radius: 16px;
}

.legal-nav p {
  margin: 0 0 10px;
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-nav a {
  padding: 7px 10px;
  color: rgba(19, 17, 15, 0.62);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 750;
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: var(--ink);
  background: rgba(255, 148, 31, 0.18);
}

.legal-content {
  min-width: 0;
}

.legal-section {
  scroll-margin-top: 35px;
  padding: 0 0 78px;
}

.legal-section + .legal-section {
  padding-top: 78px;
  border-top: 1px solid var(--line-light);
}

.legal-kicker {
  margin: 0 0 18px;
  color: #a35100;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-section h2 {
  max-width: 710px;
  margin: 0 0 28px;
  font-size: clamp(2.2rem, 4.2vw, 4.1rem);
}

.legal-section > p:not(.legal-kicker):not(.legal-contact),
.legal-section li {
  color: rgba(19, 17, 15, 0.72);
  font-size: 1.03rem;
}

.legal-section > p:not(.legal-kicker) {
  margin: 0 0 20px;
}

.legal-section ul {
  display: grid;
  gap: 12px;
  margin: 27px 0 0;
  padding-left: 22px;
}

.legal-section li::marker {
  color: #b85f08;
}

.legal-section code {
  padding: 2px 7px;
  background: rgba(19, 17, 15, 0.08);
  border-radius: 5px;
  font-size: 0.88em;
}

.legal-callout {
  margin-top: 34px;
  padding: 26px 28px;
  background: var(--ink);
  border-left: 5px solid var(--orange);
  border-radius: 0 14px 14px 0;
  color: var(--cream);
}

.legal-callout strong {
  color: var(--orange);
  font-size: 1.08rem;
}

.legal-callout p {
  margin: 7px 0 0;
  color: rgba(255, 243, 223, 0.66);
}

.legal-callout.orange {
  color: var(--ink);
  background: var(--orange);
  border-color: var(--ink);
}

.legal-callout.orange strong,
.legal-callout.orange p {
  color: var(--ink);
}

.legal-contact {
  margin-top: 34px !important;
  padding: 24px 28px;
  background: rgba(255, 148, 31, 0.22);
  border: 1px solid rgba(19, 17, 15, 0.16);
  border-radius: 14px;
  font-size: 1.04rem;
  font-weight: 750;
}

.legal-contact a {
  border-bottom: 2px solid var(--ink);
}

.legal-footer {
  color: var(--cream);
}

/* Motion is progressive enhancement: content is visible before JS runs. */
.js.motion-ready .hero-copy > * {
  opacity: 0;
  transform: translateY(22px);
}

.js.motion-ready .mascot {
  opacity: 0;
  transform: translateX(18vw) rotate(7deg) scale(0.9);
}

.js.motion-ready .floating-chip {
  opacity: 0;
}

.js.motion-ready.motion-play .hero-copy > * {
  animation: hero-copy-in 650ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.js.motion-ready.motion-play .hero-copy > *:nth-child(2) { animation-delay: 80ms; }
.js.motion-ready.motion-play .hero-copy > *:nth-child(3) { animation-delay: 160ms; }
.js.motion-ready.motion-play .hero-copy > *:nth-child(4) { animation-delay: 240ms; }
.js.motion-ready.motion-play .hero-copy > *:nth-child(5) { animation-delay: 320ms; }

.js.motion-ready.motion-play .mascot {
  animation: mascot-arrive 950ms cubic-bezier(0.16, 1, 0.3, 1) 70ms forwards,
             mascot-idle 4s ease-in-out 1150ms infinite;
}

.js.motion-ready.motion-play .chip-one {
  animation: chip-in 420ms ease 820ms forwards;
}

.js.motion-ready.motion-play .chip-two {
  animation: chip-in-two 420ms ease 930ms forwards;
}

.js.motion-ready .reveal {
  opacity: 1;
  transform: none;
}

.js.motion-ready .reveal.is-visible {
  animation: reveal-soft 650ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.js.motion-ready .progress-line span {
  transform: scaleX(0);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js.motion-ready .steps-track.is-visible .progress-line span {
  transform: scaleX(1);
}

@keyframes hero-copy-in {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes reveal-soft {
  from { opacity: 0.72; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes mascot-arrive {
  0% { opacity: 0; transform: translateX(18vw) rotate(7deg) scale(0.9); }
  68% { opacity: 1; transform: translateX(-2%) rotate(-4deg) scale(1.015); }
  84% { transform: translateX(1%) rotate(-1deg) scale(0.995); }
  100% { opacity: 1; transform: translateX(0) rotate(-2deg) scale(1); }
}

@keyframes mascot-idle {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-7px) rotate(-1.4deg); }
}

@keyframes chip-in {
  from { opacity: 0; transform: translateY(12px) rotate(-9deg); }
  to { opacity: 1; transform: translateY(0) rotate(-6deg); }
}

@keyframes chip-in-two {
  from { opacity: 0; transform: translateY(12px) rotate(7deg); }
  to { opacity: 1; transform: translateY(0) rotate(4deg); }
}

@media (max-width: 1200px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 12;
    color: var(--ink);
    background: var(--orange);
    border-color: var(--orange);
  }

  .menu-toggle span:not(.sr-only) {
    background: var(--ink);
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: min(360px, calc(100vw - 48px));
    padding: 24px;
    color: var(--cream);
    background: #221d18;
    border: 1px solid var(--line-dark);
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-cta {
    text-align: center;
  }
}

@media (max-width: 980px) {

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }

  .legal-nav p {
    grid-column: 1 / -1;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 1100px;
    padding-top: 150px;
  }

  .hero-copy {
    max-width: 710px;
  }

  .hero-art {
    min-height: 620px;
  }

  .mascot {
    left: 50%;
    width: min(85vw, 680px);
    transform: translateX(-50%) rotate(-2deg);
  }

  .hero-halo {
    left: 50%;
    width: min(74vw, 600px);
    transform: translateX(-50%);
  }

  .js.motion-ready .mascot {
    transform: translate(20vw, 0) rotate(7deg) scale(0.9);
  }

  .js.motion-ready.motion-play .mascot {
    animation-name: mascot-arrive-tablet, mascot-idle-tablet;
  }

  .chip-one { left: 12%; }
  .chip-two { right: 7%; }

  .section-heading,
  .product-section,
  .manifesto,
  .stablecoins,
  .faq {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .section-heading .eyebrow {
    margin-bottom: -30px;
  }

  .product-copy {
    max-width: 700px;
  }

  .hardware-panel {
    grid-template-columns: 1fr;
  }

  .hardware-logos {
    justify-content: flex-start;
  }

  .manifesto-intro {
    position: static;
  }

  .manifesto-body {
    padding-left: 0;
    border-left: 0;
  }

  .coin-visual {
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .faq .section-heading {
    max-width: 580px;
  }
}

@keyframes mascot-arrive-tablet {
  0% { opacity: 0; transform: translate(20vw, 0) rotate(7deg) scale(0.9); }
  70% { opacity: 1; transform: translate(-52%, 0) rotate(-4deg) scale(1.015); }
  100% { opacity: 1; transform: translate(-50%, 0) rotate(-2deg) scale(1); }
}

@keyframes mascot-idle-tablet {
  0%, 100% { transform: translate(-50%, 0) rotate(-2deg); }
  50% { transform: translate(-50%, -7px) rotate(-1.4deg); }
}

@media (max-width: 720px) {
  .legal-header {
    width: calc(100% - 32px);
    min-height: 76px;
  }

  .back-link {
    font-size: 0.75rem;
  }

  .legal-hero {
    margin-top: -76px;
    padding: 145px 20px 75px;
  }

  .legal-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.3rem);
  }

  .privacy-highlights {
    grid-template-columns: 1fr;
  }

  .privacy-highlights article {
    min-height: 220px;
    padding: 36px 20px;
  }

  .privacy-highlights h2 {
    margin-top: 40px;
  }

  .legal-layout {
    gap: 70px;
    padding: 75px 20px 90px;
  }

  .legal-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-section {
    padding-bottom: 58px;
  }

  .legal-section + .legal-section {
    padding-top: 58px;
  }

  .legal-callout,
  .legal-contact {
    padding: 23px 20px;
  }

  .site-header {
    width: calc(100% - 32px);
    min-height: 76px;
  }

  .section {
    padding: 88px 20px;
  }

  .hero {
    min-height: 940px;
    padding: 122px 20px 60px;
  }

  h1 {
    font-size: clamp(2.8rem, 11.5vw, 4rem);
  }

  h2 {
    font-size: clamp(2.8rem, 13vw, 4.3rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero .eyebrow {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  .hero .eyebrow::before {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .trust-divider {
    display: none;
  }

  .hero-art {
    min-height: 430px;
    margin-top: 25px;
  }

  .mascot {
    top: 5%;
    width: min(108vw, 560px);
  }

  .hero-halo {
    top: 7%;
    width: 92vw;
  }

  .floating-chip {
    font-size: 0.62rem;
  }

  .chip-one { top: 13%; left: 0; }
  .chip-two { right: 0; bottom: 17%; }
  .hero-stamp, .scroll-cue { display: none; }

  .section-heading {
    display: block;
  }

  .section-heading .eyebrow {
    margin: 0 0 20px;
  }

  .section-heading > p:last-child {
    margin-top: 26px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 330px;
  }

  .icon-box {
    margin-bottom: 60px;
  }

  .product-section {
    min-height: auto;
  }

  .wallet-stage {
    min-height: 480px;
  }

  .wallet-window {
    border-width: 5px;
    box-shadow: 12px 17px 0 rgba(255, 148, 31, 0.82), 0 35px 70px rgba(0, 0, 0, 0.35);
    transform: rotate(1deg);
  }

  .wallet-body {
    padding: 22px;
  }

  .steps-track {
    grid-template-columns: 1fr;
    gap: 54px;
    margin-top: 60px;
  }

  .progress-line {
    top: 34px;
    bottom: 34px;
    left: 36px;
    width: 2px;
    height: auto;
  }

  .progress-line span {
    width: 100%;
    height: 100%;
    transform-origin: top;
  }

  .js.motion-ready .progress-line span {
    transform: scaleY(0);
  }

  .js.motion-ready .steps-track.is-visible .progress-line span {
    transform: scaleY(1);
  }

  .step {
    min-height: 100px;
    padding-left: 102px;
    text-align: left;
  }

  .step-number {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }

  .step p {
    margin: 0;
  }

  .hardware-section {
    padding-top: 0;
  }

  .hardware-panel {
    padding: 35px 25px;
  }

  .hardware-logos {
    flex-direction: column;
  }

  .hardware-logos span {
    justify-content: center;
  }

  .manifesto {
    gap: 45px;
  }

  .security-facts {
    grid-template-columns: 1fr;
  }

  .security-facts span + span {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .coin-visual {
    min-height: 340px;
  }

  .coin {
    width: 200px;
    height: 200px;
    font-size: 4.2rem;
  }

  .faq {
    gap: 45px;
  }

  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-footer small {
    grid-column: auto;
  }
}

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

  .js.motion-ready .hero-copy > *,
  .js.motion-ready .mascot,
  .js.motion-ready .floating-chip,
  .js.motion-ready .reveal {
    opacity: 1;
  }

  .js.motion-ready .mascot {
    transform: rotate(-2deg);
  }

  .js.motion-ready .reveal {
    transform: none;
  }
}

@media (max-width: 980px) and (prefers-reduced-motion: reduce) {
  .js.motion-ready .mascot {
    transform: translateX(-50%) rotate(-2deg);
  }
}
