@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  color-scheme: dark;
  --ink: #080914;
  --ink-soft: #0d1020;
  --surface: rgba(17, 20, 37, 0.78);
  --surface-solid: #111425;
  --surface-light: #191d32;
  --paper: #f3f1eb;
  --muted: #9296ad;
  --muted-bright: #b7bbce;
  --line: rgba(214, 218, 255, 0.13);
  --line-bright: rgba(214, 218, 255, 0.24);
  --violet: #8c78ff;
  --violet-bright: #aa9cff;
  --violet-soft: rgba(140, 120, 255, 0.15);
  --cyan: #5ae9e4;
  --cyan-soft: rgba(90, 233, 228, 0.13);
  --coral: #ff8066;
  --amber: #f6cb72;
  --red: #ff756f;
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 90px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -5;
  inset: 0;
  background:
    radial-gradient(circle at 76% 8%, rgba(92, 65, 211, 0.13), transparent 30%),
    radial-gradient(circle at 5% 48%, rgba(35, 126, 164, 0.09), transparent 24%),
    linear-gradient(180deg, #080914 0%, #090b17 50%, #070812 100%);
  content: "";
}

::selection {
  background: var(--violet);
  color: #fff;
}

main {
  display: flex;
  flex-direction: column;
}

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

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.page-noise {
  position: fixed;
  z-index: 10;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}

.aurora {
  position: fixed;
  z-index: -3;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.09;
  pointer-events: none;
}

.aurora-violet {
  top: -24rem;
  right: -12rem;
  background: var(--violet);
}

.aurora-cyan {
  bottom: -28rem;
  left: -18rem;
  background: var(--cyan);
}

.shell {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  display: flex;
  z-index: 20;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  padding-inline: max(32px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 20, 0.82);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font: 700 0.82rem "Space Grotesk", sans-serif;
  letter-spacing: 0.22em;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(140, 120, 255, 0.22), rgba(90, 233, 228, 0.05));
  color: var(--paper);
  box-shadow: inset 0 0 20px rgba(140, 120, 255, 0.08);
}

.brand-mark::after {
  position: absolute;
  width: 5px;
  height: 5px;
  top: 1px;
  right: 2px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

.brand-mark i {
  font-style: normal;
  letter-spacing: 0;
}

nav {
  display: flex;
  gap: 34px;
  color: var(--muted);
  font-size: 0.78rem;
}

nav a,
.network-pill,
.evidence-link,
.secondary-cta {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

nav a:hover,
nav a:focus-visible,
.evidence-link:hover,
.evidence-link:focus-visible {
  color: var(--cyan);
}

.network-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted-bright);
  font: 500 0.66rem "IBM Plex Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.network-pill > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px var(--cyan-soft), 0 0 16px var(--cyan);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 0.78fr);
  gap: clamp(40px, 6vw, 100px);
  min-height: calc(100svh - 90px);
  padding-block: clamp(76px, 10vh, 130px) 72px;
  align-items: center;
}

.eyebrow {
  display: flex;
  gap: 22px;
  margin: 0 0 32px;
  color: var(--muted);
  font: 500 0.64rem "IBM Plex Mono", monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span:first-child {
  color: var(--cyan);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Space Grotesk", sans-serif;
}

h1 {
  margin: 0 0 32px;
  font-size: clamp(4.3rem, 7.5vw, 7.6rem);
  line-height: 0.84;
  letter-spacing: -0.077em;
}

h1 em {
  position: relative;
  color: transparent;
  font-style: normal;
  background: linear-gradient(100deg, var(--violet-bright) 10%, #ddd8ff 46%, var(--cyan) 92%);
  background-clip: text;
  -webkit-background-clip: text;
  background-size: 180% auto;
  animation: headline-shift 6s ease-in-out infinite alternate;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 34px;
  color: var(--muted-bright);
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 19px;
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 600;
}

.primary-cta {
  min-width: 190px;
  background: var(--paper);
  color: var(--ink);
}

.primary-cta:hover {
  background: var(--cyan);
}

.primary-cta span,
.secondary-cta span {
  font-size: 1rem;
}

.secondary-cta {
  border: 1px solid var(--line);
  color: var(--muted-bright);
}

.secondary-cta:hover {
  border-color: var(--line-bright);
  color: var(--paper);
}

.hero-footnote {
  display: flex;
  justify-content: space-between;
  max-width: 590px;
  margin-top: 66px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 0.6rem "IBM Plex Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-visual {
  position: relative;
  min-height: 630px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(140, 120, 255, 0.22), transparent 26%),
    radial-gradient(circle at 68% 20%, rgba(90, 233, 228, 0.08), transparent 22%),
    linear-gradient(145deg, rgba(18, 21, 42, 0.95), rgba(9, 11, 24, 0.88));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.04);
  transform-style: preserve-3d;
  transition: transform 250ms ease-out;
}

.visual-grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(186, 191, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(186, 191, 255, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 0%, transparent 73%);
  mask-image: radial-gradient(circle at 50% 45%, #000 0%, transparent 73%);
}

.orbit {
  position: absolute;
  top: 47%;
  left: 50%;
  border: 1px solid rgba(173, 163, 255, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit::before,
.orbit::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.orbit::before {
  inset: 16px;
  border: 1px dashed rgba(90, 233, 228, 0.12);
}

.orbit::after {
  inset: 48%;
  box-shadow: 0 0 100px 60px rgba(140, 120, 255, 0.1);
}

.orbit-outer {
  width: min(470px, 85%);
  aspect-ratio: 1;
  animation: orbit-spin 28s linear infinite;
}

.orbit-inner {
  width: min(330px, 62%);
  aspect-ratio: 1;
  border-style: dashed;
  animation: orbit-spin-reverse 20s linear infinite;
}

.orbit-packet {
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  border: 3px solid var(--ink-soft);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 22px var(--cyan);
}

.packet-two {
  top: auto;
  bottom: 16%;
  left: 5%;
  background: var(--coral);
  box-shadow: 0 0 22px var(--coral);
}

.packet-three {
  top: 45%;
  right: -7px;
  left: auto;
  background: var(--violet-bright);
  box-shadow: 0 0 22px var(--violet);
}

.token-core {
  position: absolute;
  top: 47%;
  left: 50%;
  display: flex;
  width: 154px;
  height: 154px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(207, 201, 255, 0.34);
  border-radius: 50%;
  background: linear-gradient(150deg, rgba(183, 171, 255, 0.25), rgba(82, 67, 173, 0.11)), #111329;
  box-shadow: inset 0 0 35px rgba(255, 255, 255, 0.06), 0 0 80px rgba(140, 120, 255, 0.2);
  transform: translate(-50%, -50%) translateZ(28px);
}

.token-core::before,
.token-core::after {
  position: absolute;
  border: 1px solid rgba(211, 207, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.token-core::before {
  inset: 9px;
}

.token-core::after {
  inset: 19px;
  border-style: dashed;
}

.token-halo {
  position: absolute;
  inset: -22px;
  border: 1px solid rgba(140, 120, 255, 0.13);
  border-radius: 50%;
  animation: halo-pulse 3s ease-out infinite;
}

.token-symbol {
  z-index: 1;
  color: var(--violet-bright);
  font: 500 1.1rem "Space Grotesk", sans-serif;
}

.token-core strong {
  z-index: 1;
  font: 600 1.6rem "Space Grotesk", sans-serif;
  letter-spacing: -0.05em;
}

.token-core small {
  position: absolute;
  bottom: 33px;
  z-index: 1;
  color: var(--muted);
  font: 0.44rem "IBM Plex Mono", monospace;
  letter-spacing: 0.12em;
}

.chain-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px 10px 10px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(11, 13, 28, 0.78);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  animation: node-float 5s ease-in-out infinite;
}

.chain-node small,
.chain-node strong {
  display: block;
}

.chain-node small {
  margin-bottom: 3px;
  color: var(--muted);
  font: 0.48rem "IBM Plex Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chain-node strong {
  font-size: 0.7rem;
  font-weight: 600;
}

.node-icon {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 10px;
  background: var(--violet-soft);
  color: var(--violet-bright);
  font: 600 0.75rem "Space Grotesk", sans-serif;
}

.attest-icon {
  background: var(--cyan-soft);
  color: var(--cyan);
}

.creditcoin-icon {
  background: rgba(255, 128, 102, 0.13);
  color: var(--coral);
}

.source-node {
  top: 18%;
  left: 8%;
}

.proof-node {
  top: 13%;
  right: 8%;
  animation-delay: -1.7s;
}

.destination-node {
  right: 10%;
  bottom: 22%;
  animation-delay: -3.2s;
}

.system-state {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(7, 9, 20, 0.78);
  backdrop-filter: blur(20px);
}

.state-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--cyan-soft);
  color: var(--cyan);
}

.label,
.kicker,
.network-tag,
.amount-label,
.action-state,
.launch-number {
  font-family: "IBM Plex Mono", monospace;
}

.label {
  margin: 0;
  color: var(--muted);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.state-title {
  margin: 3px 0 2px;
  font-size: 0.75rem;
  font-weight: 600;
}

.state-copy > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.4;
}

.refresh-button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  transition: transform 200ms ease, border-color 200ms ease;
}

.refresh-button:hover {
  border-color: var(--cyan);
  transform: rotate(45deg);
}

.refresh-button:disabled {
  color: var(--muted);
  cursor: wait;
}

.launch-section,
.metric-section,
.proof-section,
.configuration-section {
  position: relative;
  padding-block: clamp(96px, 12vw, 165px);
  border-top: 1px solid var(--line);
}

.launch-section {
  border-top: 0;
  background: var(--paper);
  box-shadow: 0 0 0 100vmax var(--paper);
  clip-path: inset(0 -100vmax);
  color: #11121a;
  padding-top: clamp(82px, 8vw, 118px);
}

.metric-section::before,
.proof-section::before,
.configuration-section::before {
  position: absolute;
  top: 32px;
  left: 0;
  color: #686d86;
  font: 0.56rem "IBM Plex Mono", monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.metric-section::before {
  content: "01 / LIVE SYSTEM";
}

.proof-section::before {
  content: "02 / PROOF ANATOMY";
}

.configuration-section::before {
  content: "04 / TRUST BOUNDARY";
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 54px;
}

.kicker {
  margin: 0 0 16px;
  color: var(--violet-bright);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: clamp(3.3rem, 6vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.source-note {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.7;
  text-align: right;
}

.metrics {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.metric {
  position: relative;
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
  background: var(--ink-soft);
}

.metric:first-child {
  background:
    radial-gradient(circle at 80% 10%, rgba(140, 120, 255, 0.18), transparent 42%),
    var(--surface-solid);
}

.metric::after {
  position: absolute;
  right: -30px;
  bottom: -48px;
  width: 110px;
  height: 110px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.metric .label::after {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  content: "";
  vertical-align: 1px;
}

.metric-value {
  margin: 76px 0 12px;
  font: 600 clamp(2.2rem, 4vw, 4rem) "Space Grotesk", sans-serif;
  letter-spacing: -0.07em;
}

.metric:first-child .metric-value {
  color: var(--violet-bright);
}

.metric-detail {
  position: relative;
  z-index: 1;
  max-width: 230px;
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.55;
}

.legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font: 0.58rem "IBM Plex Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.dot.verified {
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.dot.waiting {
  background: var(--amber);
}

.dot.unavailable {
  background: var(--muted);
}

.proof-flow {
  display: grid;
  grid-template-columns: 1fr 54px 1fr 54px 1fr;
  align-items: center;
}

.proof-card {
  position: relative;
  min-height: 405px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(19, 22, 42, 0.92), rgba(11, 13, 27, 0.88));
  overflow: hidden;
}

.proof-card::before {
  position: absolute;
  width: 130px;
  height: 130px;
  top: 75px;
  right: -65px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.step-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font: 0.57rem "IBM Plex Mono", monospace;
  letter-spacing: 0.08em;
}

.status {
  padding: 7px 9px;
  border-radius: 999px;
  font-size: 0.52rem;
  text-transform: uppercase;
}

.verified-status {
  background: var(--cyan-soft);
  color: var(--cyan);
}

.waiting-status {
  background: rgba(246, 203, 114, 0.12);
  color: var(--amber);
}

.proof-card h3 {
  max-width: 260px;
  margin: 72px 0 14px;
  font: 600 1.5rem "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

.proof-card > p {
  min-height: 76px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.65;
}

dl {
  margin: 0;
}

.proof-card dl {
  padding-block: 10px;
  border-block: 1px solid var(--line);
}

.proof-card dl div,
.config-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.proof-card dl div {
  min-height: 38px;
}

dt {
  color: var(--muted);
  font-size: 0.66rem;
}

dd {
  margin: 0;
  font-size: 0.7rem;
  text-align: right;
}

.mono {
  font-family: "IBM Plex Mono", monospace;
}

.truncate {
  max-width: 145px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.evidence-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 600;
}

.evidence-link.muted {
  color: var(--muted);
  font-weight: 400;
}

.connector {
  position: relative;
  color: transparent;
  font-size: 0;
}

.connector::before {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--line), var(--violet), var(--line));
  content: "";
}

.connector::after {
  position: absolute;
  top: -3px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
  content: "";
  animation: packet-cross 2.5s ease-in-out infinite;
}

.launch-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: start;
}

.launch-intro {
  position: sticky;
  top: 38px;
}

.launch-intro::before {
  display: block;
  margin-bottom: 60px;
  color: #868797;
  font: 0.56rem "IBM Plex Mono", monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  content: "03 / ISSUER STUDIO";
}

.launch-section .kicker {
  color: #6554e8;
}

.launch-section h2 {
  max-width: 850px;
  font-size: clamp(3.35rem, 4.65vw, 4.9rem);
  line-height: 0.95;
}

.launch-section .launch-heading {
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.5fr);
  align-items: end;
  margin-bottom: 54px;
}

.launch-section .source-note {
  max-width: 360px;
  color: #6f7180;
  text-align: left;
}

.wallet-bar,
.asset-builder,
.signature-preview {
  border: 1px solid rgba(17, 18, 26, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.issuer-console {
  display: grid;
  gap: 12px;
  margin-bottom: 56px;
}

.wallet-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
}

.wallet-identity {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
}

.wallet-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(101, 84, 232, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 68% 26%, rgba(90, 233, 228, 0.75), transparent 16%),
    linear-gradient(145deg, hsl(var(--wallet-hue, 250) 78% 62%), #1a1c2c);
  color: #fff;
  font: 600 0.67rem "Space Grotesk", sans-serif;
}

.wallet-account {
  margin: 5px 0 0;
  overflow: hidden;
  font-size: 0.72rem;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wallet-network {
  margin: 4px 0 0;
  color: #7d7f8d;
  font-size: 0.62rem;
}

.asset-builder {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(360px, 1.15fr) auto;
  gap: 28px;
  align-items: end;
  padding: 22px;
}

.asset-builder-copy h3 {
  margin: 8px 0;
  font: 600 1.25rem "Space Grotesk", sans-serif;
  letter-spacing: -0.035em;
}

.asset-builder-copy > p:last-child {
  max-width: 370px;
  margin: 0;
  color: #747684;
  font-size: 0.68rem;
  line-height: 1.5;
}

.asset-fields {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(100px, 0.42fr);
  gap: 10px;
}

.asset-fields label {
  color: #777987;
  font: 0.55rem "IBM Plex Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.asset-fields input {
  width: 100%;
  margin-top: 8px;
  padding: 12px 13px;
  border: 1px solid rgba(17, 18, 26, 0.16);
  border-radius: 12px;
  outline: 0;
  background: rgba(255, 255, 255, 0.62);
  color: #171824;
  font: 500 0.73rem "Inter", sans-serif;
  text-transform: none;
}

.asset-fields input:focus {
  border-color: #6554e8;
  box-shadow: 0 0 0 3px rgba(101, 84, 232, 0.08);
}

.asset-fields label:last-child input {
  text-transform: uppercase;
}

.asset-fields input:disabled {
  color: #737582;
  cursor: not-allowed;
}

.asset-builder-actions {
  display: grid;
  min-width: 190px;
  gap: 9px;
  justify-items: end;
}

.draft-id {
  display: grid;
  gap: 4px;
  margin: 0;
  text-align: right;
}

.draft-id span {
  color: #858794;
  font: 0.52rem "IBM Plex Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.draft-id strong {
  max-width: 210px;
  overflow: hidden;
  color: #525463;
  font-size: 0.58rem;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quiet-button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(17, 18, 26, 0.28);
  background: transparent;
  color: #4e5060;
  cursor: pointer;
  font: 600 0.62rem "Inter", sans-serif;
}

.quiet-button:hover,
.quiet-button:focus-visible {
  border-color: #6554e8;
  color: #6554e8;
}

.primary-button,
.action-button {
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid #171824;
  border-radius: 999px;
  background: #171824;
  color: #fff;
  cursor: pointer;
  font-size: 0.69rem;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.primary-button:hover,
.action-button:hover {
  background: #6554e8;
  border-color: #6554e8;
  transform: translateY(-1px);
}

.primary-button:disabled,
.action-button:disabled {
  border-color: rgba(17, 18, 26, 0.1);
  background: rgba(17, 18, 26, 0.07);
  color: #999aa3;
  cursor: not-allowed;
  transform: none;
}

.action-button.secondary {
  background: transparent;
  color: #171824;
}

.action-button.secondary:hover {
  border-color: #6554e8;
  color: #6554e8;
}

.action-button.secondary:disabled {
  border-color: rgba(17, 18, 26, 0.1);
  background: rgba(17, 18, 26, 0.04);
  color: #a4a5ad;
}

.signature-preview {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-top: 10px;
  padding: 15px;
}

.signature-preview .state-icon {
  background: rgba(101, 84, 232, 0.1);
  color: #6554e8;
}

.signature-preview p:last-child {
  margin: 4px 0 0;
  color: #686a79;
  font-size: 0.68rem;
  line-height: 1.45;
}

.token-result {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 15px;
  align-items: center;
  margin-top: 10px;
  padding: 17px;
  border: 1px solid rgba(8, 125, 114, 0.22);
  border-radius: 16px;
  background: rgba(8, 125, 114, 0.06);
}

.token-result[hidden] {
  display: none;
}

.token-result-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: #087d72;
  color: #fff;
  font: 700 0.8rem "Space Grotesk", sans-serif;
}

.token-result-copy {
  min-width: 0;
}

.token-result-copy h3 {
  margin: 3px 0 4px;
  color: #171824;
  font: 600 1rem "Space Grotesk", sans-serif;
}

.token-result-copy h3 small {
  color: #087d72;
  font: 600 0.65rem "IBM Plex Mono", monospace;
}

.token-address {
  display: block;
  overflow: hidden;
  color: #087d72;
  font-size: 0.64rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.token-result-copy > p:last-child {
  margin: 5px 0 0;
  color: #686a79;
  font-size: 0.62rem;
  line-height: 1.45;
}

.copy-token-button {
  white-space: nowrap;
}

.launch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 30px;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: launch;
}

.launch-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  min-height: 245px;
  padding: 30px 0;
  border-top: 1px solid rgba(17, 18, 26, 0.17);
}

.launch-card:first-child {
  border-top: 0;
  padding-top: 0;
}

.launch-card:last-child {
  padding-bottom: 0;
}

.launch-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(17, 18, 26, 0.15);
  border-radius: 50%;
  color: #777987;
  font-size: 0.58rem;
}

.network-tag {
  margin-bottom: 12px;
  color: #6554e8;
  font-size: 0.56rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.launch-card h3 {
  margin-bottom: 10px;
  font: 600 clamp(1.4rem, 2.2vw, 2rem) "Space Grotesk", sans-serif;
  letter-spacing: -0.045em;
}

.launch-card h3 + p {
  max-width: 550px;
  margin-bottom: 0;
  color: #6c6e7b;
  font-size: 0.76rem;
  line-height: 1.6;
}

.action-state {
  min-height: 20px;
  margin: 20px 0 13px;
  color: #9a6c12;
  font-size: 0.61rem;
  line-height: 1.45;
}

.action-state[data-state="success"] {
  color: #087d72;
}

.action-state[data-state="error"] {
  color: #c54540;
}

.attestation-progress {
  margin: 0 0 16px;
}

.attestation-track {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(101, 84, 232, 0.12);
}

.attestation-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6554e8, #31c8c4);
  transition: width 400ms ease;
}

.attestation-progress dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 14px;
  margin-top: 10px;
}

.attestation-progress dl div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #777987;
  font-size: 0.54rem;
}

.attestation-progress dd {
  color: #30313b;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.amount-label {
  display: block;
  margin: 18px 0 7px;
  color: #7b7d8b;
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.amount-input {
  display: flex;
  align-items: center;
  width: min(240px, 100%);
  border: 1px solid rgba(17, 18, 26, 0.16);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.5);
}

.amount-input input {
  width: 100%;
  min-width: 0;
  padding: 12px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #171824;
  font: 500 0.85rem "IBM Plex Mono", monospace;
}

.amount-input span {
  padding-right: 12px;
  color: #777987;
  font: 0.57rem "IBM Plex Mono", monospace;
}

.amount-input:focus-within {
  border-color: #6554e8;
  box-shadow: 0 0 0 3px rgba(101, 84, 232, 0.08);
}

.beneficiary-input {
  width: min(360px, 100%);
  padding: 12px;
  border: 1px solid rgba(17, 18, 26, 0.16);
  border-radius: 13px;
  outline: 0;
  background: rgba(255, 255, 255, 0.5);
  color: #171824;
  font-size: 0.62rem;
}

.beneficiary-input:focus {
  border-color: #6554e8;
  box-shadow: 0 0 0 3px rgba(101, 84, 232, 0.08);
}

.issuer-portfolio {
  margin-top: 76px;
  padding-top: 34px;
  border-top: 1px solid rgba(17, 18, 26, 0.17);
}

.issuer-portfolio[hidden] {
  display: none;
}

.portfolio-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.portfolio-heading h3 {
  margin-top: 8px;
  font: 600 clamp(1.8rem, 3vw, 2.8rem) "Space Grotesk", sans-serif;
  letter-spacing: -0.05em;
}

.portfolio-heading > p {
  color: #777987;
  font: 0.6rem "IBM Plex Mono", monospace;
  text-transform: uppercase;
}

.issuer-asset-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.issuer-asset-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(17, 18, 26, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
}

.issuer-asset-card.selected {
  border-color: rgba(101, 84, 232, 0.62);
  box-shadow: 0 14px 40px rgba(55, 45, 133, 0.12);
}

.issuer-asset-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.issuer-asset-title h4 {
  margin: 0;
  overflow: hidden;
  font: 600 1.2rem "Space Grotesk", sans-serif;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.issuer-asset-title span {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(101, 84, 232, 0.1);
  color: #6554e8;
  font: 600 0.58rem "IBM Plex Mono", monospace;
}

.issuer-token-link {
  display: block;
  margin-top: 13px;
  overflow: hidden;
  color: #087d72;
  font-size: 0.62rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.issuer-asset-card > p {
  margin: 8px 0 0;
  color: #777987;
  font-size: 0.62rem;
}

.issuer-asset-actions {
  display: flex;
  gap: 18px;
  margin-top: 18px;
}

.issuer-asset-actions a,
.issuer-asset-actions button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(17, 18, 26, 0.22);
  background: transparent;
  color: #4e5060;
  cursor: pointer;
  font: 600 0.62rem "Inter", sans-serif;
}

.issuer-asset-actions a:hover,
.issuer-asset-actions button:hover {
  border-color: #6554e8;
  color: #6554e8;
}

.issuer-asset-actions button:disabled {
  border-color: transparent;
  color: #8c8e9a;
  cursor: default;
}

.configuration-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(460px, 1.25fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: end;
}

.configuration-copy {
  max-width: 480px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

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

.config-list div {
  min-height: 72px;
  border-bottom: 1px solid var(--line);
}

.config-list dd {
  max-width: 68%;
  overflow-wrap: anywhere;
}

.config-list a {
  color: var(--muted-bright);
  transition: color 180ms ease;
}

.config-list a:hover {
  color: var(--cyan);
}

.boundary-card {
  display: grid;
  grid-template-columns: 0.45fr 1fr 1fr auto;
  gap: 30px;
  align-items: center;
  margin-top: 80px;
  padding: 30px;
  border: 1px solid rgba(140, 120, 255, 0.25);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 6% 50%, rgba(140, 120, 255, 0.18), transparent 28%),
    var(--surface);
}

.boundary-card > span {
  color: var(--violet-bright);
  font: 0.56rem "IBM Plex Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.boundary-card h3 {
  margin: 0;
  font: 600 1.35rem "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

.boundary-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.71rem;
  line-height: 1.6;
}

.boundary-card a {
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 600;
  white-space: nowrap;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 118px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 0.58rem "IBM Plex Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

body[data-state="error"] .state-icon {
  background: rgba(255, 117, 111, 0.13);
  color: var(--red);
}

body[data-state="stale"] .state-icon,
body[data-state="waiting"] .state-icon {
  background: rgba(246, 203, 114, 0.12);
  color: var(--amber);
}

.reveal-target {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1), transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes orbit-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbit-spin-reverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes halo-pulse {
  0% { opacity: 0.7; transform: scale(0.86); }
  75%, 100% { opacity: 0; transform: scale(1.24); }
}

@keyframes node-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes packet-cross {
  0% { left: 0; opacity: 0; }
  18%, 82% { opacity: 1; }
  100% { left: calc(100% - 7px); opacity: 0; }
}

@keyframes headline-shift {
  to { background-position: 100% 50%; }
}

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: 1fr 430px;
    gap: 34px;
  }

  .proof-visual {
    min-height: 560px;
  }

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

  .proof-flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .connector {
    width: 1px;
    height: 38px;
    margin: 0 auto;
  }

  .connector::before {
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, var(--line), var(--violet), var(--line));
  }

  .connector::after {
    top: 0;
    left: -3px;
    animation-name: packet-down;
  }

  .launch-layout {
    grid-template-columns: 1fr;
  }

  .launch-intro {
    position: static;
  }

  .launch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .launch-card.final-step {
    grid-column: auto;
  }

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

  .asset-builder {
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  }

  .asset-builder-actions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto;
    align-items: end;
    justify-items: start;
  }

  .asset-builder-actions .quiet-button {
    justify-self: end;
  }

  .draft-id {
    text-align: left;
  }

  .boundary-card {
    grid-template-columns: 1fr 1fr;
  }

  @keyframes packet-down {
    0% { top: 0; opacity: 0; }
    18%, 82% { opacity: 1; }
    100% { top: calc(100% - 7px); opacity: 0; }
  }
}

.redemption-lifecycle {
  margin-top: 96px;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(140, 120, 255, 0.28);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 8%, rgba(92, 65, 211, 0.26), transparent 34%),
    radial-gradient(circle at 0 100%, rgba(35, 126, 164, 0.18), transparent 30%),
    #0b0d18;
  color: var(--paper);
  box-shadow: 0 38px 90px rgba(8, 9, 20, 0.18);
}

.redemption-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 48px;
}

.redemption-intro h3 {
  margin: 12px 0 0;
  font: 600 clamp(2.9rem, 5.5vw, 5.3rem)/0.93 "Space Grotesk", sans-serif;
  letter-spacing: -0.065em;
}

.redemption-intro > p {
  max-width: 470px;
  margin: 0;
  color: var(--muted-bright);
  line-height: 1.7;
}

.redemption-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  margin-top: 54px;
}

.redemption-summary,
.redemption-console {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(17, 20, 37, 0.72);
}

.redemption-summary {
  display: flex;
  flex-direction: column;
}

.redemption-summary h4,
.redemption-console h4,
.redemption-complete h4 {
  margin: 18px 0 12px;
  font: 600 clamp(1.8rem, 3vw, 2.8rem)/1 "Space Grotesk", sans-serif;
  letter-spacing: -0.045em;
}

.redemption-summary > p:not(.network-tag),
.redemption-console > p:not(.network-tag):not(.redemption-status),
.redemption-complete p {
  color: var(--muted-bright);
  line-height: 1.65;
}

.redemption-summary dl {
  margin: auto 0 0;
  padding-top: 28px;
}

.redemption-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.redemption-summary dt,
.redemption-summary dd {
  margin: 0;
  font: 0.66rem "IBM Plex Mono", monospace;
}

.redemption-summary dt { color: var(--muted); }
.redemption-summary dd { color: var(--paper); text-align: right; }

.redemption-progress-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font: 0.68rem "IBM Plex Mono", monospace;
}

.redemption-progress-head b { color: var(--paper); font-weight: 500; }

.redemption-progress {
  height: 2px;
  margin: 20px 0 40px;
  background: var(--line);
}

.redemption-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  transition: width 350ms ease;
}

.redemption-lifecycle .network-tag { color: var(--cyan); }

.redemption-fields {
  display: grid;
  grid-template-columns: minmax(140px, 0.6fr) minmax(220px, 1.4fr);
  gap: 14px;
  margin-top: 28px;
}

.redemption-fields label {
  color: var(--muted);
  font: 0.62rem "IBM Plex Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.redemption-fields input {
  width: 100%;
  margin-top: 9px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  background: rgba(7, 8, 18, 0.72);
  color: var(--paper);
  font: 0.82rem "IBM Plex Mono", monospace;
}

.redemption-fields input:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(140, 120, 255, 0.12);
}

.redemption-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.redemption-action {
  min-width: 0;
  margin-top: 18px;
  padding: 15px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.redemption-action:hover:not(:disabled) {
  background: var(--cyan);
  transform: translateY(-1px);
}

.redemption-action:disabled { cursor: wait; opacity: 0.48; }

.redemption-status,
.redemption-lifecycle .status {
  min-height: 24px;
  margin: 20px 0 0;
  color: var(--amber);
  font: 0.7rem/1.6 "IBM Plex Mono", monospace;
  overflow-wrap: anywhere;
}

.redemption-status.error,
.redemption-lifecycle .status.error { color: var(--red); }
.redemption-status.success,
.redemption-lifecycle .status.success { color: var(--cyan); }

.redemption-transaction {
  display: inline-block;
  margin-top: 8px;
  color: var(--cyan);
  font: 0.7rem "IBM Plex Mono", monospace;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.redemption-evidence {
  margin-top: 18px;
  padding: 0 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(17, 20, 37, 0.48);
}

.redemption-evidence summary {
  padding: 22px 0;
  color: var(--muted-bright);
  font: 500 0.72rem "IBM Plex Mono", monospace;
  cursor: pointer;
}

.redemption-evidence-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.redemption-lifecycle .evidence-item {
  min-width: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.redemption-lifecycle .evidence-item:nth-child(odd) { padding-right: 24px; }
.redemption-lifecycle .evidence-item:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line); }
.redemption-lifecycle .evidence-item span { display: block; color: var(--muted); font: 0.58rem "IBM Plex Mono", monospace; letter-spacing: 0.12em; }
.redemption-lifecycle .evidence-item a,
.redemption-lifecycle .evidence-item code { display: block; margin-top: 9px; color: var(--paper); font: 0.66rem/1.5 "IBM Plex Mono", monospace; overflow-wrap: anywhere; }

.redemption-complete { padding: 32px 0; }
.redemption-complete pre { max-height: 320px; overflow: auto; padding: 18px; border-radius: 14px; background: #070812; color: var(--muted-bright); white-space: pre-wrap; }

.redemption-explanation {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;+  padding: 4px 0 26px;
  border-top: 1px solid var(--line);
}

.redemption-explanation p {
  margin: 0;
  padding: 24px 20px 0 0;
  color: var(--muted-bright);
  line-height: 1.65;
}

.redemption-explanation strong { color: var(--paper); }

@media (max-width: 800px) {
  html {
    scroll-padding-top: 76px;
  }

  .shell {
    width: min(100% - 38px, 650px);
  }

  .site-header {
    min-height: 76px;
    padding-inline: 19px;
  }

  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-block: 72px 84px;
  }

  h1 {
    font-size: clamp(4rem, 18vw, 6.5rem);
  }

  .proof-visual {
    min-height: 570px;
  }

  .section-heading {
    display: block;
  }

  .source-note {
    margin-top: 24px;
    text-align: left;
  }

  .launch-grid,
  .asset-builder,
  .issuer-asset-list {
    grid-template-columns: 1fr;
  }

  .asset-builder-actions {
    grid-column: auto;
  }

  .configuration-grid {
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .shell {
    width: calc(100% - 28px);
  }

  .brand {
    font-size: 0.74rem;
  }

  .site-header {
    padding-inline: 14px;
  }

  .portfolio-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .token-result {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .copy-token-button {
    grid-column: 2;
    justify-self: start;
  }

  .network-pill {
    padding: 8px 10px;
    font-size: 0.55rem;
  }

  .hero {
    padding-top: 58px;
  }

  .eyebrow {
    display: grid;
    gap: 7px;
  }

  h1 {
    font-size: clamp(3.7rem, 19vw, 5.1rem);
  }

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

  .primary-cta,
  .secondary-cta {
    width: 100%;
  }

  .hero-footnote {
    align-items: flex-start;
    gap: 9px;
    flex-direction: column;
    margin-top: 44px;
  }

  .proof-visual {
    min-height: 500px;
    border-radius: 28px;
  }

  .orbit-outer {
    width: 320px;
  }

  .orbit-inner {
    width: 230px;
  }

  .token-core {
    width: 126px;
    height: 126px;
  }

  .token-core small {
    bottom: 25px;
  }

  .chain-node {
    padding: 8px;
  }

  .source-node {
    top: 12%;
    left: 5%;
  }

  .proof-node {
    top: 9%;
    right: 5%;
  }

  .destination-node {
    right: 6%;
    bottom: 22%;
  }

  .node-icon {
    width: 27px;
    height: 27px;
  }

  .chain-node small {
    display: none;
  }

  .system-state {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .state-copy > p:last-child {
    display: none;
  }

  .launch-section,
  .metric-section,
  .proof-section,
  .configuration-section {
    padding-block: 100px;
  }

  h2,
  .launch-section h2 {
    font-size: clamp(3.1rem, 16vw, 4.6rem);
  }

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

  .metric {
    min-height: 210px;
  }

  .metric-value {
    margin-top: 50px;
  }

  .proof-card {
    min-height: 370px;
    padding: 22px;
  }

  .launch-intro::before {
    margin-bottom: 45px;
  }

  .wallet-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button {
    width: 100%;
  }

  .launch-card {
    grid-template-columns: 36px 1fr;
    gap: 13px;
  }

  .launch-number {
    width: 32px;
    height: 32px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .action-button {
    width: 100%;
  }

  .config-list dd {
    max-width: 58%;
  }

  .boundary-card {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  footer {
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    line-height: 1.5;
  }
}

@media (max-width: 800px) {
  .redemption-intro,
  .redemption-layout { grid-template-columns: 1fr; }
  .redemption-intro { align-items: start; gap: 24px; }
  .redemption-summary dl { margin-top: 24px; }
  .redemption-explanation { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 560px) {
  .redemption-lifecycle { margin-top: 72px; padding: 26px 18px; border-radius: 28px; }
  .redemption-intro h3 { font-size: clamp(2.7rem, 14vw, 3.8rem); }
  .redemption-progress-head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .redemption-action { width: 100%; }
  .redemption-fields { grid-template-columns: 1fr; }
  .redemption-evidence { padding: 0 18px; }
  .redemption-evidence-list { grid-template-columns: 1fr; }
  .redemption-lifecycle .evidence-item:nth-child(n) { padding: 18px 0; border-left: 0; }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-target {
    opacity: 1;
    transform: none;
  }
}
