@font-face {
  font-family: "SUIT Variable";
  font-display: swap;
  font-weight: 100 900;
  src: url("https://cdn.jsdelivr.net/gh/sunn-us/SUIT/fonts/variable/woff2/SUIT-Variable.woff2")
    format("woff2-variations");
}

:root {
  --bg: #071018;
  --bg-soft: #0d1722;
  --bg-panel: #111d29;
  --surface: #ffffff;
  --surface-soft: #f6f9fc;
  --surface-cool: #eef4f9;
  --ink: #101722;
  --ink-strong: #071018;
  --ink-inverse: #f5f8fc;
  --muted: #637184;
  --muted-inverse: #aeb9c8;
  --line: #d9e3ee;
  --line-strong: #c5d1df;
  --line-dark: rgba(255, 255, 255, 0.13);
  --emerald: #13b981;
  --emerald-strong: #07966a;
  --cyan: #46a5ff;
  --cyan-soft: #8bd3ff;
  --gold: #d7aa52;
  --gold-bright: #f6d47a;
  --red: #e35a5a;
  --amber-bg: #fff7df;
  --amber-line: #edd9a5;
  --shadow: 0 24px 60px rgba(7, 16, 24, 0.18);
  --shadow-strong: 0 34px 86px rgba(0, 0, 0, 0.28);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--surface-soft);
  font-family:
    "SUIT Variable", Pretendard, "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(18px, 5vw, 64px);
  color: var(--ink-inverse);
  background: rgba(7, 16, 24, 0.94);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
}

.brand,
.header-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 950;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  color: #06130f;
  background: var(--emerald);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 950;
}

.header-actions {
  gap: 18px;
  color: var(--muted-inverse);
  font-size: 14px;
  font-weight: 850;
}

.header-actions a:not(.button):hover {
  color: #ffffff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: #06130f;
  background: var(--emerald);
  border: 1px solid var(--emerald);
  border-radius: var(--radius);
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  background: #35d39c;
  border-color: #35d39c;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(19, 185, 129, 0.24);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
  box-shadow: none;
}

.button-small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 14px;
}

.button-secondary {
  color: var(--ink-inverse);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-dark);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(330px, 420px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: min(820px, calc(100vh - 72px));
  overflow: hidden;
  padding: clamp(52px, 8vw, 96px) clamp(18px, 5vw, 64px) clamp(42px, 6vw, 76px);
  color: var(--ink-inverse);
  background:
    radial-gradient(circle at 62% 30%, rgba(19, 185, 129, 0.28), transparent 31%),
    radial-gradient(circle at 80% 14%, rgba(70, 165, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #060d14 0%, #091622 47%, #071018 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(19, 185, 129, 0.55), transparent);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.space-grid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 62% 42%, #000 0 36%, transparent 72%);
}

.orbital-stage {
  position: absolute;
  top: 84px;
  right: clamp(250px, 27vw, 470px);
  width: min(34vw, 480px);
  min-width: 350px;
  height: min(48vw, 560px);
  min-height: 420px;
  transform-style: preserve-3d;
  perspective: 900px;
}

.orbital-stage::before,
.orbital-stage::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  filter: blur(10px);
}

.orbital-stage::before {
  inset: 18% 9%;
  background: radial-gradient(circle, rgba(19, 185, 129, 0.22), transparent 62%);
  animation: glow-pulse 4.8s ease-in-out infinite;
}

.orbital-stage::after {
  right: 7%;
  bottom: 14%;
  width: 42%;
  height: 18%;
  background: rgba(0, 0, 0, 0.34);
  transform: rotateX(68deg);
}

.exchange-depth {
  position: absolute;
  top: 18%;
  left: 0;
  display: grid;
  width: 58%;
  gap: 9px;
  padding: 14px;
  background: rgba(9, 18, 28, 0.42);
  border: 1px solid rgba(139, 211, 255, 0.13);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
  transform: rotateY(-20deg) rotateZ(-4deg) translate3d(-8px, 0, -12px);
  transform-style: preserve-3d;
}

.exchange-depth i {
  display: block;
  width: var(--w);
  height: 7px;
  margin-left: auto;
  background: linear-gradient(90deg, transparent, rgba(70, 165, 255, 0.52), rgba(19, 185, 129, 0.72));
  border-radius: 999px;
  opacity: 0.62;
  animation: depth-pulse 3.8s ease-in-out infinite;
  animation-delay: var(--d);
}

.coupon-signal {
  position: absolute;
  top: 8%;
  right: 14%;
  display: grid;
  gap: 4px;
  min-width: 148px;
  padding: 13px 14px;
  color: #eaf3ff;
  background:
    linear-gradient(135deg, rgba(70, 165, 255, 0.16), rgba(19, 185, 129, 0.09)),
    rgba(13, 24, 36, 0.68);
  border: 1px solid rgba(139, 211, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  transform: rotateY(18deg) rotateZ(4deg) translate3d(14px, 0, 26px);
}

.coupon-signal::before {
  position: absolute;
  inset: 50% auto auto -52px;
  width: 52px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(139, 211, 255, 0.9));
  transform: translateY(-50%);
  animation: coupon-route 3.9s ease-in-out infinite;
}

.coupon-signal span {
  color: var(--cyan-soft);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.coupon-signal strong {
  color: #ffffff;
  font-size: 13px;
}

.orbit-ring {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(139, 211, 255, 0.35);
  border-radius: 50%;
  transform-style: preserve-3d;
  animation: orbit-spin 12s linear infinite;
}

.orbit-ring-one {
  transform: rotateX(64deg) rotateZ(12deg);
}

.orbit-ring-two {
  inset: 22% 6%;
  border-color: rgba(246, 212, 122, 0.38);
  animation-duration: 16s;
  animation-direction: reverse;
  transform: rotateX(73deg) rotateZ(-27deg);
}

.orbit-ring-three {
  inset: 4% 22%;
  border-color: rgba(19, 185, 129, 0.42);
  animation-duration: 19s;
  transform: rotateX(56deg) rotateY(26deg);
}

.wallet-shield {
  position: absolute;
  right: 11%;
  top: 28%;
  width: 168px;
  height: 202px;
  border: 1px solid rgba(139, 211, 255, 0.28);
  border-radius: 36% 36% 44% 44% / 28% 28% 56% 56%;
  background:
    linear-gradient(145deg, rgba(70, 165, 255, 0.11), rgba(19, 185, 129, 0.09)),
    rgba(9, 18, 28, 0.25);
  box-shadow:
    inset 0 0 32px rgba(139, 211, 255, 0.12),
    0 26px 62px rgba(0, 0, 0, 0.22);
  transform: rotateX(8deg) rotateY(24deg) translate3d(18px, 4px, -22px);
  animation: shield-breathe 5.8s ease-in-out infinite;
}

.wallet-shield::before,
.wallet-shield::after {
  position: absolute;
  content: "";
  border-radius: inherit;
}

.wallet-shield::before {
  inset: 12px;
  border: 1px solid rgba(19, 185, 129, 0.24);
}

.wallet-shield::after {
  left: 50%;
  top: 28%;
  width: 54%;
  height: 38%;
  background: linear-gradient(180deg, rgba(139, 211, 255, 0.24), transparent);
  transform: translateX(-50%);
  clip-path: polygon(50% 0, 100% 25%, 85% 100%, 15% 100%, 0 25%);
}

.wallet-shield span {
  position: absolute;
  left: 50%;
  bottom: 23%;
  width: 82px;
  height: 8px;
  background: linear-gradient(90deg, transparent, rgba(246, 212, 122, 0.74), transparent);
  border-radius: 999px;
  transform: translateX(-50%) rotateX(68deg);
}

.margin-dial {
  position: absolute;
  right: 3%;
  top: 52%;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  color: #eff8ff;
  background:
    conic-gradient(from 18deg, rgba(19, 185, 129, 0.12), rgba(246, 212, 122, 0.72), rgba(227, 90, 90, 0.28), rgba(19, 185, 129, 0.12)),
    rgba(13, 24, 36, 0.44);
  border: 1px solid rgba(246, 212, 122, 0.28);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 10px rgba(7, 16, 24, 0.74),
    0 22px 54px rgba(0, 0, 0, 0.24);
  transform: rotateX(62deg) rotateZ(-14deg) translate3d(0, 0, 30px);
  animation: dial-breathe 6.8s ease-in-out infinite;
}

.margin-dial::after {
  position: absolute;
  inset: 19px;
  content: "";
  border: 1px solid rgba(139, 211, 255, 0.2);
  border-radius: 50%;
}

.margin-dial span,
.margin-dial strong {
  position: relative;
  z-index: 1;
  grid-column: 1;
  line-height: 1;
}

.margin-dial span {
  align-self: end;
  color: var(--muted-inverse);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.margin-dial strong {
  align-self: start;
  margin-top: 5px;
  color: #ffffff;
  font-size: 14px;
}

.token-3d {
  position: absolute;
  top: 27%;
  left: 31%;
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  color: #06130f;
  background:
    linear-gradient(145deg, #bdfbe4, var(--emerald) 44%, #07815d 100%);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  box-shadow:
    inset -18px -22px 36px rgba(4, 83, 60, 0.34),
    inset 16px 18px 28px rgba(255, 255, 255, 0.32),
    0 28px 70px rgba(19, 185, 129, 0.34);
  transform: rotateX(14deg) rotateY(-18deg);
  animation: token-float 5.8s ease-in-out infinite;
}

.verification-trail {
  position: absolute;
  left: 44%;
  top: 45%;
  width: 45%;
  height: 72px;
  border-top: 2px solid rgba(139, 211, 255, 0.26);
  border-right: 2px solid rgba(19, 185, 129, 0.2);
  border-radius: 0 999px 0 0;
  transform: rotateX(62deg) rotateZ(6deg);
}

.verification-trail::before {
  position: absolute;
  left: -7px;
  top: -7px;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--cyan-soft);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(139, 211, 255, 0.86);
  animation: trail-flow 4.7s ease-in-out infinite;
}

.risk-scan {
  position: absolute;
  left: 18%;
  bottom: 18%;
  width: 64%;
  height: 2px;
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(227, 90, 90, 0.34), rgba(246, 212, 122, 0.45), transparent);
  border-radius: 999px;
  transform: rotateX(68deg) rotateZ(-7deg);
}

.risk-scan::before {
  position: absolute;
  inset: 0 auto 0 -38%;
  width: 38%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 221, 170, 0.95), transparent);
  animation: risk-sweep 4.6s ease-in-out infinite;
}

.token-3d::before {
  position: absolute;
  inset: 15px;
  content: "";
  border: 2px solid rgba(6, 19, 15, 0.18);
  border-radius: 50%;
}

.token-3d::after {
  position: absolute;
  inset: 22px auto auto 32px;
  width: 52px;
  height: 118px;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.42), transparent);
  border-radius: 999px;
  transform: rotate(24deg);
}

.token-3d span,
.token-3d strong {
  position: relative;
  z-index: 1;
  grid-column: 1;
  line-height: 1;
}

.token-3d span {
  align-self: end;
  font-size: 58px;
  font-weight: 950;
}

.token-3d strong {
  align-self: start;
  margin-top: 6px;
  font-size: 24px;
  letter-spacing: 0;
}

.trade-panel {
  position: absolute;
  display: flex;
  min-width: 150px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 14px;
  color: #eaf3ff;
  background: rgba(13, 24, 36, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 950;
}

.trade-panel strong {
  color: var(--gold-bright);
}

.trade-panel-a {
  top: 12%;
  left: 1%;
  animation: panel-float 5.4s ease-in-out infinite;
}

.trade-panel-b {
  right: 0;
  bottom: 17%;
  animation: panel-float 6.3s ease-in-out infinite reverse;
}

.market-ribbon {
  position: absolute;
  left: 6%;
  width: 78%;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(139, 211, 255, 0.72), rgba(19, 185, 129, 0.72), transparent);
  filter: blur(1px);
  transform-origin: center;
}

.ribbon-one {
  top: 55%;
  transform: rotateX(67deg) rotateZ(-12deg);
  animation: ribbon-flow 3.2s ease-in-out infinite;
}

.ribbon-two {
  top: 63%;
  transform: rotateX(67deg) rotateZ(17deg);
  animation: ribbon-flow 3.8s ease-in-out infinite reverse;
}

.terminal-card {
  position: absolute;
  color: #f4f8ff;
  background: rgba(16, 29, 41, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(12px);
}

.card-main {
  top: 84px;
  right: clamp(28px, 8vw, 120px);
  width: min(36vw, 430px);
  min-width: 320px;
  padding: 20px;
  opacity: 0.58;
  transform: rotate(-1deg);
}

.card-depth {
  right: clamp(10px, 5vw, 84px);
  bottom: 70px;
  width: min(30vw, 350px);
  min-width: 260px;
  padding: 18px;
  opacity: 0.42;
  transform: rotate(1.5deg);
}

.terminal-top,
.console-header,
.visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.terminal-top {
  margin-bottom: 18px;
  color: var(--muted-inverse);
  font-size: 12px;
  font-weight: 950;
}

.terminal-top strong,
.console-header strong,
.visual-header strong {
  color: var(--emerald);
}

.credit-orbit {
  display: grid;
  min-height: 170px;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(70, 165, 255, 0.12), rgba(19, 185, 129, 0.08)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 42px);
}

.credit-token {
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  color: #06130f;
  background: var(--emerald);
  border-radius: 50%;
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
  box-shadow: 0 0 0 14px rgba(19, 185, 129, 0.1);
}

.terminal-row,
.console-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 42px;
  padding: 0 12px;
  margin-top: 8px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  font-size: 12px;
  font-weight: 850;
}

.terminal-row strong,
.console-row strong {
  color: #ffffff;
}

.terminal-row.danger strong,
.console-row.alert strong {
  color: #ffd3d3;
}

.card-depth > span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted-inverse);
  font-size: 12px;
  font-weight: 950;
}

.card-depth i {
  display: block;
  width: var(--w);
  height: 26px;
  margin-top: 10px;
  border-radius: var(--radius);
  background: rgba(19, 185, 129, 0.18);
}

.card-depth .danger-line {
  background: rgba(227, 90, 90, 0.2);
}

.hero-copy,
.form-panel {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero-copy {
  max-width: 650px;
}

.hero h1,
.admin-title h1 {
  margin: 0;
  font-size: clamp(50px, 7vw, 88px);
  line-height: 0.98;
  font-weight: 950;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.hero h1 span {
  color: var(--emerald);
}

.hero-subtitle {
  max-width: 520px;
  margin: 22px 0 0;
  color: #d6e2ef;
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.52;
}

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

.hero-actions .button {
  flex: 0 1 auto;
}

.hero-text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  color: #d6e2ef;
  font-size: 15px;
  font-weight: 950;
  text-decoration: underline;
  text-decoration-color: rgba(214, 226, 239, 0.34);
  text-underline-offset: 5px;
}

.hero-text-link:hover {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.64);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin-top: 28px;
}

.hero-proof div,
.event-strip div {
  border-radius: var(--radius);
}

.hero-proof div {
  position: relative;
  min-height: 86px;
  padding: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.hero-proof div:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(139, 211, 255, 0.3);
  transform: translateY(-2px);
}

.hero-proof strong {
  display: block;
  margin-bottom: 7px;
  color: #ffffff;
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1;
}

.hero-proof span {
  color: var(--muted-inverse);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
}

.hero-proof i {
  display: none;
}

.form-panel,
.table-panel,
.login-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-panel {
  max-width: 400px;
  padding: clamp(18px, 2.5vw, 24px);
  color: var(--ink);
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.panel-heading p,
.section-kicker {
  margin: 0 0 10px;
  color: var(--emerald-strong);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.panel-heading p {
  margin-bottom: 7px;
}

.panel-heading h2,
.section-heading h2,
.visual-copy h2,
.faq-section h2,
.final-cta h2,
.table-header h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 35px);
  line-height: 1.2;
}

.panel-heading h2 {
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: keep-all;
}

.panel-status {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  color: #075f45;
  background: #dff8ed;
  border: 1px solid #bdebd8;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.credit-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: end;
  margin-bottom: 16px;
  padding: 16px;
  background: #e9fbf4;
  border: 1px solid #bdebd8;
  border-radius: var(--radius);
}

.credit-box span {
  color: #087553;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.credit-box strong {
  grid-row: span 2;
  color: #053d2d;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1;
}

.credit-box em {
  color: #527062;
  font-style: normal;
  font-size: 13px;
  font-weight: 850;
}

.claim-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.claim-trust span {
  display: grid;
  min-height: 36px;
  place-items: center;
  padding: 0 10px;
  color: #0c4a37;
  background: #f1fbf7;
  border: 1px solid #ccefe0;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 950;
  text-align: center;
}

.sms-assurance {
  position: relative;
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
  padding: 13px 14px 13px 42px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(70, 165, 255, 0.08), rgba(19, 185, 129, 0.08)),
    #fbfcff;
  border: 1px solid #d8e8f7;
  border-radius: var(--radius);
}

.sms-assurance::before {
  position: absolute;
  left: 14px;
  top: 15px;
  width: 15px;
  height: 15px;
  content: "";
  background: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(19, 185, 129, 0.12);
  animation: assurance-pulse 2.8s ease-in-out infinite;
}

.sms-assurance span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.sms-assurance strong {
  color: var(--ink-strong);
  font-size: 14px;
}

.sms-assurance em {
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
  line-height: 1.45;
}

.form-proof,
.visual-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.form-proof {
  margin-bottom: 18px;
}

.form-proof span,
.visual-footer span {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  padding: 0 10px;
  color: #0c4a37;
  background: #f1fbf7;
  border: 1px solid #ccefe0;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.field span,
.segmented-field legend,
.consent {
  color: #2d3746;
  font-size: 14px;
  font-weight: 900;
}

.field input,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: #fbfcff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  outline: none;
}

.field input:focus,
.field select:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(19, 185, 129, 0.18);
}

.field input:disabled {
  color: #9aa5b3;
  background: #eef2f6;
}

.compact-field {
  margin: 12px 0 0;
}

.optional-field,
.consent-detail {
  margin-bottom: 12px;
}

.optional-field summary,
.consent-detail summary {
  cursor: pointer;
  color: #334155;
  font-size: 12px;
  font-weight: 900;
}

.optional-field summary span {
  color: var(--muted);
  font-weight: 800;
}

.consent-detail p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.consent-detail a {
  color: var(--emerald-strong);
  font-weight: 900;
}

.segmented-field {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
}

.segmented-field legend {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.segmented-field label {
  position: relative;
}

.segmented-field input {
  position: absolute;
  opacity: 0;
}

.segmented-field span {
  display: grid;
  min-height: 40px;
  place-items: center;
  padding: 0 8px;
  color: var(--muted);
  background: #f5f7fa;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.segmented-field input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(19, 185, 129, 0.18);
}

.segmented-field input:checked + span {
  color: #063929;
  background: #dff8ed;
  border-color: var(--emerald);
}

.form-risk {
  margin: 0 0 14px;
  padding: 12px 13px;
  color: #5f4830;
  background: var(--amber-bg);
  border: 1px solid var(--amber-line);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.55;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  align-items: start;
  margin: 0 0 7px;
  line-height: 1.45;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--emerald);
}

.error {
  min-height: 17px;
  color: var(--red);
  font-size: 12px;
}

.error:empty {
  min-height: 0;
}

.form-submit {
  width: 100%;
  margin-top: 10px;
}

.form-microcopy,
.form-status {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 850;
}

.form-microcopy {
  color: var(--muted);
  line-height: 1.42;
  text-align: center;
}

.form-status {
  min-height: 22px;
}

.success-text {
  color: #07825d;
}

.error-text {
  color: var(--red);
}

.post-submit {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.post-submit p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.claim-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.claim-timeline li {
  min-width: 0;
  padding: 11px 10px;
  background: #f7fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.claim-timeline span,
.claim-timeline strong {
  display: block;
}

.claim-timeline span {
  color: var(--emerald-strong);
  font-size: 11px;
  font-weight: 950;
}

.claim-timeline strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
}

.interest-actions,
.status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.interest-actions button,
.status-actions button {
  min-height: 34px;
  padding: 0 10px;
  color: var(--muted);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.interest-actions button.active,
.status-actions button.active {
  color: #063929;
  background: #dff8ed;
  border-color: var(--emerald);
}

.event-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 64px);
  background: var(--bg);
}

.event-strip div {
  min-width: 0;
  min-height: 156px;
  padding: 28px 24px;
  color: var(--ink-inverse);
  background: #111b27;
}

.event-strip span {
  display: block;
  margin-bottom: 10px;
  color: var(--emerald);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.event-strip strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.08;
}

.event-strip p {
  margin: 0;
  color: var(--muted-inverse);
  line-height: 1.6;
  font-weight: 800;
}

.section-band,
.technology-section,
.risk-section,
.visual-section,
.faq-section,
.final-cta,
.admin-shell {
  padding: clamp(48px, 7vw, 88px) clamp(18px, 5vw, 64px);
}

.section-band {
  background: #ffffff;
}

.wallet-section {
  background:
    linear-gradient(180deg, #ffffff, #f5f8fc);
}

.conditions-section {
  background: #ffffff;
}

.technology-section {
  color: var(--ink-inverse);
  background:
    radial-gradient(circle at 20% 18%, rgba(70, 165, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #071018 0%, #0c1824 48%, #111b27 100%);
}

.technology-section .section-heading h2 {
  color: #ffffff;
}

.technology-section .section-heading p:not(.section-kicker) {
  color: var(--muted-inverse);
}

.technology-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: stretch;
}

.stack-console {
  position: relative;
  min-width: 0;
  min-height: 520px;
  overflow: hidden;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(70, 165, 255, 0.1), rgba(19, 185, 129, 0.06)),
    var(--bg-panel);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.stack-console::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 52% 38%, #000 0 32%, transparent 74%);
}

.stack-top,
.stack-row,
.stack-orbit {
  position: relative;
  z-index: 1;
}

.stack-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted-inverse);
  font-size: 12px;
  font-weight: 950;
}

.stack-top strong {
  color: var(--emerald);
}

.stack-orbit {
  display: grid;
  width: min(72vw, 250px);
  height: min(72vw, 250px);
  place-items: center;
  margin: 32px auto 26px;
  color: #06130f;
  background:
    radial-gradient(circle at 34% 30%, #ffffff, #bdfbe4 19%, transparent 20%),
    linear-gradient(145deg, #bdfbe4, var(--emerald) 48%, #07815d);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  box-shadow:
    inset -20px -22px 36px rgba(4, 83, 60, 0.34),
    0 0 0 22px rgba(19, 185, 129, 0.08),
    0 34px 86px rgba(19, 185, 129, 0.2);
  transform: rotateX(12deg) rotateY(-14deg);
}

.stack-orbit::before,
.stack-orbit::after {
  position: absolute;
  inset: -19px;
  content: "";
  border: 1px solid rgba(139, 211, 255, 0.32);
  border-radius: 50%;
  animation: stack-spin 14s linear infinite;
}

.stack-orbit::after {
  inset: 18px -28px;
  border-color: rgba(246, 212, 122, 0.36);
  animation-duration: 19s;
  animation-direction: reverse;
  transform: rotateX(70deg);
}

.stack-orbit span,
.stack-orbit strong {
  position: relative;
  z-index: 1;
  grid-column: 1;
  line-height: 1;
}

.stack-orbit span {
  align-self: end;
  font-size: 70px;
  font-weight: 950;
}

.stack-orbit strong {
  align-self: start;
  margin-top: 8px;
  font-size: 26px;
}

.stack-row {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 10px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 900;
}

.stack-row span {
  color: var(--muted-inverse);
}

.stack-row strong {
  color: #ffffff;
  text-align: right;
}

.stack-row.alert strong {
  color: var(--gold-bright);
}

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

.signal-grid article {
  position: relative;
  min-width: 0;
  min-height: 242px;
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(17, 27, 39, 0.88);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.signal-grid article::after {
  position: absolute;
  left: -30%;
  top: 0;
  width: 28%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(139, 211, 255, 0.13), transparent);
  transform: skewX(-18deg);
  animation: signal-sweep 6.4s ease-in-out infinite;
}

.signal-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #06130f;
  background: var(--emerald);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 950;
}

.signal-grid h3 {
  margin: 26px 0 10px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
}

.signal-grid p {
  margin: 0;
  color: var(--muted-inverse);
  line-height: 1.68;
  font-weight: 800;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 30px;
}

.section-heading p:not(.section-kicker),
.visual-copy p,
.admin-title p,
.final-cta p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.wallet-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(22px, 4vw, 38px);
  align-items: stretch;
}

.wallet-console,
.trading-visual {
  min-width: 0;
  color: var(--ink-inverse);
  background: var(--bg-panel);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.wallet-console {
  padding: 22px;
}

.console-header {
  margin-bottom: 22px;
  color: var(--muted-inverse);
  font-size: 12px;
  font-weight: 950;
}

.console-row {
  min-height: 56px;
  margin-top: 10px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.065);
  font-size: 14px;
}

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

.flow-list li {
  counter-increment: flow;
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 142px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.flow-list li::before {
  content: counter(flow, decimal-leading-zero);
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
}

.flow-list strong {
  font-size: 18px;
}

.flow-list span {
  color: var(--muted);
  line-height: 1.55;
}

.trust-grid,
.condition-grid,
.risk-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trust-grid article,
.condition-grid article,
.risk-grid article,
.summary-grid article {
  min-width: 0;
  padding: 22px;
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-section {
  background:
    linear-gradient(180deg, #f6f9fc 0%, #ffffff 58%, #f4f8fc 100%);
}

.trust-grid article {
  position: relative;
  min-height: 238px;
  overflow: hidden;
  background: #ffffff;
}

.trust-grid article::after {
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 112px;
  height: 112px;
  content: "";
  background: radial-gradient(circle, rgba(70, 165, 255, 0.16), transparent 68%);
  border-radius: 50%;
}

.trust-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #062d22;
  background: #dff8ed;
  border: 1px solid #bdebd8;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 950;
}

.trust-grid h3 {
  margin: 22px 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.trust-grid span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  margin-top: 18px;
  padding: 0 10px;
  color: #0a4f78;
  background: #e8f5ff;
  border: 1px solid #cce8ff;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 950;
}

.credibility-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  color: var(--ink-inverse);
  background: #1b2a3a;
  border: 1px solid #24384b;
  border-radius: var(--radius);
}

.credibility-rail div {
  min-height: 120px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(19, 185, 129, 0.11), transparent 46%),
    #111b27;
}

.credibility-rail strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 18px;
}

.credibility-rail span {
  display: block;
  color: var(--muted-inverse);
  line-height: 1.62;
  font-weight: 800;
}

.condition-grid span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
}

.condition-grid h3,
.risk-grid h3 {
  margin: 16px 0 10px;
  font-size: 20px;
}

.condition-grid p,
.risk-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.risk-section {
  color: var(--ink-inverse);
  background:
    linear-gradient(180deg, #071018, #0b1320),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 78px);
}

.risk-section .section-heading h2 {
  color: #ffffff;
}

.risk-section .section-heading p:not(.section-kicker) {
  color: var(--muted-inverse);
}

.risk-grid article {
  background: #111b27;
  border-color: var(--line-dark);
}

.risk-grid h3 {
  color: #ffffff;
}

.risk-grid p {
  color: var(--muted-inverse);
}

.risk-grid span {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  padding: 7px 10px;
  color: #ffdddd;
  background: rgba(227, 90, 90, 0.12);
  border: 1px solid rgba(227, 90, 90, 0.3);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
}

.visual-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  background: #ffffff;
}

.trading-visual {
  padding: 22px;
}

.visual-header {
  margin-bottom: 24px;
}

.visual-header span {
  color: var(--muted-inverse);
  font-weight: 900;
}

.depth-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  margin-bottom: 10px;
  padding: 0 12px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.depth-row span {
  position: absolute;
  inset: 0 auto 0 0;
  background: rgba(19, 185, 129, 0.16);
}

.depth-row.danger span {
  background: rgba(227, 90, 90, 0.16);
}

.depth-row b,
.depth-row em {
  position: relative;
  z-index: 1;
}

.depth-row em {
  color: var(--muted-inverse);
  font-style: normal;
  font-weight: 800;
}

.visual-footer {
  margin-top: 18px;
}

.visual-footer span {
  color: #cfe6ff;
  background: rgba(70, 165, 255, 0.12);
  border-color: rgba(70, 165, 255, 0.28);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

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

.faq-section {
  background: #f3f7fb;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 950;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink-inverse);
  background: #111b27;
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta p {
  max-width: 760px;
  color: var(--muted-inverse);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 24px 18px;
  color: #8b96a8;
  background: #071018;
  border-top: 1px solid #172333;
  font-size: 13px;
  font-weight: 850;
}

.site-footer a {
  color: #d7dee8;
}

.legal-shell {
  min-height: calc(100vh - 72px);
  padding: clamp(38px, 7vw, 82px) clamp(18px, 5vw, 64px);
  background: #f4f7fb;
}

.legal-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 46px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
}

.legal-card > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.legal-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
}

.legal-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 18px;
  background: #f7fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-list dt {
  color: var(--ink);
  font-weight: 950;
}

.legal-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.legal-note {
  margin-top: 24px;
  padding: 18px;
  color: #5f4830;
  background: var(--amber-bg);
  border: 1px solid var(--amber-line);
  border-radius: var(--radius);
}

.legal-note strong {
  display: block;
  margin-bottom: 8px;
}

.legal-note p {
  margin: 0;
  line-height: 1.65;
}

.admin-body {
  background: #f6f8fb;
}

.login-shell {
  display: grid;
  min-height: calc(100vh - 72px);
  place-items: center;
  padding: clamp(36px, 7vw, 86px) clamp(18px, 5vw, 64px);
}

.login-panel {
  width: min(100%, 460px);
  padding: clamp(24px, 4vw, 36px);
}

.login-panel h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
}

.login-panel p {
  margin: 14px 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.admin-shell {
  display: grid;
  gap: 22px;
}

.admin-title h1 {
  color: var(--ink);
  font-size: clamp(34px, 5vw, 58px);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.summary-grid article {
  background: #ffffff;
}

.summary-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.summary-grid strong {
  display: block;
  margin-top: 10px;
  font-size: 34px;
  line-height: 1;
}

.admin-tools {
  display: grid;
  grid-template-columns: minmax(180px, 1.5fr) minmax(140px, 0.8fr) repeat(2, minmax(135px, 0.8fr)) minmax(140px, 0.8fr) minmax(140px, 0.8fr) auto;
  gap: 14px;
  align-items: end;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.admin-tools .field {
  margin: 0;
}

.table-panel {
  overflow: hidden;
}

.table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.table-header p {
  margin: 0;
  color: var(--muted);
  font-weight: 900;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 1240px;
  border-collapse: collapse;
  background: #ffffff;
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
  font-size: 14px;
}

th {
  color: var(--muted);
  background: #fbfcff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.coupon-code,
.coupon-meta {
  display: block;
}

.coupon-code {
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0;
  white-space: nowrap;
}

.coupon-meta {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.coupon-error {
  display: block;
  margin-top: 6px;
  color: #ff8f8f;
  font-size: 12px;
  font-weight: 800;
}

.status-waiting {
  color: #735000;
  background: #fff1c7;
}

.status-progress {
  color: #065f46;
  background: #dff8ed;
}

.status-done {
  color: #0a5d94;
  background: #d9eeff;
}

.status-hold {
  color: #8f2c2c;
  background: #ffe1e1;
}

.empty-state {
  margin: 0;
  padding: 26px;
  color: var(--muted);
  text-align: center;
}

@keyframes token-float {
  0%,
  100% {
    transform: translate3d(0, 0, 38px) rotateX(14deg) rotateY(-18deg) rotateZ(-2deg);
  }
  50% {
    transform: translate3d(0, -18px, 58px) rotateX(18deg) rotateY(16deg) rotateZ(3deg);
  }
}

@keyframes orbit-spin {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.68;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes coupon-route {
  0%,
  100% {
    opacity: 0.34;
    transform: translateY(-50%) scaleX(0.78);
  }
  45% {
    opacity: 1;
    transform: translateY(-50%) scaleX(1.12);
  }
}

@keyframes dial-breathe {
  0%,
  100% {
    opacity: 0.78;
    transform: rotateX(62deg) rotateZ(-14deg) translate3d(0, 0, 30px) scale(0.98);
  }
  50% {
    opacity: 1;
    transform: rotateX(62deg) rotateZ(-8deg) translate3d(0, -5px, 36px) scale(1.02);
  }
}

@keyframes trail-flow {
  0%,
  18% {
    opacity: 0.3;
    transform: translate3d(0, 0, 0);
  }
  48% {
    opacity: 1;
    transform: translate3d(120px, -2px, 0);
  }
  72%,
  100% {
    opacity: 0.2;
    transform: translate3d(188px, 64px, 0);
  }
}

@keyframes panel-float {
  0%,
  100% {
    transform: translate3d(0, 0, 32px);
  }
  50% {
    transform: translate3d(0, -12px, 52px);
  }
}

@keyframes depth-pulse {
  0%,
  100% {
    opacity: 0.42;
    transform: translateX(0);
  }
  50% {
    opacity: 0.9;
    transform: translateX(-12px);
  }
}

@keyframes shield-breathe {
  0%,
  100% {
    opacity: 0.66;
    transform: rotateX(8deg) rotateY(24deg) translate3d(18px, 4px, -22px) scale(0.98);
  }
  50% {
    opacity: 0.92;
    transform: rotateX(8deg) rotateY(19deg) translate3d(10px, 0, -12px) scale(1.02);
  }
}

@keyframes risk-sweep {
  0%,
  18% {
    opacity: 0;
    transform: translateX(0);
  }
  24% {
    opacity: 1;
  }
  56% {
    opacity: 1;
    transform: translateX(360%);
  }
  76%,
  100% {
    opacity: 0;
    transform: translateX(360%);
  }
}

@keyframes ribbon-flow {
  0%,
  100% {
    opacity: 0.34;
    translate: -18px 0;
  }
  50% {
    opacity: 0.9;
    translate: 18px 0;
  }
}

@keyframes assurance-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(19, 185, 129, 0.11);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(19, 185, 129, 0.18);
  }
}

@keyframes stack-spin {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}

@keyframes signal-sweep {
  0%,
  44% {
    transform: translateX(0) skewX(-18deg);
  }
  74%,
  100% {
    transform: translateX(520%) skewX(-18deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1180px) {
  .hero,
  .wallet-grid,
  .technology-grid,
  .visual-section {
    grid-template-columns: 1fr;
  }

  .form-panel {
    max-width: 440px;
  }

  .orbital-stage {
    top: 70px;
    right: 28px;
    opacity: 0.42;
  }

  .card-main {
    right: 24px;
    width: 360px;
  }

  .card-depth {
    display: none;
  }

  .trust-grid,
  .condition-grid,
  .risk-grid,
  .summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 860px) {
  .site-header {
    position: static;
    min-height: auto;
    align-items: flex-start;
  }

  .brand {
    max-width: 230px;
    white-space: normal;
  }

  .header-actions {
    gap: 10px;
  }

  .header-actions a:not(.button) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
    gap: 26px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 40px;
    line-height: 1.05;
  }

  .hero-subtitle {
    margin-top: 18px;
    font-size: 17px;
  }

  .hero-actions,
  .hero-proof {
    margin-top: 24px;
  }

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

  .hero-actions .button {
    width: min(100%, 360px);
  }

  .hero-text-link {
    display: none;
  }

  .event-strip,
  .trust-grid,
  .credibility-rail,
  .condition-grid,
  .risk-grid,
  .summary-grid,
  .flow-list,
  .signal-grid,
  .admin-tools {
    grid-template-columns: 1fr;
  }

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

  .hero-proof div {
    min-height: 76px;
    padding: 12px;
  }

  .orbital-stage {
    top: 92px;
    right: -76px;
    width: 330px;
    min-width: 300px;
    height: 330px;
    min-height: 300px;
    opacity: 0.32;
  }

  .token-3d {
    width: 132px;
    height: 132px;
  }

  .exchange-depth {
    left: 8%;
    top: 26%;
    width: 54%;
    opacity: 0.58;
  }

  .wallet-shield {
    right: 15%;
    top: 24%;
    width: 118px;
    height: 144px;
    opacity: 0.7;
  }

  .coupon-signal,
  .margin-dial,
  .verification-trail {
    opacity: 0.68;
  }

  .risk-scan {
    left: 18%;
    bottom: 23%;
    width: 58%;
  }

  .token-3d span {
    font-size: 40px;
  }

  .token-3d strong {
    font-size: 18px;
  }

  .trade-panel {
    display: none;
  }

  .card-main {
    display: none;
  }

  .segmented-field {
    grid-template-columns: 1fr;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section-band,
  .technology-section,
  .risk-section,
  .visual-section,
  .faq-section,
  .final-cta,
  .admin-shell {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .table-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 14px;
  }

  .brand {
    font-size: 14px;
  }

  .button-small {
    padding: 0 10px;
  }

  .hero,
  .section-band,
  .technology-section,
  .risk-section,
  .visual-section,
  .faq-section,
  .final-cta,
  .admin-shell {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-proof,
  .claim-timeline {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    display: none;
  }

  .claim-trust {
    gap: 5px;
    margin-bottom: 12px;
  }

  .claim-trust span {
    min-height: 31px;
    padding: 0 7px;
    font-size: 10px;
  }

  .form-panel {
    padding: 16px;
  }

  .panel-heading {
    gap: 6px;
    margin-bottom: 12px;
  }

  .panel-heading h2 {
    font-size: 28px;
  }

  .field {
    gap: 6px;
    margin-bottom: 10px;
  }

  .field input,
  .field select {
    min-height: 46px;
  }

  .consent {
    gap: 8px;
    margin-bottom: 6px;
    font-size: 13px;
  }

  .form-submit {
    min-height: 44px;
    margin-top: 4px;
  }

  .coupon-signal,
  .margin-dial,
  .verification-trail {
    display: none;
  }

  .stack-console {
    min-height: 450px;
    padding: 18px;
  }

  .stack-orbit {
    width: min(72vw, 208px);
    height: min(72vw, 208px);
  }

  .stack-orbit span {
    font-size: 56px;
  }

  .stack-row {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .stack-row strong {
    text-align: left;
  }

  .panel-heading {
    flex-direction: column;
  }

  .panel-status {
    white-space: normal;
  }

  .credit-box {
    grid-template-columns: 1fr;
  }

  .credit-box strong {
    grid-row: auto;
  }
}
