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

:root {
  --bg-primary:    #0A0F0A;
  --bg-secondary:  #0F1510;
  --bg-card:       rgba(18, 26, 16, 0.75);
  --bg-card-solid: #121A10;
  --green-primary: #95BF47;
  --green-bright:  #6AAF2E;
  --green-glow:    #4A8A1A;
  --green-deep:    #2D5E0A;
  --green-dark:    #1A3D04;
  --white:         #FFFFFF;
  --text-primary:  #F0F7EA;
  --text-secondary:#A8BF98;
  --text-muted:    #5E7A4E;
  --border:        #1E3018;
  --success:       #95BF47;
  --radius:        16px;
  --radius-sm:     10px;
  --radius-xs:     8px;
}

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

html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--green-primary) var(--bg-primary); }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Ambient orbs ── */
.ambient-bg {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(130px); opacity: 0.28;
  animation: orbFloat 22s ease-in-out infinite;
}
.orb-1 { width: 640px; height: 640px; background: var(--green-deep);   top: -220px; left: -120px; animation-delay: 0s; }
.orb-2 { width: 520px; height: 520px; background: var(--green-glow);   top: 40%; right: -160px; animation-delay: -8s; opacity: .18; }
.orb-3 { width: 420px; height: 420px; background: #1a4d0a;             bottom: -120px; left: 28%; animation-delay: -15s; opacity: .14; }

@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(28px,-18px) scale(1.04); }
  66%      { transform: translate(-18px,14px) scale(.96); }
}

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 24px;
  background: rgba(10,15,10,.82);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(149,191,71,.06);
  transition: all .3s;
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; cursor: pointer;
}
.logo-icon {
  width: 36px; height: 36px;
  background: #fff;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(106,175,46,.35);
  overflow: hidden;
}
.logo-icon img {
  width: 100%; height: 100%; object-fit: contain;
}
.logo-text {
  font-weight: 700; font-size: 20px;
  color: var(--white); letter-spacing: -.3px;
}
.logo-text span { color: var(--white); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a:not(.btn) {
  color: var(--text-secondary); text-decoration: none;
  font-size: 14px; font-weight: 500;
  padding: 8px 16px; border-radius: var(--radius-xs);
  transition: all .2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.05); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: var(--radius-sm);
  font-family: inherit; font-size: 14px; font-weight: 600;
  border: none; cursor: pointer; transition: all .25s; text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-primary), var(--green-glow));
  color: #fff;
  box-shadow: 0 4px 24px rgba(106,175,46,.3);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 32px rgba(106,175,46,.45); }
.btn-ghost {
  background: rgba(255,255,255,.05);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: var(--green-primary); }

/* ── Mobile menu ── */
.mobile-toggle {
  display: none; background: none; border: none;
  color: var(--text-primary); cursor: pointer; padding: 8px;
}
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(10,15,10,.96); backdrop-filter: blur(24px);
  z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-primary); text-decoration: none;
  font-size: 20px; font-weight: 500; padding: 16px 40px;
  border-radius: var(--radius-xs); transition: all .2s;
}
.mobile-menu a:hover { background: rgba(255,255,255,.05); }
.mobile-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: var(--text-primary); cursor: pointer; padding: 8px;
}

/* ── Hero ── */
.hero {
  position: relative; z-index: 1;
  padding: 168px 24px 100px; text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px 6px 8px;
  background: rgba(149,191,71,.1); border: 1px solid rgba(149,191,71,.22);
  border-radius: 100px; font-size: 13px; color: var(--green-primary);
  font-weight: 500; margin-bottom: 32px;
  animation: fadeUp .8s ease;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--green-primary); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.35; } }

.hero h1 {
  font-size: clamp(40px, 6.5vw, 76px);
  font-weight: 800; line-height: 1.04; letter-spacing: -2.5px;
  margin-bottom: 22px;
  animation: fadeUp .8s ease .1s both;
}
.hero h1 .gradient {
  background: linear-gradient(135deg, var(--green-primary), #c5e87a, var(--green-bright));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: clamp(16px, 2vw, 19px); color: var(--text-secondary);
  max-width: 540px; margin: 0 auto 40px; line-height: 1.65;
  animation: fadeUp .8s ease .2s both;
}
.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  animation: fadeUp .8s ease .3s both;
}
.hero-actions .btn { padding: 13px 28px; font-size: 15px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Phone mockup ── */
.phone-section {
  position: relative; z-index: 1;
  padding: 20px 24px 100px;
  display: flex; justify-content: center;
}
.phone-wrap {
  animation: phoneFloat 6s ease-in-out infinite;
}
.phone-img {
  width: 280px;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}

.phone-frame {
  width: 260px; background: #111; border-radius: 40px;
  padding: 14px;
  border: 1px solid rgba(149,191,71,.15);
  box-shadow: 0 40px 100px rgba(0,0,0,.5), 0 0 60px rgba(149,191,71,.08);
}
.phone-screen {
  background: #000; border-radius: 30px; overflow: hidden;
  aspect-ratio: 9/19;
  display: flex; flex-direction: column;
}
.phone-header {
  background: #000; padding: 14px 16px 10px;
  display: flex; align-items: center; justify-content: space-between;
}
.phone-logo-tile {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-glow));
  border-radius: 7px; display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #000;
}
.phone-store-name { color: #fff; font-size: 13px; font-weight: 700; margin-left: 8px; flex: 1; }
.phone-avatar {
  width: 28px; height: 28px; background: #9b59b6; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff;
}
.phone-content { background: #fff; flex: 1; border-radius: 16px 16px 0 0; padding: 12px; }
.phone-filter-row {
  display: flex; gap: 6px; margin-bottom: 10px;
}
.phone-chip {
  background: #ebebeb; border-radius: 7px; padding: 4px 9px;
  font-size: 10px; font-weight: 600; color: #111;
}
.phone-chip.live { display: flex; align-items: center; gap: 4px; }
.phone-chip .ldot { width: 6px; height: 6px; background: #22c55e; border-radius: 50%; }
.phone-stat-main { margin-bottom: 4px; }
.phone-stat-main .label { font-size: 9px; color: #9ca3af; font-weight: 600; }
.phone-stat-main .value { font-size: 20px; font-weight: 800; color: #111; letter-spacing: -1px; line-height: 1.1; }
.phone-stat-row { display: flex; gap: 0; margin-bottom: 8px; }
.phone-stat-col { flex: 1; }
.phone-stat-col .slabel { font-size: 8px; color: #9ca3af; font-weight: 600; }
.phone-stat-col .sval { font-size: 11px; font-weight: 700; color: #9ca3af; }
.phone-chart {
  background: #f9f9f9; border-radius: 8px; height: 60px; overflow: hidden;
}
.phone-chart svg { width: 100%; height: 100%; }

@keyframes phoneFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ── Section shared ── */
.section-label {
  display: inline-block; font-family: 'Space Mono', monospace;
  font-size: 11px; text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--green-primary); margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 800;
  letter-spacing: -1.2px; margin-bottom: 52px; line-height: 1.1;
}

/* ── Features ── */
.features {
  position: relative; z-index: 1;
  padding: 80px 24px; max-width: 1120px; margin: 0 auto;
}
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 26px;
  backdrop-filter: blur(14px); transition: all .3s;
}
.feature-card:hover {
  border-color: rgba(149,191,71,.28); transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.feature-icon {
  width: 46px; height: 46px; border-radius: 11px;
  background: rgba(149,191,71,.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 22px; height: 22px; color: var(--green-primary); }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 9px; letter-spacing: -.3px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ── How it works ── */
.how-it-works {
  position: relative; z-index: 1;
  padding: 80px 24px; max-width: 720px; margin: 0 auto;
}
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 24px; padding: 28px 0; position: relative; }
.step:not(:last-child)::after {
  content: ''; position: absolute; left: 23px; top: 68px; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--green-glow), transparent);
}
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(149,191,71,.1); border: 2px solid var(--green-bright);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 17px; color: var(--green-primary);
  flex-shrink: 0; position: relative; z-index: 2;
}
.step-content h3 { font-size: 19px; font-weight: 700; margin-bottom: 7px; letter-spacing: -.3px; }
.step-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

/* ── Pricing ── */
.pricing {
  position: relative; z-index: 1;
  padding: 80px 24px; max-width: 1000px; margin: 0 auto; text-align: center;
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 22px; padding: 36px 28px;
  backdrop-filter: blur(20px); position: relative; overflow: hidden;
  text-align: left; transition: all .3s;
}
.pricing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-primary), transparent);
  opacity: 0; transition: opacity .3s;
}
.pricing-card:hover { border-color: rgba(149,191,71,.25); }
.pricing-card:hover::before { opacity: 1; }
.pricing-card.popular {
  border-color: var(--green-bright);
  background: rgba(149,191,71,.06);
  box-shadow: 0 0 50px rgba(106,175,46,.12);
}
.pricing-card.popular::before { opacity: 1; }
.popular-tag {
  display: inline-block; background: linear-gradient(135deg, var(--green-primary), var(--green-bright));
  color: #0A0F0A; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; padding: 4px 12px; border-radius: 100px; margin-bottom: 20px;
}
.plan-name { font-size: 13px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }
.plan-price { font-size: 52px; font-weight: 800; letter-spacing: -2px; line-height: 1; margin-bottom: 4px; }
.plan-price span { font-size: 22px; font-weight: 600; vertical-align: top; margin-top: 8px; display: inline-block; }
.plan-period { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.plan-features { list-style: none; margin-bottom: 32px; }
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; font-size: 14px; color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.plan-features li:last-child { border: none; }
.plan-features li svg { width: 16px; height: 16px; color: var(--green-primary); flex-shrink: 0; }
.pricing-card .btn { width: 100%; justify-content: center; padding: 13px; font-size: 15px; }

/* ── Disclaimer ── */
.disclaimer {
  position: relative; z-index: 1;
  max-width: 640px; margin: 0 auto; padding: 0 24px 60px;
}
.disclaimer-box {
  background: rgba(234,179,8,.05); border: 1px solid rgba(234,179,8,.14);
  border-radius: var(--radius); padding: 20px 24px; text-align: center;
}
.disclaimer-box p { font-size: 13px; color: #c49d30; line-height: 1.65; }
.disclaimer-box strong { color: #eab308; }

/* ── Footer ── */
footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  padding: 40px 24px; max-width: 1200px; margin: 0 auto;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-links { display: flex; align-items: center; gap: 24px; }
.footer-links a {
  color: var(--text-muted); text-decoration: none; font-size: 13px; transition: color .2s;
}
.footer-links a:hover { color: var(--green-primary); }

/* ── Payment Modal ── */
.pay-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
  padding: 16px;
}
.pay-overlay.open { opacity: 1; pointer-events: all; }

.pay-modal {
  background: #12131a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px 24px 24px;
  width: 100%; max-width: 480px;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform .25s;
}
.pay-overlay.open .pay-modal { transform: translateY(0); }

.pay-close {
  position: absolute; top: 18px; right: 18px;
  background: rgba(255,255,255,0.06); border: none; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer; color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.pay-close:hover { background: rgba(255,255,255,0.12); }

.pay-plan-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 6px;
}
.pay-plan-name { font-size: 22px; font-weight: 700; color: #fff; }
.pay-plan-period { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.pay-plan-price { font-size: 22px; font-weight: 700; color: #fff; }

.pay-order-id { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.04em; margin-bottom: 10px; font-family: monospace; }

.pay-status-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06); border-radius: 20px;
  padding: 5px 12px; font-size: 11px; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55); font-weight: 600; margin: 10px 0 24px;
}
.pay-status-dot { width: 7px; height: 7px; border-radius: 50%; background: #a78bfa; flex-shrink: 0; }

.pay-label {
  font-size: 11px; letter-spacing: 0.1em; color: rgba(255,255,255,0.35);
  font-weight: 600; margin-bottom: 12px; margin-top: 20px;
}

.pay-crypto-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; margin-bottom: 20px;
}
.crypto-btn {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 10px 14px;
  color: #fff; font-size: 13px; font-weight: 500;
  cursor: pointer; transition: border-color .15s, background .15s;
  font-family: inherit;
}
.crypto-btn img { width: 22px; height: 22px; border-radius: 50%; }
.crypto-btn:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); }
.crypto-btn.selected { border-color: #95BF47; background: rgba(149,191,71,0.1); }

.pay-discount-row { display: flex; gap: 8px; margin-bottom: 14px; }
.pay-discount-input {
  flex: 1; background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 10px 14px;
  color: #fff; font-size: 14px; font-family: inherit;
  outline: none; transition: border-color .2s;
}
.pay-discount-input::placeholder { color: rgba(255,255,255,0.25); }
.pay-discount-input:focus { border-color: rgba(255,255,255,0.25); }
.pay-discount-apply {
  background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 10px 16px;
  color: #fff; font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: inherit;
}
.pay-discount-apply:hover { background: rgba(255,255,255,0.13); }

.pay-select-btn {
  width: 100%; background: #7c3aed;
  border: none; border-radius: 12px; padding: 15px;
  color: #fff; font-size: 16px; font-weight: 700;
  cursor: pointer; font-family: inherit;
  transition: background .2s;
}
.pay-select-btn:hover { background: #6d28d9; }

.pay-help {
  text-align: center; font-size: 12px; color: rgba(255,255,255,0.3);
  margin-top: 16px; line-height: 1.6;
}
.pay-help a { color: rgba(255,255,255,0.55); }

/* Step 2 */
.pay-send-label {
  font-size: 11px; letter-spacing: 0.12em; color: rgba(255,255,255,0.3);
  font-weight: 600; text-align: center; margin-top: 6px;
}
.pay-amount {
  font-size: 32px; font-weight: 800; color: #fff; text-align: center;
  letter-spacing: -0.01em; margin: 8px 0 4px;
  font-family: 'Space Mono', monospace;
}
.pay-amount-sub {
  font-size: 12px; color: rgba(255,255,255,0.3); text-align: center; margin-bottom: 20px;
}
.pay-qr-wrap {
  display: flex; justify-content: center; margin-bottom: 10px;
  cursor: pointer;
}
.pay-qr-wrap img, .pay-qr-wrap canvas {
  border-radius: 12px; border: 6px solid #fff;
}
.pay-qr-tap { font-size: 12px; color: rgba(255,255,255,0.3); text-align: center; margin-bottom: 14px; }
.pay-addr-box {
  background: rgba(255,255,255,0.06); border-radius: 10px; padding: 12px 14px;
  font-size: 12px; color: rgba(255,255,255,0.6); font-family: monospace;
  word-break: break-all; cursor: pointer; transition: background .15s;
  text-align: center;
}
.pay-addr-box:hover { background: rgba(255,255,255,0.1); }
.pay-copied {
  text-align: center; font-size: 12px; color: #95BF47;
  margin-top: 6px; opacity: 0; transition: opacity .3s;
}
.pay-back-btn {
  background: none; border: none; color: rgba(255,255,255,0.35);
  font-size: 13px; cursor: pointer; margin-top: 14px;
  display: block; width: 100%; text-align: center; font-family: inherit;
}
.pay-back-btn:hover { color: rgba(255,255,255,0.6); }

/* Step 3 */
.pay-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(149,191,71,0.12); border: 2px solid rgba(149,191,71,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 8px auto 16px;
}
.pay-success-title { font-size: 22px; font-weight: 800; color: #fff; text-align: center; margin-bottom: 6px; }
.pay-success-sub { font-size: 13px; color: rgba(255,255,255,0.4); text-align: center; margin-bottom: 14px; }
.pay-key-box {
  background: rgba(149,191,71,0.07); border: 1.5px solid rgba(149,191,71,0.25);
  border-radius: 12px; padding: 16px;
  font-size: 17px; font-weight: 700; color: #95BF47;
  font-family: 'Space Mono', monospace; letter-spacing: 0.08em;
  text-align: center; cursor: pointer; margin-bottom: 6px;
  word-break: break-all;
}
.pay-key-box:hover { background: rgba(149,191,71,0.12); }

@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  40%      { transform: translateX(6px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(4px); }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid  { grid-template-columns: 1fr; max-width: 400px; margin: 8px auto 0; }
}
@media (max-width: 660px) {
  .nav-links    { display: none; }
  .mobile-toggle { display: block; }
  .features-grid { grid-template-columns: 1fr; }
  .hero          { padding: 140px 20px 60px; }
  .footer-inner  { flex-direction: column; text-align: center; }
}
