@charset "UTF-8";

:root {
  --ink: #0b1020;
  --ink-soft: #121a31;
  --ink-raised: #18233f;
  --violet: #6d28d9;
  --violet-bright: #8b5cf6;
  --cyan: #22d3ee;
  --orange: #f97316;
  --paper: #f8fafc;
  --paper-muted: #e9edf5;
  --paper-ink: #111827;
  --muted: #9da9c2;
  --line-dark: rgba(248, 250, 252, 0.16);
  --line-light: rgba(11, 16, 32, 0.14);
  --shadow-soft: 0 20px 60px rgba(2, 6, 23, 0.24);
  --shadow-glow: 0 0 0 1px rgba(34, 211, 238, 0.12), 0 18px 50px rgba(109, 40, 217, 0.28);
  --radius-sm: 1rem;
  --radius-md: 1.5rem;
  --radius-lg: 2.25rem;
  --radius-pill: 999px;
  --page-pad: clamp(1.25rem, 4vw, 5rem);
  --content-max: 76rem;
  --font-body: var(--mrc-font-en), "Segoe UI", Arial, sans-serif;
  --font-display: var(--mrc-font-en), Georgia, "Times New Roman", serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snap: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--cyan);
  color: var(--ink);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

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

button {
  cursor: pointer;
}

button:disabled,
[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.56;
}

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

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: clip;
  isolation: isolate;
}

.home-page .page-shell {
  background:
    radial-gradient(circle at 88% 12%, rgba(109, 40, 217, 0.2), transparent 25rem),
    var(--ink);
}

.site-header {
  position: relative;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  min-height: 5.25rem;
  padding: 0.9rem var(--page-pad);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(11, 16, 32, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  width: fit-content;
  color: var(--paper);
  font-size: 0.94rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.brand:hover {
  color: var(--cyan);
}

.brand__index {
  display: grid;
  width: 2.2rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, 0.64);
  border-radius: var(--radius-pill);
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0;
}

.brand__name {
  position: relative;
  top: 0.03em;
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--paper);
}

.menu-toggle::before,
.menu-toggle::after,
.menu-toggle span {
  position: absolute;
  width: 1.05rem;
  height: 2px;
  border-radius: var(--radius-pill);
  background: currentColor;
  content: "";
  transition: transform 180ms var(--ease-snap), opacity 180ms ease;
}

.menu-toggle::before {
  transform: translateY(-0.23rem);
}

.menu-toggle::after {
  transform: translateY(0.23rem);
}

.menu-toggle span {
  opacity: 0;
}

.menu-toggle:hover {
  border-color: rgba(34, 211, 238, 0.8);
  color: var(--cyan);
}

.menu-toggle[aria-expanded="true"]::before {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: var(--page-pad);
  left: var(--page-pad);
  display: grid;
  gap: 0.25rem;
  max-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  background: rgba(18, 26, 49, 0.98);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.6rem);
  transition:
    max-height 220ms var(--ease-out),
    padding 220ms var(--ease-out),
    border-color 220ms ease,
    opacity 180ms ease,
    transform 220ms var(--ease-out);
}

.site-nav.is-open {
  max-height: 20rem;
  padding: 0.55rem;
  border-color: var(--line-dark);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav__link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 2.8rem;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-pill);
  color: #c8d0df;
  font-size: 0.89rem;
  font-weight: 650;
  letter-spacing: 0.015em;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav__link::before {
  color: var(--cyan);
  content: "0" counter(site-nav-index);
  font-family: var(--font-display);
  font-size: 0.78rem;
  opacity: 0.8;
}

.site-nav__link:hover,
.site-nav__link.is-active,
.site-nav__link[aria-current="page"] {
  background: rgba(34, 211, 238, 0.1);
  color: var(--paper);
}

.site-nav {
  counter-reset: site-nav-index;
}

.site-nav__link {
  counter-increment: site-nav-index;
}

.hero {
  position: relative;
  min-height: min(48rem, calc(100svh - 5.25rem));
  padding: clamp(3.5rem, 9vw, 8rem) var(--page-pad) clamp(4.5rem, 8vw, 7rem);
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(11, 16, 32, 0.98) 0%, rgba(11, 16, 32, 0.9) 56%, rgba(37, 24, 81, 0.54) 100%);
}

.hero::before {
  position: absolute;
  inset: auto auto 0 0;
  width: min(58vw, 50rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.65), transparent);
  content: "";
}

.hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.hero__glow--violet {
  top: -17rem;
  right: -11rem;
  width: 38rem;
  height: 38rem;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.65) 0%, rgba(109, 40, 217, 0.1) 49%, transparent 70%);
}

.hero__glow--cyan {
  right: 23%;
  bottom: -20rem;
  width: 31rem;
  height: 31rem;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.23) 0%, transparent 68%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  width: min(100%, var(--content-max));
  min-height: 100%;
  margin: 0 auto;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 44rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  margin: 0 0 1.15rem;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  display: block;
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1,
.legal-document h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.hero h1 {
  max-width: 10ch;
  color: var(--paper);
  font-size: clamp(3.35rem, 8vw, 7.7rem);
  text-wrap: balance;
}

.hero__rule {
  width: min(100%, 32rem);
  height: 1px;
  margin: clamp(1.6rem, 3vw, 2.25rem) 0;
  border: 0;
  background: linear-gradient(90deg, var(--cyan), rgba(34, 211, 238, 0.14), transparent);
}

.hero__lead {
  max-width: 36rem;
  margin: 0;
  color: #c5cede;
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  line-height: 1.72;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.95rem 1.25rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  min-height: 3.15rem;
  padding: 0.72rem 1.25rem 0.72rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 780;
  letter-spacing: 0.005em;
  line-height: 1.2;
  text-align: center;
  transition:
    background 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease,
    color 170ms ease,
    transform 170ms var(--ease-snap);
}

.btn::after {
  display: grid;
  width: 1.42rem;
  height: 1.42rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "→";
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  transition: transform 170ms var(--ease-snap), background 170ms ease;
}

.btn--primary {
  border-color: rgba(34, 211, 238, 0.62);
  background: linear-gradient(105deg, rgba(109, 40, 217, 0.56), rgba(34, 211, 238, 0.14));
  box-shadow: inset 0 0 0 1px rgba(248, 250, 252, 0.05), 0 10px 28px rgba(2, 6, 23, 0.26);
  color: var(--paper);
}

.btn--primary:hover {
  border-color: var(--cyan);
  background: linear-gradient(105deg, rgba(109, 40, 217, 0.86), rgba(34, 211, 238, 0.29));
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn--primary:hover::after {
  background: var(--cyan);
  color: var(--ink);
  transform: translateX(0.14rem);
}

.btn--primary:active {
  box-shadow: none;
  transform: translateY(1px) scale(0.985);
}

.btn--light {
  border-color: var(--paper);
  background: var(--paper);
  box-shadow: 0 12px 24px rgba(11, 16, 32, 0.16);
  color: var(--ink);
}

.btn--light:hover {
  border-color: var(--paper);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(11, 16, 32, 0.25);
  transform: translateY(-2px);
}

.btn--light:hover::after {
  background: var(--ink);
  color: var(--paper);
  transform: translateX(0.14rem);
}

.btn--light:active {
  transform: translateY(1px) scale(0.985);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(248, 250, 252, 0.34);
  color: #d9e3f0;
  font-size: 0.92rem;
  font-weight: 680;
  line-height: 1.35;
  transition: border-color 160ms ease, color 160ms ease;
}

.text-link::after {
  content: "↓";
  font-size: 1rem;
  line-height: 1;
  transition: transform 160ms var(--ease-snap);
}

.text-link:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.text-link:hover::after {
  transform: translateY(0.16rem);
}

.hero__art {
  position: absolute;
  z-index: 1;
  top: 54%;
  right: -8rem;
  width: min(73vw, 38rem);
  aspect-ratio: 1;
  pointer-events: none;
  transform: translateY(-50%);
}

.hero__art-index {
  position: absolute;
  top: 4%;
  right: 10%;
  color: rgba(248, 250, 252, 0.09);
  font-family: var(--font-display);
  font-size: clamp(10rem, 25vw, 22rem);
  font-weight: 600;
  letter-spacing: -0.09em;
  line-height: 0.78;
}

.hero__art-ring {
  position: absolute;
  top: 12%;
  right: 11%;
  width: 66%;
  aspect-ratio: 1;
  border: 1px solid rgba(34, 211, 238, 0.66);
  border-radius: 50%;
  box-shadow:
    0 0 0 1.5rem rgba(34, 211, 238, 0.035),
    0 0 0 4.4rem rgba(109, 40, 217, 0.05),
    inset 0 0 5.4rem rgba(109, 40, 217, 0.22);
}

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

.hero__art-ring::before {
  top: 11%;
  right: 11%;
  bottom: 11%;
  left: 11%;
  border: 1px dashed rgba(248, 250, 252, 0.24);
}

.hero__art-ring::after {
  top: 50%;
  left: -0.38rem;
  width: 0.72rem;
  aspect-ratio: 1;
  background: var(--orange);
  box-shadow: 0 0 0 0.42rem rgba(249, 115, 22, 0.14), 0 0 1.7rem rgba(249, 115, 22, 0.8);
}

.hero__art-core {
  position: absolute;
  top: 45%;
  right: 40%;
  width: 17%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #d9fbff 0%, var(--cyan) 24%, var(--violet) 67%, rgba(109, 40, 217, 0) 71%);
  box-shadow: 0 0 4rem rgba(34, 211, 238, 0.42);
}

.hero__art-tag {
  position: absolute;
  right: 0;
  bottom: 16%;
  padding: 0.48rem 0.82rem;
  border: 1px solid rgba(248, 250, 252, 0.25);
  border-radius: var(--radius-pill);
  background: rgba(11, 16, 32, 0.68);
  box-shadow: 0 0.8rem 2rem rgba(2, 6, 23, 0.25);
  color: var(--paper);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__art-dot {
  position: absolute;
  top: 21%;
  left: 11%;
  width: 0.65rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 1.2rem var(--cyan);
}

.hero__side-note {
  position: absolute;
  right: 0;
  bottom: 0;
  display: none;
  max-width: 8rem;
  margin: 0;
  color: rgba(248, 250, 252, 0.56);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  line-height: 1.55;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.message-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  padding: clamp(4.75rem, 9vw, 8.4rem) var(--page-pad);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(109, 40, 217, 0.055), transparent 46%),
    var(--paper);
  color: var(--paper-ink);
}

.message-section::after {
  position: absolute;
  right: -7rem;
  bottom: -7rem;
  width: 19rem;
  aspect-ratio: 1;
  border: 1px solid rgba(109, 40, 217, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 2.5rem rgba(109, 40, 217, 0.035), 0 0 0 5rem rgba(34, 211, 238, 0.035);
  content: "";
}

.section-index {
  position: relative;
  z-index: 1;
  align-self: start;
  color: var(--violet);
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.75;
  opacity: 0.86;
}

.message-section__content {
  position: relative;
  z-index: 1;
  max-width: 45rem;
}

.eyebrow--dark {
  color: var(--violet);
}

.message-section h2,
.steps-section h2,
.closing-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.message-section h2 {
  max-width: 14ch;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
}

.message-section__content > p:not(.eyebrow) {
  max-width: 39rem;
  margin: 1.35rem 0 0;
  color: #425069;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.75;
}

.message-section__mark {
  display: flex;
  align-items: center;
  gap: 0.84rem;
  width: fit-content;
  margin-top: clamp(1.8rem, 3vw, 2.7rem);
  color: var(--violet);
  font-size: 0.93rem;
  font-weight: 770;
}

.message-section__mark::before {
  display: grid;
  width: 2.45rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--violet), var(--violet-bright));
  box-shadow: 0 0.7rem 1.3rem rgba(109, 40, 217, 0.22);
  color: var(--paper);
  content: "→";
  font-size: 1.05rem;
}

.steps-section {
  position: relative;
  padding: clamp(4.75rem, 9vw, 8.5rem) var(--page-pad);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 22%, rgba(34, 211, 238, 0.1), transparent 20rem),
    var(--ink-soft);
  color: var(--paper);
}

.steps-section::before {
  position: absolute;
  top: 0;
  right: var(--page-pad);
  left: var(--page-pad);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.62), transparent);
  content: "";
}

.steps-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.3rem;
  width: min(100%, var(--content-max));
  margin: 0 auto clamp(2rem, 5vw, 4.2rem);
}

.steps-section__head .section-index {
  color: rgba(34, 211, 238, 0.88);
}

.steps-section__head h2 {
  max-width: 13ch;
  font-size: clamp(2.3rem, 4.8vw, 4.5rem);
}

.steps-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.9rem;
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.step-card {
  position: relative;
  min-height: 15rem;
  padding: 1.7rem;
  overflow: hidden;
  border: 1px solid rgba(248, 250, 252, 0.15);
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(248, 250, 252, 0.08), rgba(248, 250, 252, 0.025));
  box-shadow: inset 0 1px 0 rgba(248, 250, 252, 0.06);
}

.step-card::after {
  position: absolute;
  right: -2.5rem;
  bottom: -4.5rem;
  width: 10rem;
  aspect-ratio: 1;
  border: 1px solid rgba(248, 250, 252, 0.14);
  border-radius: 50%;
  content: "";
}

.step-card--accent {
  border-color: rgba(34, 211, 238, 0.45);
  background:
    radial-gradient(circle at 85% 90%, rgba(34, 211, 238, 0.16), transparent 10rem),
    linear-gradient(140deg, rgba(109, 40, 217, 0.35), rgba(248, 250, 252, 0.045));
}

.step-card--accent::after {
  border-color: rgba(34, 211, 238, 0.38);
}

.step-card__number {
  display: block;
  margin-bottom: 2.1rem;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.step-card:nth-child(2) .step-card__number {
  color: #c4b5fd;
}

.step-card:nth-child(3) .step-card__number {
  color: #fdba74;
}

.step-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
}

.step-card p {
  position: relative;
  z-index: 1;
  max-width: 24ch;
  margin: 0.85rem 0 0;
  color: #bcc7d9;
  font-size: 0.96rem;
  line-height: 1.65;
}

.closing-cta {
  position: relative;
  display: grid;
  min-height: 28rem;
  padding: clamp(5rem, 10vw, 9rem) var(--page-pad);
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, #5520b2 0%, #6d28d9 48%, #4f1d95 100%);
  color: var(--paper);
  text-align: center;
}

.closing-cta::before {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(248, 250, 252, 0.2);
  border-radius: var(--radius-lg);
  content: "";
  pointer-events: none;
}

.closing-cta__content {
  position: relative;
  z-index: 2;
  max-width: 46rem;
}

.closing-cta h2 {
  max-width: 13ch;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
}

.closing-cta p {
  max-width: 38rem;
  margin: 1.25rem auto 2.1rem;
  color: rgba(248, 250, 252, 0.84);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.72;
}

.closing-cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.closing-cta__orb--one {
  top: -11rem;
  left: -10rem;
  width: 27rem;
  height: 27rem;
  border: 1px solid rgba(34, 211, 238, 0.47);
  box-shadow:
    0 0 0 2.8rem rgba(34, 211, 238, 0.08),
    0 0 0 6.5rem rgba(34, 211, 238, 0.035);
}

.closing-cta__orb--two {
  right: -8rem;
  bottom: -11rem;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle at 40% 40%, rgba(249, 115, 22, 0.65), rgba(249, 115, 22, 0.02) 66%, transparent 68%);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.3rem;
  padding: clamp(3rem, 6vw, 5rem) var(--page-pad) 2rem;
  border-top: 1px solid var(--line-dark);
  background: #080c18;
  color: var(--paper);
}

.site-footer__identity {
  max-width: 28rem;
}

.site-footer__identity .brand {
  margin-bottom: 1rem;
}

.site-footer__identity p,
.site-footer__identity small {
  display: block;
  margin: 0;
  color: #91a0b8;
  font-size: 0.86rem;
  line-height: 1.65;
}

.site-footer__legal {
  display: grid;
  gap: 0.8rem;
}

.site-footer__label {
  margin: 0;
  color: var(--cyan);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  max-width: 42rem;
}

.site-footer__links a {
  padding: 0.2rem 0;
  border-bottom: 1px solid transparent;
  color: #c9d2e0;
  font-size: 0.84rem;
  line-height: 1.5;
  transition: border-color 160ms ease, color 160ms ease;
}

.site-footer__links a:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.mobile-sticky-cta {
  display: none;
}

/* Legal pages */

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

.legal-page .page-shell {
  background: var(--paper);
}

.site-header--legal {
  border-bottom-color: rgba(248, 250, 252, 0.14);
}

.site-header--legal .site-nav__link::before {
  display: none;
}

.legal-document {
  width: min(calc(100% - (var(--page-pad) * 2)), 58rem);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(4.5rem, 8vw, 7.5rem);
  color: #334155;
}

.legal-document__header {
  padding-bottom: clamp(2rem, 5vw, 3.8rem);
  border-bottom: 1px solid var(--line-light);
}

.legal-document h1 {
  max-width: 12ch;
  color: var(--paper-ink);
  font-size: clamp(3rem, 7vw, 6.3rem);
}

.legal-date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.25rem 0 0;
  color: #59677e;
  font-size: 0.88rem;
  font-weight: 650;
}

.legal-date::before {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.legal-intro {
  max-width: 48rem;
  margin: 1.25rem 0 0;
  color: #43516a;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.75;
}

.legal-document h2 {
  margin: clamp(2.5rem, 5vw, 4rem) 0 0.85rem;
  color: var(--paper-ink);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.legal-document h3 {
  margin: 1.85rem 0 0.55rem;
  color: #1e293b;
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.35;
}

.legal-document p,
.legal-document li {
  font-size: 0.98rem;
  line-height: 1.78;
}

.legal-document p {
  margin: 0.7rem 0 0;
}

.legal-document ul,
.legal-document ol {
  margin: 0.9rem 0 0;
  padding-left: 1.3rem;
}

.legal-document li + li {
  margin-top: 0.48rem;
}

.legal-document a {
  border-bottom: 1px solid rgba(109, 40, 217, 0.35);
  color: #5420ab;
  font-weight: 700;
  overflow-wrap: anywhere;
  transition: border-color 160ms ease, color 160ms ease;
}

.legal-document a:hover {
  border-color: var(--cyan);
  color: #087d90;
}

.legal-document strong {
  color: #1f2937;
  font-weight: 800;
}

.legal-page .site-footer {
  background: var(--ink);
}

/* Keyboard and JavaScript state helpers */

[data-reveal] {
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}

[data-reveal].is-hidden {
  opacity: 0;
  transform: translateY(1rem);
}

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

@media (min-width: 46rem) {
  .site-header {
    grid-template-columns: minmax(11rem, 1fr) auto;
    min-height: 5.75rem;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    max-height: none;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav__link {
    min-height: 2.5rem;
    padding: 0.45rem 0.62rem;
    font-size: 0.8rem;
  }

  .site-nav__link::before {
    font-size: 0.68rem;
  }

  .hero__side-note {
    display: block;
  }

  .message-section {
    grid-template-columns: minmax(7rem, 0.4fr) minmax(0, 1.5fr);
    gap: clamp(2.2rem, 7vw, 8rem);
  }

  .steps-section__head {
    grid-template-columns: minmax(7rem, 0.42fr) minmax(0, 1.5fr);
    gap: clamp(2rem, 7vw, 8rem);
  }

  .steps-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .step-card {
    min-height: 18rem;
    padding: clamp(1.5rem, 2.5vw, 2.2rem);
  }

  .site-footer {
    grid-template-columns: minmax(0, 1.1fr) minmax(17rem, 0.9fr);
    align-items: start;
    gap: 4rem;
  }
}

@media (min-width: 64rem) {
  .site-header {
    padding-right: max(var(--page-pad), calc((100vw - var(--content-max)) / 2));
    padding-left: max(var(--page-pad), calc((100vw - var(--content-max)) / 2));
  }

  .hero {
    padding-right: max(var(--page-pad), calc((100vw - var(--content-max)) / 2));
    padding-left: max(var(--page-pad), calc((100vw - var(--content-max)) / 2));
  }

  .hero__grid {
    grid-template-columns: minmax(0, 7fr) minmax(18rem, 4fr);
  }

  .hero__art {
    position: relative;
    top: auto;
    right: auto;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: min(35vw, 33rem);
    margin-right: -2rem;
    transform: none;
  }

  .message-section {
    padding-right: max(var(--page-pad), calc((100vw - var(--content-max)) / 2));
    padding-left: max(var(--page-pad), calc((100vw - var(--content-max)) / 2));
  }

  .steps-section {
    padding-right: max(var(--page-pad), calc((100vw - var(--content-max)) / 2));
    padding-left: max(var(--page-pad), calc((100vw - var(--content-max)) / 2));
  }

  .closing-cta {
    padding-right: max(var(--page-pad), calc((100vw - var(--content-max)) / 2));
    padding-left: max(var(--page-pad), calc((100vw - var(--content-max)) / 2));
  }

  .site-footer {
    padding-right: max(var(--page-pad), calc((100vw - var(--content-max)) / 2));
    padding-left: max(var(--page-pad), calc((100vw - var(--content-max)) / 2));
  }
}

@media (min-width: 75rem) {
  .site-nav {
    gap: 0.48rem;
  }

  .site-nav__link {
    padding-right: 0.86rem;
    padding-left: 0.86rem;
    font-size: 0.84rem;
  }

  .hero__art {
    margin-right: 0;
  }

  .hero__side-note {
    right: -1.9rem;
  }
}

@media (max-width: 45.9375rem) {
  .hero {
    min-height: calc(100svh - 5.25rem);
  }

  .hero__art {
    top: 52%;
    right: -12rem;
    width: 34rem;
    opacity: 0.68;
  }

  .hero__copy {
    padding-bottom: 10rem;
  }

  .hero h1 {
    max-width: 8.5ch;
  }

  .hero__lead {
    max-width: 31rem;
  }

  .hero__actions {
    align-items: stretch;
  }

  .hero__actions .btn--primary {
    width: 100%;
  }

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

  .message-section__mark {
    align-items: flex-start;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 45;
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    left: max(0.75rem, env(safe-area-inset-left));
    display: inline-flex;
    min-height: 3.5rem;
    padding: 0.75rem 1.1rem 0.75rem 1.3rem;
    border: 1px solid rgba(248, 250, 252, 0.6);
    border-radius: var(--radius-pill);
    background: linear-gradient(100deg, var(--cyan), #78e6f5);
    box-shadow: 0 0.9rem 2.4rem rgba(0, 0, 0, 0.36);
    color: var(--ink);
    font-size: 0.98rem;
    font-weight: 820;
    transition:
      box-shadow 170ms ease,
      transform 170ms var(--ease-snap),
      background 170ms ease;
  }

  .mobile-sticky-cta::after {
    display: grid;
    width: 1.45rem;
    height: 1.45rem;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    content: "→";
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1;
  }

  .mobile-sticky-cta:hover {
    background: #b1f4fc;
    box-shadow: 0 1rem 2.8rem rgba(34, 211, 238, 0.28);
    transform: translateY(-2px);
  }

  .mobile-sticky-cta:active {
    transform: translateY(1px) scale(0.985);
  }

  .home-page .site-footer {
    margin-bottom: calc(4.75rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 27rem) {
  .brand {
    gap: 0.58rem;
    font-size: 0.83rem;
  }

  .brand__index {
    width: 2rem;
  }

  .hero {
    padding-top: 3.1rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.1rem);
  }

  .hero__art {
    right: -15rem;
    opacity: 0.48;
  }

  .hero__art-tag,
  .hero__art-dot {
    display: none;
  }

  .btn {
    width: 100%;
  }

  .legal-document {
    width: min(calc(100% - 2.5rem), 58rem);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__art-ring {
    animation: ambient-ring 18s ease-in-out infinite alternate;
  }

  .hero__art-core {
    animation: ambient-core 14s ease-in-out infinite alternate;
  }
}

@keyframes ambient-ring {
  from {
    transform: rotate(-2deg) scale(0.99);
  }

  to {
    transform: rotate(2deg) scale(1.01);
  }
}

@keyframes ambient-core {
  from {
    transform: translate(-0.18rem, 0.12rem);
  }

  to {
    transform: translate(0.22rem, -0.15rem);
  }
}

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

  [data-reveal].is-hidden {
    opacity: 1;
    transform: none;
  }
}

@media print {
  body,
  .legal-page,
  .legal-page .page-shell {
    background: #ffffff;
    color: #000000;
  }

  .site-header,
  .site-footer,
  .mobile-sticky-cta,
  .hero__glow,
  .hero__art {
    display: none !important;
  }

  .legal-document {
    width: 100%;
    padding: 0;
    color: #000000;
  }

  .legal-document h1,
  .legal-document h2,
  .legal-document h3 {
    color: #000000;
  }

  .legal-document a {
    color: #000000;
  }
}