:root {
  color-scheme: dark;
  --bg: #050A05;
  --deep: #030703;
  --surface: rgba(13, 26, 13, 0.72);
  --surface-strong: rgba(11, 22, 11, 0.9);
  --ink: #F0F7F0;
  --muted: #A8B8A8;
  --dim: #8AA58A;
  --green: #00FF41;
  --green-soft: rgba(0, 255, 65, 0.15);
  --green-line: rgba(0, 255, 65, 0.22);
  --hair: rgba(0, 255, 65, 0.1);
  --shadow: 0 24px 80px rgba(0, 255, 65, 0.08);
  --ease: cubic-bezier(.16, 1, .3, 1);
  --radius: 16px;
  --max: 1240px;
  font-family: "Heebo", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(0,255,65,0.03) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 80%, rgba(0,255,65,0.02) 0%, transparent 60%),
    #050A05;
  color: var(--ink);
  font-family: "Heebo", sans-serif;
  font-weight: 300;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.74' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

:focus-visible {
  outline: 2px solid rgba(0,255,65,0.6);
  outline-offset: 3px;
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.skip-link {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 300;
  transform: translateY(-80px);
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--green);
  color: var(--bg);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  z-index: 250;
  background: var(--green);
  transform-origin: left;
  box-shadow: 0 0 8px rgba(0,255,65,0.5);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(24px, 4vw, 64px);
  border-bottom: 1px solid transparent;
  transition: background 300ms var(--ease), border-color 300ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(5, 10, 5, 0.88);
  border-bottom-color: var(--hair);
  backdrop-filter: blur(20px) saturate(160%);
}

.brand,
.desktop-nav,
.hero-actions,
.console-top,
.proof-band,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-family: "Space Grotesk", "Heebo", sans-serif;
  font-weight: 700;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  padding: 0;
  border-radius: 14px;
  background:
    radial-gradient(ellipse at center, rgba(0,255,65,0.2), rgba(0,255,65,0.055) 50%, transparent 72%);
  filter:
    drop-shadow(0 0 1px rgba(240,247,240,0.58))
    drop-shadow(0 0 12px rgba(0,255,65,0.58))
    drop-shadow(0 0 28px rgba(0,255,65,0.24));
  transition: transform 300ms var(--ease), filter 300ms var(--ease), background 300ms var(--ease);
}

.brand:hover .brand-logo {
  transform: translateY(-1px) scale(1.04);
  background:
    radial-gradient(ellipse at center, rgba(0,255,65,0.28), rgba(0,255,65,0.08) 50%, transparent 76%);
  filter:
    drop-shadow(0 0 1px rgba(240,247,240,0.7))
    drop-shadow(0 0 18px rgba(0,255,65,0.82))
    drop-shadow(0 0 36px rgba(0,255,65,0.32));
}

.desktop-nav {
  gap: 32px;
  color: var(--muted);
  font-weight: 400;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
  transition: color 220ms var(--ease);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

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

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 10px;
  font-weight: 700;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease), background 240ms var(--ease);
}

.header-cta {
  border: 1px solid var(--green-line);
  color: var(--green);
  background: rgba(0,255,65,0.04);
}

.btn.primary {
  background: var(--green);
  color: var(--bg);
  box-shadow: 0 12px 40px rgba(0,255,65,0.2);
}

.btn.secondary {
  border: 1px solid var(--green-line);
  color: var(--ink);
  background: rgba(0,255,65,0.04);
}

.btn.instagram {
  gap: 8px;
  border: 1px solid rgba(0,255,65,0.32);
  color: var(--green);
  background:
    linear-gradient(135deg, rgba(0,255,65,0.12), rgba(0,255,65,0.035)),
    rgba(3,7,3,0.72);
}

.btn.instagram span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid var(--green-line);
  border-radius: 8px;
  font: 700 11px/1 "JetBrains Mono", monospace;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(0,255,65,0.18);
}

.hero {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(380px, 520px);
  align-items: center;
  justify-content: center;
  gap: 64px;
  max-width: none;
  min-height: calc(100vh - 64px);
  margin: 0;
  padding: 110px max(24px, calc((100vw - var(--max)) / 2)) 80px;
  background: #050A05;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 58% 60% at 74% 44%, transparent 0%, rgba(5,10,5,0.55) 62%, rgba(5,10,5,0.88) 100%),
    linear-gradient(90deg, rgba(5,10,5,0.94) 0%, rgba(5,10,5,0.72) 40%, rgba(5,10,5,0.38) 100%);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(1.3) brightness(0.7);
}

.hero-grid {
  position: absolute;
  inset: 80px auto auto 24px;
  width: min(620px, 52vw);
  height: 440px;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(0,255,65,0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,65,0.8) 1px, transparent 1px);
  background-size: 32px 32px;
  transform: skewY(-5deg);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(0,255,65,0.07), transparent 68%);
  animation: float-orb 8s var(--ease) infinite alternate;
}

.hero-orb-one {
  top: 24px;
  right: 24%;
  width: min(480px, 100vw);
  height: min(480px, 100vw);
}

.hero-orb-two {
  left: 0;
  bottom: 24px;
  width: min(360px, 90vw);
  height: min(360px, 90vw);
  animation-duration: 10s;
}

.hero-copy,
.hero-mockup {
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 32px;
  padding: 8px 16px;
  border: 1px solid var(--green-line);
  border-radius: 999px;
  color: var(--green);
  background: rgba(0,255,65,0.06);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  animation: badge-enter 600ms var(--ease) 100ms both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(0,255,65,0.5);
  animation: dot-pulse 2s var(--ease) infinite;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-family: "Space Grotesk", "Heebo", sans-serif;
  font-size: clamp(80px, 7vw, 96px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.word-line {
  display: block;
  overflow: hidden;
}

.hero-word {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  animation: word-up 1s var(--ease) both;
}

.delay-1 { animation-delay: 200ms; }
.delay-2 { animation-delay: 350ms; }
.delay-3 { animation-delay: 500ms; }
.delay-4 { animation-delay: 700ms; }

.green-word {
  color: var(--green);
  text-shadow: 0 0 80px rgba(0,255,65,0.6);
}

.hero-sub {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.85;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0 16px;
}

.trust-line {
  max-width: 640px;
  color: var(--dim);
  font-size: 14px;
}

.discord-float {
  transform-style: preserve-3d;
  animation: float-card 6s var(--ease) infinite;
  will-change: transform;
}

.hero-mockup {
  padding: 16px;
  border: 1px solid var(--green-line);
  border-radius: 20px;
  background: rgba(10, 18, 10, 0.84);
  box-shadow: 0 32px 100px rgba(0, 24, 8, 0.44), 0 0 40px rgba(0,255,65,0.15);
  backdrop-filter: blur(20px);
}

.float-chip {
  position: absolute;
  display: grid;
  gap: 4px;
  padding: 8px 16px;
  border: 1px solid var(--green-line);
  border-radius: 12px;
  background: rgba(5, 10, 5, 0.9);
  box-shadow: 0 18px 48px rgba(0,255,65,0.12);
  backdrop-filter: blur(16px);
  direction: ltr;
}

.float-chip strong,
.quote-row strong,
.stat-big,
.plan-top strong,
.console-top em {
  font-family: "JetBrains Mono", monospace;
}

.float-chip strong {
  color: var(--green);
  font-size: 13px;
}

.float-chip span {
  color: var(--muted);
  font-size: 12px;
}

.chip-one {
  top: -24px;
  left: -24px;
}

.chip-two {
  right: -24px;
  bottom: 128px;
}

.console-top {
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  color: var(--dim);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-style: normal;
}

.console-top span {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: var(--green);
}

.console-card,
.signal-card,
.quote-row,
.feature-card,
.activity-card,
.plan,
.faq details {
  border: 1px solid var(--hair);
  background: rgba(255,255,255,0.035);
}

.console-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px;
  border-radius: 14px;
}

.console-card small,
.signal-card p,
.thread-message b {
  color: var(--green);
  font-weight: 700;
}

.console-card h2 {
  margin: 4px 0 0;
  font-size: 24px;
}

.sample-tag {
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--green);
  color: var(--bg);
  font-size: 12px;
  font-weight: 700;
}

.quote-list {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}

.quote-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--muted);
}

.quote-row strong {
  color: var(--green);
  font-size: 12px;
}

.signal-card,
.thread-message {
  padding: 16px;
  border-radius: 14px;
}

.signal-card h3 {
  margin-bottom: 8px;
  color: var(--green);
}

.signal-card span,
.thread-message p {
  color: var(--muted);
}

.mini-thread {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.thread-message span,
.message span {
  display: block;
  color: var(--dim);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  margin-top: 2px;
}

.thread-message p {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.75;
}

.ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  direction: ltr;
  border-block: 1px solid var(--hair);
  background: rgba(0,255,65,0.035);
}

.bg-asset {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

.has-gradient-mask::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 20%, transparent 80%, var(--bg) 100%);
  pointer-events: none;
}

.section-divider {
  position: relative;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,255,65,0.15) 30%, rgba(0,255,65,0.25) 50%, rgba(0,255,65,0.15) 70%, transparent);
}

.ticker > :not(.bg-asset),
.stats-bar > :not(.bg-asset),
.before-after-section > :not(.bg-asset),
.why-us > :not(.bg-asset),
.benefits-section > :not(.bg-asset),
.activity-section > :not(.bg-asset),
.content-samples > :not(.bg-asset),
.daily-feed-section > :not(.bg-asset),
.channels-section > :not(.bg-asset),
.chart-section > *,
.proof-band > :not(.bg-asset),
.preview-section > :not(.bg-asset),
.fit-section > :not(.bg-asset),
.pricing-section > :not(.bg-asset),
.steps-section > :not(.bg-asset),
.faq-section > :not(.faq-wm),
.final-cta > :not(.bg-asset),
.site-footer > :not(.bg-asset) {
  position: relative;
  z-index: 2;
}

.ticker-bg {
  opacity: 0.035;
  filter: saturate(1.1);
}

.ticker-track {
  display: flex;
  justify-content: flex-start;
  width: max-content;
  gap: 48px;
  padding: 16px 0 16px 24px;
  color: var(--muted);
  font-weight: 500;
  animation: ticker 28s var(--ease) infinite;
  animation-delay: 800ms;
}

.ticker-track span {
  direction: rtl;
  unicode-bidi: plaintext;
  white-space: nowrap;
}

.stats-bar {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 48px;
  border-top: 1px solid rgba(0,255,65,0.1);
  border-bottom: 1px solid rgba(0,255,65,0.1);
  background: rgba(10,18,10,0.6);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 16px 48px;
}

.stat-num {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: #00FF41;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 30px rgba(0,255,65,0.3);
}

.stat-label {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(240,247,240,0.4);
  font-family: "JetBrains Mono", monospace;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(0,255,65,0.15);
}

.section,
.chart-section {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 110px 24px;
}

.split,
.preview {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: start;
}

.kicker {
  margin: 0 0 20px;
  color: var(--green);
  font-family: "Space Grotesk", "Heebo", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-shadow: 0 0 22px rgba(0,255,65,0.24);
}

.section h2,
.chart-section h2 {
  font-family: "Space Grotesk", "Heebo", sans-serif;
  font-size: clamp(52px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-head {
  max-width: 820px;
  margin-bottom: 48px;
}

.section-microcopy {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(240,247,240,0.58);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
}

.section-microcopy.centered {
  margin: 32px auto 0;
  text-align: center;
}

.before-after-section {
  overflow: hidden;
}

.before-after-section::after {
  content: "";
  position: absolute;
  inset: 20% auto auto 8%;
  z-index: 0;
  width: min(520px, 42vw);
  height: min(520px, 42vw);
  border: 1px solid rgba(0,255,65,0.08);
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(0,255,65,0.06), transparent 66%);
  transform: rotate(-12deg);
  pointer-events: none;
}

.before-after-section::before,
.daily-feed-section::before,
.channels-section::before,
.fit-section::before {
  content: "";
  position: absolute;
  inset: 24px;
  z-index: 1;
  pointer-events: none;
  border-radius: 24px;
  background:
    linear-gradient(180deg, var(--bg) 0%, transparent 20%, transparent 80%, var(--bg) 100%),
    linear-gradient(rgba(0,255,65,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,65,0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 42%, black 0%, transparent 72%);
}

.compare-bg {
  opacity: 0.05;
  filter: saturate(1.18) contrast(1.06);
}

.daily-bg {
  opacity: 0.05;
  object-position: center;
  filter: saturate(1.15) brightness(0.72);
}

.channels-bg {
  opacity: 0.05;
  object-position: center right;
  filter: saturate(1.12) brightness(0.68);
}

.fit-bg {
  opacity: 0.06;
  object-position: center;
  filter: saturate(1.2) brightness(0.78);
  mix-blend-mode: screen;
}

.compare-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1.08fr);
  gap: 24px;
  align-items: center;
}

.compare-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 18%;
  left: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,255,65,0.28), transparent);
  transform: translateY(-50%);
  pointer-events: none;
}

.compare-card,
.daily-terminal,
.channels-grid article,
.fit-card {
  border: 1px solid rgba(0,255,65,0.14);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.018)),
    rgba(5,10,5,0.78);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 22px 70px rgba(0, 24, 8, 0.24);
}

.compare-card {
  min-height: 420px;
  padding: 32px;
  border-radius: 20px;
  transition: transform 280ms var(--ease), border-color 280ms var(--ease), box-shadow 280ms var(--ease);
}

.compare-card:hover,
.channels-grid article:hover,
.fit-card:hover,
.terminal-row:hover {
  transform: translateY(-3px);
  border-color: rgba(0,255,65,0.36);
  box-shadow: inset 0 0 46px rgba(0,255,65,0.045), 0 24px 72px rgba(0,255,65,0.1);
}

.after-card {
  border-color: rgba(0,255,65,0.3);
  background:
    radial-gradient(ellipse at 18% 12%, rgba(0,255,65,0.16), transparent 44%),
    linear-gradient(145deg, rgba(0,255,65,0.09), rgba(255,255,255,0.018)),
    rgba(5,10,5,0.86);
}

.compare-label,
.fit-card span,
.channels-grid span,
.terminal-row em {
  display: inline-flex;
  color: var(--green);
  font-family: "Space Grotesk", "Heebo", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-shadow: 0 0 18px rgba(0,255,65,0.18);
}

.compare-card h3,
.fit-card h3 {
  margin: 24px 0 20px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.compare-card ul,
.fit-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.compare-card li,
.fit-card li {
  position: relative;
  padding-right: 18px;
}

.compare-card li::before,
.fit-card li::before {
  content: "";
  position: absolute;
  top: 0.82em;
  right: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0,255,65,0.5);
}

.before-card li::before,
.not-fit li::before {
  background: rgba(240,247,240,0.28);
}

.compare-vs {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(0,255,65,0.24);
  border-radius: 999px;
  color: var(--green);
  background: rgba(0,255,65,0.07);
  font: 700 16px/1 "JetBrains Mono", monospace;
  box-shadow: 0 0 34px rgba(0,255,65,0.13);
}

.benefits-section {
  overflow: hidden;
  background:
    radial-gradient(ellipse 42% 48% at 84% 16%, rgba(0,255,65,0.045), transparent 68%),
    rgba(0,255,65,0.01);
}

.benefits-bg {
  opacity: 0.06;
  filter: saturate(1.12);
}

.why-us {
  overflow: hidden;
  max-width: none;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(ellipse 58% 68% at 18% 10%, rgba(0,255,65,0.045), transparent 70%),
    #050A05;
}

.why-bg {
  opacity: 0.06;
  filter: saturate(1.08) contrast(1.05);
}

.why-us .section-head h2 span {
  color: var(--green);
  text-shadow: 0 0 42px rgba(0,255,65,0.24);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.why-item {
  min-height: 190px;
  padding: 28px 24px;
  border: 1px solid rgba(0,255,65,0.08);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.045), rgba(255,255,255,0.014)),
    rgba(13,26,13,0.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.045);
  transition: border-color 350ms var(--ease), transform 350ms var(--ease), box-shadow 350ms var(--ease);
}

.why-item:hover {
  border-color: rgba(0,255,65,0.2);
  transform: translateY(-3px);
  box-shadow: inset 0 0 38px rgba(0,255,65,0.04), 0 12px 40px rgba(0,24,8,0.3);
}

.why-icon {
  margin-bottom: 14px;
  font-size: 26px;
  line-height: 1;
}

.why-title {
  margin-bottom: 8px;
  color: #F0F7F0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.why-desc {
  color: rgba(240,247,240,0.5);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 300;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.feature-card {
  grid-column: span 3;
  min-height: 224px;
  padding: 24px;
  border-radius: 16px;
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), box-shadow 260ms var(--ease);
}

.feature-card.tall {
  min-height: 320px;
}

.feature-card.wide {
  grid-column: span 4;
}

.feature-card:hover,
.activity-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,255,65,0.35);
  box-shadow: inset 0 0 42px rgba(0,255,65,0.05), 0 18px 48px rgba(0,255,65,0.12);
}

.feature-card span,
.activity-icon {
  display: block;
  margin-bottom: 32px;
  color: var(--green);
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 700;
  text-shadow: 0 0 18px rgba(0,255,65,0.2);
}

.feature-card h3,
.activity-card h3 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.2;
}

.feature-card p,
.activity-card p,
.preview-copy p,
.site-footer p,
.faq p {
  color: var(--muted);
  line-height: 1.8;
}

.activity-section {
  overflow: hidden;
  max-width: none;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(0,255,65,0.018);
}

.activity-section::after,
.preview-section::after,
.proof-band::after,
.pricing-section::after,
.steps-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(5,10,5,0.78);
}

.activity-video,
.preview-video,
.proof-video,
.pricing-video,
.steps-video {
  opacity: 0.08;
  filter: saturate(1.35) brightness(0.8);
}

.proof-video {
  opacity: 0.06;
}

.pricing-video {
  opacity: 0.07;
}

.steps-video {
  opacity: 0.055;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.activity-card {
  min-height: 260px;
  padding: 24px;
  border-radius: 16px;
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), box-shadow 260ms var(--ease);
}

.activity-card.wide {
  grid-column: span 2;
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat-big {
  display: block;
  color: var(--green);
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1;
  text-shadow: 0 0 var(--counter-glow, 0px) rgba(0,255,65,0.5);
}

.stat-big.finished {
  animation: stat-finish 360ms var(--ease);
}

.mini-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 96px;
  margin-top: 24px;
}

.mini-bars i {
  display: block;
  width: 100%;
  min-width: 16px;
  border-radius: 4px 4px 0 0;
  background: var(--green);
  opacity: 0.78;
}

.content-samples {
  position: relative;
  z-index: 2;
  overflow: hidden;
  max-width: var(--max);
  margin: -24px auto 0;
  padding: 0 24px 64px;
}

.samples-copy {
  display: grid;
  gap: 8px;
  max-width: 520px;
  margin-bottom: 16px;
}

.samples-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", "Heebo", sans-serif;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.samples-banner-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
  margin: 0 0 16px;
  border: 1px solid rgba(0,255,65,0.14);
  border-radius: 16px;
  background:
    radial-gradient(ellipse 80% 90% at 22% 24%, rgba(0,255,65,0.12), transparent 58%),
    linear-gradient(135deg, rgba(0,255,65,0.07), rgba(0,255,65,0.012) 48%, rgba(3,7,3,0.9)),
    rgba(3,7,3,0.72);
}

.samples-banner-wrap::before {
  content: "";
  position: absolute;
  inset: 24px;
  opacity: 0.78;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(0,255,65,0.2) 8.5% 9.1%, transparent 9.5% 20%, rgba(0,255,65,0.28) 20.5% 21.1%, transparent 21.5% 34%, rgba(0,255,65,0.18) 34.5% 35.1%, transparent 35.5% 48%, rgba(0,255,65,0.34) 48.5% 49.1%, transparent 49.5% 63%, rgba(0,255,65,0.22) 63.5% 64.1%, transparent 64.5% 78%, rgba(0,255,65,0.3) 78.5% 79.1%, transparent 79.5% 100%),
    repeating-linear-gradient(0deg, transparent 0 23px, rgba(0,255,65,0.055) 24px 25px);
  mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
}

.samples-banner-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5,10,5,0.12), rgba(5,10,5,0.76)),
    radial-gradient(ellipse 60% 80% at 80% 20%, transparent, rgba(5,10,5,0.68));
  pointer-events: none;
}

.sample-cards {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 1.15fr;
  gap: 16px;
  align-items: stretch;
  perspective: 1100px;
}

.sample-card {
  position: relative;
  overflow: hidden;
  min-height: 168px;
  padding: 20px;
  border: 1px solid rgba(0,255,65,0.16);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(0,255,65,0.09), transparent 46%),
    rgba(4, 10, 4, 0.84);
  box-shadow: inset 0 0 34px rgba(0,255,65,0.035), 0 18px 54px rgba(0, 24, 8, 0.22);
  transform: translateY(0) rotateX(0);
  animation: sample-drift 7s var(--ease) infinite;
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), box-shadow 260ms var(--ease);
}

.sample-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 16% 20%, rgba(0,255,65,0.16), transparent 34%);
  opacity: 0.55;
  pointer-events: none;
}

.sample-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,255,65,0.38);
  box-shadow: inset 0 0 42px rgba(0,255,65,0.06), 0 24px 60px rgba(0,255,65,0.12);
}

.rating-card {
  margin-top: 24px;
  animation-delay: 900ms;
}

.update-card {
  margin-top: -12px;
  animation-delay: 1500ms;
}

.sample-topline,
.sample-metrics {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.02em;
  direction: ltr;
}

.sample-topline span {
  color: var(--muted);
}

.sample-topline strong,
.sample-metrics span {
  color: var(--green);
}

.sample-topline strong {
  font-family: "Space Grotesk", "Heebo", sans-serif;
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-shadow: 0 0 16px rgba(0,255,65,0.18);
}

.sample-card h3,
.sample-card p,
.sample-signal,
.sample-wave {
  position: relative;
  z-index: 1;
}

.sample-card h3 {
  margin: 24px 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.sample-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.sample-metrics {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 18px;
}

.sample-metrics span {
  padding: 7px 9px;
  border: 1px solid rgba(0,255,65,0.17);
  border-radius: 8px;
  background: rgba(0,255,65,0.055);
}

.sample-signal {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  direction: ltr;
}

.sample-signal i {
  display: block;
  width: 44px;
  height: 6px;
  border-radius: 99px;
  background: rgba(0,255,65,0.24);
}

.sample-signal i:nth-child(2) {
  width: 64px;
  background: rgba(0,255,65,0.5);
}

.sample-signal i:nth-child(3) {
  width: 28px;
}

.sample-wave {
  height: 38px;
  margin-top: 20px;
  border-bottom: 1px solid rgba(0,255,65,0.18);
  background:
    linear-gradient(135deg, transparent 0 18%, rgba(0,255,65,0.42) 19% 21%, transparent 22% 38%, rgba(0,255,65,0.32) 39% 41%, transparent 42% 58%, rgba(0,255,65,0.5) 59% 61%, transparent 62% 100%);
  opacity: 0.75;
}

.daily-feed-section {
  overflow: hidden;
  max-width: none;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(ellipse 44% 46% at 18% 22%, rgba(0,255,65,0.08), transparent 68%),
    #030703;
}

.daily-feed-section::after,
.channels-section::after,
.fit-section::after,
.disclaimer-section::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.daily-feed-section::after {
  inset: auto max(24px, calc((100vw - var(--max)) / 2)) 72px auto;
  width: min(420px, 42vw);
  height: 180px;
  border-radius: 24px;
  background:
    repeating-linear-gradient(0deg, rgba(0,255,65,0.08) 0 1px, transparent 1px 18px),
    linear-gradient(90deg, transparent, rgba(0,255,65,0.12), transparent);
  opacity: 0.32;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
}

.daily-terminal {
  position: relative;
  overflow: hidden;
  max-width: 980px;
  border-radius: 20px;
  padding: 8px;
}

.daily-terminal::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,255,65,0.7), transparent);
  opacity: 0.7;
}

.daily-terminal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0 44%, rgba(0,255,65,0.05) 45% 47%, transparent 48% 100%);
  opacity: 0.6;
  pointer-events: none;
  animation: terminal-scan 5.5s var(--ease) infinite;
}

.terminal-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 18px minmax(160px, 260px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 14px;
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), box-shadow 260ms var(--ease), background 260ms var(--ease);
}

.terminal-row + .terminal-row {
  margin-top: 6px;
}

.visible-row {
  background: rgba(0,255,65,0.035);
}

.locked-row {
  background: rgba(255,255,255,0.024);
}

.locked-row p,
.locked-row strong {
  filter: blur(3px);
  user-select: none;
}

.locked-row::after {
  content: "נעול למנויים";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  padding: 6px 10px;
  border: 1px solid rgba(0,255,65,0.18);
  border-radius: 8px;
  background: rgba(3,7,3,0.86);
  color: var(--green);
  font: 700 11px/1 "JetBrains Mono", monospace;
}

.feed-status {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 16px rgba(0,255,65,0.52);
}

.chart-status {
  border-radius: 3px;
}

.lock-status {
  background: rgba(240,247,240,0.32);
  box-shadow: none;
}

.terminal-row strong {
  font-size: 18px;
}

.terminal-row p {
  margin: 0;
  color: var(--muted);
}

.terminal-row em {
  justify-self: end;
  color: rgba(240,247,240,0.44);
}

.locked-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.locked-cta span {
  color: var(--dim);
  font-size: 14px;
}

.channels-section {
  overflow: hidden;
}

.channels-section::after {
  content: "#";
  top: 42px;
  left: max(24px, calc((100vw - var(--max)) / 2));
  z-index: 0;
  color: rgba(0,255,65,0.035);
  font: 700 clamp(160px, 18vw, 280px)/1 "JetBrains Mono", monospace;
  transform: rotate(-8deg);
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.channels-grid article {
  position: relative;
  overflow: hidden;
  min-height: 156px;
  padding: 20px;
  border-radius: 16px;
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), box-shadow 260ms var(--ease);
}

.channels-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, rgba(0,255,65,0.48), transparent 62%);
  opacity: 0.34;
}

.channels-grid article:nth-child(1),
.channels-grid article:nth-child(5) {
  grid-column: span 2;
}

.channels-grid p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.mid-cta {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto 80px;
  padding: 32px 48px;
  background: rgba(0,255,65,0.05);
  border: 1px solid rgba(0,255,65,0.15);
  border-radius: 16px;
  flex-wrap: wrap;
}

.mid-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 18% 50%, rgba(0,255,65,0.12), transparent 54%);
  opacity: 0.72;
  pointer-events: none;
}

.examples-cta::before {
  background:
    linear-gradient(90deg, rgba(5,10,5,0.78), rgba(5,10,5,0.48)),
    url("ChatGPT_Image_May_11_2026_06_08_11_PM.png") center/cover;
  opacity: 0.08;
}

.plans-cta::before {
  background:
    radial-gradient(ellipse at 84% 50%, rgba(0,255,65,0.15), transparent 46%),
    linear-gradient(90deg, rgba(0,255,65,0.045), rgba(0,255,65,0.015));
  opacity: 1;
  pointer-events: none;
}

.mid-cta > * {
  position: relative;
  z-index: 1;
}

.mid-cta p {
  margin: 0;
  font-size: 17px;
  color: rgba(240,247,240,0.8);
  font-weight: 300;
}

.mid-cta p strong {
  color: #F0F7F0;
  font-weight: 600;
}

.chart-section {
  overflow: hidden;
  max-width: none;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  background: #050A05;
}

.chart-wrap {
  overflow: hidden;
  height: 400px;
  border: 1px solid rgba(0,255,65,0.28);
  border-radius: 20px;
  background: rgba(3,7,3,0.9);
  box-shadow: 0 0 60px rgba(0,255,65,0.15);
}

.chart-controls {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  align-items: end;
  gap: 24px;
  margin: -16px 0 24px;
}

.symbol-form {
  display: grid;
  gap: 8px;
}

.symbol-form label,
.current-symbol,
.symbol-form small {
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.symbol-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--green-line);
  border-radius: 14px;
  background: rgba(3,7,3,0.86);
}

.symbol-field input {
  min-width: 0;
  border: 0;
  border-radius: 10px;
  padding: 0 12px;
  background: rgba(0,255,65,0.05);
  color: var(--ink);
  font: 500 14px/1 "JetBrains Mono", monospace;
  direction: ltr;
  text-transform: uppercase;
}

.symbol-field button,
.symbol-presets button {
  min-height: 42px;
  border: 1px solid var(--green-line);
  border-radius: 10px;
  background: rgba(0,255,65,0.08);
  color: var(--green);
  font: 700 13px/1 "Heebo", sans-serif;
  cursor: pointer;
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease), background 240ms var(--ease);
}

.symbol-field button {
  padding: 0 16px;
}

.symbol-field button:hover,
.symbol-presets button:hover,
.symbol-presets button.is-active {
  transform: translateY(-2px);
  border-color: rgba(0,255,65,0.5);
  background: rgba(0,255,65,0.14);
  box-shadow: 0 12px 34px rgba(0,255,65,0.13);
}

.symbol-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}

.symbol-presets button {
  padding: 0 12px;
  font-family: "JetBrains Mono", monospace;
}

.current-symbol {
  grid-column: 1 / -1;
  margin: 0;
}

.current-symbol strong {
  color: var(--green);
  direction: ltr;
  unicode-bidi: isolate;
}

.tradingview-widget-container {
  display: grid;
  place-items: center;
  height: 100%;
}

.chart-fallback {
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
}

.proof-band {
  position: relative;
  overflow: hidden;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
  padding: 48px max(24px, calc((100vw - var(--max)) / 2));
  border-block: 1px solid var(--hair);
  background: rgba(0,255,65,0.045);
}

.proof-band div {
  max-width: 360px;
}

.proof-band strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
}

.proof-band span {
  color: var(--muted);
}

.preview-section {
  overflow: hidden;
  background: transparent;
}

.preview {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.discord-shell {
  display: grid;
  grid-template-columns: 64px 190px minmax(0, 1fr);
  overflow: hidden;
  min-height: 430px;
  border: 1px solid var(--green-line);
  border-radius: 20px;
  background: rgba(10,18,10,0.88);
  box-shadow: 0 28px 70px rgba(0, 24, 8, 0.36), 0 0 40px rgba(0,255,65,0.12);
  direction: rtl;
}

.server-rail,
.channels,
.chat {
  padding: 16px;
}

.server-rail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #030703;
}

.server-rail span {
  width: 32px;
  height: 32px;
  border: 1px solid var(--hair);
  border-radius: 8px;
  background: rgba(0,255,65,0.08);
}

.server-rail span:first-child {
  background: var(--green);
}

.channels {
  display: grid;
  align-content: start;
  gap: 8px;
  border-inline: 1px solid var(--hair);
  color: var(--muted);
}

.channels strong {
  color: var(--ink);
  margin-bottom: 8px;
}

.channels span {
  padding: 8px;
  border-radius: 8px;
}

.channels .active {
  background: rgba(0,255,65,0.12);
  color: var(--green);
}

.chat {
  display: grid;
  align-content: center;
  gap: 16px;
}

.message {
  max-width: 96%;
  padding: 16px;
  border: 1px solid var(--hair);
  border-radius: 14px;
  background: rgba(255,255,255,0.035);
}

.message b {
  color: var(--green);
}

.message p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.message.accent {
  border-color: rgba(0,255,65,0.28);
  background: rgba(0,255,65,0.06);
}

.pricing-section {
  overflow: hidden;
  max-width: none;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(180deg, #050A05 0%, rgba(0,255,65,0.035) 100%);
}

.fit-section {
  overflow: hidden;
  max-width: none;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(ellipse 46% 58% at 86% 16%, rgba(0,255,65,0.055), transparent 66%),
    #050A05;
}

.fit-section::after {
  inset: 17% 50% 14% auto;
  z-index: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0,255,65,0.24), transparent);
  box-shadow: 0 0 64px rgba(0,255,65,0.18);
}

.fit-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  max-width: 980px;
}

.fit-card {
  padding: 32px;
  border-radius: 20px;
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), box-shadow 260ms var(--ease);
}

.is-fit {
  border-color: rgba(0,255,65,0.28);
  background:
    radial-gradient(ellipse at 12% 10%, rgba(0,255,65,0.14), transparent 42%),
    rgba(5,10,5,0.82);
}

.not-fit {
  border-color: rgba(240,247,240,0.12);
  background:
    radial-gradient(ellipse at 88% 10%, rgba(240,247,240,0.035), transparent 42%),
    rgba(5,10,5,0.74);
}

.not-fit ul {
  color: rgba(240,247,240,0.54);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 920px;
}

.pricing-intro {
  max-width: 760px;
  margin: -24px 0 32px;
  color: rgba(240,247,240,0.72);
  font-size: 17px;
  line-height: 1.85;
}

.plan {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  padding: 32px;
  border-radius: 20px;
  background: rgba(12,24,12,0.62);
  backdrop-filter: blur(24px);
  transition:
    opacity 0.7s cubic-bezier(.16,1,.3,1),
    transform 0.7s cubic-bezier(.16,1,.3,1),
    box-shadow 280ms var(--ease),
    border-color 280ms var(--ease);
}

.plan > * {
  position: relative;
  z-index: 1;
}

.plan.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.plan.featured {
  transition-delay: 0s;
}

.plan:not(.featured) {
  transition-delay: 0.12s;
}

.plan:hover {
  transform: translateY(-6px);
  border-color: rgba(0,255,65,0.35);
  box-shadow: 0 28px 80px rgba(0,255,65,0.15);
}

.plan.featured {
  color: var(--bg);
  background: linear-gradient(135deg, #00FF41 0%, #68FF7D 100%);
  box-shadow: 0 0 60px rgba(0,255,65,0.15);
}

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(5,10,5,0.24);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.plan-top span {
  display: block;
  color: var(--green);
  font-family: "Space Grotesk", "Heebo", sans-serif;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: 0 0 18px rgba(0,255,65,0.18);
}

.featured .plan-top span,
.featured .plan-top p,
.featured .plan-subtitle,
.featured .plan-desc,
.featured li {
  color: rgba(5,10,5,0.72);
}

.plan-subtitle {
  display: block;
  margin-top: 8px;
  color: rgba(240,247,240,0.62);
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
}

.plan-desc {
  max-width: 440px;
  margin: 16px 0 0;
  color: rgba(240,247,240,0.68);
  font-size: 14px;
  line-height: 1.75;
}

.plan-top strong {
  display: block;
  margin: 24px 0 8px;
  font-size: 64px;
  line-height: 1;
}

.plan-top small {
  font-size: 28px;
}

.plan ul {
  display: grid;
  gap: 8px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.plan li::before {
  content: "✓";
  margin-left: 8px;
  color: var(--green);
  font-weight: 700;
}

.featured li::before {
  color: var(--bg);
}

.full {
  width: 100%;
}

.featured .btn.primary {
  background: var(--bg);
  color: var(--ink);
  box-shadow: none;
}

.pricing-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 960px;
  margin-top: 24px;
}

.pricing-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(0,255,65,0.14);
  border-radius: 10px;
  background: rgba(0,255,65,0.045);
  color: rgba(240,247,240,0.74);
  font-size: 13px;
}

.steps-section {
  overflow: hidden;
  background: transparent;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  list-style: none;
}

.steps::before {
  content: "";
  position: absolute;
  top: 56px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,255,65,0.22), transparent);
  pointer-events: none;
}

.steps li {
  position: relative;
  z-index: 1;
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--hair);
  border-radius: 18px;
  background: rgba(255,255,255,0.025);
  counter-increment: step;
}

.steps li::before {
  content: "0" counter(step);
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 48px;
  border: 1px solid var(--green-line);
  border-radius: 999px;
  color: var(--green);
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.steps li:hover::before {
  transform: scale(1.05);
  border-color: rgba(0,255,65,0.6);
  box-shadow: 0 0 28px rgba(0,255,65,0.22);
}

.steps strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.steps span {
  color: var(--muted);
}

.join-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.join-links a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--green-line);
  border-radius: 10px;
  color: var(--green);
  font-weight: 700;
  background: rgba(0,255,65,0.04);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}

.join-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(0,255,65,0.14);
}

.inline-link {
  color: var(--green);
  font-weight: 700;
  border-bottom: 1px solid rgba(0,255,65,0.42);
  transition: border-color 220ms var(--ease), color 220ms var(--ease);
}

.inline-link:hover {
  border-color: var(--green);
}

.faq-section {
  overflow: hidden;
  background: rgba(0,255,65,0.014);
}

.faq-wm {
  position: absolute;
  top: 50%;
  right: max(24px, calc((100vw - var(--max)) / 2));
  z-index: 0;
  width: 300px;
  max-width: 42vw;
  opacity: 0.04;
  transform: translateY(-50%);
  filter: grayscale(100%);
  pointer-events: none;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq details {
  border-radius: 14px;
  padding: 16px 24px;
}

.faq summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
}

.faq p {
  margin: 16px 0 0;
}

.final-cta {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 110px 24px;
  text-align: center;
  background: #050A05;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5,10,5,0.92), rgba(5,10,5,0.68) 44%, rgba(5,10,5,0.96)),
    radial-gradient(ellipse 70% 70% at 50% 38%, transparent 0%, rgba(5,10,5,0.74) 76%);
}

.final-cta-bg {
  opacity: 0.28;
  filter: saturate(1.08) brightness(0.72);
}

.cta-orb {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(800px, 100vw);
  height: 480px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(0,255,65,0.1), transparent 68%);
  pointer-events: none;
  animation: float-orb 8s var(--ease) infinite alternate;
}

.final-cta h2 {
  position: relative;
  max-width: 820px;
  margin: 0 auto 32px;
  font-family: "Space Grotesk", "Heebo", sans-serif;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.disclaimer-section {
  position: relative;
  overflow: hidden;
  z-index: 2;
  padding: 60px 24px;
  background: #030703;
}

.disclaimer-section::before {
  inset: 0;
  background:
    radial-gradient(ellipse 55% 160% at 50% 0%, rgba(255,68,68,0.045), transparent 62%),
    linear-gradient(90deg, transparent, rgba(255,68,68,0.05), transparent);
}

.disclaimer-box {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 36px 40px;
  border: 1px solid rgba(255,68,68,0.12);
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(255,68,68,0.055), transparent 46%),
    rgba(255,68,68,0.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
}

.disclaimer-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.disclaimer-header h3 {
  margin: 0;
  color: rgba(255,68,68,0.6);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.disclaimer-box p {
  margin: 0;
  color: rgba(240,247,240,0.35);
  font-size: 13px;
  line-height: 1.85;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.final-cta-sub {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: -16px auto 32px;
  color: rgba(240,247,240,0.74);
  font-size: 18px;
  line-height: 1.85;
}

.site-footer {
  position: relative;
  z-index: 2;
  overflow: hidden;
  align-items: start;
  justify-content: space-between;
  gap: 48px;
  padding: 48px max(24px, calc((100vw - var(--max)) / 2)) 80px;
  border-top: 1px solid var(--hair);
  background: #030703;
}

.site-footer div {
  min-width: 220px;
}

.foot-legal {
  margin: 8px 0 0;
  color: rgba(240,247,240,0.25);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-align: center;
}

.mobile-join {
  position: fixed;
  z-index: 120;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: none;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--green);
  color: var(--bg);
  font-weight: 700;
  box-shadow: 0 18px 48px rgba(0,255,65,0.22);
}

.discord-float-contact,
.instagram-float-contact {
  position: fixed;
  z-index: 121;
  left: 24px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--green-line);
  border-radius: 999px;
  background: var(--green);
  color: var(--bg);
  box-shadow: 0 18px 48px rgba(0,255,65,0.22);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}

.discord-float-contact {
  bottom: 24px;
}

.instagram-float-contact {
  bottom: 92px;
}

.discord-float-contact:hover,
.instagram-float-contact:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: rgba(0,255,65,0.6);
  box-shadow: 0 22px 60px rgba(0,255,65,0.28);
}

.discord-float-contact svg,
.instagram-float-contact svg {
  width: 30px;
  height: 30px;
}

.reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

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

@keyframes word-up {
  from { opacity: 0; transform: translateY(110%); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(0,255,65,0.5); }
  50% { box-shadow: 0 0 24px rgba(0,255,65,0.7); }
}

@keyframes float-card {
  0%, 100% { transform: translateY(0) rotateY(-3deg) rotateX(2deg); }
  50% { transform: translateY(-8px) rotateY(-3deg) rotateX(2deg); }
}

@keyframes sample-drift {
  0%, 100% { transform: translateY(0) rotateX(0); }
  50% { transform: translateY(-6px) rotateX(1.2deg); }
}

@keyframes float-orb {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(16px, -24px) scale(1.04); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

@keyframes stat-finish {
  0% { transform: scale(1); }
  45% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes terminal-scan {
  0%, 100% { transform: translateY(-52%); opacity: 0; }
  24%, 68% { opacity: 0.55; }
  82% { transform: translateY(52%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-wrap,
  video {
    display: none;
  }

  * {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .plan,
  .hero-word,
  .sample-card {
    transition: none;
    animation: none;
    opacity: 1;
    transform: none;
  }

  .discord-float,
  .hero-orb,
  .cta-orb,
  .badge-dot,
  .daily-terminal::after,
  .ticker-track {
    animation: none;
  }

  #particles {
    display: none;
  }
}

@media (max-width: 1024px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .hero,
  .split,
  .preview,
  .plans-grid,
  .compare-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 80px;
  }

  h1 {
    font-size: clamp(56px, 10vw, 64px);
  }

  .feature-list,
  .activity-grid,
  .sample-cards,
  .steps,
  .channels-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card,
  .feature-card.wide,
  .activity-card,
  .activity-card.wide {
    grid-column: auto;
  }

  .update-card {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .compare-vs {
    margin: -6px auto;
  }

  .channels-grid article:nth-child(1),
  .channels-grid article:nth-child(5) {
    grid-column: auto;
  }

  .proof-band,
  .site-footer {
    display: grid;
  }
}

@media (max-width: 768px) {
  .hero-video-wrap {
    display: none;
  }

  .bg-asset {
    opacity: 0.05 !important;
  }

  video.bg-video,
  .faq-wm {
    display: none;
  }

  .section,
  .chart-section,
  .final-cta,
  .disclaimer-section {
    padding-block: 70px;
  }

  .kicker {
    font-size: 15px;
  }

  .compare-label,
  .fit-card span,
  .channels-grid span,
  .terminal-row em {
    font-size: 13px;
  }

  .feature-card span,
  .activity-icon {
    font-size: 13px;
  }

  .sample-topline strong,
  .plan-top span {
    font-size: 14px;
  }

  .stats-bar {
    gap: 0;
    padding: 32px 16px;
  }

  .stat-item {
    padding: 12px 24px;
  }

  .stat-divider {
    display: none;
  }

  .mid-cta {
    flex-direction: column;
    text-align: center;
    padding: 24px;
    margin: 0 24px 70px;
  }

  .chart-wrap {
    height: 300px;
  }

  .content-samples {
    margin-top: 0;
    padding-bottom: 70px;
  }

  .ticker-track {
    padding-left: 16px;
  }

  .compare-card,
  .fit-card,
  .why-item {
    min-height: auto;
    padding: 24px;
  }

  .terminal-row {
    grid-template-columns: 14px minmax(0, 1fr);
    align-items: start;
  }

  .terminal-row p,
  .terminal-row em {
    grid-column: 2;
  }

  .terminal-row em {
    justify-self: start;
  }

  .locked-row::after {
    position: relative;
    left: auto;
    top: auto;
    grid-column: 2;
    transform: none;
    width: max-content;
    margin-top: 4px;
  }

  .chart-controls {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .symbol-presets {
    justify-content: stretch;
  }

  .symbol-presets button {
    flex: 1 1 calc(33.333% - 8px);
  }

  .hero-mockup {
    animation: none;
  }

  .float-chip {
    display: none;
  }

  .discord-shell {
    grid-template-columns: 56px minmax(0, 1fr);
    min-height: auto;
  }

  .channels {
    display: none;
  }

  .compare-grid::before,
  .steps::before,
  .daily-feed-section::after,
  .channels-section::after,
  .fit-section::after {
    display: none;
  }

  .mobile-join {
    display: flex;
  }

  .discord-float-contact {
    bottom: 88px;
  }

  .instagram-float-contact {
    bottom: 156px;
  }

}

@media (max-width: 560px) {
  .site-header {
    padding: 16px;
  }

  .hero {
    padding-inline: 16px;
  }

  h1 {
    font-size: clamp(44px, 13vw, 52px);
  }

  .section h2,
  .chart-section h2,
  .final-cta h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .symbol-field {
    grid-template-columns: 1fr;
  }

  .symbol-field input,
  .symbol-field button {
    min-height: 44px;
  }

  .feature-list,
  .activity-grid,
  .sample-cards,
  .steps,
  .channels-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .rating-card,
  .update-card {
    margin-top: 0;
  }
}
