/* Global Trading Key — site stylesheet
   Palette: #00FFB2 neon green, #0b0f14 deep space, silver accents */
:root {
  --accent: #00FFB2;
  --accent-dim: #00b380;
  --bg-0: #070A0F;
  --bg-1: #0B0F14;
  --bg-2: #121822;
  --bg-3: #1A2230;
  --line: #1F2A38;
  --text: #E2E7EE;
  --text-dim: #8E98A6;
  --text-mute: #5E6775;
  --white: #FFFFFF;
  --chrome: linear-gradient(135deg, #C6CFDA 0%, #8993A3 45%, #E8EDF3 100%);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-glow: 0 0 40px rgba(0, 255, 178, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg-0);
  line-height: 1.6;
  overflow-x: hidden;
}

/* grid backdrop */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at top, rgba(0, 255, 178, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(0, 100, 70, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #070A0F 0%, #0B0F14 100%);
}
.grid-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 178, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 178, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* subtle scanline — futuristic heartbeat on the background */
.scanline {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 178, 0.6), transparent);
  z-index: -1;
  animation: scan 8s linear infinite;
  filter: blur(1px);
}
@keyframes scan {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(100vh); opacity: 0; }
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 48px;
  background: rgba(7, 10, 15, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { width: 34px; height: 34px; filter: drop-shadow(0 0 6px rgba(0,255,178,0.4)); }
.nav-logo span {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  font-size: 16px;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  color: var(--bg-0) !important;
  background: var(--accent);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600 !important;
  box-shadow: 0 0 20px rgba(0,255,178,0.4);
}
.nav-cta:hover { background: var(--white); }
.nav-cta.nav-cta-active {
  background: transparent !important;
  color: var(--accent) !important;
  border: 1px solid rgba(0, 255, 178, 0.45);
  box-shadow: 0 0 12px rgba(0, 255, 178, 0.2);
}
.nav-cta.nav-cta-active:hover {
  background: rgba(0, 255, 178, 0.08) !important;
  color: var(--accent) !important;
}

/* HERO */
.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 90px 48px 120px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 64px;
}
.tag {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(0,255,178,0.35);
  border-radius: 999px;
  color: var(--accent);
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 22px;
}
.accent { color: var(--accent); }
.lede {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 12px; margin-bottom: 48px; }
.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all .2s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg-0);
  box-shadow: 0 0 30px rgba(0,255,178,0.35);
}
.btn-primary:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 0 40px rgba(0,255,178,0.5); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 620px;
}
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
  color: var(--white);
  font-weight: 700;
}
.hero-stats span { font-size: 12px; color: var(--text-mute); text-transform: uppercase; letter-spacing: 1px; }

.hero-visual { display: flex; justify-content: center; }
.logo-glow {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 0 40px rgba(0,255,178,0.3)) drop-shadow(0 0 80px rgba(0,255,178,0.2));
  animation: logoFloat 6s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* SECTIONS */
section { padding: 90px 48px; max-width: 1280px; margin: 0 auto; }
.section-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  text-align: center;
}
.section-sub {
  color: var(--text-dim);
  font-size: 17px;
  text-align: center;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* PRODUCTS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.product-card {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,255,178,0.3);
  box-shadow: var(--shadow-glow);
}
.product-card:hover::before { opacity: 1; }
.product-card.featured {
  border-color: rgba(0,255,178,0.4);
  box-shadow: var(--shadow-glow);
}
.product-card.featured::before { opacity: 1; }
.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: var(--bg-0);
  padding: 4px 10px;
  border-radius: 999px;
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}
.product-icon { font-size: 40px; margin-bottom: 16px; }
.product-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 4px;
}
.product-sub { color: var(--accent); font-size: 13px; font-weight: 500; margin-bottom: 16px; }
.product-card p { color: var(--text-dim); margin-bottom: 20px; font-size: 14.5px; }
.product-features { list-style: none; }
.product-features li {
  color: var(--text);
  font-size: 13.5px;
  padding: 6px 0 6px 22px;
  position: relative;
}
.product-features li::before {
  content: "✓";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* PREVIEWS — CSS-built UI mockups */
.previews { padding-top: 30px; padding-bottom: 30px; }
.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.preview-card {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  transition: transform .3s;
}
.preview-card:hover { transform: translateY(-4px); border-color: rgba(0,255,178,0.25); }
.preview-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 14px;
}

/* Telegram signal mockup */
.tg-msg {
  background: #17212B;
  border-radius: 12px;
  padding: 14px;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.tg-head { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.tg-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #009966);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.tg-name { color: #fff; font-weight: 600; font-size: 14px; }
.tg-time { color: #8896A8; font-size: 11px; }
.tg-body {
  color: #E2E8F0;
  font-size: 12.5px;
  line-height: 1.7;
  font-family: 'JetBrains Mono', 'Consolas', monospace;
}

/* Sanders mockup */
.sanders-ui {
  background: var(--bg-0);
  border-radius: 10px;
  padding: 16px;
  font-family: 'Inter', sans-serif;
}
.sanders-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 12px; border-bottom: 1px solid var(--line); margin-bottom: 12px; }
.sanders-status { font-family: 'Orbitron', sans-serif; font-size: 13px; color: var(--accent); font-weight: 700; letter-spacing: 1px; }
.dot-live { display: inline-block; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 8px var(--accent); animation: pulseLive 2s ease-in-out infinite; margin-right: 6px; vertical-align: middle; }
@keyframes pulseLive { 50% { opacity: 0.3; } }
.sanders-id { font-size: 11px; color: var(--text-mute); font-family: 'JetBrains Mono', monospace; margin-top: 4px; }
.sanders-pnl { font-family: 'Orbitron', sans-serif; text-align: right; color: var(--accent); font-size: 22px; font-weight: 700; }
.sanders-pnl span { font-size: 10px; color: var(--text-mute); font-weight: 400; letter-spacing: 1px; display: block; margin-top: 2px; }
.sanders-rows { display: flex; flex-direction: column; gap: 8px; }
.sanders-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: var(--bg-2);
  border-radius: 6px;
  font-size: 12.5px;
  color: var(--text);
}
.buy-tag { background: rgba(0,255,178,0.15); color: var(--accent); padding: 1px 6px; border-radius: 3px; font-size: 10px; font-weight: 700; letter-spacing: 1px; margin-left: 4px; }
.sell-tag { background: rgba(255,90,107,0.15); color: #ff5a6b; padding: 1px 6px; border-radius: 3px; font-size: 10px; font-weight: 700; letter-spacing: 1px; margin-left: 4px; }
.pnl-pos { color: var(--accent); font-weight: 600; text-align: right; font-family: 'Orbitron', monospace; font-size: 13px; }
.pnl-neu { color: #E2C965; font-weight: 600; text-align: right; font-family: 'Orbitron', monospace; font-size: 13px; }
.sanders-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.sanders-foot > div { display: flex; flex-direction: column; }
.sanders-foot span { color: var(--text-mute); font-size: 9px; letter-spacing: 1px; text-transform: uppercase; }
.sanders-foot strong { color: var(--text); font-size: 12px; margin-top: 2px; font-family: 'Orbitron', monospace; }

/* Keys Dashboard mockup */
.keys-ui {
  background: var(--bg-0);
  border-radius: 10px;
  padding: 16px;
  font-family: 'Inter', sans-serif;
}
.keys-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.keys-acct { color: #fff; font-family: 'Orbitron', monospace; font-size: 14px; font-weight: 700; }
.keys-sub { color: var(--text-mute); font-size: 11px; margin-top: 4px; }
.keys-green { color: var(--accent); font-family: 'Orbitron', sans-serif; font-size: 11px; letter-spacing: 1.5px; font-weight: 700; }
.keys-magic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}
.magic {
  padding: 9px 10px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  font-size: 11.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s;
  font-family: 'Inter', sans-serif;
  text-align: left;
}
.magic:hover { border-color: var(--accent); color: var(--accent); }
.keys-risk { padding-top: 6px; }
.risk-bar {
  height: 6px;
  background: var(--bg-2);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}
.risk-fill {
  width: 47%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #E2C965);
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(0,255,178,0.5);
}
.risk-labels { display: flex; justify-content: space-between; font-size: 10px; color: var(--text-mute); text-transform: uppercase; letter-spacing: 1px; }

/* ABOUT */
.about { background: linear-gradient(180deg, transparent 0%, var(--bg-1) 50%, transparent 100%); }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.section-title-left {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  text-align: left;
}
.about-text p {
  color: var(--text-dim);
  font-size: 16px;
  margin-bottom: 18px;
  line-height: 1.75;
}
.about-text strong { color: var(--white); font-weight: 600; }
.about-lead {
  color: var(--white) !important;
  font-size: 20px !important;
  font-weight: 500;
  font-style: italic;
  padding: 4px 0 12px 0;
  border-left: 3px solid var(--accent);
  padding-left: 18px;
  margin-bottom: 28px !important;
}
.about-highlight {
  color: var(--accent) !important;
  font-family: 'Orbitron', sans-serif;
  font-size: 17px !important;
  font-weight: 600;
  padding: 12px 0;
  letter-spacing: 0.3px;
}
code {
  background: var(--bg-3);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', 'Consolas', monospace;
  font-size: 0.9em;
}
.mission-card {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  position: sticky;
  top: 100px;
}
.mission-card h3 {
  font-family: 'Orbitron', sans-serif;
  color: var(--accent);
  font-size: 24px;
  margin-bottom: 18px;
  font-weight: 700;
}
.mission-card p { color: var(--text); margin-bottom: 14px; font-size: 15px; }
.mission-points {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mission-points > div { display: flex; gap: 10px; align-items: center; color: var(--text); font-size: 14px; }
.mission-points span { font-size: 18px; }

/* FEATURES */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.feature {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px;
  font-size: 14.5px;
  transition: all .2s;
}
.feature:hover { border-color: rgba(0,255,178,0.3); transform: translateY(-2px); }
.feature strong { color: var(--white); font-family: 'Orbitron', sans-serif; font-weight: 700; letter-spacing: 0.5px; }
.feature span { color: var(--text-dim); font-size: 13.5px; }

/* PRICING */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.plan {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: all .3s;
}
.plan:hover { transform: translateY(-4px); border-color: rgba(0,255,178,0.3); }
.plan.featured {
  background: linear-gradient(180deg, rgba(0,255,178,0.04) 0%, var(--bg-2) 100%);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
  transform: scale(1.03);
}
.plan-name {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 10px;
}
.plan-price {
  font-family: 'Orbitron', sans-serif;
  color: var(--white);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 24px;
}
.plan-price span { font-size: 14px; color: var(--text-mute); font-weight: 400; }
.plan ul { list-style: none; text-align: left; }
.plan li {
  padding: 10px 0 10px 24px;
  color: var(--text);
  position: relative;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.plan li:last-child { border-bottom: none; }
.plan li::before {
  content: "◆";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-size: 10px;
  top: 12px;
}

/* LOGIN */
.login { text-align: center; }
.login-inner { max-width: 920px; margin: 0 auto; }
.login-form {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  margin-top: 24px;
  text-align: left;
}
.login-form label {
  display: block;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.login-form input {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-0);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 16px;
  font-family: 'Orbitron', monospace;
  letter-spacing: 1px;
  transition: border-color .2s;
}
.login-form input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,255,178,0.15); }
.login-form button {
  width: 100%;
  margin-top: 16px;
  justify-content: center;
}
.login-error {
  color: #ff5a6b;
  font-size: 13px;
  min-height: 18px;
  margin-top: 10px;
  text-align: center;
}
.login-help {
  color: var(--text-mute);
  font-size: 13px;
  text-align: center;
  margin-top: 18px;
}
.login-help a { color: var(--accent); text-decoration: none; }
.login-help a:hover { text-decoration: underline; }

/* DASHBOARD */
.dashboard {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border: 1px solid rgba(0,255,178,0.3);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 24px;
  text-align: left;
  box-shadow: var(--shadow-glow);
}
.hidden { display: none !important; }
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.dash-header h3 {
  font-family: 'Orbitron', sans-serif;
  color: var(--white);
  font-size: 22px;
  margin-bottom: 4px;
}
.dash-sub { color: var(--accent); font-size: 13px; font-weight: 500; }
.dash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
.dash-card {
  background: var(--bg-0);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px;
}
.dash-label {
  font-size: 10px;
  color: var(--text-mute);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 8px;
}
.dash-value {
  font-family: 'Orbitron', sans-serif;
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.dash-note { font-size: 12px; color: var(--text-dim); }
.dash-downloads h4 {
  font-family: 'Orbitron', sans-serif;
  color: var(--text);
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.dash-downloads .btn-ghost { margin-right: 10px; font-size: 13px; padding: 10px 18px; }

/* FOOTER */
.footer {
  background: var(--bg-0);
  border-top: 1px solid var(--line);
  padding: 60px 48px 30px;
  margin-top: 60px;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer-logo { width: 42px; margin-bottom: 12px; filter: drop-shadow(0 0 12px rgba(0,255,178,0.3)); }
.footer-brand {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 15px;
  margin-bottom: 4px;
}
.footer-tag { color: var(--text-mute); font-size: 13px; }
.footer h5 {
  font-family: 'Orbitron', sans-serif;
  color: var(--text);
  font-size: 13px;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.footer a {
  display: block;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13px;
  padding: 4px 0;
  transition: color .15s;
}
.footer a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  color: var(--text-mute);
  font-size: 12px;
  text-align: center;
}

/* BEST SETUP — the "add bot to group + wait" callout */
.setup {
  padding: 80px 20px;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 255, 178, 0.06), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(0, 136, 204, 0.05), transparent 60%);
}
.setup-inner {
  max-width: 860px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(14, 20, 28, 0.9) 0%, rgba(7, 10, 15, 0.95) 100%);
  border: 1px solid rgba(0, 255, 178, 0.22);
  border-radius: 20px;
  padding: 50px 48px;
  text-align: left;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(0, 255, 178, 0.06);
}
.setup-badge {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #00FFB2;
  background: rgba(0, 255, 178, 0.1);
  border: 1px solid rgba(0, 255, 178, 0.3);
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 18px;
}
.setup-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 18px;
}
.setup-lead {
  font-size: 16px;
  color: rgba(226, 231, 238, 0.85);
  line-height: 1.7;
  margin: 0 0 30px;
}
.setup-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0 24px;
}
.setup-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(0, 255, 178, 0.04);
  border: 1px solid rgba(0, 255, 178, 0.14);
  border-radius: 12px;
  padding: 18px 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.setup-step:hover {
  border-color: rgba(0, 255, 178, 0.35);
  transform: translateY(-2px);
}
.setup-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00FFB2 0%, #00CC8F 100%);
  color: #07140D;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.setup-step strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.setup-step span {
  display: block;
  color: rgba(226, 231, 238, 0.6);
  font-size: 13px;
  line-height: 1.5;
}
.setup-step code {
  background: rgba(0, 255, 178, 0.15);
  color: #00FFB2;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 12px;
  font-family: 'Inter', monospace;
}
.setup-tip {
  background: rgba(0, 136, 204, 0.08);
  border-left: 3px solid #00FFB2;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(226, 231, 238, 0.8);
  margin: 26px 0 0;
}
.setup-tip strong { color: #00FFB2; }

/* DASHBOARD — renewal nudge + manage plan */
.dash-nudge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(0, 255, 178, 0.06);
  border: 1px solid rgba(0, 255, 178, 0.25);
  border-radius: 12px;
  margin: 20px 0 24px;
  font-size: 14px;
  color: #E2E7EE;
  flex-wrap: wrap;
}
.dash-nudge.urgent {
  background: rgba(255, 120, 80, 0.08);
  border-color: rgba(255, 120, 80, 0.35);
}
.dash-nudge .btn-primary { flex-shrink: 0; }
.btn-sm {
  padding: 8px 16px !important;
  font-size: 12px !important;
  letter-spacing: 0.5px;
}
.dash-manage {
  margin-top: 28px;
  padding: 24px;
  background: rgba(14, 20, 28, 0.5);
  border: 1px solid rgba(226, 231, 238, 0.08);
  border-radius: 14px;
}
.dash-manage h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: #00FFB2;
  margin: 0 0 6px;
}
.dash-manage-sub {
  font-size: 13px;
  color: rgba(226, 231, 238, 0.55);
  margin: 0 0 16px;
  line-height: 1.5;
}
.dash-plan-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.plan-btn-inline {
  flex: 1 1 180px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.plan-btn-inline.current {
  background: linear-gradient(135deg, #00FFB2 0%, #00CC8F 100%) !important;
  color: #07140D !important;
}
.plan-btn-inline.upgrade {
  background: transparent !important;
  color: #00FFB2 !important;
  border: 1px solid rgba(0, 255, 178, 0.4) !important;
}
.plan-btn-inline.upgrade:hover {
  background: rgba(0, 255, 178, 0.08) !important;
}

/* LOGIN — dual option layout */
.login-options {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  gap: 18px;
  align-items: stretch;
  margin: 10px 0 20px;
}
.login-option {
  background: rgba(14, 20, 28, 0.6);
  border: 1px solid rgba(0, 255, 178, 0.18);
  border-radius: 14px;
  padding: 30px 28px 28px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.login-option:hover {
  border-color: rgba(0, 255, 178, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 255, 178, 0.1);
}
.login-opt-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: #00FFB2;
  margin-bottom: 10px;
}
.login-opt-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.25;
}
.login-opt-sub {
  font-size: 14px;
  color: rgba(226, 231, 238, 0.7);
  margin: 0 0 24px;
  line-height: 1.55;
}
.login-opt-help {
  font-size: 12px;
  color: rgba(226, 231, 238, 0.5);
  margin: 14px 0 0;
  line-height: 1.55;
}
.login-opt-help a { color: #00FFB2; text-decoration: none; }
.login-opt-help a:hover { text-decoration: underline; }
.login-opt-help code,
.login-opt-sub code {
  background: rgba(0, 255, 178, 0.1);
  color: #00FFB2;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 11px;
  font-family: 'Inter', monospace;
  letter-spacing: 0.5px;
}

.login-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.login-divider::before,
.login-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0, 255, 178, 0.25), transparent);
}
.login-divider::before { top: 0; height: calc(50% - 26px); }
.login-divider::after  { bottom: 0; height: calc(50% - 26px); }
.login-divider span {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(226, 231, 238, 0.55);
  background: rgba(0, 255, 178, 0.06);
  border: 1px solid rgba(0, 255, 178, 0.25);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Telegram widget inside its column */
.tg-login-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 8px 0;
}
#telegramLoginBtn {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
#telegramLoginBtn iframe {
  border-radius: 10px !important;
  box-shadow: 0 6px 24px rgba(0, 136, 204, 0.3), 0 0 0 1px rgba(0, 255, 178, 0.15) !important;
  transform: scale(1.05);
  transform-origin: center;
}

/* Key paste form — stacked (input above button) so nothing gets squished */
.key-login-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.key-login-form input {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  background: rgba(7, 10, 15, 0.9);
  border: 1px solid rgba(0, 255, 178, 0.25);
  border-radius: 10px;
  color: #fff;
  font-family: 'Inter', monospace;
  font-size: 14px;
  letter-spacing: 1.5px;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
}
.key-login-form input::placeholder {
  color: rgba(226, 231, 238, 0.35);
  letter-spacing: 1px;
}
.key-login-form input:focus {
  outline: none;
  border-color: #00FFB2;
  box-shadow: 0 0 0 3px rgba(0, 255, 178, 0.15);
}
.key-login-form .btn-primary {
  width: 100%;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* PLAN SUBSCRIBE BUTTONS */
.plan-btn {
  margin-top: 18px;
  width: 100%;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: block;
}
.pricing-foot {
  text-align: center;
  color: rgba(226, 231, 238, 0.55);
  font-size: 13px;
  margin-top: 28px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* SUBSCRIBE MODAL */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 12, 0.82);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
  animation: modalFade 0.2s ease-out;
}
.modal.hidden { display: none; }
@keyframes modalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal-box {
  background: linear-gradient(180deg, #0E141C 0%, #070A0F 100%);
  border: 1px solid rgba(0, 255, 178, 0.25);
  border-radius: 18px;
  padding: 36px 32px 28px;
  max-width: 460px;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 255, 178, 0.12), 0 0 0 1px rgba(0, 255, 178, 0.08);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: rgba(226, 231, 238, 0.5);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 6px 10px;
  transition: color 0.15s;
}
.modal-close:hover { color: #00FFB2; }
.modal-box h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  margin: 0 0 8px;
  color: #fff;
}
.modal-box h3 span { color: #00FFB2; }
.modal-sub {
  color: rgba(226, 231, 238, 0.7);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 22px;
}
.modal-sub strong { color: #00FFB2; font-weight: 700; }
.modal-box label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(226, 231, 238, 0.55);
  margin-bottom: 8px;
}
.modal-box input[type="text"] {
  width: 100%;
  padding: 14px 16px;
  background: rgba(14, 20, 28, 0.8);
  border: 1px solid rgba(0, 255, 178, 0.2);
  border-radius: 10px;
  color: #fff;
  font-family: 'Inter', monospace;
  font-size: 15px;
  letter-spacing: 1px;
  transition: border-color 0.15s;
}
.modal-box input[type="text"]:focus {
  outline: none;
  border-color: #00FFB2;
  box-shadow: 0 0 0 3px rgba(0, 255, 178, 0.12);
}
.modal-help {
  font-size: 12px;
  color: rgba(226, 231, 238, 0.5);
  margin: 10px 0 18px;
  line-height: 1.5;
}
.modal-help a { color: #00FFB2; text-decoration: none; }
.modal-help a:hover { text-decoration: underline; }
.modal-box .btn-primary {
  width: 100%;
  padding: 14px;
}
.modal-box .btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* TEAM TAG */
.team-tag {
  margin-top: 12px;
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  color: #00FFB2;
  background: rgba(0, 255, 178, 0.08);
  border: 1px solid rgba(0, 255, 178, 0.25);
  padding: 5px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}

/* MOBILE */
@media (max-width: 880px) {
  .nav { padding: 14px 20px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 13px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 60px 20px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .hero-ctas { justify-content: center; flex-wrap: wrap; }
  .hero-visual { order: -1; }
  .logo-glow { max-width: 240px; }
  section { padding: 60px 20px; }
  .about-grid { grid-template-columns: 1fr; }
  .mission-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer { padding: 40px 20px 20px; }
  .modal-box { padding: 30px 22px 22px; }
  .modal-box h3 { font-size: 19px; }

  /* Stack the two login options on mobile */
  .login-options { grid-template-columns: 1fr; gap: 14px; }
  .login-option { min-height: auto; padding: 24px 20px; }
  .login-divider { padding: 6px 0; height: 44px; }
  .login-divider::before,
  .login-divider::after {
    top: 50%;
    bottom: auto;
    left: 0;
    transform: translateY(-50%);
    width: calc(50% - 30px);
    height: 1px;
  }
  .login-divider::before { left: 0; }
  .login-divider::after  { left: auto; right: 0; }

  /* Setup section — stack steps 1/col, smaller headline */
  .setup-inner { padding: 34px 22px; border-radius: 16px; }
  .setup-title { font-size: 26px; }
  .setup-lead { font-size: 15px; }
  .setup-steps { grid-template-columns: 1fr; gap: 12px; }
}
