:root {
  --bg: #07110f;
  --bg-soft: #0a1714;
  --surface: #0f201c;
  --surface-2: #122722;
  --white: #f7fbf9;
  --muted: #9db0aa;
  --muted-dark: #66746f;
  --green: #baff43;
  --green-strong: #9ce92d;
  --green-dark: #406b0f;
  --red: #f04455;
  --line: rgba(203, 237, 224, .13);
  --line-light: rgba(203, 237, 224, .2);
  --shadow: 0 28px 80px rgba(0, 0, 0, .32);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--bg);
  font-family: Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.page-glow {
  position: fixed;
  z-index: -1;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .07;
  pointer-events: none;
}

.page-glow--one {
  top: 4%;
  right: -220px;
  background: var(--green);
}

.page-glow--two {
  top: 45%;
  left: -300px;
  background: #21e6a6;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, .075);
  background: rgba(7, 17, 15, .32);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 10px 24px rgba(240, 68, 85, .2);
}

.brand-mark svg {
  width: 26px;
  height: 26px;
}

.brand > span:last-child {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.brand strong {
  font-size: 21px;
  line-height: 1;
  letter-spacing: -.03em;
}

.brand small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .18em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 42px);
  margin-left: auto;
  margin-right: clamp(18px, 2.5vw, 34px);
}

.desktop-nav a {
  position: relative;
  color: #c5d2cd;
  font-size: 14px;
  transition: color .25s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width .25s ease;
}

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

.desktop-nav a:hover::after {
  width: 100%;
}

.language-switcher {
  position: relative;
  z-index: 5;
  margin-right: 12px;
}

.language-toggle {
  min-width: 104px;
  height: 40px;
  padding: 0 11px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #d3ded9;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 9px;
  background: rgba(255, 255, 255, .035);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}

.language-toggle:hover,
.language-switcher.is-open .language-toggle {
  border-color: rgba(186, 255, 67, .38);
  background: rgba(186, 255, 67, .06);
}

.language-code {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
}

.language-name {
  flex: 1;
  overflow: hidden;
  font-size: 11px;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-toggle svg {
  width: 14px;
  height: 14px;
  color: #71847c;
  transition: transform .2s ease;
}

.language-switcher.is-open .language-toggle svg {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  width: 184px;
  padding: 7px;
  border: 1px solid rgba(211, 235, 226, .13);
  border-radius: 12px;
  background: rgba(13, 29, 25, .98);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .38);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-menu button {
  width: 100%;
  height: 38px;
  padding: 0 9px;
  display: grid;
  grid-template-columns: 28px 1fr 14px;
  align-items: center;
  color: #9dafaa;
  border: 0;
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: color .15s ease, background .15s ease;
}

.language-menu button:hover,
.language-menu button.is-active {
  color: #f4f8f6;
  background: rgba(255, 255, 255, .055);
}

.language-menu button > span {
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
}

.language-menu button strong {
  font-size: 11px;
  font-weight: 500;
}

.language-menu button i {
  color: var(--green);
  font-size: 11px;
  font-style: normal;
  opacity: 0;
}

.language-menu button.is-active i {
  opacity: 1;
}

.button {
  min-height: 54px;
  padding: 0 25px;
  border: 0;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

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

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.button--small {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 9px;
  font-size: 13px;
  gap: 8px;
}

.button--small svg {
  width: 16px;
  height: 16px;
}

.button--outline {
  color: #e7f0ed;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .045);
}

.button--outline:hover {
  border-color: var(--green);
  background: rgba(186, 255, 67, .08);
}

.button--primary {
  color: #10180b;
  background: var(--green);
  box-shadow: 0 14px 38px rgba(157, 233, 45, .18);
}

.button--primary:hover {
  background: #c5ff62;
  box-shadow: 0 18px 42px rgba(157, 233, 45, .25);
}

.hero {
  position: relative;
  min-height: 920px;
  padding: 155px 0 70px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px) 0 0/80px 80px,
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px) 0 0/80px 80px,
    radial-gradient(circle at 78% 42%, rgba(104, 183, 61, .16), transparent 27%),
    radial-gradient(circle at 72% 37%, rgba(186, 255, 67, .08), transparent 20%),
    linear-gradient(180deg, #07110f 0%, #091613 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: 5%;
  top: 160px;
  border: 1px solid rgba(186, 255, 67, .06);
  border-radius: 50%;
  box-shadow: inset 0 0 90px rgba(186, 255, 67, .025);
}

.hero-grid {
  min-height: 580px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  width: max-content;
  padding: 8px 13px;
  border: 1px solid rgba(186, 255, 67, .19);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #cde0d9;
  background: rgba(186, 255, 67, .055);
  font-size: 12px;
  letter-spacing: .08em;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(186, 255, 67, .1);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 8px rgba(186, 255, 67, 0); }
}

.hero h1 {
  max-width: 650px;
  margin: 24px 0 22px;
  font-size: clamp(48px, 4.75vw, 67px);
  line-height: 1.12;
  letter-spacing: -.055em;
  font-weight: 760;
}

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

.hero-lead {
  max-width: 590px;
  margin: 0;
  color: #acbbb6;
  font-size: 17px;
  line-height: 1.9;
}

.hero-lead strong {
  color: #fff;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 27px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #cbd7d2;
  font-size: 14px;
}

.text-link span {
  color: var(--green);
  font-size: 18px;
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-notes {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
  color: #788983;
  font-size: 12px;
}

.hero-notes i {
  width: 17px;
  height: 17px;
  margin-right: 5px;
  display: inline-grid;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(186, 255, 67, .25);
  border-radius: 50%;
  font-size: 9px;
  font-style: normal;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(186, 255, 67, .13);
}

.orbit--outer {
  width: 440px;
  height: 440px;
  animation: slow-spin 28s linear infinite;
}

.orbit--inner {
  width: 325px;
  height: 325px;
  border-style: dashed;
  border-color: rgba(255, 255, 255, .1);
  animation: slow-spin 20s linear infinite reverse;
}

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

.orbit-dot {
  position: absolute;
  z-index: 1;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(186, 255, 67, .9);
}

.orbit-dot--one { top: 60px; right: 145px; }
.orbit-dot--two { bottom: 66px; left: 124px; }

.coin {
  position: relative;
  z-index: 2;
  width: 210px;
  height: 210px;
  padding: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e7686e 0%, #b81728 30%, #f24a56 58%, #760e18 100%);
  box-shadow: 0 35px 70px rgba(213, 32, 51, .28), inset 0 4px 8px rgba(255, 255, 255, .35), inset 0 -8px 15px rgba(82, 0, 9, .44);
  transform: rotate(-10deg);
  animation: coin-float 5s ease-in-out infinite;
}

.coin::before,
.coin::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.coin::before {
  inset: 10px;
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: inset 0 0 0 5px rgba(70, 0, 8, .09);
}

.coin::after {
  width: 65%;
  height: 26%;
  left: 15%;
  top: 8%;
  background: linear-gradient(180deg, rgba(255,255,255,.25), transparent);
  filter: blur(4px);
  transform: rotate(-12deg);
}

@keyframes coin-float {
  0%, 100% { transform: rotate(-10deg) translateY(0); }
  50% { transform: rotate(-7deg) translateY(-12px); }
}

.coin-inner {
  position: absolute;
  inset: 30px;
  display: grid;
  place-items: center;
  color: #fff;
  filter: drop-shadow(0 5px 2px rgba(73, 0, 8, .4));
}

.coin-inner svg {
  width: 100%;
  height: 100%;
}

.float-card {
  position: absolute;
  z-index: 4;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 13px;
  background: rgba(14, 31, 27, .84);
  box-shadow: 0 20px 42px rgba(0, 0, 0, .25);
  backdrop-filter: blur(16px);
}

.float-card--amount {
  right: 14px;
  top: 120px;
  min-width: 142px;
  transform: rotate(3deg);
}

.float-card--amount > span {
  display: block;
  color: var(--muted);
  font-size: 10px;
}

.float-card--amount strong {
  color: var(--green);
  font-size: 26px;
  letter-spacing: -.02em;
}

.float-card--amount small {
  font-size: 12px;
}

.float-card--status {
  left: 10px;
  bottom: 105px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(-2deg);
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(186, 255, 67, .1);
}

.float-card--status div {
  display: flex;
  flex-direction: column;
}

.float-card--status small {
  color: var(--muted);
  font-size: 9px;
}

.float-card--status strong {
  font-size: 13px;
}

.chain-pill {
  position: absolute;
  z-index: 0;
  color: rgba(255, 255, 255, .25);
  font-size: 9px;
  letter-spacing: .14em;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 99px;
  padding: 4px 10px;
}

.chain-pill--one { top: 106px; left: 68px; }
.chain-pill--two { top: 265px; right: 5px; }
.chain-pill--three { bottom: 72px; right: 115px; }

.stats-wrap {
  position: relative;
  z-index: 5;
  margin-top: 25px;
}

.stats-card {
  min-height: 108px;
  padding: 24px 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(13, 29, 25, .82);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .16);
  backdrop-filter: blur(15px);
}

.stat {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 12%;
  width: 1px;
  height: 40px;
  background: var(--line);
}

.stat-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(186, 255, 67, .13);
  border-radius: 10px;
  background: rgba(186, 255, 67, .05);
  font-size: 18px;
}

.stat div {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-size: 17px;
  letter-spacing: -.01em;
}

.stat small {
  margin-top: 2px;
  color: #70827b;
  font-size: 10px;
}

.section {
  position: relative;
  padding: 120px 0;
}

.section-kicker {
  display: block;
  margin-bottom: 17px;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.24;
  letter-spacing: -.045em;
}

.section-heading > p {
  max-width: 510px;
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.section--intro {
  background: #f2f5f3;
  color: #0d1916;
}

.split-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 95px;
  align-items: start;
}

.section-heading--sticky {
  position: sticky;
  top: 100px;
}

.section-heading--sticky > p {
  color: #66736f;
}

.section-number {
  margin-top: 62px;
  color: rgba(9, 31, 24, .045);
  font-size: 130px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.08em;
}

.feature-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card {
  min-height: 205px;
  padding: 35px 34px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 23px;
  border: 1px solid rgba(13, 25, 22, .08);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 16px 50px rgba(27, 44, 38, .045);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card:hover {
  transform: translateX(-6px);
  border-color: rgba(91, 142, 38, .22);
  box-shadow: 0 20px 55px rgba(27, 44, 38, .08);
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
}

.feature-icon svg {
  width: 27px;
  height: 27px;
}

.feature-icon--red { color: #e64353; background: #fff0f1; }
.feature-icon--green { color: #569416; background: #eff9e5; }
.feature-icon--blue { color: #2888b3; background: #e9f7fb; }

.feature-card div:last-child > span {
  color: #81908b;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}

.feature-card h3 {
  margin: 8px 0 10px;
  font-size: 21px;
  letter-spacing: -.02em;
}

.feature-card p {
  margin: 0;
  color: #6f7c78;
  font-size: 13px;
  line-height: 1.85;
}

.section--steps {
  background:
    radial-gradient(circle at 50% 48%, rgba(186, 255, 67, .055), transparent 32%),
    #081411;
}

.section-heading--center {
  text-align: center;
}

.section-heading--center > p {
  margin-inline: auto;
}

.steps-grid {
  position: relative;
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 39px;
  left: 18%;
  right: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(186,255,67,.28), transparent);
}

.step-card {
  position: relative;
  z-index: 1;
  min-height: 335px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(16, 34, 29, .72);
  transition: transform .25s ease, border-color .25s ease;
}

.step-card:hover {
  transform: translateY(-7px);
  border-color: rgba(186,255,67,.28);
}

.step-card--featured {
  border-color: rgba(186, 255, 67, .2);
  background: linear-gradient(145deg, rgba(25, 49, 38, .94), rgba(15, 34, 29, .85));
}

.step-top {
  display: flex;
  align-items: center;
  color: #566860;
  font-size: 11px;
  font-weight: 700;
}

.step-top i {
  flex: 1;
  height: 1px;
  margin-left: 14px;
  background: var(--line);
}

.step-icon {
  width: 70px;
  height: 70px;
  margin: 32px 0 25px;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(186,255,67,.15);
  border-radius: 18px;
  background: rgba(186,255,67,.055);
}

.step-icon svg {
  width: 34px;
  height: 34px;
}

.step-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.step-card p {
  margin: 0;
  color: #8b9c96;
  font-size: 13px;
  line-height: 1.85;
}

.steps-cta {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.steps-cta > span {
  color: #62736c;
  font-size: 10px;
}

.section--rules {
  color: #0d1916;
  background: #f2f5f3;
}

.rules-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 23px;
}

.rules-card,
.notice-card {
  border-radius: 19px;
}

.rules-card {
  padding: 48px 50px;
  background: #fff;
  border: 1px solid rgba(13, 25, 22, .07);
  box-shadow: 0 18px 45px rgba(27, 44, 38, .04);
}

.rules-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #e9eeeb;
  padding-bottom: 28px;
}

.rules-head .section-kicker {
  order: 2;
  margin: 0 0 8px;
}

.rules-head h2 {
  margin: 0;
  font-size: 32px;
  letter-spacing: -.035em;
}

.rules-list {
  padding-top: 8px;
}

.rule-item {
  min-height: 62px;
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  border-bottom: 1px solid #edf1ef;
}

.rule-item:last-child { border-bottom: 0; }
.rule-item span { color: #82908b; font-size: 12px; }
.rule-item strong { font-size: 13px; font-weight: 600; }

.notice-card {
  padding: 42px 36px;
  color: #e7efec;
  background: #10211d;
  box-shadow: 0 22px 55px rgba(17, 36, 31, .15);
}

.notice-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(186,255,67,.23);
  border-radius: 50%;
  background: rgba(186,255,67,.07);
  font-size: 20px;
  font-weight: 700;
}

.notice-card > span {
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .17em;
}

.notice-card h3 {
  margin: 9px 0 16px;
  font-size: 21px;
}

.notice-card p {
  margin: 0;
  color: #91a39c;
  font-size: 12px;
}

.notice-card ul {
  margin: 19px 0 20px;
  padding: 0;
  list-style: none;
}

.notice-card li {
  position: relative;
  margin: 9px 0;
  padding-left: 18px;
  color: #c6d2ce;
  font-size: 12px;
}

.notice-card li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: #ef5765;
}

.notice-foot {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.section--faq {
  background: #0a1714;
}

.faq-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 90px;
  align-items: start;
}

.accordion {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  min-height: 78px;
  padding: 0;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #e5edea;
  background: none;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.faq-item button i {
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
}

.faq-item button i::before,
.faq-item button i::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: 12px;
  height: 1px;
  background: var(--green);
  transition: transform .25s ease;
}

.faq-item button i::after {
  transform: rotate(90deg);
}

.faq-item.is-open button i::after {
  transform: rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: #8ea099;
  font-size: 13px;
  line-height: 1.9;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 25px;
}

.final-cta {
  position: relative;
  padding: 0 0 96px;
  background: #0a1714;
  overflow: hidden;
}

.final-cta-inner {
  position: relative;
  min-height: 310px;
  padding: 62px 70px;
  border-radius: 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  color: #111b0c;
  background:
    radial-gradient(circle at 70% 150%, rgba(255,255,255,.5), transparent 40%),
    var(--green);
}

.final-cta .section-kicker {
  color: #46670f;
  margin-bottom: 13px;
}

.final-cta h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(35px, 4.2vw, 54px);
  line-height: 1.13;
  letter-spacing: -.05em;
}

.final-cta h2 em {
  font-style: normal;
  color: #355508;
}

.final-cta p {
  margin: 17px 0 0;
  color: #4c671d;
  font-size: 13px;
}

.button--light {
  position: relative;
  z-index: 2;
  color: #fff;
  background: #0c1915;
  box-shadow: 0 17px 35px rgba(21, 45, 12, .18);
}

.button--light:hover {
  background: #132921;
}

.cta-watermark {
  position: absolute;
  right: 19%;
  bottom: -95px;
  color: rgba(255,255,255,.18);
  font-size: 245px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.1em;
  transform: rotate(-12deg);
}

.site-footer {
  padding: 0 0 32px;
  background: #07110f;
}

.footer-inner {
  min-height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand--footer .brand-mark {
  width: 32px;
  height: 32px;
}

.brand--footer .brand-mark svg {
  width: 21px;
  height: 21px;
}

.brand--footer strong { font-size: 17px; }
.footer-inner p { color: #63736d; font-size: 10px; }

.footer-links {
  display: flex;
  gap: 25px;
  color: #879790;
  font-size: 10px;
}

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

.footer-disclaimer {
  padding-top: 22px;
  color: #4f605a;
  font-size: 9px;
  line-height: 1.7;
}

.mobile-claim {
  display: none;
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  padding: 24px;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 8, 6, .83);
  backdrop-filter: blur(12px);
}

.modal-dialog {
  position: relative;
  width: min(100%, 520px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 38px 42px 32px;
  border: 1px solid rgba(206, 235, 224, .13);
  border-radius: 23px;
  background:
    radial-gradient(circle at 100% 0, rgba(186,255,67,.06), transparent 30%),
    #10211d;
  box-shadow: 0 35px 100px rgba(0,0,0,.5);
  transform: translateY(20px) scale(.98);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
  scrollbar-width: thin;
  scrollbar-color: #395148 transparent;
}

.modal.is-open .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  padding: 0;
  display: grid;
  place-items: center;
  color: #91a29b;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.035);
  cursor: pointer;
  transition: color .2s, border-color .2s, transform .2s;
}

.modal-close:hover {
  color: #fff;
  border-color: rgba(255,255,255,.28);
  transform: rotate(8deg);
}

.modal-close svg { width: 18px; height: 18px; }

.modal-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
}

.mini-coin {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--red);
}

.mini-coin svg { width: 19px; height: 19px; }

.modal-dialog h2 {
  margin: 17px 0 6px;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -.04em;
}

.modal-subtitle {
  margin: 0 0 27px;
  color: #84968f;
  font-size: 12px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #d7e1dd;
  font-size: 12px;
  font-weight: 600;
}

.input-shell {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: #6f817a;
  transform: translateY(-50%);
  pointer-events: none;
}

.input-icon svg { width: 21px; height: 21px; }

.input-shell input {
  width: 100%;
  height: 52px;
  padding: 0 15px 0 48px;
  color: #edf4f1;
  border: 1px solid rgba(208, 231, 222, .12);
  border-radius: 10px;
  outline: none;
  background: rgba(3, 13, 10, .35);
  font-size: 12px;
  transition: border-color .2s, box-shadow .2s;
}

.input-shell input::placeholder { color: #50615b; }

.input-shell input:focus {
  border-color: rgba(186,255,67,.55);
  box-shadow: 0 0 0 3px rgba(186,255,67,.07);
}

.form-group.has-error input {
  border-color: rgba(240, 68, 85, .7);
}

.field-meta {
  min-height: 19px;
  padding-top: 5px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.field-meta small {
  color: #53665f;
  font-size: 9px;
}

.field-meta .field-error,
.terms-error {
  color: #ff7180;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #758881;
  font-size: 10px;
  cursor: pointer;
}

.checkbox-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.custom-check {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 1px;
  display: grid;
  place-items: center;
  color: #11200c;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  transition: background .2s, border-color .2s;
}

.custom-check svg {
  width: 12px;
  height: 12px;
  opacity: 0;
}

.checkbox-row input:checked + .custom-check {
  border-color: var(--green);
  background: var(--green);
}

.checkbox-row input:checked + .custom-check svg { opacity: 1; }
.checkbox-row input:focus-visible + .custom-check { outline: 2px solid var(--green); outline-offset: 2px; }
.checkbox-row a { color: #b3c2bc; text-decoration: underline; text-underline-offset: 2px; }

.terms-error {
  display: block;
  min-height: 16px;
  margin: 2px 0 6px 25px;
  font-size: 9px;
}

.submit-button {
  width: 100%;
  min-height: 54px;
}

.submit-loading {
  display: none;
  align-items: center;
  gap: 9px;
}

.submit-loading i {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(16,24,11,.3);
  border-top-color: #10180b;
  border-radius: 50%;
  animation: loading .65s linear infinite;
}

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

.submit-button.is-loading .submit-label,
.submit-button.is-loading .submit-arrow { display: none; }
.submit-button.is-loading .submit-loading { display: inline-flex; }
.submit-button:disabled { cursor: wait; transform: none; opacity: .85; }

.form-security {
  margin-top: 17px;
  color: #546760;
  text-align: center;
  font-size: 9px;
}

.form-security > span:first-child {
  color: var(--green);
  margin-right: 4px;
}

.claim-success-view {
  display: none;
  padding: 8px 0 6px;
  text-align: center;
}

.modal-dialog.is-success .claim-form-view { display: none; }
.modal-dialog.is-success .claim-success-view { display: block; animation: success-in .42s ease both; }

@keyframes success-in {
  from { opacity: 0; transform: translateY(12px); }
}

.success-ring {
  width: 82px;
  height: 82px;
  margin: 8px auto 23px;
  display: grid;
  place-items: center;
  color: #17300a;
  border: 8px solid rgba(186,255,67,.13);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(186,255,67,.045), 0 15px 40px rgba(156,233,45,.17);
}

.success-ring svg { width: 48px; height: 48px; }

.success-kicker {
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
}

.claim-success-view h2 {
  margin: 10px 0 8px;
  font-size: 29px;
}

.claim-success-view > p {
  max-width: 380px;
  margin: 0 auto 25px;
  color: #8ea098;
  font-size: 12px;
  line-height: 1.8;
}

.success-info {
  padding: 7px 17px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(3,13,10,.25);
}

.success-info div {
  min-height: 47px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.success-info div:last-child { border-bottom: 0; }
.success-info span { color: #657871; font-size: 10px; }
.success-info strong { color: #dce6e2; font-size: 11px; }

.success-notice {
  margin: 15px 0 23px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #71847c;
  text-align: left;
  font-size: 9px;
}

.success-notice > span:first-child {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(186,255,67,.25);
  border-radius: 50%;
  font-size: 9px;
}

.success-close { width: 100%; }

.reveal {
  animation: reveal-in .7s ease both;
}

.reveal--delay-1 { animation-delay: .08s; }
.reveal--delay-2 { animation-delay: .16s; }
.reveal--delay-3 { animation-delay: .24s; }

@keyframes reveal-in {
  from { opacity: 0; transform: translateY(16px); }
}

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
  .hero h1 { font-size: clamp(44px, 6.5vw, 63px); }
  .hero-visual { transform: scale(.86); transform-origin: center; }
  .stats-card { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .stat:nth-child(2)::after { display: none; }
  .split-layout { gap: 45px; }
  .faq-layout { gap: 50px; }
  .final-cta-inner { padding: 55px 45px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .site-header { position: absolute; }
  .header-inner { height: 68px; }
  .header-inner > .button { display: none; }
  .language-switcher { margin-left: auto; margin-right: 0; }
  .language-toggle { min-width: 98px; }
  .brand-mark { width: 35px; height: 35px; }
  .brand strong { font-size: 18px; }

  .hero { padding: 116px 0 55px; }
  .hero::before { width: 360px; height: 360px; right: -140px; top: 360px; }
  .hero-grid { display: flex; flex-direction: column; align-items: stretch; gap: 25px; }
  .hero-copy { text-align: center; }
  .eyebrow { margin-inline: auto; }
  .hero h1 { margin-top: 21px; font-size: clamp(39px, 12vw, 58px); }
  .hero-lead { font-size: 14px; line-height: 1.85; }
  .hero-actions { justify-content: center; flex-direction: column; gap: 17px; }
  .hero-actions .button { width: 100%; }
  .hero-notes { justify-content: center; gap: 13px; }
  .hero-visual { min-height: 380px; transform: none; }
  .orbit--outer { width: 330px; height: 330px; }
  .orbit--inner { width: 248px; height: 248px; }
  .coin { width: 160px; height: 160px; }
  .coin-inner { inset: 25px; }
  .float-card--amount { right: 0; top: 53px; }
  .float-card--status { left: 0; bottom: 50px; }
  .chain-pill--one { left: 20px; top: 36px; }
  .chain-pill--two { right: 0; top: 235px; }
  .orbit-dot--one { top: 31px; right: 104px; }
  .orbit-dot--two { bottom: 34px; left: 87px; }

  .stats-wrap { margin-top: 20px; }
  .stats-card { padding: 23px 18px; grid-template-columns: 1fr 1fr; gap: 23px 10px; }
  .stat { gap: 10px; }
  .stat::after { display: none; }
  .stat-icon { width: 32px; height: 32px; font-size: 14px; }
  .stat strong { font-size: 13px; }
  .stat small { font-size: 9px; }

  .section { padding: 82px 0; }
  .section-heading h2 { font-size: 36px; }
  .split-layout,
  .rules-grid,
  .faq-layout { grid-template-columns: 1fr; gap: 48px; }
  .section-heading--sticky { position: static; }
  .section-number { display: none; }
  .feature-card { padding: 28px 24px; grid-template-columns: 48px 1fr; gap: 17px; }
  .feature-icon { width: 46px; height: 46px; }
  .feature-card h3 { font-size: 18px; }

  .steps-grid { grid-template-columns: 1fr; margin-top: 45px; }
  .steps-grid::before { display: none; }
  .step-card { min-height: auto; }
  .step-icon { margin: 25px 0 20px; }

  .rules-card { padding: 34px 25px; }
  .rules-head { align-items: flex-start; flex-direction: column; }
  .rules-head .section-kicker { order: 0; }
  .rule-item { grid-template-columns: 90px 1fr; gap: 10px; }
  .notice-card { padding: 35px 28px; }

  .faq-layout { gap: 35px; }
  .faq-item button { min-height: 74px; gap: 18px; }

  .final-cta { padding-bottom: 75px; }
  .final-cta-inner { padding: 46px 28px; min-height: 385px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 35px; }
  .final-cta .button { width: 100%; }
  .cta-watermark { right: -35px; bottom: -47px; font-size: 140px; }

  .footer-inner { padding: 30px 0; flex-direction: column; gap: 22px; }
  .footer-links { order: 2; }
  .footer-disclaimer { text-align: center; padding-bottom: 65px; }

  .mobile-claim {
    position: fixed;
    z-index: 30;
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    height: 52px;
    padding: 0 21px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #10180b;
    border: 0;
    border-radius: 11px;
    background: var(--green);
    box-shadow: 0 12px 35px rgba(0,0,0,.35);
    font-size: 14px;
    font-weight: 700;
  }

  body.modal-open .mobile-claim { display: none; }
  .modal { padding: 12px; place-items: end center; }
  .modal-dialog { width: 100%; max-height: calc(100vh - 18px); padding: 32px 23px 25px; border-radius: 21px 21px 16px 16px; }
  .modal-dialog h2 { font-size: 26px; }
  .modal-close { top: 14px; right: 14px; }
}

@media (max-width: 420px) {
  .language-toggle {
    min-width: 52px;
    width: 52px;
    padding: 0 9px;
  }

  .language-name {
    display: none;
  }

  .language-menu {
    position: fixed;
    top: 61px;
    right: 14px;
  }

  .hero h1 {
    font-size: clamp(36px, 10.5vw, 43px);
    letter-spacing: -.045em;
  }

  .hero-lead {
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 37px; }
  .hero-visual { min-height: 350px; transform: scale(.9); margin-inline: -15px; }
  .stats-card { grid-template-columns: 1fr; }
  .feature-card { grid-template-columns: 1fr; }
  .rule-item { grid-template-columns: 1fr; align-content: center; padding: 12px 0; }
}

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