:root {
  --ink: #fff2d2;
  --muted: #c9a977;
  --soft: rgba(255, 235, 178, 0.72);
  --gold: #e3bb67;
  --gold-deep: #9b6428;
  --red: #8b151d;
  --red-deep: #33070d;
  --black: #09080a;
  --panel: rgba(31, 10, 12, 0.78);
  --line: rgba(230, 190, 103, 0.28);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at 48% 4%, rgba(228, 182, 94, 0.18), transparent 26%),
    radial-gradient(circle at 18% 28%, rgba(139, 21, 29, 0.34), transparent 28%),
    linear-gradient(180deg, #31070d 0%, #11080a 48%, #060608 100%);
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 232, 169, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 232, 169, 0.026) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.75), transparent 82%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 28%, transparent 0 18%, rgba(0, 0, 0, 0.18) 32%, rgba(0, 0, 0, 0.58) 78%),
    linear-gradient(90deg, rgba(0,0,0,0.5), transparent 36%, rgba(0,0,0,0.52));
}

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

.cover-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: linear-gradient(180deg, rgba(9, 8, 10, 0.86), rgba(9, 8, 10, 0.48));
  border-bottom: 1px solid rgba(230, 190, 103, 0.18);
  backdrop-filter: blur(18px);
}

.cover-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.cover-brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 1px solid rgba(230, 190, 103, 0.52);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(227, 187, 103, 0.26);
}

.cover-brand strong,
.cover-brand em {
  display: block;
  font-style: normal;
}

.cover-brand strong {
  font-size: 20px;
}

.cover-brand em {
  color: var(--muted);
  font-size: 12px;
}

.cover-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  color: rgba(255, 242, 210, 0.82);
  font-size: 14px;
}

.cover-nav a,
.cover-account a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid transparent;
}

.cover-nav a:hover,
.cover-account a:hover {
  border-color: var(--line);
  background: rgba(230, 190, 103, 0.08);
}

.cover-nav a[aria-current="page"] {
  border-color: rgba(230, 190, 103, 0.5);
  background: rgba(230, 190, 103, 0.12);
  color: #fff2d2;
}

.cover-account {
  display: flex;
  justify-content: flex-end;
  min-width: 150px;
}

.cover-account a,
.nav-user {
  border-color: rgba(230, 190, 103, 0.34);
  color: var(--gold);
  background: rgba(230, 190, 103, 0.07);
}

.nav-user {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  min-height: 42px;
  padding: 7px 12px;
  line-height: 1.28;
}

.nav-user-name {
  max-width: 148px;
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-user-points {
  color: var(--muted);
  font-size: 12px;
}

.cover-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: 100vh;
  padding: 118px clamp(20px, 6vw, 86px) 52px;
  overflow: hidden;
  border-bottom: 1px solid rgba(230, 190, 103, 0.16);
}

.mystic-field {
  position: absolute;
  inset: 76px 0 0;
  pointer-events: none;
}

.ring {
  position: absolute;
  left: 50%;
  top: 48%;
  border: 1px solid rgba(230, 190, 103, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 80px rgba(139, 21, 29, 0.22) inset;
}

.ring-one {
  width: min(74vw, 780px);
  aspect-ratio: 1;
}

.ring-two {
  width: min(55vw, 560px);
  aspect-ratio: 1;
  border-style: dashed;
  opacity: 0.74;
}

.ring-three {
  width: min(35vw, 360px);
  aspect-ratio: 1;
  border-color: rgba(230, 190, 103, 0.34);
}

.ring-one::before,
.ring-two::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(230, 190, 103, 0.1);
  border-radius: 50%;
}

.sigil-logo {
  position: absolute;
  left: 50%;
  top: 48%;
  width: clamp(150px, 18vw, 250px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: clamp(10px, 1.3vw, 18px);
  border: 1px solid rgba(230, 190, 103, 0.38);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 231, 166, 0.18), rgba(139, 21, 29, 0.12) 48%, rgba(9, 8, 10, 0.48) 72%),
    rgba(9, 8, 10, 0.36);
  box-shadow:
    0 0 0 11px rgba(230, 190, 103, 0.035),
    0 0 72px rgba(227, 187, 103, 0.24),
    0 28px 82px rgba(0, 0, 0, 0.38);
  opacity: 0.9;
  transform: translate(-50%, -50%);
}

.sigil-logo::before,
.sigil-logo::after {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(230, 190, 103, 0.14);
  border-radius: 50%;
}

.sigil-logo::after {
  inset: 13%;
  border-color: rgba(230, 190, 103, 0.2);
}

.sigil-logo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: saturate(0.95) contrast(1.04);
}

.star,
.trigram {
  position: absolute;
  color: rgba(255, 229, 159, 0.46);
  text-shadow: 0 0 24px rgba(227, 187, 103, 0.3);
}

.star {
  font-size: clamp(20px, 3vw, 34px);
}

.s1 { left: 13%; top: 30%; }
.s2 { right: 18%; top: 23%; }
.s3 { left: 62%; bottom: 18%; }

.trigram {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(230, 190, 103, 0.18);
  background: rgba(9, 8, 10, 0.28);
  color: rgba(255, 231, 166, 0.62);
  font-size: 20px;
}

.t1 { left: 25%; top: 18%; }
.t2 { right: 24%; top: 41%; }
.t3 { left: 17%; bottom: 21%; }
.t4 { right: 36%; bottom: 12%; }

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.12;
}

h1 {
  max-width: 680px;
  font-family: "Songti SC", "STSong", "SimSun", "Microsoft YaHei", serif;
  font-size: 58px;
  font-weight: 900;
  line-height: 1.18;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}

h2 {
  max-width: 820px;
  font-family: "Songti SC", "STSong", "Microsoft YaHei", serif;
  font-size: clamp(30px, 4vw, 56px);
}

.hero-text {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions,
.conversion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid var(--line);
  font-weight: 900;
}

.btn.primary {
  color: #25090c;
  background: linear-gradient(180deg, #ffe3a0, #d39a45 58%, #9b6428);
  border-color: rgba(255, 231, 166, 0.72);
  box-shadow: 0 18px 48px rgba(155, 100, 40, 0.28);
}

.btn.ghost {
  color: var(--gold);
  background: rgba(230, 190, 103, 0.07);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-row span {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  color: rgba(255, 242, 210, 0.82);
  border: 1px solid rgba(230, 190, 103, 0.18);
  background: rgba(9, 8, 10, 0.38);
}

.trust-row strong {
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}

.oracle-card {
  position: relative;
  z-index: 2;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 231, 166, 0.18), rgba(139, 21, 29, 0.2) 38%, rgba(14, 8, 9, 0.92)),
    var(--panel);
  border: 1px solid rgba(230, 190, 103, 0.46);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.oracle-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(230, 190, 103, 0.2);
}

.oracle-card::after {
  content: "玄";
  position: absolute;
  right: -8px;
  bottom: -50px;
  color: rgba(230, 190, 103, 0.08);
  font-family: "Songti SC", "STSong", serif;
  font-size: 180px;
  line-height: 1;
}

.oracle-top,
.oracle-date,
.oracle-grid,
.oracle-link {
  position: relative;
  z-index: 1;
}

.oracle-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.oracle-top strong {
  color: #26090c;
  background: linear-gradient(180deg, #ffe3a0, #bd8437);
  padding: 2px 9px;
}

.oracle-date {
  margin: 18px 0 22px;
  color: #ffe5a6;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.3;
}

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

.oracle-grid div {
  min-height: 94px;
  padding: 14px;
  background: rgba(255, 235, 178, 0.1);
  border: 1px solid rgba(230, 190, 103, 0.22);
}

.oracle-grid span,
.oracle-grid strong {
  display: block;
}

.oracle-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.oracle-grid strong {
  margin-top: 4px;
  color: #fff0c7;
  font-size: 15px;
  line-height: 1.55;
}

.oracle-link {
  width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  color: #25090c;
  background: linear-gradient(180deg, #ffe3a0, #bd8437);
  font-size: 14px;
  font-weight: 900;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 500px));
  justify-content: center;
  gap: 14px;
  width: min(100% - 40px, 1528px);
  margin: 0 auto;
  padding: 0 0 70px;
}

.service-strip a {
  position: relative;
  min-height: 232px;
  display: flex;
  flex-direction: column;
  padding: 16px;
  background:
    radial-gradient(circle at 84% 12%, rgba(227, 187, 103, 0.12), transparent 30%),
    linear-gradient(150deg, rgba(68, 12, 16, 0.86), rgba(13, 8, 10, 0.96) 58%),
    rgba(18, 8, 10, 0.92);
  border: 1px solid rgba(230, 190, 103, 0.22);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  isolation: isolate;
}

.service-strip a::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: -1;
  border: 1px solid rgba(230, 190, 103, 0.1);
  pointer-events: none;
}

.service-strip a::after {
  content: "入";
  position: absolute;
  right: 18px;
  bottom: 12px;
  color: rgba(230, 190, 103, 0.18);
  font-family: "Songti SC", "STSong", serif;
  font-size: 28px;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}

.service-strip a:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 190, 103, 0.54);
  background:
    radial-gradient(circle at 84% 12%, rgba(227, 187, 103, 0.2), transparent 32%),
    linear-gradient(150deg, rgba(99, 17, 24, 0.9), rgba(16, 8, 10, 0.98) 58%),
    rgba(31, 10, 12, 0.96);
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.36);
}

.service-strip a:hover::after {
  color: rgba(255, 229, 159, 0.54);
  transform: translateX(2px);
}

.service-card-primary {
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 227, 160, 0.24), transparent 34%),
    linear-gradient(150deg, rgba(119, 20, 28, 0.94), rgba(16, 8, 10, 0.98) 62%) !important;
  border-color: rgba(255, 231, 166, 0.48) !important;
}

.service-card-western {
  background:
    radial-gradient(circle at 82% 10%, rgba(112, 151, 255, 0.16), transparent 32%),
    linear-gradient(150deg, rgba(24, 30, 69, 0.88), rgba(8, 8, 15, 0.97) 62%) !important;
  border-color: rgba(179, 196, 255, 0.24) !important;
}

.service-strip span,
.service-strip strong,
.service-strip em,
.service-strip small {
  display: block;
  font-style: normal;
}

.module-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-height: 58px;
}

.service-strip .module-order {
  flex: 0 0 auto;
  margin-left: 14px;
  margin-right: 6px;
  color: rgba(227, 187, 103, 0.62);
  font-size: 13px;
  font-weight: 900;
}

.service-strip b {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 9px;
  color: rgba(255, 231, 166, 0.86);
  background: rgba(230, 190, 103, 0.09);
  border: 1px solid rgba(230, 190, 103, 0.28);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.service-strip b.ready {
  color: #28090c;
  background: linear-gradient(180deg, #ffe3a0, #bd8437);
  border-color: rgba(255, 231, 166, 0.74);
}

.service-strip b.beta {
  color: #f4d995;
  border-color: rgba(230, 190, 103, 0.42);
  background: rgba(130, 77, 22, 0.22);
}

.service-strip b.planned {
  color: rgba(220, 214, 192, 0.8);
  border-color: rgba(195, 187, 159, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.service-strip strong {
  position: absolute;
  top: 32px;
  left: 162px;
  right: 88px;
  margin: 0;
  color: #ffe9b4;
  font-family: "Songti SC", "STSong", serif;
  font-size: 26px;
  line-height: 1.16;
}

.service-strip em {
  margin: 14px 12px 0;
  color: rgba(255, 242, 210, 0.76);
  font-size: 15px;
  line-height: 1.72;
}

.service-strip small {
  margin: auto 12px 0;
  padding-top: 10px;
  color: rgba(227, 187, 103, 0.72);
  font-size: 13px;
  line-height: 1.65;
}

.module-mark {
  position: relative;
  width: 56px;
  height: 56px;
  display: grid !important;
  place-items: center;
  flex: 0 0 auto;
  margin: 0 0 0 12px;
  color: #ffe7a5;
  border: 1px solid rgba(255, 231, 166, 0.48);
  border-radius: 13px;
  background:
    linear-gradient(135deg, rgba(255, 230, 165, 0.18), rgba(139, 21, 29, 0.44) 46%, rgba(20, 8, 10, 0.62)),
    rgba(9, 8, 10, 0.5);
  font-family: "STKaiti", "KaiTi", "Songti SC", "STSong", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.46),
    0 0 18px rgba(255, 228, 160, 0.26);
  box-shadow:
    inset 0 0 0 1px rgba(255, 231, 166, 0.12),
    inset 0 0 24px rgba(139, 21, 29, 0.32),
    0 0 0 4px rgba(230, 190, 103, 0.04),
    0 14px 30px rgba(0, 0, 0, 0.22);
  transform: rotate(-2deg);
}

.module-mark::before,
.module-mark::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.module-mark::before {
  inset: 5px;
  border: 1px solid rgba(255, 231, 166, 0.24);
  border-radius: 10px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 231, 166, 0.12) 49%, rgba(255, 231, 166, 0.12) 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(255, 231, 166, 0.1) 49%, rgba(255, 231, 166, 0.1) 51%, transparent 52%);
}

.module-mark::after {
  inset: -7px;
  border: 1px solid rgba(230, 190, 103, 0.12);
  border-radius: 18px;
  transform: rotate(9deg);
}

.service-strip a:hover .module-mark {
  border-color: rgba(255, 231, 166, 0.72);
  transform: rotate(0deg) translateY(-1px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 231, 166, 0.14),
    inset 0 0 26px rgba(139, 21, 29, 0.38),
    0 0 0 5px rgba(230, 190, 103, 0.06),
    0 18px 36px rgba(0, 0, 0, 0.26);
}

.service-card-western .module-mark {
  color: rgba(226, 232, 255, 0.96);
  border-color: rgba(179, 196, 255, 0.46);
  background:
    linear-gradient(135deg, rgba(196, 211, 255, 0.16), rgba(31, 44, 96, 0.48) 48%, rgba(8, 8, 15, 0.68)),
    rgba(8, 8, 15, 0.5);
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.48),
    0 0 18px rgba(174, 193, 255, 0.3);
  box-shadow:
    inset 0 0 0 1px rgba(213, 222, 255, 0.12),
    inset 0 0 24px rgba(58, 83, 166, 0.32),
    0 0 0 4px rgba(179, 196, 255, 0.04),
    0 14px 30px rgba(0, 0, 0, 0.22);
}

.service-card-western .module-mark::before {
  border-color: rgba(213, 222, 255, 0.22);
  background:
    radial-gradient(circle at 50% 50%, rgba(213, 222, 255, 0.16) 0 2px, transparent 3px),
    linear-gradient(90deg, transparent 48%, rgba(213, 222, 255, 0.1) 49%, rgba(213, 222, 255, 0.1) 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(213, 222, 255, 0.08) 49%, rgba(213, 222, 255, 0.08) 51%, transparent 52%);
}

.service-card-western .module-mark::after {
  border-color: rgba(179, 196, 255, 0.12);
}

.service-card-western small {
  color: rgba(196, 207, 255, 0.72);
}

.expansion-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.6fr);
  gap: clamp(24px, 4vw, 64px);
  margin: 0 clamp(20px, 6vw, 86px) 70px;
  padding: clamp(30px, 4.5vw, 52px);
  border: 1px solid rgba(230, 190, 103, 0.2);
  background:
    linear-gradient(130deg, rgba(14, 9, 11, 0.96), rgba(58, 15, 19, 0.76)),
    #0d080a;
  box-shadow: var(--shadow);
}

.expansion-heading h2,
.roadmap-intro h1 {
  margin: 8px 0 16px;
  color: #ffe9b4;
  font-family: "Songti SC", "STSong", serif;
  font-size: 34px;
  line-height: 1.25;
}

.expansion-heading > p:not(.eyebrow),
.roadmap-intro > p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 242, 210, 0.74);
  font-size: 15px;
  line-height: 1.85;
}

.expansion-heading .btn {
  margin-top: 24px;
}

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

.expansion-grid a {
  min-height: 158px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid rgba(230, 190, 103, 0.17);
  background: rgba(255, 229, 159, 0.035);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.expansion-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(230, 190, 103, 0.48);
  background: rgba(148, 27, 35, 0.2);
}

.expansion-grid i,
.module-ledger i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #ffe7a5;
  border: 1px solid rgba(255, 231, 166, 0.38);
  background: rgba(139, 21, 29, 0.28);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 20px;
  font-style: normal;
}

.expansion-grid span {
  display: block;
  margin-top: 12px;
  color: #ffe9b4;
  font-family: "Songti SC", "STSong", serif;
  font-size: 18px;
  font-weight: 900;
}

.expansion-grid em {
  display: block;
  margin-top: 7px;
  color: rgba(255, 242, 210, 0.66);
  font-size: 12px;
  font-style: normal;
  line-height: 1.5;
}

.expansion-grid b,
.module-ledger > article > b {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 11px;
  color: rgba(227, 187, 103, 0.78);
  font-size: 11px;
  line-height: 1;
}

.roadmap-page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 76px;
}

.roadmap-intro {
  max-width: 760px;
}

.roadmap-status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 48px 0 18px;
}

.roadmap-status article,
.module-ledger > article {
  border: 1px solid rgba(230, 190, 103, 0.18);
  background: rgba(255, 229, 159, 0.035);
}

.roadmap-status article {
  padding: 22px;
}

.roadmap-status b {
  display: inline-block;
  padding: 5px 8px;
  font-size: 11px;
}

.status-live { color: #2d110d; background: #e5b75a; }
.status-demo { color: #f7dda0; border: 1px solid rgba(230, 190, 103, 0.35); }
.status-wait { color: #c9bc9f; background: rgba(255, 255, 255, 0.08); }

.roadmap-status strong {
  display: block;
  margin-top: 16px;
  color: #ffe9b4;
  font-family: "Songti SC", "STSong", serif;
  font-size: 20px;
}

.roadmap-status p,
.module-ledger span {
  color: rgba(255, 242, 210, 0.68);
  font-size: 14px;
  line-height: 1.75;
}

.module-ledger {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.module-ledger > article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 22px;
}

.module-ledger i {
  width: 48px;
  height: 48px;
  font-size: 24px;
}

.module-ledger p {
  margin: 0 0 4px;
  color: rgba(227, 187, 103, 0.7);
  font-size: 12px;
}

.module-ledger h2 {
  margin: 0 0 8px;
  color: #ffe9b4;
  font-family: "Songti SC", "STSong", serif;
  font-size: 23px;
}

.module-ledger > article > b {
  margin: 0;
  padding: 6px 9px;
  border: 1px solid rgba(230, 190, 103, 0.22);
  white-space: nowrap;
}

.cover-section {
  margin: 0 clamp(20px, 6vw, 86px) 70px;
  padding: clamp(30px, 4.5vw, 52px);
  border: 1px solid rgba(230, 190, 103, 0.2);
  background:
    radial-gradient(circle at 80% 10%, rgba(227, 187, 103, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(139, 21, 29, 0.24), rgba(9, 8, 10, 0.76));
  box-shadow: var(--shadow);
}

.boundary-band {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  border-color: rgba(227, 187, 103, 0.34);
  background:
    linear-gradient(120deg, rgba(50, 11, 15, 0.86), rgba(8, 9, 11, 0.94)),
    rgba(18, 8, 10, 0.86);
}

.boundary-band .btn {
  flex: 0 0 auto;
}

.profile-band,
.account-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
}

.section-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 242, 210, 0.72);
}

.profile-orbit,
.account-grid {
  display: grid;
  gap: 12px;
}

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

.profile-orbit article,
.account-grid div,
.cover-roadmap li {
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(230, 190, 103, 0.2);
  background:
    linear-gradient(180deg, rgba(230, 190, 103, 0.09), rgba(255, 255, 255, 0.02)),
    rgba(9, 8, 10, 0.42);
}

.profile-orbit strong,
.profile-orbit span,
.account-grid strong,
.account-grid span {
  display: block;
}

.profile-orbit strong,
.account-grid strong {
  color: #ffe9b4;
  font-family: "Songti SC", "STSong", serif;
  font-size: 23px;
  line-height: 1.25;
}

.profile-orbit span,
.account-grid span {
  margin-top: 10px;
  color: rgba(255, 242, 210, 0.66);
  font-size: 14px;
}

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

.checkin-card {
  position: relative;
  overflow: hidden;
}

.checkin-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 112px;
  aspect-ratio: 1;
  border: 1px solid rgba(230, 190, 103, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 187, 103, 0.18), transparent 64%);
  pointer-events: none;
}

.checkin-card button {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 42px;
  margin-top: 16px;
  border: 1px solid rgba(255, 231, 166, 0.62);
  color: #26090c;
  background: linear-gradient(180deg, #ffe3a0, #d39a45 58%, #9b6428);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(155, 100, 40, 0.2);
}

.checkin-card button:hover:not(:disabled) {
  filter: brightness(1.06);
}

.checkin-card button:disabled {
  cursor: default;
  color: rgba(255, 242, 210, 0.76);
  background: rgba(230, 190, 103, 0.09);
  border-color: rgba(230, 190, 103, 0.24);
  box-shadow: none;
}

.checkin-card small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 10px;
  color: rgba(255, 242, 210, 0.58);
  font-size: 12px;
  line-height: 1.6;
}

.roadmap-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
}

.cover-roadmap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cover-roadmap strong,
.cover-roadmap span {
  display: block;
}

.cover-roadmap strong {
  color: var(--gold);
  font-size: 14px;
}

.cover-roadmap span {
  margin-top: 10px;
  color: rgba(255, 242, 210, 0.72);
  font-size: 15px;
}

.conversion-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin: 0 clamp(20px, 6vw, 86px) 70px;
  padding: clamp(28px, 4vw, 46px);
  background:
    radial-gradient(circle at 86% 12%, rgba(227, 187, 103, 0.14), transparent 26%),
    linear-gradient(135deg, rgba(139, 21, 29, 0.42), rgba(9, 8, 10, 0.86));
  border: 1px solid rgba(230, 190, 103, 0.24);
  box-shadow: var(--shadow);
}

.conversion-band p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 242, 210, 0.72);
}

.conversion-actions {
  justify-content: flex-end;
  min-width: 280px;
}

.cover-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(20px, 6vw, 86px);
  color: rgba(255, 242, 210, 0.6);
  background: #070608;
  border-top: 1px solid rgba(230, 190, 103, 0.14);
  font-size: 13px;
}

.cover-footer-meta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cover-release {
  color: rgba(221, 193, 135, 0.68);
  font-size: 12px;
  white-space: nowrap;
}

.cover-footer a {
  color: var(--gold);
}

@media (max-width: 1050px) {
  .cover-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .cover-nav {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .cover-hero {
    padding-top: 142px;
  }

  .cover-hero,
  .conversion-band {
    grid-template-columns: 1fr;
  }

  .oracle-card {
    max-width: 540px;
  }

  .expansion-band {
    grid-template-columns: 1fr;
  }

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

  .roadmap-status {
    grid-template-columns: 1fr;
  }

  .profile-band,
  .account-band,
  .roadmap-band {
    grid-template-columns: 1fr;
  }

  .boundary-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .profile-orbit {
    grid-template-columns: 1fr;
  }

  .conversion-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 1120px) {
  .service-strip {
    grid-template-columns: repeat(2, minmax(0, 500px));
    width: min(100% - 40px, 1014px);
  }
}

@media (max-width: 740px) {
  .service-strip {
    grid-template-columns: minmax(0, 500px);
    width: min(100% - 32px, 500px);
  }
}

@media (max-width: 640px) {
  .cover-header {
    min-height: 68px;
    gap: 10px;
    padding: 10px 14px;
  }

  .cover-brand {
    min-width: 0;
  }

  .cover-brand em {
    display: none;
  }

  .cover-account {
    min-width: 0;
  }

  .cover-account a,
  .nav-user {
    min-height: 38px;
    padding: 6px 9px;
    font-size: 13px;
  }

  .cover-nav {
    gap: 0;
  }

  .cover-nav a {
    min-height: 32px;
    padding: 5px 7px;
    font-size: 13px;
  }

  .cover-hero {
    min-height: auto;
    padding: 132px 16px 42px;
  }

  h1 {
    font-size: 38px;
  }

  .hero-text {
    font-size: 16px;
  }

  .ring-one {
    width: 118vw;
  }

  .ring-two {
    width: 88vw;
  }

  .ring-three,
  .trigram {
    display: none;
  }

  .sigil-logo {
    top: 43%;
    width: 148px;
    opacity: 0.52;
  }

  .hero-actions,
  .trust-row,
  .conversion-actions {
    flex-direction: column;
  }

  .btn,
  .trust-row span {
    width: 100%;
  }

  .oracle-card {
    padding: 20px;
  }

  .oracle-grid,
  .service-strip,
  .account-grid,
  .cover-roadmap,
  .expansion-grid {
    grid-template-columns: 1fr;
  }

  .service-strip {
    width: auto;
    padding: 0 16px 42px;
  }

  .service-strip a {
    min-height: 0;
    padding: 16px;
  }

  .module-meta {
    min-height: 54px;
  }

  .module-mark {
    width: 52px;
    height: 52px;
    margin-left: 10px;
    font-size: 24px;
  }

  .service-strip strong {
    top: 31px;
    left: 150px;
    right: 82px;
    margin: 0;
    font-size: 25px;
  }

  .service-strip em {
    margin: 13px 8px 0;
    line-height: 1.65;
  }

  .service-strip small {
    margin: 10px 8px 0;
    padding-top: 0;
  }

  .conversion-band {
    margin: 0 16px 44px;
    padding: 24px;
  }

  .cover-section {
    margin: 0 16px 44px;
    padding: 24px;
  }

  .expansion-band {
    margin: 0 16px 44px;
    padding: 24px;
  }

  .roadmap-page {
    width: min(100% - 32px, 1120px);
    padding: 104px 0 44px;
  }

  .expansion-heading h2,
  .roadmap-intro h1 {
    font-size: 28px;
  }

  .module-ledger > article {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .module-ledger > article > b {
    grid-column: 2;
    justify-self: start;
  }

  .cover-footer {
    flex-direction: column;
    padding: 20px 16px;
  }

  .cover-footer-meta {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}
