
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg:         #070b12;
  --bg2:        #0d1220;
  --surface:    rgba(255,255,255,0.035);
  --surface2:   rgba(255,255,255,0.07);
  --surface3:   rgba(255,255,255,0.10);
  --border:     rgba(120,80,255,0.18);
  --border2:    rgba(120,80,255,0.35);
  --border3:    rgba(120,80,255,0.55);
  --text:       #f0f2ff;
  --text-muted: rgba(200,210,255,0.60);
  --text-dim:   rgba(200,210,255,0.30);
  --accent:     #7b4fff;
  --accent-light: #a78bff;
  --accent2:    #f0a500;
  --green:      #00e5a0;
  --green-dim:  rgba(0,229,160,0.12);
  --pink:       #ff4fa3;
  --radius:     14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --nav-h:      76px;
  --header-h:   62px;
  --glow-accent: rgba(123,79,255,0.45);
  --glow-green:  rgba(0,229,160,0.35);
}

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


.bg-scene {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(120,80,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,80,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 20%, black 30%, transparent 100%);
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: orbFloat 12s ease-in-out infinite;
}
.bg-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(123,79,255,0.22) 0%, transparent 70%);
  top: -180px; right: -150px;
  animation-delay: 0s;
}
.bg-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(0,229,160,0.12) 0%, transparent 70%);
  bottom: 60px; left: -120px;
  animation-delay: -4s;
}
.bg-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(240,165,0,0.10) 0%, transparent 70%);
  top: 40%; left: 30%;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
}

.bg-line {
  position: absolute;
  height: 1px;
  left: -10%;
  right: -10%;
  background: linear-gradient(90deg, transparent, rgba(123,79,255,0.5), rgba(0,229,160,0.3), transparent);
  filter: blur(0.5px);
  animation: lineSlide 8s ease-in-out infinite;
}
.bg-line-1 { top: 30%; animation-delay: 0s; opacity: 0.6; transform: rotate(-1.5deg); }
.bg-line-2 { top: 55%; animation-delay: -3s; opacity: 0.3; transform: rotate(1deg); }

@keyframes lineSlide {
  0%, 100% { opacity: 0.4; transform: rotate(-1.5deg) scaleX(1); }
  50% { opacity: 0.7; transform: rotate(-1.5deg) scaleX(1.05); }
}


@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px var(--green); }
  50% { opacity: 0.5; transform: scale(0.65); box-shadow: 0 0 4px var(--green); }
}


.dynamic-island {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  background: rgba(4, 5, 12, 0.88);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border-radius: 40px;
  border: 1px solid rgba(123,79,255,0.28);
  box-shadow:
    0 4px 32px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 0 22px rgba(123,79,255,0.18);
  white-space: nowrap;
  max-width: calc(100vw - 24px);
  animation: diEntry 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
@keyframes diEntry {
  from { opacity: 0; transform: translateX(-50%) scaleX(0.3) scaleY(0.5); }
  to   { opacity: 1; transform: translateX(-50%) scaleX(1) scaleY(1); }
}
.dynamic-island:hover {
  border-color: rgba(123,79,255,0.45);
  box-shadow:
    0 6px 36px rgba(0,0,0,0.75),
    0 0 0 1px rgba(255,255,255,0.06) inset,
    0 0 32px rgba(123,79,255,0.28);
}



.di-logo-wrap { position: relative; flex-shrink: 0; }

.di-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  pointer-events: none;
  user-select: none;
}

.di-left {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 1;
  min-width: 0;
}

.di-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  background: linear-gradient(100deg, #fff 20%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.di-center {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  padding: 0 6px;
}

.di-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: diLivePulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes diLivePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--green); }
  50% { opacity: 0.3; box-shadow: 0 0 3px var(--green); }
}

.di-live-text {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--green);
  text-transform: uppercase;
}

.di-tg-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: rgba(42,171,238,0.16);
  border: 1px solid rgba(42,171,238,0.32);
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
  white-space: nowrap;
}
.di-tg-btn:hover {
  background: rgba(42,171,238,0.28);
  box-shadow: 0 0 14px rgba(42,171,238,0.3);
  transform: scale(1.04);
}
.di-tg-btn:active { transform: scale(0.93); }
.di-tg-btn svg { color: #2aabee; flex-shrink: 0; }



.main {
  position: relative;
  z-index: 1;
  padding-top: 70px;
  padding-bottom: calc(var(--nav-h) + 20px);
}


.hero {
  padding: 20px 22px 36px;
  text-align: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-light);
  background: rgba(123,79,255,0.10);
  border: 1px solid rgba(123,79,255,0.25);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.tag-dot {
  width: 5px; height: 5px;
  background: var(--accent-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
}
.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 18px;
}
.gradient-text {
  background: linear-gradient(95deg, var(--accent-light), var(--green), var(--accent2));
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.hero-subtitle {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 330px;
  margin: 0 auto 30px;
}


.hero-buttons {
  display: flex;
  gap: 11px;
  justify-content: center;
  margin-bottom: 34px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius);
  border: none;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.34,1.56,0.64,1);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.2s;
  background: rgba(255,255,255,0.08);
}
.btn:hover::after, .btn:active::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(130deg, var(--accent) 0%, #5b2fff 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(123,79,255,0.45), 0 1px 0 rgba(255,255,255,0.1) inset;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(123,79,255,0.55);
}
.btn-primary:active { transform: scale(0.97); }

.btn-ghost {
  background: var(--surface2);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  background: var(--surface3);
  border-color: var(--border2);
  transform: translateY(-1px);
}
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 15px 28px; font-size: 15.5px; }


.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 8px;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}
.stats-row::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123,79,255,0.5), rgba(0,229,160,0.4), transparent);
}
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 1;
  padding: 0 10px;
}
.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 10.5px;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.2px;
}
.stat-divider {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, transparent, var(--border2), transparent);
}


.section { padding: 42px 22px; }
.section-header {
  text-align: center;
  margin-bottom: 30px;
}
.section-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding: 4px 12px;
  background: rgba(123,79,255,0.08);
  border-radius: 20px;
  border: 1px solid rgba(123,79,255,0.2);
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 8px;
}
.section-subtitle {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 300px;
  margin: 0 auto;
}


.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(123,79,255,0.08) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover::before,
.feature-card:active::before { opacity: 1; }
.feature-card:hover::after,
.feature-card:active::after { opacity: 1; }
.feature-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.feature-card:active { transform: scale(0.98); }

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(123,79,255,0.18), rgba(0,229,160,0.06));
  color: var(--accent-light);
  border: 1px solid rgba(123,79,255,0.25);
  box-shadow: 0 4px 14px rgba(123,79,255,0.18);
  position: relative;
  z-index: 1;
}
.feature-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 7px;
  letter-spacing: -0.2px;
  position: relative;
  z-index: 1;
}
.feature-desc {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.feature-tag {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(0,229,160,0.25);
  padding: 2px 8px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}


.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}
.step:hover { border-color: var(--border2); }
.step::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent), var(--green));
  border-radius: 2px;
  opacity: 0.6;
}
.step-connector {
  height: 14px;
  width: 3px;
  margin: 0 0 0 37px;
  background: linear-gradient(to bottom, rgba(123,79,255,0.5), rgba(0,229,160,0.3));
}
.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1.5px;
  min-width: 40px;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-light), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.7;
}
.step-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; }


.fees-grid { display: flex; flex-direction: column; gap: 16px; }
.fee-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}
.fee-card:hover { border-color: var(--border2); }
.fee-card-highlight {
  background: linear-gradient(140deg, rgba(123,79,255,0.10) 0%, rgba(0,229,160,0.04) 100%);
  border-color: rgba(123,79,255,0.35);
}
.fee-card-highlight::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--accent), var(--green));
}
.fee-badge {
  position: absolute;
  top: 22px; right: 22px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--bg);
  background: linear-gradient(90deg, var(--accent), var(--green));
  padding: 4px 11px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}
.fee-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}
.fee-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 22px;
  background: linear-gradient(100deg, var(--text), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.fee-unit {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  opacity: 0.6;
}
.fee-features {
  list-style: none;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.fee-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  background: var(--green-dim);
  border: 1px solid rgba(0,229,160,0.3);
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 10px;
  color: var(--green);
}


.cta-section {
  padding: 44px 22px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(123,79,255,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1.15;
  margin-bottom: 14px;
  position: relative;
}
.cta-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 30px;
  position: relative;
  line-height: 1.6;
}


.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(7,11,18,0.88);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 100;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.bottom-nav::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123,79,255,0.4), rgba(0,229,160,0.3), transparent);
}
.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 10px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.4px;
  -webkit-tap-highlight-color: transparent;
  border-radius: 10px;
}
.nav-item:hover { color: rgba(200,210,255,0.6); }
.nav-item.active { color: var(--text); }
.nav-item.active svg {
  stroke: var(--accent-light);
  filter: drop-shadow(0 0 5px var(--accent));
}
.nav-item-center {
  position: relative;
  padding: 0;
  margin-top: -12px;
}
.nav-center-btn {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--accent), #3b1fff);
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow:
    0 4px 24px rgba(123,79,255,0.55),
    0 0 0 1px rgba(123,79,255,0.25),
    0 1px 0 rgba(255,255,255,0.15) inset;
  transition: all 0.22s cubic-bezier(0.34,1.56,0.64,1);
}
.nav-center-btn:hover { transform: scale(1.06); box-shadow: 0 6px 30px rgba(123,79,255,0.65); }
.nav-center-btn:active { transform: scale(0.92); }


::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 2px; }


@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero { animation: fadeInUp 0.5s ease both; }
.feature-card { animation: fadeInUp 0.5s ease both; }
.feature-card:nth-child(2) { animation-delay: 0.06s; }
.feature-card:nth-child(3) { animation-delay: 0.12s; }
.feature-card:nth-child(4) { animation-delay: 0.18s; }
.feature-card:nth-child(5) { animation-delay: 0.24s; }
.feature-card:nth-child(6) { animation-delay: 0.30s; }
