@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #25222c;
  --muted: #686371;
  --primary: #745aa7;
  --primary-soft: #eee9f6;
  --accent: #e99bb5;
  --surface: rgba(255, 255, 255, 0.88);
  --border: rgba(116, 90, 167, 0.16);
  --shadow: 0 24px 70px rgba(49, 38, 65, 0.1);
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Poppins", "Avenir Next", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at 8% 8%, rgba(233, 155, 181, 0.28), transparent 30rem),
    radial-gradient(circle at 92% 16%, rgba(116, 90, 167, 0.18), transparent 34rem),
    #f8f6f2;
}

a {
  color: var(--primary);
}

.shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 72px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: "Poppins", "Avenir Next", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
}

.topbar nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.topbar nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.hero,
.document-section,
.legal-card {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero {
  overflow: hidden;
  padding: clamp(30px, 7vw, 64px);
  border-radius: 28px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border: 52px solid rgba(116, 90, 167, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.eyebrow {
  color: var(--primary);
  font-family: "Poppins", "Avenir Next", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Poppins", "Avenir Next", sans-serif;
  line-height: 1.16;
}

h1 {
  max-width: 760px;
  margin-top: 12px;
  font-family: "Poppins", "Avenir Next", sans-serif;
  font-size: clamp(2.25rem, 7vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 3vw, 1.55rem);
}

h3 {
  font-size: 1.05rem;
}

p,
li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.lead {
  max-width: 700px;
  margin: 20px 0 0;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.legal-card {
  min-height: 154px;
  padding: 24px;
  border-radius: 18px;
  color: var(--ink);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.legal-card:hover,
.legal-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(116, 90, 167, 0.42);
}

.legal-card p {
  margin: 9px 0 0;
  font-size: 0.94rem;
}

.document {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.document-section {
  padding: clamp(22px, 5vw, 34px);
  border-radius: 18px;
}

.document-section p:first-of-type {
  margin-top: 0;
}

.document-section p:last-child,
.document-section ul:last-child,
.document-section ol:last-child {
  margin-bottom: 0;
}

.document-section li + li {
  margin-top: 8px;
}

.commitment {
  max-width: 720px;
  margin: 24px 0 0;
  padding-left: 16px;
  border-left: 4px solid var(--accent);
  color: var(--ink);
  font-weight: 800;
}

.callout {
  padding: 18px 20px;
  border: 1px solid rgba(116, 90, 167, 0.16);
  border-radius: 12px;
  background: var(--primary-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 12px;
  padding: 0 22px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.button-secondary {
  border: 1px solid rgba(116, 90, 167, 0.28);
  background: var(--primary-soft);
  color: var(--primary);
}

.beta-shell {
  width: min(760px, calc(100% - 32px));
}

.beta-entry-shell {
  width: min(980px, calc(100% - 32px));
}

.beta-entry-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 28px;
  align-items: center;
  min-height: 420px;
  background:
    radial-gradient(circle at 80% 18%, rgba(166, 225, 230, 0.32), transparent 14rem),
    radial-gradient(circle at 92% 88%, rgba(233, 155, 181, 0.3), transparent 17rem),
    rgba(255, 255, 255, 0.9);
}

.beta-entry-hero h1 {
  max-width: 620px;
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.beta-entry-byte {
  position: relative;
  display: grid;
  min-height: 270px;
  place-items: center;
}

.beta-entry-byte img {
  position: relative;
  z-index: 2;
  width: 270px;
  max-width: none;
  filter: drop-shadow(0 24px 30px rgba(61, 44, 82, 0.18));
}

.beta-entry-byte .home-byte-glow {
  width: 210px;
  height: 210px;
  border-width: 26px;
}

.platform-section {
  margin-top: 54px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.platform-card {
  position: relative;
  display: grid;
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(49, 38, 65, 0.08);
  text-decoration: none;
}

.platform-card-active {
  background:
    radial-gradient(circle at 100% 0, rgba(166, 225, 230, 0.22), transparent 13rem),
    rgba(255, 255, 255, 0.92);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.platform-card-active:hover,
.platform-card-active:focus-visible {
  border-color: rgba(116, 90, 167, 0.42);
  box-shadow: 0 24px 54px rgba(49, 38, 65, 0.13);
  transform: translateY(-3px);
}

.platform-card-soon {
  background:
    radial-gradient(circle at 100% 0, rgba(233, 155, 181, 0.18), transparent 13rem),
    rgba(255, 255, 255, 0.68);
}

.platform-identity {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  width: fit-content;
}

.platform-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(116, 90, 167, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 9px 24px rgba(49, 38, 65, 0.07);
}

.platform-icon img {
  width: 30px;
  height: 30px;
}

.platform-name {
  width: fit-content;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.platform-status {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 7px 10px;
  border: 1px solid rgba(116, 90, 167, 0.14);
  border-radius: 8px;
  background: rgba(238, 233, 246, 0.8);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
}

.platform-card-soon .platform-status {
  background: rgba(233, 155, 181, 0.13);
  color: #955b70;
}

.platform-card strong {
  align-self: end;
  margin-top: 54px;
  font-size: clamp(1.28rem, 3vw, 1.65rem);
  line-height: 1.3;
}

.platform-card small {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.platform-action {
  align-self: end;
  justify-self: end;
  margin-top: 24px;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 800;
}

.beta-badge {
  padding: 7px 11px;
  border: 1px solid rgba(116, 90, 167, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
}

.beta-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 24px;
  align-items: center;
  min-height: 390px;
  padding: clamp(30px, 6vw, 52px);
  background:
    radial-gradient(circle at 82% 24%, rgba(166, 225, 230, 0.32), transparent 14rem),
    radial-gradient(circle at 92% 88%, rgba(233, 155, 181, 0.32), transparent 16rem),
    rgba(255, 255, 255, 0.88);
}

.beta-hero h1 {
  max-width: 520px;
  font-size: clamp(2.15rem, 6.2vw, 3.55rem);
}

.beta-hero .lead {
  max-width: 520px;
}

.beta-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.beta-values span {
  padding: 7px 10px;
  border: 1px solid rgba(116, 90, 167, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(74, 55, 95, 0.06);
}

.byte-stage {
  position: relative;
  display: grid;
  min-height: 248px;
  place-items: center;
  align-self: end;
}

.byte-stage img {
  position: relative;
  z-index: 2;
  width: min(220px, 124%);
  max-width: none;
  filter: drop-shadow(0 22px 28px rgba(69, 53, 91, 0.18));
}

.byte-stage > span {
  position: absolute;
  z-index: 3;
  right: -4px;
  bottom: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(65, 49, 84, 0.12);
  backdrop-filter: blur(12px);
}

.byte-orbit {
  position: absolute;
  z-index: 1;
  width: 190px;
  height: 190px;
  border: 22px solid rgba(116, 90, 167, 0.08);
  border-radius: 50%;
  transform: rotate(-18deg) scaleY(0.62);
}

.byte-orbit::after {
  content: "";
  position: absolute;
  top: -27px;
  right: 18px;
  width: 18px;
  height: 18px;
  border: 4px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: linear-gradient(135deg, #9be6e5, #c1adf4 58%, #f5aac3);
  box-shadow: 0 8px 18px rgba(116, 90, 167, 0.2);
}

.beta-journey {
  margin-top: 20px;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.journey-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 2px 4px 20px;
}

.journey-heading h2 {
  margin: 5px 0 0;
}

.journey-time {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(233, 155, 181, 0.14);
  color: #9d5871;
  font-size: 0.74rem;
  font-weight: 700;
}

.beta-flow {
  display: grid;
  gap: 0;
}

.beta-step {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: clamp(22px, 5vw, 32px);
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(49, 38, 65, 0.07);
  backdrop-filter: blur(18px);
}

.beta-step-primary {
  border-color: rgba(116, 90, 167, 0.28);
  background:
    radial-gradient(circle at 95% 10%, rgba(166, 225, 230, 0.22), transparent 12rem),
    linear-gradient(135deg, rgba(238, 233, 246, 0.94), rgba(255, 255, 255, 0.92));
}

.step-number {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 800;
}

.beta-step-primary .step-number {
  background: var(--primary);
  color: #fff;
}

.step-kicker {
  margin-bottom: 5px;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.step-content h2 {
  margin: 0;
}

.step-content p {
  margin: 10px 0 4px;
}

.step-content strong {
  color: var(--ink);
}

.beta-button {
  width: 100%;
  margin-top: 14px;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.beta-button:hover,
.beta-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(78, 58, 103, 0.16);
  filter: saturate(1.06);
}

.beta-button:focus-visible {
  outline: 3px solid rgba(233, 155, 181, 0.55);
  outline-offset: 3px;
}

.flow-connector {
  display: grid;
  height: 34px;
  place-items: center;
}

.flow-connector span {
  width: 2px;
  height: 22px;
  border-radius: 2px;
  background: linear-gradient(var(--primary), var(--accent));
}

.beta-help {
  margin-top: 20px;
  padding: 20px 22px;
  border: 1px solid rgba(233, 155, 181, 0.35);
  border-radius: 16px;
  background: rgba(255, 248, 251, 0.88);
}

.beta-help strong {
  color: var(--ink);
}

.beta-help p {
  margin: 7px 0 0;
  font-size: 0.94rem;
}

.beta-shell footer a {
  margin-left: 6px;
  font-weight: 700;
}

.meta,
footer {
  color: var(--muted);
  font-size: 0.88rem;
}

.meta {
  margin-top: 24px;
}

footer {
  padding-top: 30px;
  text-align: center;
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 22px, 920px);
    padding-top: 18px;
  }

  .topbar {
    align-items: flex-start;
  }

  .topbar nav {
    display: none;
  }

  .hero {
    border-radius: 22px;
  }

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

  .beta-shell {
    width: min(100% - 20px, 760px);
  }

  .beta-step {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }

  .step-number {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .beta-help {
    padding: 18px;
  }

  .beta-hero {
    display: block;
    position: relative;
    min-height: 0;
    padding: 28px 22px;
  }

  .beta-hero h1 {
    padding-right: 76px;
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .beta-hero .lead {
    font-size: 0.98rem;
  }

  .beta-values {
    margin-top: 18px;
  }

  .byte-stage {
    position: absolute;
    top: 46px;
    right: -2px;
    width: 104px;
    min-height: 178px;
    align-self: center;
  }

  .byte-stage img {
    width: 150px;
  }

  .byte-stage > span {
    right: -2px;
    bottom: 2px;
    font-size: 0.62rem;
  }

  .byte-orbit {
    width: 122px;
    height: 122px;
    border-width: 16px;
  }

  .journey-heading {
    align-items: flex-start;
    padding-inline: 2px;
  }

  .journey-time {
    margin-top: 2px;
  }
}

@media (max-width: 460px) {
  .beta-hero {
    padding-inline: 20px;
  }

  .byte-stage {
    top: 48px;
    right: -6px;
    width: 88px;
    min-height: 148px;
  }

  .byte-stage img {
    width: 126px;
  }

  .byte-orbit {
    width: 104px;
    height: 104px;
  }

  .byte-stage > span {
    display: none;
  }

  .beta-values span {
    font-size: 0.7rem;
  }

  .journey-time {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .beta-button {
    transition: none;
  }
}

/* Around public website */
.site-shell {
  width: min(1080px, calc(100% - 36px));
}

.document-shell {
  width: min(900px, calc(100% - 36px));
}

.site-topbar {
  position: relative;
  z-index: 10;
  margin-bottom: 22px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(116, 90, 167, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 34px rgba(49, 38, 65, 0.05);
  backdrop-filter: blur(16px);
}

.site-topbar .brand img {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 8px 10px rgba(116, 90, 167, 0.14));
}

.site-topbar nav {
  align-items: center;
}

.site-topbar nav a {
  padding: 9px 11px;
  border-radius: 8px;
  transition: color 150ms ease, background 150ms ease;
}

.site-topbar nav a:hover,
.site-topbar nav a:focus-visible {
  background: rgba(116, 90, 167, 0.08);
  color: var(--primary);
}

.site-topbar nav .nav-beta {
  background: var(--primary);
  color: #fff;
}

.site-topbar nav .nav-beta:hover,
.site-topbar nav .nav-beta:focus-visible {
  background: #62498f;
  color: #fff;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(270px, 0.7fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  min-height: 570px;
  padding: clamp(38px, 7vw, 72px);
  background:
    radial-gradient(circle at 78% 20%, rgba(169, 231, 231, 0.38), transparent 17rem),
    radial-gradient(circle at 92% 86%, rgba(233, 155, 181, 0.34), transparent 21rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 243, 252, 0.86));
}

.home-hero::before {
  content: "";
  position: absolute;
  top: -82px;
  left: 42%;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(116, 90, 167, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 28px rgba(116, 90, 167, 0.025),
    0 0 0 58px rgba(233, 155, 181, 0.025);
}

.home-hero::after {
  right: -116px;
  bottom: -142px;
  width: 390px;
  height: 390px;
  border-width: 70px;
  border-color: rgba(116, 90, 167, 0.055);
}

.home-hero-copy {
  position: relative;
  z-index: 2;
}

.home-hero h1 {
  max-width: 660px;
  font-size: clamp(2.8rem, 5.8vw, 4.45rem);
}

.home-hero .lead {
  max-width: 620px;
}

.home-values {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.home-values span {
  padding: 8px 11px;
  border: 1px solid rgba(116, 90, 167, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 9px 24px rgba(49, 38, 65, 0.06);
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  margin-top: 24px;
}

.home-beta-button {
  gap: 12px;
  margin-top: 0;
  box-shadow: 0 14px 30px rgba(116, 90, 167, 0.2);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.home-beta-button:hover,
.home-beta-button:focus-visible {
  background: #62498f;
  box-shadow: 0 18px 34px rgba(116, 90, 167, 0.26);
  transform: translateY(-2px);
}

.home-beta-button span {
  font-size: 1.2rem;
  line-height: 1;
}

.home-hero-actions small {
  max-width: 180px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.4;
}

.home-byte {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 390px;
  place-items: center;
}

.home-byte img {
  position: relative;
  z-index: 2;
  width: min(350px, 116%);
  max-width: none;
  filter: drop-shadow(0 28px 34px rgba(61, 44, 82, 0.2));
}

.home-byte-glow {
  position: absolute;
  z-index: 1;
  width: 310px;
  height: 310px;
  border: 36px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  background: rgba(116, 90, 167, 0.05);
  box-shadow:
    0 0 0 16px rgba(116, 90, 167, 0.035),
    0 24px 70px rgba(116, 90, 167, 0.1);
  transform: scaleY(0.92);
}

.home-byte-glow::after {
  content: "";
  position: absolute;
  top: -48px;
  right: 26px;
  width: 26px;
  height: 26px;
  border: 5px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: linear-gradient(135deg, #9be6e5, #c1adf4 55%, #f5aac3);
  box-shadow: 0 12px 25px rgba(116, 90, 167, 0.2);
}

.home-byte-note {
  position: absolute;
  z-index: 3;
  right: 2px;
  bottom: 26px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(49, 38, 65, 0.12);
  backdrop-filter: blur(14px);
}

.story-statement {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 20px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(233, 155, 181, 0.24);
  border-radius: 22px;
  background:
    radial-gradient(circle at 5% 50%, rgba(233, 155, 181, 0.18), transparent 12rem),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 44px rgba(49, 38, 65, 0.07);
}

.statement-mark {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 22px;
  background: rgba(116, 90, 167, 0.08);
}

.statement-mark img {
  width: 52px;
  height: 52px;
}

.story-statement p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 700;
  line-height: 1.45;
}

.feature-section,
.trust-section {
  margin-top: 72px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 24px;
  padding: 0 8px;
}

.section-heading h2 {
  max-width: 650px;
  margin: 6px 0 0;
  font-size: clamp(1.7rem, 4vw, 2.55rem);
}

.section-heading > p {
  max-width: 360px;
  margin: 0;
  font-size: 0.94rem;
}

.section-heading-compact {
  align-items: center;
}

.section-link {
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 1px solid rgba(116, 90, 167, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 20px 48px rgba(49, 38, 65, 0.08);
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -74px;
  width: 180px;
  height: 180px;
  border: 34px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
}

.feature-card-primary {
  background: linear-gradient(150deg, rgba(238, 233, 246, 0.96), rgba(255, 255, 255, 0.88));
}

.feature-card-accent {
  background: linear-gradient(150deg, rgba(255, 235, 242, 0.96), rgba(255, 255, 255, 0.88));
}

.feature-card-mint {
  background: linear-gradient(150deg, rgba(229, 247, 244, 0.96), rgba(255, 255, 255, 0.88));
}

.feature-icon,
.legal-card-icon,
.document-hero-icon {
  display: grid;
  place-items: center;
}

.feature-icon {
  width: 84px;
  height: 84px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 14px 32px rgba(49, 38, 65, 0.08);
}

.feature-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.feature-order {
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  font-size: 1.25rem;
}

.feature-card p {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  font-size: 0.92rem;
}

.trust-section {
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(116, 90, 167, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 96% 4%, rgba(169, 231, 231, 0.2), transparent 19rem),
    rgba(255, 255, 255, 0.58);
  box-shadow: 0 24px 60px rgba(49, 38, 65, 0.07);
}

.home-legal-grid {
  margin-top: 0;
}

.legal-card-with-icon,
.legal-hub-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 34px;
  gap: 16px;
  align-items: center;
  min-height: 118px;
  padding: 18px;
}

.legal-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(238, 233, 246, 0.72);
}

.legal-card-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.legal-card-copy {
  display: grid;
  gap: 5px;
}

.legal-card-copy strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.legal-card-copy small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.card-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: rgba(116, 90, 167, 0.08);
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease;
}

.legal-card-with-icon:hover .card-arrow,
.legal-card-with-icon:focus-visible .card-arrow,
.legal-hub-card:hover .card-arrow,
.legal-hub-card:focus-visible .card-arrow {
  transform: translateX(3px);
  background: rgba(116, 90, 167, 0.14);
}

.legal-hub-hero,
.document-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 28px;
  align-items: center;
  min-height: 330px;
  background:
    radial-gradient(circle at 86% 30%, rgba(169, 231, 231, 0.25), transparent 14rem),
    radial-gradient(circle at 90% 100%, rgba(233, 155, 181, 0.22), transparent 16rem),
    rgba(255, 255, 255, 0.88);
}

.legal-hub-hero h1,
.document-hero h1 {
  font-size: clamp(2.45rem, 6vw, 4.35rem);
}

.legal-hero-mark {
  position: relative;
  display: grid;
  width: 170px;
  height: 170px;
  place-items: center;
  border: 26px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  background: rgba(116, 90, 167, 0.07);
  box-shadow: 0 22px 45px rgba(49, 38, 65, 0.09);
}

.legal-hero-mark img {
  width: 112px;
  height: 112px;
}

.legal-intro {
  max-width: 720px;
  margin-top: 52px;
  padding-inline: 8px;
}

.legal-intro h2 {
  margin: 6px 0 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.legal-intro p {
  max-width: 600px;
  margin-bottom: 0;
}

.legal-hub-grid {
  margin-top: 24px;
}

.legal-hub-card {
  min-height: 142px;
  padding: 22px;
  border-radius: 22px;
}

.legal-hub-card .legal-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 21px;
}

.legal-hub-card .legal-card-icon img {
  width: 58px;
  height: 58px;
}

.legal-hub-card .legal-card-copy strong {
  font-size: 1.05rem;
}

.legal-icon-primary {
  background: rgba(238, 233, 246, 0.84);
}

.legal-icon-accent {
  background: rgba(255, 232, 240, 0.88);
}

.legal-icon-mint {
  background: rgba(226, 246, 242, 0.9);
}

.legal-icon-neutral {
  background: rgba(242, 238, 233, 0.9);
}

.legal-support-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 26px 30px;
  border: 1px solid rgba(233, 155, 181, 0.24);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 239, 244, 0.88), rgba(255, 255, 255, 0.82));
  box-shadow: 0 18px 42px rgba(49, 38, 65, 0.06);
}

.legal-support-card h2 {
  margin: 5px 0 0;
}

.legal-support-card .button {
  flex: 0 0 auto;
  margin: 0;
}

.document-hero {
  grid-template-columns: minmax(0, 1fr) 150px;
  min-height: 300px;
}

.document-hero-copy {
  position: relative;
  z-index: 1;
}

.document-hero-icon {
  position: relative;
  z-index: 1;
  width: 138px;
  height: 138px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 34px;
  box-shadow: 0 22px 46px rgba(49, 38, 65, 0.12);
  transform: rotate(3deg);
}

.document-hero-icon img {
  width: 108px;
  height: 108px;
  object-fit: contain;
  transform: rotate(-3deg);
}

.document-reading {
  gap: 14px;
  margin-top: 20px;
}

.document-reading .document-section {
  position: relative;
  overflow: hidden;
  border-color: rgba(116, 90, 167, 0.12);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(49, 38, 65, 0.055);
}

.document-reading .document-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 64px;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.document-reading .document-section h2 {
  color: var(--ink);
  font-size: clamp(1.22rem, 3vw, 1.5rem);
}

.document-reading .callout {
  border-color: rgba(116, 90, 167, 0.14);
  background:
    linear-gradient(135deg, rgba(238, 233, 246, 0.9), rgba(255, 248, 251, 0.82));
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding: 22px 8px 0;
  border-top: 1px solid rgba(116, 90, 167, 0.1);
  text-align: left;
}

.site-footer a {
  font-weight: 700;
  text-decoration: none;
}

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

  .home-byte {
    min-height: 330px;
  }

  .home-byte img {
    width: 310px;
  }

  .home-byte-glow {
    width: 250px;
    height: 250px;
  }

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

  .feature-card {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 0 18px;
    min-height: 0;
  }

  .feature-icon {
    grid-row: 1 / span 3;
    margin-bottom: 0;
  }
}

@media (max-width: 680px) {
  .site-shell,
  .document-shell {
    width: min(100% - 20px, 1080px);
  }

  .site-topbar {
    align-items: center;
    padding: 8px 10px;
  }

  .site-topbar nav {
    display: flex;
  }

  .site-topbar nav a:not(:last-child) {
    display: none;
  }

  .site-topbar nav a {
    font-size: 0.78rem;
  }

  .beta-entry-shell {
    width: min(100% - 20px, 980px);
  }

  .beta-entry-hero {
    display: block;
    position: relative;
    min-height: 0;
    padding: 30px 22px 190px;
  }

  .beta-entry-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .beta-entry-byte {
    position: absolute;
    right: 2px;
    bottom: -6px;
    width: 170px;
    min-height: 190px;
  }

  .beta-entry-byte img {
    width: 190px;
  }

  .beta-entry-byte .home-byte-glow {
    width: 148px;
    height: 148px;
    border-width: 20px;
  }

  .platform-section {
    margin-top: 42px;
  }

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

  .platform-card {
    min-height: 260px;
    padding: 24px;
  }

  .home-hero {
    display: block;
    position: relative;
    min-height: 0;
    padding: 30px 22px 26px;
  }

  .home-hero h1 {
    padding-right: 82px;
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .home-hero .lead {
    font-size: 0.98rem;
  }

  .home-values {
    margin-top: 18px;
  }

  .home-hero-actions {
    display: grid;
    justify-items: start;
    padding-right: 72px;
  }

  .home-hero-actions small {
    max-width: none;
  }

  .home-byte {
    position: absolute;
    top: 54px;
    right: -4px;
    width: 112px;
    min-height: 190px;
    align-self: end;
  }

  .home-byte img {
    width: 158px;
  }

  .home-byte-glow {
    width: 126px;
    height: 126px;
    border-width: 18px;
  }

  .home-byte-note {
    display: none;
  }

  .story-statement {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 15px;
  }

  .statement-mark {
    width: 56px;
    height: 56px;
    border-radius: 17px;
  }

  .statement-mark img {
    width: 40px;
    height: 40px;
  }

  .feature-section,
  .trust-section {
    margin-top: 52px;
  }

  .section-heading {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
  }

  .section-heading > p {
    max-width: none;
  }

  .section-heading-compact {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .feature-card {
    grid-template-columns: 72px minmax(0, 1fr);
    padding: 22px;
  }

  .feature-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
  }

  .feature-icon img {
    width: 54px;
    height: 54px;
  }

  .trust-section {
    padding: 22px 14px;
    border-radius: 22px;
  }

  .home-legal-grid,
  .legal-hub-grid {
    grid-template-columns: 1fr;
  }

  .legal-hub-hero,
  .document-hero {
    display: block;
    position: relative;
    min-height: 0;
    padding: 28px 22px;
  }

  .legal-hub-hero h1,
  .document-hero h1 {
    padding-right: 82px;
    font-size: clamp(2.25rem, 10vw, 3.1rem);
  }

  .legal-hero-mark {
    position: absolute;
    top: 30px;
    right: 18px;
    width: 90px;
    height: 90px;
    border-width: 14px;
  }

  .legal-hero-mark img {
    width: 60px;
    height: 60px;
  }

  .document-hero-icon {
    position: absolute;
    top: 30px;
    right: 18px;
    width: 88px;
    height: 88px;
    border-radius: 24px;
  }

  .document-hero-icon img {
    width: 70px;
    height: 70px;
  }

  .legal-intro {
    margin-top: 42px;
  }

  .legal-support-card {
    display: grid;
    padding: 22px;
  }

  .legal-support-card .button {
    width: 100%;
  }

  .document-reading .document-section {
    padding: 24px 20px;
  }

  .site-footer {
    display: grid;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .home-hero {
    padding-inline: 20px;
  }

  .home-byte {
    top: 56px;
    right: -8px;
    width: 96px;
    min-height: 160px;
  }

  .home-byte img {
    width: 136px;
  }

  .home-byte-glow {
    width: 106px;
    height: 106px;
  }

  .home-values span {
    font-size: 0.69rem;
  }

  .home-hero-actions {
    padding-right: 0;
  }

  .home-beta-button {
    width: 100%;
  }

  .section-heading-compact {
    grid-template-columns: 1fr;
  }

  .section-link {
    width: fit-content;
  }

  .legal-card-with-icon,
  .legal-hub-card {
    grid-template-columns: 58px minmax(0, 1fr) 30px;
    gap: 12px;
  }

  .legal-card-icon,
  .legal-hub-card .legal-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 17px;
  }

  .legal-card-icon img,
  .legal-hub-card .legal-card-icon img {
    width: 46px;
    height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-topbar nav a,
  .card-arrow {
    transition: none;
  }
}
