:root {
  color-scheme: dark;
  --bg: #050806;
  --bg-soft: #09100b;
  --panel: rgba(13, 21, 15, 0.82);
  --panel-solid: #0d1510;
  --line: rgba(189, 255, 41, 0.16);
  --line-soft: rgba(221, 236, 224, 0.11);
  --lime: #bcff2b;
  --lime-soft: #ddff91;
  --cyan: #70f4dc;
  --white: #f4f8f1;
  --muted: #91a096;
  --muted-strong: #b6c2b8;
  --warning: #b87446;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius: 28px;
  --shell: min(1180px, calc(100% - 40px));
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 7%, rgba(142, 209, 21, 0.13), transparent 28%),
    radial-gradient(circle at 10% 42%, rgba(65, 232, 203, 0.05), transparent 25%),
    var(--bg);
  color: var(--white);
  font-family: "Avenir Next", Avenir, "Segoe UI Variable Text", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0.002em;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.site-noise {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image:
    repeating-radial-gradient(circle at 17% 29%, #fff 0 0.4px, transparent 0.7px 4px),
    repeating-radial-gradient(circle at 71% 63%, #fff 0 0.35px, transparent 0.8px 5px);
  background-size: 43px 47px, 59px 53px;
}

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

button,
input {
  font: inherit;
}

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 28px));
  min-height: var(--header-height);
  margin-inline: auto;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 8, 6, 0.82);
  backdrop-filter: blur(22px) saturate(1.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.brand img {
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(188, 255, 43, 0.15));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 650;
}

.desktop-nav a {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--lime);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding-inline: 20px;
  font-size: 13px;
}

.button-primary {
  color: #081006;
  background: var(--lime);
  box-shadow: 0 10px 34px rgba(188, 255, 43, 0.18);
}

.button-primary:hover {
  box-shadow: 0 14px 42px rgba(188, 255, 43, 0.28);
}

.button-outline {
  border-color: rgba(188, 255, 43, 0.38);
  color: var(--lime);
  background: rgba(188, 255, 43, 0.06);
}

.button-ghost {
  border-color: var(--line-soft);
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.025);
}

.telegram-mark {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #269ed8;
  box-shadow: 0 0 18px rgba(38, 158, 216, 0.24);
}

.telegram-mark::before {
  width: 12px;
  height: 10px;
  background: #fff;
  clip-path: polygon(2% 43%, 100% 0, 76% 100%, 48% 72%, 30% 91%, 32% 65%);
  content: "";
}

.button-small .telegram-mark {
  width: 18px;
  height: 18px;
}

.button-small .telegram-mark::before {
  width: 10px;
  height: 9px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.19em;
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(188, 255, 43, 0.55);
  animation: pulse 2s infinite;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  padding-block: 72px 92px;
  gap: clamp(50px, 8vw, 105px);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(54px, 6.45vw, 94px);
  line-height: 0.97;
  letter-spacing: -0.042em;
}

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

.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted-strong);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 44px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.hero-proof b {
  color: var(--cyan);
  font-size: 10px;
}

.protocol-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  max-width: 570px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 48px;
  background:
    radial-gradient(circle, rgba(188, 255, 43, 0.09), transparent 52%),
    linear-gradient(145deg, rgba(21, 34, 24, 0.9), rgba(5, 10, 7, 0.84));
  box-shadow: var(--shadow), inset 0 0 80px rgba(188, 255, 43, 0.035);
}

.protocol-visual::before {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 36px;
  content: "";
}

.visual-grid {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(188, 255, 43, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(188, 255, 43, 0.1) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle, black, transparent 73%);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(188, 255, 43, 0.2);
  border-radius: 50%;
  animation: rotate 18s linear infinite;
}

.orbit-one {
  width: 66%;
  aspect-ratio: 1;
}

.orbit-two {
  width: 82%;
  aspect-ratio: 1;
  border-style: dashed;
  border-color: rgba(112, 244, 220, 0.18);
  animation-duration: 31s;
  animation-direction: reverse;
}

.orbit i {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 20px var(--lime);
}

.orbit-two i {
  top: auto;
  right: 12%;
  bottom: 8%;
  left: auto;
  background: var(--cyan);
  box-shadow: 0 0 20px var(--cyan);
}

.protocol-core {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48%;
  aspect-ratio: 1;
  border: 1px solid rgba(188, 255, 43, 0.28);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, rgba(42, 66, 41, 0.9), rgba(6, 11, 8, 0.98) 70%);
  box-shadow: 0 0 80px rgba(188, 255, 43, 0.09), inset 0 0 35px rgba(188, 255, 43, 0.05);
}

.protocol-core::before,
.protocol-core::after {
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(188, 255, 43, 0.12);
  border-radius: 50%;
  content: "";
}

.protocol-core::after {
  inset: -23px;
  border-color: rgba(255, 255, 255, 0.06);
}

.protocol-core img {
  width: 49%;
  height: auto;
  transform: translateY(-19%);
  filter: drop-shadow(0 0 24px rgba(188, 255, 43, 0.18));
}

.core-copy {
  position: absolute;
  right: 0;
  bottom: 11%;
  left: 0;
  text-align: center;
}

.core-copy strong {
  display: block;
  margin-bottom: 7px;
  color: var(--lime);
  font-size: clamp(28px, 3.5vw, 45px);
  line-height: 0.88;
  letter-spacing: -0.045em;
}

.core-copy span {
  display: block;
  color: var(--white);
  font-size: clamp(9px, 0.75vw, 11px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.13em;
}

.signal-card {
  position: absolute;
  z-index: 4;
  min-width: 142px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(6, 11, 8, 0.88);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.signal-top {
  top: 9%;
  right: 7%;
}

.signal-bottom {
  bottom: 10%;
  left: 7%;
}

.signal-label {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.signal-card strong {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.05em;
}

.signal-card strong i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
}

.signal-bottom strong {
  color: var(--cyan);
  font-variant-numeric: tabular-nums;
}

.cycle-track {
  position: absolute;
  right: 8%;
  bottom: 5.5%;
  left: 8%;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.cycle-track span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  box-shadow: 0 0 12px var(--lime);
  transition: width 1s linear;
}

.protocol-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1260px, calc(100% - 28px));
  margin: 0 auto;
  border-block: 1px solid var(--line-soft);
  background: rgba(9, 15, 10, 0.56);
}

.protocol-strip > div {
  display: flex;
  align-items: center;
  min-height: 88px;
  padding: 18px clamp(18px, 3vw, 38px);
  border-right: 1px solid var(--line-soft);
}

.protocol-strip > div:last-child {
  border-right: 0;
}

.protocol-strip b {
  font-size: 13px;
  letter-spacing: 0.08em;
}

.protocol-strip small {
  margin-left: auto;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-section {
  padding-block: 126px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.rate-section .section-heading {
  max-width: 980px;
}

.rate-section .section-heading h2 span {
  color: var(--lime);
  text-shadow: 0 0 34px rgba(188, 255, 43, 0.12);
}

.rate-section .section-heading > p:last-child {
  max-width: 900px;
  margin-inline: auto;
  color: var(--muted-strong);
  font-weight: 650;
}

.section-heading h2,
.calculator-copy h2,
.transparency-copy h2,
.risk-section h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.032em;
}

.section-heading > p:last-child,
.calculator-copy > p,
.transparency-copy > p,
.final-cta > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card {
  position: relative;
  min-height: 300px;
  padding: 26px 26px 30px;
  overflow: visible;
  border: 1px solid var(--line-soft);
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(16, 25, 18, 0.84), rgba(8, 13, 9, 0.76));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(188, 255, 43, 0.24);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.22), inset 0 1px rgba(255, 255, 255, 0.04);
}

.step-card:not(:last-child)::after {
  position: absolute;
  z-index: 4;
  top: 66px;
  right: -19px;
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(188, 255, 43, 0.25), rgba(112, 244, 220, 0.7));
  content: "";
}

.step-card:not(:last-child)::before {
  position: absolute;
  z-index: 5;
  top: 62px;
  right: -19px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--cyan);
  border-right: 1px solid var(--cyan);
  transform: rotate(45deg);
  content: "";
}

.step-visual {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 38px;
}

.step-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 28px;
  border: 1px solid rgba(188, 255, 43, 0.2);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(188, 255, 43, 0.04);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.step-icon {
  position: relative;
  display: block;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(188, 255, 43, 0.24);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 50%, rgba(188, 255, 43, 0.11), transparent 68%),
    rgba(188, 255, 43, 0.035);
  box-shadow: inset 0 0 24px rgba(188, 255, 43, 0.025);
}

.step-icon::before,
.step-icon::after,
.step-icon i,
.step-icon i::before,
.step-icon i::after {
  position: absolute;
  display: block;
  content: "";
}

.icon-connect::before {
  top: 23px;
  left: 17px;
  width: 40px;
  height: 28px;
  border: 2px solid var(--lime);
  border-radius: 8px;
}

.icon-connect::after {
  top: 31px;
  right: 14px;
  width: 19px;
  height: 13px;
  border: 2px solid var(--cyan);
  border-radius: 5px;
  background: var(--panel-solid);
}

.icon-connect i {
  top: 36px;
  right: 20px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
}

.icon-deposit::before {
  right: 16px;
  bottom: 18px;
  left: 16px;
  height: 15px;
  border: 2px solid var(--cyan);
  border-top: 0;
  border-radius: 0 0 7px 7px;
}

.icon-deposit::after {
  top: 16px;
  left: 36px;
  width: 2px;
  height: 30px;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(188, 255, 43, 0.55);
}

.icon-deposit i {
  top: 35px;
  left: 30px;
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
  transform: rotate(45deg);
}

.icon-accrue::before {
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  border: 2px solid var(--lime);
  border-radius: 50%;
}

.icon-accrue::after {
  top: 25px;
  left: 35px;
  width: 2px;
  height: 15px;
  transform-origin: bottom;
  transform: rotate(-24deg);
  background: var(--cyan);
}

.icon-accrue i {
  top: 37px;
  left: 36px;
  width: 12px;
  height: 2px;
  transform: rotate(24deg);
  transform-origin: left;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(112, 244, 220, 0.45);
}

.icon-choose::before {
  top: 19px;
  left: 20px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  box-shadow: 28px 0 0 -2px var(--panel-solid), 28px 0 0 0 var(--cyan), 14px 29px 0 -2px var(--panel-solid), 14px 29px 0 0 var(--lime);
}

.icon-choose::after {
  top: 30px;
  left: 26px;
  width: 29px;
  height: 25px;
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--lime);
  transform: skewX(-28deg);
}

.icon-choose i {
  top: 29px;
  left: 49px;
  width: 2px;
  height: 12px;
  background: var(--cyan);
}

.step-card h3 {
  margin: 0 0 12px;
  font-size: 25px;
  letter-spacing: -0.018em;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.rate-section {
  border-block: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 50% 48%, rgba(188, 255, 43, 0.08), transparent 34%),
    rgba(10, 16, 11, 0.64);
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 16px;
}

.rate-card {
  position: relative;
  padding: 42px 34px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(8, 14, 10, 0.92);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.rate-card.featured {
  padding-block: 58px;
  border-color: rgba(188, 255, 43, 0.42);
  background: linear-gradient(150deg, rgba(31, 51, 29, 0.95), rgba(8, 14, 10, 0.96));
  box-shadow: 0 24px 80px rgba(188, 255, 43, 0.08);
}

.rate-badge {
  position: absolute;
  top: 16px;
  right: 18px;
  padding: 6px 10px;
  border: 1px solid rgba(188, 255, 43, 0.28);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(188, 255, 43, 0.07);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.rate-card > p {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.rate-card > strong {
  display: flex;
  align-items: flex-end;
  flex-wrap: nowrap;
  gap: 13px;
  color: var(--lime);
  font-size: clamp(58px, 5.6vw, 84px);
  line-height: 0.82;
  letter-spacing: -0.045em;
}

.rate-card > strong small {
  flex: 0 0 auto;
  margin: 0 0 6px;
  color: var(--white);
  font-size: clamp(12px, 1.05vw, 15px);
  line-height: 1;
  letter-spacing: 0.11em;
}

.rate-line {
  height: 1px;
  margin: 34px 0 19px;
  background: linear-gradient(90deg, rgba(188, 255, 43, 0.5), transparent);
}

.rate-card > span {
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 700;
}

.rate-disclosure {
  max-width: 730px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.calculator-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(50px, 9vw, 120px);
}

.calculator-copy label {
  display: block;
  margin: 38px 0 10px;
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 700;
}

.amount-field {
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 0 12px 0 20px;
  border: 1px solid rgba(188, 255, 43, 0.28);
  border-radius: 18px;
  background: rgba(14, 24, 16, 0.86);
}

.amount-field > span {
  color: var(--lime);
  font-size: 23px;
  font-weight: 850;
}

.amount-field input {
  width: 100%;
  min-width: 0;
  padding: 0 12px;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  font-size: 25px;
  font-weight: 780;
}

.amount-field button {
  padding: 8px 11px;
  border: 0;
  border-radius: 9px;
  color: var(--lime);
  background: rgba(188, 255, 43, 0.09);
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
}

.amount-range {
  width: 100%;
  margin: 23px 0 0;
  accent-color: var(--lime);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
}

.calculator-output {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 70% 10%, rgba(188, 255, 43, 0.12), transparent 30%),
    rgba(12, 20, 14, 0.92);
  box-shadow: var(--shadow);
}

.output-primary {
  padding: 42px 42px 34px;
  border-bottom: 1px solid var(--line-soft);
}

.output-primary > span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.output-primary strong {
  display: inline-block;
  margin-top: 12px;
  color: var(--lime);
  font-size: clamp(70px, 10vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.output-primary small {
  margin-left: 12px;
  color: var(--muted-strong);
}

.calculator-output dl {
  margin: 0;
  padding: 12px 42px;
}

.calculator-output dl > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}

.calculator-output dl > div:last-child {
  border-bottom: 0;
}

.calculator-output dt {
  color: var(--muted);
  font-size: 13px;
}

.calculator-output dd {
  margin: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-align: right;
}

.calculator-output > p {
  margin: 0;
  padding: 20px 42px 26px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.14);
  font-size: 11px;
}

.rules-section {
  border-block: 1px solid var(--line-soft);
  background: rgba(9, 15, 10, 0.64);
}

.rules-section .section-heading {
  max-width: 960px;
}

.contract-proof {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: 34px;
  margin: -8px 0 58px;
  padding: 34px;
  border: 1px solid rgba(188, 255, 43, 0.24);
  border-radius: 30px;
  background:
    linear-gradient(125deg, rgba(188, 255, 43, 0.09), rgba(8, 14, 10, 0.92) 48%),
    var(--panel-solid);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.03);
}

.contract-proof-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 92px;
  aspect-ratio: 1;
  border: 1px solid rgba(188, 255, 43, 0.28);
  border-radius: 27px;
  background: rgba(188, 255, 43, 0.055);
  box-shadow: inset 0 0 30px rgba(188, 255, 43, 0.045);
}

.contract-proof-icon::before,
.contract-proof-icon::after,
.contract-proof-icon i,
.contract-proof-icon span {
  position: absolute;
  display: block;
  content: "";
}

.contract-proof-icon::before {
  width: 40px;
  height: 48px;
  border: 2px solid var(--lime);
  border-radius: 11px;
}

.contract-proof-icon::after {
  width: 15px;
  height: 15px;
  border: 3px solid var(--cyan);
  border-radius: 50%;
  background: var(--panel-solid);
  box-shadow: 0 0 16px rgba(112, 244, 220, 0.24);
}

.contract-proof-icon i {
  top: 14px;
  left: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 56px 0 0 var(--cyan), 0 56px 0 var(--cyan), 56px 56px 0 var(--lime);
}

.contract-proof-icon span {
  right: 21px;
  bottom: 18px;
  width: 15px;
  height: 8px;
  border-right: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
  transform: rotate(-45deg);
}

.contract-proof-copy .eyebrow {
  margin-bottom: 11px;
}

.contract-proof-copy h3 {
  margin: 0;
  font-size: clamp(27px, 3vw, 39px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.contract-proof-copy > p:not(.eyebrow) {
  margin: 15px 0 0;
  color: var(--muted-strong);
  font-size: 14px;
  line-height: 1.65;
}

.contract-proof-copy small {
  display: block;
  margin-top: 12px;
  color: #b68c70;
  font-size: 10px;
  line-height: 1.55;
}

.contract-address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 23px;
  border: 1px solid var(--line-soft);
  border-radius: 21px;
  background: rgba(3, 7, 4, 0.54);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.contract-address:hover {
  transform: translateY(-3px);
  border-color: rgba(112, 244, 220, 0.34);
  background: rgba(8, 16, 10, 0.8);
}

.contract-address > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--cyan);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.contract-address > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 11px rgba(188, 255, 43, 0.85);
}

.contract-address code {
  display: block;
  width: 100%;
  margin: 16px 0;
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: 12px;
  line-height: 1.6;
}

.contract-address b {
  color: var(--lime);
  font-size: 12px;
}

.contract-address b i {
  margin-left: 4px;
  font-style: normal;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
}

.rules-grid article {
  min-height: 160px;
  padding: 30px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.rules-grid b {
  display: block;
  margin-bottom: 26px;
  color: var(--lime);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.rules-grid span {
  color: var(--muted);
  font-size: 12px;
}

.fee-explainer {
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  gap: 58px;
  margin-top: 80px;
  padding: 52px;
  border: 1px solid rgba(188, 255, 43, 0.18);
  border-radius: 32px;
  background: linear-gradient(125deg, rgba(188, 255, 43, 0.07), rgba(7, 12, 8, 0.78) 58%);
}

.fee-gauge {
  display: grid;
  place-items: center;
  width: 180px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(var(--lime) 0 5%, rgba(255, 255, 255, 0.07) 5% 100%);
  box-shadow: 0 0 60px rgba(188, 255, 43, 0.08);
}

.fee-gauge::before {
  grid-area: 1 / 1;
  width: 84%;
  aspect-ratio: 1;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  background: var(--panel-solid);
  content: "";
}

.fee-gauge span {
  z-index: 1;
  grid-area: 1 / 1;
  color: var(--lime);
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.fee-explainer h3 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.fee-explainer > div:last-child > p:last-child {
  margin: 0;
  color: var(--muted);
}

.transparency-section {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: center;
  gap: clamp(50px, 9vw, 120px);
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--muted-strong);
  font-size: 14px;
}

.check-list i {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: #081006;
  background: var(--lime);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.status-panel {
  padding: 30px;
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(17, 29, 20, 0.94), rgba(7, 12, 8, 0.95));
  box-shadow: var(--shadow);
}

.status-head,
.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.status-head {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.status-head b {
  color: var(--lime);
  font-size: 10px;
}

.status-head i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
}

.status-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 13px;
}

.status-row strong {
  color: var(--white);
  font-size: 13px;
}

.status-row strong.status-caution {
  color: #ffd27a;
}

.status-panel > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.referral-section {
  border-block: 1px solid var(--line-soft);
  background: linear-gradient(115deg, rgba(50, 78, 24, 0.28), rgba(7, 12, 8, 0.7) 60%);
}

.referral-shell {
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: center;
  gap: 80px;
}

.referral-shell h2 {
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.referral-shell > div:first-child > p:last-child {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
}

.referral-stat {
  padding: 34px;
  border: 1px solid rgba(188, 255, 43, 0.28);
  border-radius: 26px;
  background: rgba(8, 15, 9, 0.74);
  text-align: center;
}

.referral-stat span,
.referral-stat small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.referral-stat strong {
  display: block;
  margin: 12px 0 17px;
  color: var(--lime);
  font-size: 86px;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.risk-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: clamp(40px, 8vw, 120px);
  padding-block: 82px;
  border-block: 1px solid rgba(184, 116, 70, 0.12);
}

.risk-section h2 {
  color: var(--warning);
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.024em;
}

.risk-section .eyebrow {
  color: #9b765d;
}

.risk-section > p {
  margin: 30px 0 0;
  color: var(--muted-strong);
  font-size: 16px;
  line-height: 1.8;
}

.final-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  margin-bottom: 100px;
  padding: 90px 30px;
  border: 1px solid rgba(188, 255, 43, 0.2);
  border-radius: 42px;
  background: linear-gradient(150deg, rgba(25, 40, 24, 0.94), rgba(7, 12, 8, 0.98));
  text-align: center;
  box-shadow: var(--shadow);
}

.final-cta > *:not(.cta-glow) {
  position: relative;
  z-index: 1;
}

.final-cta img {
  margin-bottom: 24px;
  filter: drop-shadow(0 0 26px rgba(188, 255, 43, 0.22));
}

.final-cta .button {
  margin-top: 32px;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 550px;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(188, 255, 43, 0.15), transparent 66%);
}

.site-footer {
  width: var(--shell);
  margin-inline: auto;
  padding: 64px 0 30px;
  border-top: 1px solid var(--line-soft);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  padding-bottom: 60px;
}

.footer-brand p {
  max-width: 370px;
  margin: 17px 0 0;
  color: var(--muted-strong);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.footer-links a {
  color: var(--muted-strong);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  color: #6f7d72;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.footer-legal address {
  font-style: normal;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.legal-page {
  min-height: 100vh;
}

.legal-hero {
  padding-block: 85px 50px;
  border-bottom: 1px solid var(--line-soft);
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(52px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.legal-hero p:last-child {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  align-items: start;
  gap: clamp(50px, 9vw, 120px);
  padding-block: 70px 120px;
}

.legal-aside {
  position: sticky;
  top: 112px;
  padding: 22px;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  color: var(--muted);
  background: var(--panel);
  font-size: 11px;
}

.legal-aside strong,
.legal-aside a {
  display: block;
}

.legal-aside strong {
  margin-bottom: 8px;
  color: var(--white);
}

.legal-aside a {
  margin-top: 14px;
  color: var(--lime);
}

.legal-document > p:first-child {
  margin-top: 0;
}

.legal-document h2 {
  margin: 55px 0 14px;
  color: var(--white);
  font-size: 25px;
  letter-spacing: -0.035em;
}

.legal-document p,
.legal-document li {
  color: var(--muted-strong);
  font-size: 15px;
  line-height: 1.8;
}

.legal-document a {
  color: var(--lime);
}

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

.legal-callout {
  margin: 38px 0;
  padding: 22px 24px;
  border-left: 3px solid var(--lime);
  background: rgba(188, 255, 43, 0.06);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(188, 255, 43, 0.52); }
  70% { box-shadow: 0 0 0 9px rgba(188, 255, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(188, 255, 43, 0); }
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@media (min-width: 981px) {
  .rate-section .section-heading h2 {
    font-size: clamp(64px, 6.15vw, 86px);
    line-height: 0.98;
  }

  .rate-section .section-heading > p:last-child {
    font-size: 20px;
    line-height: 1.55;
  }

  .rules-section .section-heading h2 {
    font-size: clamp(56px, 5.5vw, 76px);
    line-height: 1;
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 30px, 760px);
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 70px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .protocol-visual {
    max-width: 590px;
  }

  .protocol-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .protocol-strip > div:nth-child(2) {
    border-right: 0;
  }

  .protocol-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-soft);
  }

  .steps-grid,
  .rules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rates-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }

  .rate-card.featured {
    padding-block: 42px;
  }

  .calculator-section,
  .transparency-section {
    grid-template-columns: 1fr;
  }

  .contract-proof {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .contract-address {
    grid-column: 1 / -1;
  }

  .referral-shell {
    grid-template-columns: 1fr;
  }

  .referral-stat {
    max-width: 300px;
  }

  .risk-section {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

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

  .legal-aside {
    position: static;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 72px;
    --radius: 22px;
    --shell: calc(100% - 24px);
  }

  body {
    font-size: 15px;
  }

  .site-header {
    width: calc(100% - 12px);
    min-height: var(--header-height);
    padding: 10px 8px;
  }

  .brand {
    gap: 8px;
    font-size: 14px;
    letter-spacing: 0.12em;
  }

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

  .site-header .button {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 11px;
  }

  .hero {
    padding-block: 52px 64px;
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(46px, 15vw, 68px);
    line-height: 0.94;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    justify-content: start;
    width: fit-content;
    margin: 34px auto 0;
    text-align: left;
  }

  .protocol-visual {
    border-radius: 30px;
  }

  .protocol-visual::before {
    inset: 9px;
    border-radius: 23px;
  }

  .signal-card {
    min-width: 118px;
    padding: 9px 11px;
  }

  .signal-top {
    top: 7%;
    right: 5%;
  }

  .signal-bottom {
    bottom: 9%;
    left: 5%;
  }

  .protocol-strip {
    grid-template-columns: 1fr;
    width: calc(100% - 12px);
  }

  .protocol-strip > div {
    min-height: 62px;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .protocol-strip > div:last-child {
    border-bottom: 0;
  }

  .content-section {
    padding-block: 82px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .calculator-copy h2,
  .transparency-copy h2,
  .risk-section h2,
  .final-cta h2 {
    font-size: 40px;
  }

  .steps-grid,
  .rules-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 255px;
  }

  .step-visual {
    margin-bottom: 28px;
  }

  .step-card::before,
  .step-card::after {
    display: none;
  }

  .rate-card,
  .rate-card.featured {
    padding: 34px 26px;
  }

  .rate-card > strong {
    font-size: 70px;
  }

  .contract-proof {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 24px;
  }

  .contract-proof-icon {
    width: 78px;
    border-radius: 23px;
  }

  .contract-proof-icon::before {
    width: 34px;
    height: 41px;
  }

  .contract-proof-icon i {
    top: 12px;
    left: 12px;
    box-shadow: 46px 0 0 var(--cyan), 0 46px 0 var(--cyan), 46px 46px 0 var(--lime);
  }

  .contract-address {
    grid-column: auto;
  }

  .calculator-section {
    gap: 42px;
  }

  .output-primary,
  .calculator-output dl,
  .calculator-output > p {
    padding-right: 24px;
    padding-left: 24px;
  }

  .output-primary strong {
    font-size: 76px;
  }

  .output-primary small {
    display: block;
    margin: 10px 0 0;
  }

  .calculator-output dl > div {
    align-items: flex-start;
  }

  .fee-explainer {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 30px 24px;
  }

  .fee-gauge {
    width: 150px;
  }

  .referral-shell {
    gap: 38px;
  }

  .risk-section {
    padding-block: 58px;
  }

  .final-cta {
    margin-bottom: 70px;
    padding: 64px 22px;
    border-radius: 28px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-legal {
    flex-direction: column;
  }

  .legal-hero {
    padding-block: 55px 38px;
  }

  .legal-layout {
    padding-block: 42px 80px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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