:root {
  --green: #87db00;
  --green-bright: #9cff00;
  --green-deep: #03ab39;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.54);
  --dim: rgba(255, 255, 255, 0.32);
  --panel: #0d0f10;
  --line: rgba(135, 219, 0, 0.36);
  --font-body: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-number: "Space Grotesk", "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: #000;
  color: var(--white);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #000;
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 51% 37%, rgba(122, 225, 0, 0.09), transparent 18%),
    radial-gradient(circle at 50% 78%, rgba(122, 225, 0, 0.08), transparent 18%);
  z-index: 0;
}

button,
a {
  font: inherit;
}

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

button {
  cursor: pointer;
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  height: 76px;
  padding: 0 39px;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: 120px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 34px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 35px;
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--green-bright);
}

.desktop-nav .active {
  min-width: 74px;
  justify-content: center;
  padding: 0 18px;
  color: #050505;
  font-weight: 700;
  background: linear-gradient(110deg, #15c934 0%, #97f300 100%);
  border-radius: 999px;
}

.desktop-nav .muted {
  color: rgba(255, 255, 255, 0.22);
}

.desktop-nav .stacked {
  line-height: 1.05;
  text-align: center;
}

.has-arrow::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 10px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg) translateY(-2px);
}

.phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-left: 14px;
  padding: 0;
  background: transparent;
  border: 0;
}

.phone img {
  width: 22px;
  height: 22px;
}

.mobile-connect {
  display: none;
}

.mobile-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.mobile-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  background: transparent;
  border: 0;
}

.mobile-actions img {
  width: 23px;
  height: 23px;
}

.hero {
  position: relative;
  min-height: 920px;
  background:
    radial-gradient(circle at 77% 28%, rgba(135, 219, 0, 0.16), transparent 20%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 77%, #000 100%),
    url("./assets/landing/hero-section.png") center top / cover no-repeat;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(360px, 508px);
  gap: clamp(38px, 5vw, 76px);
  align-items: center;
  width: min(100% - 96px, 1180px);
  margin: 0 auto;
  padding-top: 120px;
  text-align: left;
}

.hero-content {
  min-width: 0;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 800;
  line-height: 1.15;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 33px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  font-weight: 600;
}

.hero-copy p {
  margin: 0;
}

.pill,
.section-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 15px;
  color: var(--green);
  background: linear-gradient(90deg, rgba(95, 160, 0, 0.36), rgba(0, 96, 34, 0.5));
  border: 1px solid rgba(135, 219, 0, 0.55);
  border-radius: 999px;
  box-shadow: inset 0 0 18px rgba(135, 219, 0, 0.12);
}

.hero-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 54px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 214px;
  min-height: 56px;
  padding: 0 28px;
  color: #050505;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(100deg, #18c237 0%, #9bf400 100%);
}

.btn.ghost {
  color: var(--green-bright);
  background: rgba(0, 0, 0, 0.18);
  border-color: var(--green);
}

.section-glow {
  background:
    radial-gradient(circle at 50% 47%, rgba(72, 130, 0, 0.18), transparent 17%),
    #000;
}

.section-title {
  width: min(100% - 36px, 1120px);
  margin: 0 auto;
  text-align: center;
}

.section-title h2 {
  margin: 29px 0 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
}

.section-title h2 strong {
  color: var(--green-bright);
  font-weight: inherit;
}

.section-title h2 span,
.section-title p {
  color: rgba(255, 255, 255, 0.52);
}

.section-title.wide {
  width: min(100% - 36px, 960px);
}

.section-title.wide p {
  margin: 29px auto 0;
  max-width: 930px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.65;
}

.section-title.wide p strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.stats-section {
  padding: 110px 0 249px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 37px 35px;
  width: min(100% - 36px, 1118px);
  margin: 65px auto 0;
}

.stat-card {
  position: relative;
  height: 286px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 83%, rgba(128, 219, 0, 0.34), transparent 37%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.01) 35%),
    #050606;
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(135, 219, 0, 0.2));
  pointer-events: none;
}

.stat-content {
  position: relative;
  z-index: 2;
  padding: 91px 48px 0;
}

.stat-content p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 17px;
  font-weight: 600;
}

.stat-content strong {
  color: #fff;
  font-family: var(--font-number);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.stat-img {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.stat-line {
  right: -5px;
  bottom: 18px;
  width: 440px;
}

.stat-treasury {
  right: -6px;
  bottom: -2px;
  width: 525px;
}

.stat-apr {
  right: -6px;
  bottom: 0;
  width: 392px;
}

.market-bg {
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 240px;
  opacity: 0.78;
}

.market-earth {
  position: absolute;
  right: -11px;
  bottom: -2px;
  width: 262px;
}

.market-icon {
  display: none;
}

.divider {
  border-top: 1px solid rgba(135, 219, 0, 0.18);
}

.draw-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 76% 22%, rgba(156, 255, 0, 0.22), transparent 29%),
    radial-gradient(circle at 12% 88%, rgba(3, 171, 57, 0.16), transparent 31%),
    linear-gradient(145deg, rgba(14, 21, 16, 0.92), rgba(0, 0, 0, 0.78));
  border: 1px solid rgba(135, 219, 0, 0.38);
  border-radius: 8px;
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.48),
    0 0 70px rgba(135, 219, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  isolation: isolate;
  overflow: hidden;
}

.draw-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.13), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 22px);
  opacity: 0.58;
  pointer-events: none;
}

.draw-section::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  pointer-events: none;
}

.hero-draw {
  justify-self: end;
  width: 100%;
  max-width: 508px;
}

.draw-copy h2 {
  margin: 14px 0 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.05;
}

.draw-copy h2 strong {
  color: var(--green-bright);
}

.draw-copy p {
  max-width: 430px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.draw-copy .draw-eligibility {
  display: inline-flex;
  max-width: 100%;
  min-height: 34px;
  align-items: center;
  margin-top: 14px;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.28;
  overflow-wrap: anywhere;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.draw-eligibility[data-status="eligible"] {
  color: #071008;
  background: linear-gradient(110deg, #16c637, #9cff00);
  border-color: transparent;
  box-shadow: 0 0 22px rgba(135, 219, 0, 0.24);
}

.draw-eligibility[data-status="warning"],
.draw-eligibility[data-status="used"] {
  color: #fff7d3;
  background: rgba(255, 191, 71, 0.12);
  border-color: rgba(255, 191, 71, 0.36);
}

.draw-eligibility[data-status="checking"] {
  color: var(--green-bright);
  background: rgba(156, 255, 0, 0.1);
  border-color: rgba(156, 255, 0, 0.28);
}

.draw-prize-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.draw-prize-list span {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(135, 219, 0, 0.34);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.draw-wheel-shell {
  position: relative;
  display: grid;
  justify-items: center;
  margin-top: 4px;
}

.draw-wheel-shell::before {
  content: "";
  position: absolute;
  top: 3px;
  width: 362px;
  max-width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(156, 255, 0, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 12px rgba(156, 255, 0, 0.035),
    0 0 54px rgba(156, 255, 0, 0.22);
  animation: drawPulse 2.8s ease-in-out infinite;
  pointer-events: none;
}

.draw-orbit {
  position: absolute;
  top: -9px;
  width: 384px;
  max-width: calc(100% + 32px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(from 34deg, transparent 0 24deg, rgba(156, 255, 0, 0.55) 24deg 28deg, transparent 28deg 100deg, rgba(255, 255, 255, 0.5) 100deg 103deg, transparent 103deg 360deg);
  filter: blur(0.2px) drop-shadow(0 0 14px rgba(156, 255, 0, 0.38));
  opacity: 0.92;
  pointer-events: none;
}

.draw-pointer {
  position: absolute;
  top: -5px;
  z-index: 3;
  width: 42px;
  height: 52px;
  background: linear-gradient(180deg, #f4ffd6, var(--green-bright) 46%, #13bc37 100%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  filter: drop-shadow(0 0 16px rgba(156, 255, 0, 0.76));
}

.draw-pointer::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #061007;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: inset 0 0 4px rgba(156, 255, 0, 0.55);
}

.draw-wheel {
  --rotation: 0deg;
  --slice: 45deg;
  --label-radius: 112px;
  position: relative;
  display: grid;
  place-items: center;
  width: 340px;
  aspect-ratio: 1;
  border: 2px solid rgba(204, 255, 87, 0.88);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #060806 0 17%, #10180c 18% 20%, transparent 21%),
    repeating-conic-gradient(from -90deg, rgba(255, 255, 255, 0.22) 0 0.8deg, transparent 0.8deg 45deg),
    conic-gradient(
      from -90deg,
      #baff22 0deg 45deg,
      #111b11 45deg 90deg,
      #5d9800 90deg 135deg,
      #07090b 135deg 180deg,
      #d8ff62 180deg 225deg,
      #172813 225deg 270deg,
      #05be44 270deg 315deg,
      #0a0d0b 315deg 360deg
    );
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.035),
    0 0 0 18px rgba(135, 219, 0, 0.075),
    0 0 62px rgba(135, 219, 0, 0.32),
    inset 0 0 46px rgba(0, 0, 0, 0.8);
  transform: rotate(var(--rotation));
  transition: transform 4.6s cubic-bezier(0.12, 0.72, 0.1, 1);
}

.draw-wheel::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.18), transparent 18%),
    radial-gradient(circle at center, transparent 0 59%, rgba(0, 0, 0, 0.26) 60% 100%);
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.draw-wheel::after {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.draw-label {
  --angle: calc((var(--i) * var(--slice)) + (var(--slice) / 2));
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 84px;
  min-height: 29px;
  margin-top: -14px;
  margin-left: -42px;
  padding: 0 4px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.92), 0 0 10px rgba(0, 0, 0, 0.46);
  background:
    linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.28) 18% 82%, transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent);
  border: 0;
  border-radius: 2px;
  font-family: var(--font-number);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  overflow-wrap: anywhere;
  pointer-events: none;
  transform: rotate(var(--angle)) translateY(calc(-1 * var(--label-radius)));
  transform-origin: center;
}

.draw-label small {
  display: block;
  margin-top: 2px;
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
}

.draw-label::before {
  content: "";
  position: absolute;
  inset: -4px 2px;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.draw-label:nth-of-type(1),
.draw-label:nth-of-type(5) {
  color: #071008;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.6), 0 0 4px rgba(255, 255, 255, 0.34);
}

.draw-label.is-long {
  font-size: 9px;
  line-height: 1;
}

.draw-label.is-long small {
  font-size: 7px;
}

.draw-spin {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  color: #050505;
  background:
    radial-gradient(circle at 33% 22%, #faffd9 0 10%, transparent 11%),
    linear-gradient(135deg, #15c934, #a6ff00 56%, #f0ffc0);
  border: 7px solid #0b0d0f;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 28px rgba(135, 219, 0, 0.52);
  font-family: var(--font-number);
  font-size: 18px;
  font-weight: 900;
  transform: rotate(calc(-1 * var(--rotation)));
  transition: transform 4.6s cubic-bezier(0.12, 0.72, 0.1, 1), opacity 160ms ease;
}

.draw-spin::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  pointer-events: none;
}

.draw-spin:disabled {
  opacity: 0.72;
  cursor: wait;
}

.draw-result {
  min-height: 30px;
  margin: 21px 0 0;
  padding: 6px 14px;
  color: var(--green-bright);
  background: rgba(156, 255, 0, 0.08);
  border: 1px solid rgba(156, 255, 0, 0.24);
  border-radius: 999px;
  font-family: var(--font-number);
  font-size: 16px;
  font-weight: 800;
}

@keyframes drawPulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.985);
  }

  50% {
    opacity: 1;
    transform: scale(1.018);
  }
}

.bond-section {
  padding: 95px 0 266px;
  background:
    radial-gradient(circle at 50% 86%, rgba(92, 159, 0, 0.18), transparent 18%),
    #000;
}

.bond-intro {
  width: min(100% - 36px, 760px);
  margin: 0 auto;
  text-align: center;
}

.bond-intro h2 {
  margin: 0;
  color: var(--green-bright);
  font-family: var(--font-display);
  font-size: 47px;
  font-weight: 800;
  line-height: 1.15;
}

.bond-intro p {
  margin: 30px auto 35px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.55;
}

.bond-intro .btn {
  min-width: 215px;
}

.bond-content {
  display: grid;
  grid-template-columns: minmax(360px, 555px) minmax(440px, 595px);
  gap: 72px;
  align-items: center;
  width: min(100% - 80px, 1280px);
  margin: 76px auto 0;
}

.bond-features {
  display: grid;
  gap: 54px;
}

.bond-features article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.bond-features img {
  width: 48px;
  height: 48px;
}

.bond-features h3 {
  margin: 0 0 17px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.28;
}

.bond-features p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.bond-chart-wrap {
  width: 100%;
}

.bond-chart {
  display: block;
  width: 100%;
  height: auto;
}

.chart-legend {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-top: 21px;
  color: var(--green);
  font-size: 18px;
  font-weight: 500;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.chart-legend i {
  display: inline-block;
  width: 18px;
  height: 18px;
}

.chart-legend .price {
  background: #c4ff24;
}

.chart-legend .strike {
  background: #fff;
}

.chart-legend .risk {
  background: #02a929;
}

.mechanism-section {
  padding: 87px 0 245px;
  background:
    radial-gradient(circle at 50% 83%, rgba(92, 159, 0, 0.18), transparent 18%),
    #000;
}

.mechanism-diagram {
  display: block;
  width: min(100% - 64px, 1200px);
  margin: 86px auto 0;
  height: auto;
}

.ecosystem-section {
  padding: 95px 0 230px;
  background:
    radial-gradient(circle at 50% 86%, rgba(92, 159, 0, 0.18), transparent 18%),
    #000;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 29px 24px;
  width: min(100% - 160px, 1280px);
  margin: 74px auto 0;
}

.product-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 262px;
  padding: 38px 24px;
  text-align: center;
  border: 1px solid rgba(135, 219, 0, 0.48);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 47%, rgba(135, 219, 0, 0.09), transparent 39%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    #090909;
}

.product-grid img {
  width: 72px;
  height: 72px;
  margin-bottom: 31px;
}

.product-grid h3 {
  margin: 0;
  max-width: 240px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
}

.vision-section {
  padding: 96px 0 154px;
  background: #000;
}

.vision-section .section-title.wide {
  width: min(100% - 36px, 1010px);
}

.accordion {
  display: grid;
  gap: 18px;
  width: min(100% - 36px, 1040px);
  margin: 70px auto 0;
}

.accordion-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
}

.accordion-item.open {
  border-color: rgba(135, 219, 0, 0.52);
  background:
    linear-gradient(180deg, rgba(135, 219, 0, 0.05), rgba(135, 219, 0, 0.01)),
    #060806;
}

.accordion-item button {
  width: 100%;
  min-height: 65px;
  padding: 0 40px;
  color: rgba(255, 255, 255, 0.46);
  text-align: left;
  background: transparent;
  border: 0;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
}

.accordion-item.open button {
  color: rgba(255, 255, 255, 0.62);
  padding-top: 30px;
}

.accordion-item p {
  display: none;
  margin: 23px 40px 36px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
}

.accordion-item.open p {
  display: block;
}

.site-footer {
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.78fr 0.42fr;
  gap: 90px;
  width: min(100% - 160px, 1060px);
  margin: 0 auto;
  padding: 69px 0 67px;
}

.footer-logo {
  display: inline-flex;
  filter: grayscale(1) brightness(1.8);
}

.footer-logo img {
  width: 111px;
}

.footer-about p {
  margin: 39px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.68;
}

.site-footer h2 {
  margin: 0 0 31px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.footer-nav div {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(2, max-content);
  grid-template-rows: repeat(5, auto);
  gap: 18px 78px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.footer-social div {
  display: flex;
  gap: 12px;
}

.footer-social img {
  width: 22px;
  height: 22px;
  filter: invert(1) grayscale(1);
  opacity: 0.78;
}

.copyright {
  width: min(100% - 160px, 1060px);
  margin: 0 auto;
  padding: 31px 0 37px;
  color: rgba(255, 255, 255, 0.46);
  border-top: 1px solid rgba(135, 219, 0, 0.15);
  font-size: 12px;
}

body.modal-open {
  overflow: hidden;
}

.btn.is-connected,
.mobile-connect.is-connected {
  color: #050505;
  background: linear-gradient(100deg, #18c237 0%, #9bf400 100%);
  border-color: transparent;
}

.dropdown-popover {
  position: absolute;
  z-index: 40;
  display: grid;
  gap: 4px;
  width: 220px;
  padding: 10px;
  border: 1px solid rgba(135, 219, 0, 0.38);
  border-radius: 12px;
  background: rgba(4, 6, 4, 0.96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42), inset 0 0 24px rgba(135, 219, 0, 0.08);
  backdrop-filter: blur(14px);
}

.dropdown-popover button {
  min-height: 38px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.82);
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.dropdown-popover button:hover {
  color: #0a0a0a;
  background: var(--green);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(100%, 460px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(135, 219, 0, 0.44);
  border-radius: 18px;
  background:
    radial-gradient(circle at 85% 0%, rgba(135, 219, 0, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    #070907;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.66);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 24px;
  line-height: 1;
}

.modal-panel h2 {
  margin: 0 42px 22px 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.16;
}

.modal-body p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.modal-muted {
  color: rgba(255, 255, 255, 0.42) !important;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.modal-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  color: var(--green-bright);
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(135, 219, 0, 0.56);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.modal-action.primary {
  color: #050505;
  background: linear-gradient(100deg, #18c237 0%, #9bf400 100%);
  border-color: transparent;
}

.modal-action.danger {
  color: #ff7b7b;
  border-color: rgba(255, 123, 123, 0.55);
}

.modal-grid,
.app-grid,
.choice-list {
  display: grid;
  gap: 10px;
}

.modal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.choice-list button,
.app-grid button {
  min-height: 46px;
  padding: 0 14px;
  color: #fff;
  text-align: left;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-weight: 800;
}

.choice-list button:hover,
.app-grid button:hover {
  color: #050505;
  background: var(--green);
  border-color: var(--green);
}

.choice-list button.is-active {
  color: #050505;
  background: linear-gradient(110deg, #18c237 0%, #9bf400 100%);
  border-color: var(--green);
}

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

.wallet-card,
.route-card,
.draw-rule-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(135, 219, 0, 0.28);
  border-radius: 14px;
  background: rgba(135, 219, 0, 0.06);
}

.wallet-card strong,
.route-card strong,
.draw-rule-card strong {
  display: block;
  color: #fff;
  font-family: var(--font-number);
  font-size: 20px;
}

.wallet-label {
  margin: 0 0 4px !important;
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 12px !important;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.wallet-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.wallet-details div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.wallet-details span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 700;
}

.wallet-details strong {
  color: #fff;
  font-size: 15px;
}

.route-card {
  display: block;
  margin-top: 16px;
}

.draw-rule-card {
  display: block;
}

.draw-rule-card p {
  margin-top: 10px !important;
}

.route-chip {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  color: var(--green);
  border: 1px solid rgba(135, 219, 0, 0.44);
  border-radius: 999px;
  font-family: var(--font-number);
  font-size: 13px;
  font-weight: 700;
}

.qr-placeholder {
  display: grid;
  place-items: center;
  width: 148px;
  height: 148px;
  margin: 4px auto 18px;
  color: #050505;
  background:
    linear-gradient(90deg, #000 10px, transparent 10px) 0 0 / 24px 24px,
    linear-gradient(#000 10px, transparent 10px) 0 0 / 24px 24px,
    var(--green);
  border: 10px solid #fff;
  border-radius: 14px;
  font-weight: 900;
}

.draw-modal-prize {
  display: grid;
  place-items: center;
  min-height: 96px;
  margin-bottom: 18px;
  color: #050505;
  text-align: center;
  background: linear-gradient(120deg, #16c637, #9cff00);
  border-radius: 16px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(135, 219, 0, 0.28);
}

@media (max-width: 1180px) {
  .site-header {
    padding: 0 28px;
  }

  .desktop-nav {
    gap: 16px;
    margin-left: 24px;
    font-size: 14px;
  }

  .hero-inner {
    grid-template-columns: minmax(330px, 1fr) minmax(330px, 430px);
    gap: 30px;
    width: min(100% - 56px, 1040px);
    padding-top: 112px;
  }

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

  .hero-draw {
    max-width: 430px;
  }

  .draw-wheel-shell::before {
    width: 322px;
  }

  .draw-orbit {
    width: 342px;
  }

  .draw-wheel {
    --label-radius: 100px;
    width: 304px;
  }

  .draw-label {
    width: 76px;
    min-height: 27px;
    margin-top: -13px;
    margin-left: -38px;
    font-size: 10px;
  }

  .draw-label.is-long {
    font-size: 8px;
  }

  .draw-label small,
  .draw-label.is-long small {
    font-size: 7px;
  }

  .draw-spin {
    width: 88px;
    height: 88px;
    font-size: 16px;
  }

  .product-grid {
    width: min(100% - 56px, 1040px);
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 72px;
    padding: 0 18px;
  }

  .brand img {
    width: 92px;
  }

  .desktop-nav,
  .phone {
    display: none;
  }

  .mobile-connect {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 32px;
    margin-left: auto;
    margin-right: 11px;
    padding: 0 16px;
    color: var(--green-bright);
    background: #050505;
    border: 1px solid var(--green);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
  }

  .mobile-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 0;
  }

  .mobile-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .mobile-actions img {
    width: 23px;
    height: 23px;
  }

  .hero {
    min-height: 0;
    padding-bottom: 42px;
    background:
      radial-gradient(circle at 50% 44%, rgba(135, 219, 0, 0.13), transparent 31%),
      linear-gradient(180deg, rgba(0, 0, 0, 0) 79%, #000 100%),
      url("./assets/landing/hero-section.png") center top / auto 760px no-repeat;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    width: calc(100% - 28px);
    padding: 98px 0 0;
    text-align: center;
  }

  .hero h1 {
    max-width: 300px;
    margin: 0 auto;
    font-size: 42px;
    line-height: 1.15;
  }

  .desktop-only {
    display: none;
  }

  .stats-section {
    padding: 49px 0 88px;
  }

  .section-pill {
    min-height: 28px;
    padding: 0 19px;
    font-size: 14px;
    font-weight: 800;
  }

  .section-title h2 {
    margin-top: 22px;
    font-size: 27px;
    line-height: 1.18;
  }

  .section-title.wide p {
    margin-top: 27px;
    font-size: 13px;
    line-height: 1.58;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    width: calc(100% - 36px);
    margin-top: 35px;
  }

  .stat-card {
    height: 166px;
    border-radius: 13px;
  }

  .stat-content {
    padding: 24px 27px 0;
  }

  .stat-content p {
    margin-bottom: 12px;
    font-size: 13px;
  }

  .stat-content strong {
    font-size: 32px;
  }

  .stat-line {
    right: -3px;
    bottom: 0;
    width: 355px;
  }

  .stat-treasury {
    right: -6px;
    bottom: 0;
    width: 355px;
  }

  .stat-apr {
    right: -3px;
    bottom: 0;
    width: 355px;
  }

  .market-bg {
    width: 165px;
  }

  .market-earth {
    right: -12px;
    width: 169px;
  }

  .market-icon {
    display: block;
    position: absolute;
    z-index: 2;
    top: 13px;
    left: 28px;
    width: 45px;
    height: 45px;
  }

  .market-card .stat-content {
    padding-top: 85px;
  }

  .draw-section {
    gap: 18px;
    width: 100%;
    max-width: 390px;
    justify-self: center;
    padding: 18px;
  }

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

  .draw-copy h2 {
    margin-top: 12px;
    font-size: 28px;
  }

  .draw-copy p {
    margin: 10px auto 0;
    font-size: 12px;
  }

  .draw-copy .draw-eligibility {
    justify-content: center;
    min-height: 32px;
    margin-top: 12px;
    padding: 7px 10px;
    font-size: 10px;
  }

  .draw-prize-list {
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .draw-prize-list span {
    min-height: 26px;
    padding: 0 9px;
    font-size: 11px;
  }

  .draw-wheel-shell {
    order: -1;
    margin-top: 0;
  }

  .draw-wheel-shell::before {
    width: 288px;
  }

  .draw-orbit {
    top: -7px;
    width: 308px;
  }

  .draw-wheel {
    --label-radius: 89px;
    width: min(100%, 272px);
  }

  .draw-label {
    width: 68px;
    min-height: 24px;
    margin-top: -12px;
    margin-left: -34px;
    font-size: 8px;
  }

  .draw-label.is-long {
    font-size: 7px;
  }

  .draw-label small,
  .draw-label.is-long small {
    margin-top: 1px;
    font-size: 6px;
  }

  .draw-spin {
    width: 78px;
    height: 78px;
    border-width: 6px;
    font-size: 14px;
  }

  .draw-result {
    margin-top: 17px;
    font-size: 14px;
  }

  .bond-section {
    padding: 8px 0 0;
  }

  .bond-intro {
    width: calc(100% - 36px);
  }

  .bond-intro h2 {
    font-size: 31px;
  }

  .bond-intro p {
    margin: 22px auto 33px;
    font-size: 16px;
    line-height: 1.5;
  }

  .bond-intro .btn {
    display: none;
  }

  .bond-content {
    grid-template-columns: 1fr;
    gap: 0;
    width: calc(100% - 36px);
    margin-top: 0;
  }

  .bond-features {
    gap: 8px;
  }

  .bond-features article {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 16px;
  }

  .bond-features img {
    width: 40px;
    height: 40px;
  }

  .bond-features h3 {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.24;
  }

  .bond-features p {
    font-size: 13px;
    line-height: 1.22;
  }

  .bond-chart {
    width: calc(100% + 2px);
    margin-left: -1px;
  }

  .chart-legend {
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 19px;
    font-size: 14px;
  }

  .chart-legend i {
    width: 14px;
    height: 14px;
  }

  .mechanism-section {
    padding: 85px 0 0;
  }

  .mechanism-diagram {
    width: calc(100% - 35px);
    margin-top: 30px;
  }

  .ecosystem-section {
    padding: 82px 0 40px;
  }

  .ecosystem-section .section-title h2,
  .vision-section .section-title h2 {
    font-size: 27px;
    line-height: 1.12;
  }

  .ecosystem-section .section-title.wide p {
    font-size: 12px;
    line-height: 1.45;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    width: calc(100% - 36px);
    margin-top: 30px;
  }

  .product-grid article {
    min-height: 130px;
    padding: 12px;
    border-radius: 12px;
  }

  .product-grid img {
    width: 53px;
    height: 53px;
    margin-bottom: 10px;
  }

  .product-grid h3 {
    font-size: 15px;
    line-height: 1.15;
  }

  .vision-section {
    padding: 46px 0 42px;
  }

  .vision-section .section-title h2 {
    font-size: 25px;
    line-height: 1.12;
  }

  .vision-section .section-title.wide p {
    font-size: 12px;
    line-height: 1.45;
  }

  .accordion {
    width: calc(100% - 36px);
    gap: 13px;
    margin-top: 30px;
  }

  .accordion-item {
    border-radius: 12px;
  }

  .accordion-item button {
    min-height: 61px;
    padding: 0 23px;
    font-size: 17px;
    line-height: 1.18;
  }

  .accordion-item.open button {
    padding-top: 25px;
  }

  .accordion-item p {
    margin: 14px 23px 22px;
    font-size: 12px;
    line-height: 1.52;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 44px;
    width: calc(100% - 30px);
    padding: 67px 0 39px;
  }

  .footer-logo img {
    width: 111px;
  }

  .footer-about p {
    margin-top: 36px;
    font-size: 17px;
    line-height: 1.7;
  }

  .site-footer h2 {
    margin-bottom: 31px;
    font-size: 23px;
  }

  .footer-nav div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(5, auto);
    gap: 17px 25px;
  }

  .footer-nav a {
    font-size: 14px;
  }

  .footer-social img {
    width: 24px;
    height: 24px;
  }

  .copyright {
    width: calc(100% - 30px);
    padding: 26px 0 33px;
    font-size: 12px;
  }

  .modal-backdrop {
    align-items: flex-end;
    padding: 14px;
  }

  .modal-panel {
    width: 100%;
    padding: 24px 18px 18px;
    border-radius: 18px;
  }

  .modal-panel h2 {
    font-size: 24px;
  }

  .modal-grid,
  .wallet-details,
  .app-grid {
    grid-template-columns: 1fr;
  }

  .modal-actions {
    justify-content: stretch;
  }

  .modal-action {
    flex: 1 1 auto;
  }
}

@media (max-width: 410px) {
  .mobile-connect {
    min-width: 140px;
    padding: 0 12px;
    font-size: 12px;
  }

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