:root {
  --ink: #090b0f;
  --ink-soft: #12161c;
  --paper: #e3e7ea;
  --muted: #98a2af;
  --line: rgba(232, 237, 244, 0.14);
  --blue: #82a9f4;
  --blue-bright: #c4d7fa;
  --alloy: #cbd2d9;
  --violet: #c9c1d8;
  --display: "Microsoft YaHei UI", "PingFang SC", "Noto Sans CJK SC", sans-serif;
  --body: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif;
  --utility: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
}

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #77a5ff, #bdadff, #efaa60);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

.custom-cursor {
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  display: none;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(226, 235, 250, 0.62);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition:
    width 160ms ease,
    height 160ms ease,
    border-color 160ms ease;
  pointer-events: none;
}

.custom-cursor.is-visible {
  opacity: 1;
}

.custom-cursor::before,
.custom-cursor::after {
  position: absolute;
  background: rgba(226, 235, 250, 0.5);
  content: "";
}

.custom-cursor::before {
  top: 50%;
  left: 6px;
  width: 10px;
  height: 1px;
}

.custom-cursor::after {
  top: 6px;
  left: 50%;
  width: 1px;
  height: 10px;
}

.custom-cursor.is-hovering {
  width: 42px;
  height: 42px;
  border-color: rgba(156, 190, 250, 0.84);
}

@media (pointer: fine) {
  .custom-cursor {
    display: block;
  }

  body,
  a {
    cursor: none;
  }
}

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

a:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 6px;
}

.signal-field {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 76px;
  padding: 0 48px;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 11, 15, 0);
  transition:
    min-height 240ms ease,
    background 240ms ease,
    backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
  min-height: 62px;
  background: rgba(9, 11, 15, 0.86);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-size: 14px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(196, 215, 250, 0.58);
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  color: rgba(237, 241, 246, 0.72);
  font-size: 13px;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: #fff;
}

.edition-tag {
  justify-self: end;
  color: var(--blue-bright);
  font-family: var(--utility);
  font-size: 11px;
}

.page-rail {
  position: fixed;
  z-index: 19;
  top: 50%;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateY(-50%);
  color: rgba(232, 237, 244, 0.32);
  font-family: var(--utility);
  font-size: 9px;
  mix-blend-mode: difference;
}

.page-rail span {
  display: grid;
  grid-template-columns: 18px 16px;
  align-items: center;
  gap: 7px;
}

.page-rail span::before {
  width: 8px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width 180ms ease;
}

.page-rail span.is-active {
  color: #ffffff;
}

.page-rail span.is-active::before {
  width: 18px;
}

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: calc(100svh - 28px);
  min-height: 620px;
  padding: 110px 48px 34px;
  overflow: hidden;
  isolation: isolate;
}

.cursor-scan {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 230px;
  height: 148px;
  border: 1px solid rgba(147, 183, 248, 0.42);
  background:
    linear-gradient(rgba(137, 174, 241, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(137, 174, 241, 0.11) 1px, transparent 1px);
  background-size: 22px 22px;
  box-shadow:
    0 0 46px rgba(62, 109, 199, 0.08),
    inset 0 0 34px rgba(80, 130, 220, 0.08);
  opacity: 0;
  -webkit-backdrop-filter: brightness(1.32) saturate(1.08);
  backdrop-filter: brightness(1.32) saturate(1.08);
  transform: translate3d(-300px, -300px, 0);
  transition: opacity 180ms ease;
  pointer-events: none;
}

.cursor-scan::before,
.cursor-scan::after {
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: #a7c6ff;
  border-style: solid;
  content: "";
}

.cursor-scan::before {
  top: -2px;
  left: -2px;
  border-width: 2px 0 0 2px;
}

.cursor-scan::after {
  right: -2px;
  bottom: -2px;
  border-width: 0 2px 2px 0;
}

.cursor-scan span {
  position: absolute;
  right: 10px;
  bottom: 8px;
  color: rgba(207, 224, 253, 0.64);
  font-family: var(--utility);
  font-size: 7px;
}

.cursor-scan.is-active {
  opacity: 1;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 11, 15, 0.06) 0%, rgba(9, 11, 15, 0.22) 70%, #090b0f 100%),
    radial-gradient(ellipse at 50% 55%, rgba(76, 113, 181, 0.14), transparent 62%);
  content: "";
}

.hero-halo {
  position: absolute;
  z-index: -1;
  top: 52%;
  left: 50%;
  width: min(82%, 1180px);
  height: min(62%, 550px);
  border: 1px solid rgba(130, 169, 244, 0.14);
  box-shadow:
    0 0 90px rgba(48, 80, 142, 0.08),
    inset 0 0 90px rgba(48, 80, 142, 0.04);
  transform: translate(-50%, -50%);
}

.launch-watermark {
  position: absolute;
  z-index: -1;
  top: 52%;
  left: 50%;
  color: transparent;
  font-family: var(--utility);
  font-size: 184px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(138, 174, 242, 0.07);
  transform: translate(-50%, -50%);
  transition: transform 220ms ease-out;
  user-select: none;
  will-change: transform;
}

.hero-halo::before,
.hero-halo::after {
  position: absolute;
  border: 0;
  content: "";
}

.hero-halo::before {
  top: -8px;
  left: 20%;
  width: 1px;
  height: calc(100% + 16px);
  background: rgba(130, 169, 244, 0.1);
}

.hero-halo::after {
  top: 37%;
  left: -8px;
  width: calc(100% + 16px);
  height: 1px;
  background: rgba(130, 169, 244, 0.1);
}

.hero-side-label {
  position: absolute;
  right: 48px;
  bottom: 112px;
  color: rgba(228, 234, 242, 0.28);
  font-family: var(--utility);
  font-size: 9px;
  writing-mode: vertical-rl;
}

.hero-content {
  width: min(100%, 1160px);
  margin: auto;
  text-align: center;
  transform-style: preserve-3d;
}

.hero-emblem {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  text-align: left;
}

.hero-emblem img {
  display: block;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(196, 215, 250, 0.42);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 34px rgba(67, 125, 214, 0.16);
}

.hero-emblem span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-emblem strong {
  color: #dde7f7;
  font-size: 12px;
  font-weight: 650;
}

.hero-emblem small {
  color: rgba(225, 231, 240, 0.42);
  font-family: var(--utility);
  font-size: 8px;
}

.hero-status {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 30px;
  color: rgba(225, 231, 240, 0.44);
  font-family: var(--utility);
  font-size: 9px;
}

.hero-status span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #9fc0ff;
  box-shadow: 0 0 12px rgba(159, 192, 255, 0.8);
}

.hero-kicker,
.eyebrow {
  margin: 0 0 22px;
  color: var(--blue-bright);
  font-family: var(--utility);
  font-size: 11px;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: none;
}

.hero-title {
  margin: 0;
  font-family: var(--display);
  font-size: 108px;
  font-weight: 720;
  line-height: 0.99;
  transform: perspective(1100px) rotateX(var(--title-rx, 0deg)) rotateY(var(--title-ry, 0deg));
  transform-style: preserve-3d;
  transition: transform 180ms ease-out;
  will-change: transform;
}

.hero-title span {
  display: block;
}

.title-light {
  background: none;
  color: #c3d6fa;
}

.hero-copy {
  max-width: 620px;
  margin: 34px auto 0;
  color: rgba(228, 235, 245, 0.58);
  font-size: 16px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-width: 168px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(215, 227, 247, 0.22);
  border-radius: 4px;
  color: #dbe5f5;
  font-size: 12px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.hero-action:hover {
  border-color: rgba(215, 227, 247, 0.46);
  background: rgba(215, 227, 247, 0.06);
  transform: translateY(-2px);
}

.hero-action-primary {
  border-color: #dbe6f8;
  background: #dbe6f8;
  color: #0a1018;
}

.hero-action-primary:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #0a1018;
}

.hero-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  color: rgba(237, 241, 246, 0.42);
  font-family: var(--utility);
  font-size: 10px;
}

.hero-footer > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-footer > span i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #84aef8;
  box-shadow: 0 0 12px rgba(132, 174, 248, 0.7);
}

.hero-footer a {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(237, 241, 246, 0.7);
  font-family: var(--body);
  font-size: 12px;
}

.down-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 17px;
}

.launch-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0c1016;
}

.launch-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 112px;
  padding: 28px 30px;
}

.launch-item + .launch-item {
  border-left: 1px solid var(--line);
}

.launch-item span {
  color: #657184;
  font-family: var(--utility);
  font-size: 9px;
}

.launch-item strong {
  color: #dce6f6;
  font-family: var(--utility);
  font-size: 20px;
  font-weight: 550;
}

.kinetic-belt {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 24px 0 28px;
  border-bottom: 1px solid var(--line);
  background: #0a0d12;
  overflow: hidden;
}

.kinetic-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  color: rgba(215, 227, 247, 0.1);
  font-family: var(--display);
  font-size: 78px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  animation: kinetic-flow 26s linear infinite;
}

.kinetic-track i {
  color: rgba(133, 173, 245, 0.32);
  font-family: var(--utility);
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
}

@keyframes kinetic-flow {
  to {
    transform: translateX(-50%);
  }
}

.section-index {
  color: #738196;
  font-family: var(--utility);
  font-size: 10px;
}

.manifesto {
  position: relative;
  z-index: 2;
  padding: 146px 48px 164px;
  border-top: 1px solid var(--line);
  background: #0c0f13;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
  gap: 110px;
  max-width: 1280px;
  margin: 80px auto 0;
}

.section-title {
  margin: 0;
  font-family: var(--display);
  font-size: 76px;
  font-weight: 650;
  line-height: 1.08;
}

.manifesto-copy {
  align-self: end;
}

.manifesto-copy > p {
  max-width: 660px;
  margin: 0;
  color: #acb5c1;
  font-size: 18px;
  line-height: 1.9;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 56px;
  border-top: 1px solid var(--line);
}

.principles span {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 22px 0;
  color: #e8edf4;
}

.principles b {
  font-size: 14px;
  font-weight: 650;
}

.principles small {
  color: #6f7a8a;
  font-family: var(--utility);
  font-size: 9px;
}

.principles span + span {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.delivery {
  position: relative;
  z-index: 2;
  background: #121820;
  color: #e8edf3;
}

.delivery-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 136px 48px 142px;
}

.delivery .section-index {
  color: #727f90;
}

.delivery-heading {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
  margin: 72px 0 82px;
}

.delivery-heading .eyebrow {
  color: #9bbafa;
}

.delivery-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 68px;
  font-weight: 650;
  line-height: 1.1;
}

.delivery-route {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 30px;
  align-items: start;
  padding: 38px 0;
  border-top: 1px solid #303946;
}

.delivery-route:last-of-type {
  border-bottom: 1px solid #303946;
}

.route-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid #465363;
  border-radius: 2px;
  font-family: var(--utility);
  font-size: 13px;
}

.delivery-route h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.delivery-route p {
  max-width: 680px;
  margin: 0;
  color: #929dab;
  font-size: 15px;
}

.route-label {
  padding-top: 12px;
  color: #758193;
  font-family: var(--utility);
  font-size: 10px;
}

.mail-panel {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-top: 56px;
  padding: 36px 40px;
  border-left: 3px solid #82a9f4;
  background: #0b1016;
  color: #eef3f8;
}

.mail-label {
  display: block;
  margin-bottom: 8px;
  color: #8f9aab;
  font-size: 12px;
}

.mail-panel strong,
.mail-panel a {
  display: block;
  overflow-wrap: anywhere;
  color: #dce8fb;
  font-family: var(--utility);
  font-size: 24px;
  font-weight: 600;
}

.mail-panel a {
  width: fit-content;
  border-bottom: 1px solid rgba(220, 232, 251, 0.28);
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.mail-panel a:hover {
  border-color: #bcd3ff;
  color: #ffffff;
}

.mail-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8fb4f7;
  font-family: var(--utility);
  font-size: 10px;
}

.mail-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8fb4f7;
  box-shadow: 0 0 12px rgba(143, 180, 247, 0.7);
}

.tip-builder {
  margin-top: 28px;
  border-top: 1px solid #303946;
  border-bottom: 1px solid #303946;
}

.tip-builder-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  gap: 40px;
  align-items: end;
  padding: 36px 0 30px;
}

.tip-builder-heading h3 {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 620;
}

.tip-builder-heading p {
  max-width: 540px;
  margin: 0;
  color: #929dab;
  font-size: 13px;
  line-height: 1.8;
}

.tip-builder-index {
  color: #91b3f3;
  font-family: var(--utility);
  font-size: 9px;
}

.tip-types {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid #303946;
  border-left: 1px solid #303946;
}

.tip-type {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 138px;
  padding: 20px;
  border: 0;
  border-right: 1px solid #303946;
  border-bottom: 1px solid #303946;
  border-radius: 0;
  background: #10161d;
  color: #e8edf3;
  text-align: left;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.tip-type:hover {
  background: #17202a;
}

.tip-type:focus-visible {
  position: relative;
  z-index: 2;
  outline: 2px solid #b8d0ff;
  outline-offset: -2px;
}

.tip-type.is-active {
  background: #dce8fb;
  color: #0a1018;
}

.tip-type > span {
  margin-bottom: auto;
  opacity: 0.55;
  font-family: var(--utility);
  font-size: 9px;
}

.tip-type strong {
  font-size: 14px;
  font-weight: 650;
}

.tip-type small {
  margin-top: 6px;
  opacity: 0.56;
  font-size: 10px;
}

.email-template {
  margin: 28px 0 36px;
  border: 1px solid #303946;
  background: #0b1016;
}

.template-bar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 18px;
  border-bottom: 1px solid #303946;
  color: #788597;
  font-family: var(--utility);
  font-size: 9px;
}

.template-bar b {
  color: #aec8f8;
  font-weight: 550;
}

#mail-template {
  min-height: 390px;
  margin: 0;
  padding: 28px;
  overflow: auto;
  color: #bdc8d7;
  font-family: var(--utility);
  font-size: 12px;
  line-height: 1.9;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

#mail-template:focus-visible {
  outline: 2px solid #89aff5;
  outline-offset: -2px;
}

.template-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px;
  border-top: 1px solid #303946;
}

.template-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid #465363;
  border-radius: 3px;
  background: transparent;
  color: #d8e1ee;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.template-action:hover {
  border-color: #8594a8;
  background: #141c25;
}

.template-action:focus-visible {
  outline: 2px solid #b8d0ff;
  outline-offset: 3px;
}

.template-action-primary {
  border-color: #dce8fb;
  background: #dce8fb;
  color: #0a1018;
}

.template-action-primary:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #0a1018;
}

.action-feedback {
  min-height: 18px;
  margin-left: auto;
  color: #8fb4f7;
  font-family: var(--utility);
  font-size: 9px;
}

.maintenance-schedule {
  display: grid;
  grid-template-columns: 180px 160px 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 32px;
  padding: 26px 0;
  border-top: 1px solid #303946;
  border-bottom: 1px solid #303946;
}

.schedule-date {
  color: #91b3f3;
  font-family: var(--utility);
  font-size: 10px;
}

.maintenance-schedule strong {
  font-size: 16px;
  font-weight: 650;
}

.maintenance-schedule p {
  margin: 0;
  color: #929dab;
  font-size: 13px;
}

.review-policy {
  display: grid;
  grid-template-columns: 368px 1fr;
  gap: 44px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid #303946;
}

.policy-label {
  display: flex;
  align-items: baseline;
  gap: 22px;
}

.policy-label span {
  color: #91b3f3;
  font-family: var(--utility);
  font-size: 10px;
}

.policy-label strong {
  color: #e8edf3;
  font-size: 16px;
  font-weight: 650;
}

.review-policy p {
  margin: 0;
  color: #a2acb9;
  font-size: 13px;
  line-height: 1.9;
}

.privacy-note {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  align-items: start;
  max-width: 760px;
  margin: 30px 0 0 auto;
  color: #8d99a8;
}

.privacy-note p {
  margin: 0;
  font-size: 13px;
}

.note-symbol {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid #465363;
  border-radius: 50%;
  font-family: var(--utility);
  font-size: 12px;
}

.sponsor {
  position: relative;
  z-index: 2;
  padding: 136px 48px 146px;
  border-top: 1px solid var(--line);
  background: #0c1114;
  color: #e8edf3;
}

.sponsor-inner {
  max-width: 1380px;
  margin: 0 auto;
}

.sponsor-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(560px, 1.4fr);
  gap: 60px;
  margin: 72px 0 74px;
}

.sponsor-heading .eyebrow {
  color: #55cfc2;
}

.sponsor-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 68px;
  font-weight: 650;
  line-height: 1.08;
}

.sponsor-copy {
  max-width: 680px;
  margin: 30px 0 0;
  color: #8f9ca4;
  font-size: 15px;
  line-height: 1.9;
}

.crypto-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(330px, 0.6fr);
  border-top: 1px solid #2a363a;
  border-bottom: 1px solid #2a363a;
}

.crypto-details {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-content: start;
  padding: 46px 54px 46px 0;
  border-right: 1px solid #2a363a;
}

.crypto-mark {
  display: grid;
  grid-row: 1 / span 2;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(85, 207, 194, 0.58);
  border-radius: 50%;
  background: #149d92;
  color: #ffffff;
  font-family: var(--utility);
  font-size: 26px;
  font-weight: 700;
  box-shadow: 0 0 34px rgba(20, 157, 146, 0.14);
}

.crypto-title > span {
  color: #55cfc2;
  font-family: var(--utility);
  font-size: 9px;
}

.crypto-title h3 {
  margin: 7px 0 0;
  font-family: var(--display);
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
}

.crypto-meta {
  display: grid;
  grid-column: 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 42px 0 0;
  border-top: 1px solid #2a363a;
  border-bottom: 1px solid #2a363a;
}

.crypto-meta div {
  padding: 20px 0;
}

.crypto-meta div + div {
  padding-left: 28px;
  border-left: 1px solid #2a363a;
}

.crypto-meta dt {
  margin-bottom: 7px;
  color: #6f7d84;
  font-family: var(--utility);
  font-size: 9px;
}

.crypto-meta dd {
  margin: 0;
  color: #eef4f4;
  font-size: 16px;
  font-weight: 650;
}

.wallet-address {
  grid-column: 2;
  margin-top: 32px;
}

.wallet-address > span {
  display: block;
  margin-bottom: 10px;
  color: #6f7d84;
  font-family: var(--utility);
  font-size: 9px;
}

.wallet-address code {
  display: block;
  max-width: 700px;
  color: #dfecea;
  font-family: var(--utility);
  font-size: 17px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.wallet-actions {
  display: flex;
  grid-column: 2;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.wallet-copy {
  min-width: 152px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid #56cbbf;
  border-radius: 3px;
  background: #56cbbf;
  color: #071311;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.wallet-copy:hover {
  border-color: #7ce5da;
  background: #7ce5da;
  transform: translateY(-2px);
}

.wallet-copy:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.wallet-feedback {
  min-height: 16px;
  color: #61d6ca;
  font-family: var(--utility);
  font-size: 9px;
}

.crypto-warning {
  grid-column: 2;
  max-width: 700px;
  margin: 30px 0 0;
  padding-top: 20px;
  border-top: 1px solid #2a363a;
  color: #8c999f;
  font-size: 12px;
  line-height: 1.8;
}

.crypto-warning::before {
  margin-right: 10px;
  color: #55cfc2;
  font-family: var(--utility);
  content: "NETWORK CHECK";
}

.crypto-qr {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 44px;
  background: #10171a;
}

.crypto-qr-frame {
  width: min(100%, 300px);
  padding: 12px;
  border: 1px solid rgba(85, 207, 194, 0.26);
  background: #ffffff;
}

.crypto-qr img {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: pixelated;
}

.crypto-qr figcaption {
  margin-top: 18px;
  color: #6f7d84;
  font-family: var(--utility);
  font-size: 8px;
}

.support {
  position: relative;
  z-index: 2;
  padding: 136px 48px 150px;
  background: #171d25;
  color: #e8edf3;
}

.support-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  max-width: 1380px;
  margin: 0 auto 58px;
}

.support-heading h2 {
  margin: 36px 0 0;
  font-family: var(--display);
  font-size: 64px;
  font-weight: 650;
  line-height: 1.1;
}

.support-heading > p {
  max-width: 360px;
  margin: 0;
  color: #8d98a6;
  font-size: 13px;
}

.ad-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1380px;
  margin: 0 auto;
}

.ad-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  overflow: hidden;
  color: #06101e;
  transition:
    transform 140ms ease-out,
    filter 180ms ease;
  transform: perspective(900px) rotateX(var(--card-rx, 0deg)) rotateY(var(--card-ry, 0deg));
  transform-style: preserve-3d;
  will-change: transform;
}

.ad-card:hover {
  filter: brightness(1.025);
}

.ad-card:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
}

.ad-card::after {
  position: absolute;
  top: 66px;
  right: 30px;
  bottom: auto;
  width: 1px;
  height: 116px;
  border: 0;
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

.ad-card-blue {
  background: #0d1218;
  color: #eef2f6;
}

.ad-card-coral {
  border-color: rgba(207, 195, 225, 0.16);
  background: #27222f;
  color: #f2eef5;
}

.ad-card-coral::after {
  background: rgba(211, 197, 231, 0.2);
}

.ad-topline {
  display: flex;
  justify-content: space-between;
  font-family: var(--utility);
  font-size: 10px;
}

.ad-logo {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin-top: 36px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.ad-card-coral .ad-logo {
  border-color: rgba(225, 216, 238, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.ad-logo img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.ad-brand {
  position: relative;
  z-index: 1;
  margin-top: auto;
  font-family: var(--display);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
}

.ad-brand small {
  display: block;
  margin-top: 8px;
  opacity: 0.52;
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 500;
}

.ad-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 30px;
  font-size: 15px;
}

.ad-action {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding-top: 14px;
  border-top: 1px solid currentColor;
  opacity: 0.82;
  font-size: 12px;
  font-weight: 700;
}

.site-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 50px;
  align-items: end;
  padding: 58px 48px;
  border-top: 1px solid var(--line);
  background: #090b0f;
}

.footer-brand {
  font-size: 15px;
  font-weight: 700;
}

.site-footer p {
  max-width: 600px;
  margin: 0;
  color: #758195;
  font-size: 11px;
}

.site-footer > span {
  color: #5f6a7b;
  font-family: var(--utility);
  font-size: 9px;
}

.reveal {
  opacity: 0;
  clip-path: inset(0 0 24% 0);
  transform: translateY(24px);
  transition:
    opacity 850ms ease,
    transform 850ms cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 72px;
    padding: 0 24px;
  }

  .site-nav {
    display: none;
  }

  .page-rail,
  .hero-side-label {
    display: none;
  }

  .edition-tag {
    grid-column: 2;
  }

  .hero {
    padding: 120px 24px 28px;
  }

  .hero-title {
    font-size: 70px;
  }

  .launch-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-right: 24px;
    padding-left: 24px;
  }

  .launch-item:nth-child(3) {
    border-left: 0;
  }

  .launch-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .manifesto,
  .sponsor,
  .support {
    padding-right: 24px;
    padding-left: 24px;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .delivery-inner {
    padding-right: 24px;
    padding-left: 24px;
  }

  .delivery-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sponsor-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .crypto-details {
    border-right: 0;
    border-bottom: 1px solid #2a363a;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media (max-width: 600px) {
  .brand-name {
    display: none;
  }

  .hero {
    height: calc(100svh - 22px);
    min-height: 560px;
  }

  .hero-title {
    font-size: 46px;
    line-height: 1.06;
  }

  .launch-watermark {
    font-size: 84px;
  }

  .cursor-scan {
    display: none;
  }

  .hero-emblem {
    margin-bottom: 14px;
  }

  .hero-emblem img {
    width: 50px;
    height: 50px;
  }

  .hero-emblem small {
    max-width: 210px;
    font-size: 7px;
  }

  .hero-status {
    margin-bottom: 18px;
  }

  .hero-kicker {
    margin-bottom: 14px;
  }

  .hero-copy {
    margin-top: 24px;
    font-size: 14px;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 24px;
  }

  .hero-action {
    gap: 12px;
    min-width: 0;
    min-height: 42px;
    padding: 0 12px;
  }

  .hero-footer > span {
    display: none;
  }

  .hero-footer {
    justify-content: flex-end;
  }

  .hero-halo {
    width: calc(100% - 48px);
    height: min(56%, 370px);
  }

  .manifesto {
    padding-top: 92px;
    padding-bottom: 100px;
  }

  .launch-strip {
    padding-right: 0;
    padding-left: 0;
  }

  .launch-item {
    min-height: 92px;
    padding: 22px 20px;
  }

  .launch-item strong {
    font-size: 16px;
  }

  .kinetic-belt {
    padding: 18px 0 21px;
  }

  .kinetic-track {
    gap: 20px;
    font-size: 48px;
    animation-duration: 32s;
  }

  .kinetic-track i {
    font-size: 24px;
  }

  .manifesto-grid {
    margin-top: 56px;
  }

  .section-title,
  .delivery-heading h2 {
    font-size: 46px;
  }

  .manifesto-copy > p {
    font-size: 17px;
  }

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

  .principles span + span {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .delivery-inner {
    padding-top: 90px;
    padding-bottom: 96px;
  }

  .delivery-heading {
    margin-top: 54px;
    margin-bottom: 62px;
  }

  .delivery-route {
    grid-template-columns: 48px 1fr;
    gap: 18px;
  }

  .route-label {
    display: none;
  }

  .route-number {
    width: 38px;
    height: 38px;
  }

  .mail-panel {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 22px;
  }

  .mail-panel strong {
    font-size: 17px;
  }

  .mail-panel a {
    font-size: 16px;
  }

  .tip-builder-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }

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

  .tip-type {
    min-height: 124px;
    padding: 16px;
  }

  .tip-type:last-child {
    grid-column: 1 / -1;
    min-height: 104px;
  }

  .template-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  #mail-template {
    min-height: 430px;
    padding: 20px 18px;
    font-size: 11px;
  }

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

  .template-action {
    width: 100%;
  }

  .action-feedback {
    min-height: 16px;
    margin: 4px 0 0;
    text-align: center;
  }

  .maintenance-schedule {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }

  .maintenance-schedule p {
    margin-top: 6px;
  }

  .review-policy {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 0;
  }

  .policy-label {
    justify-content: space-between;
  }

  .privacy-note {
    margin-top: 26px;
  }

  .support {
    padding-top: 90px;
    padding-bottom: 100px;
  }

  .sponsor {
    padding-top: 90px;
    padding-bottom: 100px;
  }

  .sponsor-heading {
    margin-top: 54px;
    margin-bottom: 56px;
  }

  .sponsor-heading h2 {
    font-size: 44px;
  }

  .crypto-details {
    grid-template-columns: 58px 1fr;
    padding: 30px 0;
  }

  .crypto-mark {
    width: 42px;
    height: 42px;
    font-size: 21px;
  }

  .crypto-title h3 {
    font-size: 42px;
  }

  .crypto-meta {
    margin-top: 32px;
  }

  .wallet-address code {
    font-size: 14px;
  }

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

  .wallet-copy {
    width: 100%;
  }

  .wallet-feedback {
    text-align: center;
  }

  .crypto-qr {
    padding: 32px 20px;
  }

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

  .support-heading h2 {
    font-size: 44px;
  }

  .ad-card {
    min-height: 360px;
  }

  .ad-brand {
    font-size: 40px;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 38px;
  }

  .hero-action {
    font-size: 11px;
  }
}

@media (pointer: coarse) {
  .ad-card {
    transform: none;
    transition:
      transform 140ms ease,
      filter 180ms ease;
  }

  .ad-card:active,
  .hero-action:active {
    transform: scale(0.985);
  }
}

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

  .reveal {
    opacity: 1;
    clip-path: none;
    transform: none;
    transition: none;
  }

  .ad-card {
    transition: none;
    transform: none;
  }

  .hero-title,
  .launch-watermark {
    transform: none;
    transition: none;
  }

  .kinetic-track {
    animation: none;
  }
}
