:root {
  --bg-main: #070b08;
  --bg-deep: #030503;
  --bg-card: rgba(16, 23, 15, 0.82);
  --bg-card-strong: rgba(22, 33, 19, 0.94);
  --bg-soft: #0c120b;
  --green-bright: #ceee4b;
  --green-main: #a3ee4b;
  --green-muted: #7ada40;
  --green-deep: #46ce42;
  --text-main: #f4f7ef;
  --text-soft: #d8e2d0;
  --text-muted: #9ba895;
  --border-soft: rgba(163, 238, 75, 0.18);
  --border-strong: rgba(206, 238, 75, 0.35);
  --danger: #ff6868;
  --warning: #ffd166;
  --shadow-green: 0 0 34px rgba(163, 238, 75, 0.2);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(70, 206, 66, 0.14), transparent 34rem),
    radial-gradient(circle at top right, rgba(206, 238, 75, 0.12), transparent 30rem),
    linear-gradient(180deg, #080d07 0%, var(--bg-main) 40%, var(--bg-deep) 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(163, 238, 75, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(163, 238, 75, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 80%);
  z-index: -2;
}

img, svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--text-muted);
  line-height: 1.7;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
  text-align: center;
}

.section-pad {
  padding: 96px 0;
}

.slim-pad {
  padding: 76px 0;
}

.page-glow {
  position: fixed;
  width: 26rem;
  height: 26rem;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.22;
  pointer-events: none;
  z-index: -3;
}

.page-glow-one {
  top: 10%;
  left: -12rem;
  background: var(--green-deep);
}

.page-glow-two {
  right: -10rem;
  bottom: 8%;
  background: var(--green-bright);
}

.site-header {
  width: min(1240px, calc(100% - 28px));
  position: sticky;
  top: 14px;
  z-index: 50;
  margin: 14px auto 0;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 11, 8, 0.72);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-bright), var(--green-deep));
  color: #071006;
  font-size: 0.86rem;
  box-shadow: var(--shadow-green);
}

.brand-text {
  font-size: 1.02rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 14px;
  color: var(--text-soft);
  font-size: 0.94rem;
  border-radius: 999px;
  transition: 0.2s ease;
}

.site-nav a:hover {
  color: var(--text-main);
  background: rgba(163, 238, 75, 0.08);
}

.site-nav .nav-login {
  border: 1px solid var(--border-soft);
}

.site-nav .nav-cta {
  color: #071006;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green-bright), var(--green-muted));
  box-shadow: 0 0 20px rgba(163, 238, 75, 0.18);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  background: rgba(163, 238, 75, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text-main);
  border-radius: 99px;
}

.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  align-items: center;
  padding-top: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: 56px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-main);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green-bright);
  box-shadow: 0 0 0 0 rgba(206, 238, 75, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(206, 238, 75, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(206, 238, 75, 0); }
  100% { box-shadow: 0 0 0 0 rgba(206, 238, 75, 0); }
}

h1, h2, h3 {
  margin: 0;
  color: var(--text-main);
  letter-spacing: -0.055em;
}

h1 {
  max-width: 790px;
  margin-top: 20px;
  font-size: clamp(3rem, 5vw, 6.4rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.7rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.18;
}

.hero-lead {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: 1.1rem;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #071006;
  background: linear-gradient(135deg, var(--green-bright), var(--green-muted));
  box-shadow: 0 0 28px rgba(163, 238, 75, 0.24), 0 18px 40px rgba(0,0,0,0.35);
}

.button-primary:hover {
  box-shadow: 0 0 34px rgba(206, 238, 75, 0.34), 0 20px 44px rgba(0,0,0,0.4);
}

.button-secondary {
  color: var(--text-main);
  border: 1px solid var(--border-strong);
  background: rgba(163, 238, 75, 0.06);
}

.button-secondary:hover {
  border-color: rgba(206, 238, 75, 0.7);
  box-shadow: 0 0 22px rgba(163, 238, 75, 0.12);
}

.full {
  width: 100%;
}

.trust-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 8px 12px;
  color: var(--text-soft);
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.hero-visual {
  position: relative;
}

.terminal-card,
.feature-card,
.pain-card,
.screen-card,
.price-card,
details,
.final-box {
  background: linear-gradient(180deg, rgba(22, 33, 19, 0.84), rgba(9, 14, 8, 0.84));
  border: 1px solid var(--border-soft);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.dashboard-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.dashboard-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(206, 238, 75, 0.16), transparent 42%);
  pointer-events: none;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.85rem;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span,
.shot-header span {
  width: 9px;
  height: 9px;
  display: block;
  border-radius: 999px;
  background: rgba(163, 238, 75, 0.5);
}

.stat-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px;
}

.stat-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-card small,
.stat-card span,
.insight-card small {
  display: block;
  color: var(--text-muted);
  font-size: 0.76rem;
}

.stat-card strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--text-main);
  font-size: 1.18rem;
}

.stat-card.positive strong,
.profit {
  color: var(--green-main);
}

.loss {
  color: var(--danger);
}

.mini-chart {
  position: relative;
  height: 180px;
  margin: 0 20px 20px;
  padding: 18px;
  display: flex;
  align-items: end;
  gap: 9px;
  border-radius: 22px;
  background:
    linear-gradient(rgba(163,238,75,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(163,238,75,0.05) 1px, transparent 1px),
    rgba(0,0,0,0.2);
  background-size: 28px 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-chart span {
  flex: 1;
  min-width: 12px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--green-bright), rgba(70, 206, 66, 0.28));
  box-shadow: 0 0 16px rgba(163, 238, 75, 0.16);
}

.trade-table {
  position: relative;
  padding: 0 20px 20px;
}

.trade-row {
  display: grid;
  grid-template-columns: 0.8fr 0.9fr 0.65fr 0.75fr 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--text-soft);
  font-size: 0.87rem;
}

.trade-row.head {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tag {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.tag.short {
  color: #f7d0d0;
  background: rgba(255, 104, 104, 0.14);
}

.tag.long,
.tag.good {
  color: var(--green-bright);
  background: rgba(163, 238, 75, 0.12);
}

.tag.warn {
  color: var(--warning);
  background: rgba(255, 209, 102, 0.12);
}

.floating-card {
  position: absolute;
  right: -24px;
  bottom: 72px;
  max-width: 260px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(206, 238, 75, 0.92);
  color: #071006;
  box-shadow: 0 24px 70px rgba(0,0,0,0.42), 0 0 34px rgba(206, 238, 75, 0.22);
}

.floating-card small {
  color: rgba(7, 16, 6, 0.65);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.floating-card strong {
  display: block;
  margin-top: 8px;
  line-height: 1.25;
}

.problem {
  border-block: 1px solid rgba(163, 238, 75, 0.09);
  background: rgba(255, 255, 255, 0.015);
}

.problem h2,
.section-head h2,
.audience h2 {
  margin-top: 14px;
}

.problem p,
.section-head p,
.audience p {
  max-width: 740px;
  margin: 18px auto 0;
  font-size: 1.02rem;
}

.pain-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pain-card {
  padding: 22px;
  border-radius: 20px;
  color: var(--text-soft);
  font-weight: 750;
}

.pain-card::before {
  content: "";
  width: 9px;
  height: 9px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--green-main);
  box-shadow: 0 0 18px rgba(163,238,75,0.45);
}

.section-head {
  text-align: center;
}

.feature-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 28px 80px rgba(0,0,0,0.45), 0 0 28px rgba(163, 238, 75, 0.08);
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 16px;
  color: #071006;
  font-weight: 900;
  background: linear-gradient(135deg, var(--green-bright), var(--green-deep));
}

.feature-card p,
.screen-card p,
.price-card p {
  margin-bottom: 0;
}

.screen-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.screen-card {
  min-height: 100%;
  padding: 22px;
  border-radius: var(--radius-lg);
}

.large-screen {
  grid-row: span 2;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 24px;
}

.screen-shot {
  min-height: 220px;
  padding: 18px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(206, 238, 75, 0.12), transparent 44%),
    rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.screen-shot-list {
  min-height: 430px;
}

.shot-header {
  display: flex;
  gap: 6px;
  margin-bottom: 26px;
}

.shot-title {
  margin-bottom: 18px;
  font-weight: 850;
}

.fake-row {
  width: 100%;
  height: 44px;
  margin: 12px 0;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(163,238,75,0.17), rgba(255,255,255,0.045));
  border: 1px solid rgba(255,255,255,0.05);
}

.fake-row.strong {
  background: linear-gradient(90deg, rgba(206,238,75,0.36), rgba(122,218,64,0.09));
}

.fake-row.short {
  width: 74%;
}

.detail-shot,
.stats-shot {
  display: grid;
  place-items: center;
  gap: 14px;
}

.circle-meter {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: conic-gradient(var(--green-bright) 0 74%, rgba(255,255,255,0.08) 74% 100%);
  box-shadow: 0 0 30px rgba(163, 238, 75, 0.16);
}

.circle-meter span {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #081008;
  color: var(--green-bright);
  font-weight: 900;
}

.fake-note {
  width: 100%;
  height: 80px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px dashed rgba(163,238,75,0.2);
}

.donut {
  width: 136px;
  height: 136px;
  border-radius: 999px;
  background: conic-gradient(var(--green-bright) 0 58%, var(--danger) 58% 76%, rgba(255,255,255,0.09) 76% 100%);
  position: relative;
}

.donut::after {
  content: "58%";
  position: absolute;
  inset: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #081008;
  color: var(--text-main);
  font-weight: 900;
}

.bar-stack {
  width: 100%;
  display: grid;
  gap: 8px;
}

.bar-stack span {
  display: block;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-main), rgba(255,255,255,0.05));
}

.bar-stack span:nth-child(2) { width: 74%; }
.bar-stack span:nth-child(3) { width: 48%; }
.bar-stack span:nth-child(4) { width: 62%; }

.audience {
  background: rgba(255,255,255,0.015);
  border-block: 1px solid rgba(163, 238, 75, 0.09);
}

.audience-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
  align-items: center;
}

.audience p {
  margin-left: 0;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list div {
  padding: 18px 18px 18px 46px;
  position: relative;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--text-soft);
}

.check-list div::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 17px;
  color: var(--green-bright);
  font-weight: 900;
}

.check-list .not-for {
  border-color: rgba(255, 104, 104, 0.2);
  background: rgba(255, 104, 104, 0.06);
}

.check-list .not-for::before {
  content: "×";
  color: var(--danger);
}

.pricing-grid {
  max-width: 930px;
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.price-card {
  position: relative;
  padding: 34px;
  border-radius: var(--radius-xl);
}

.price-card.featured {
  border-color: rgba(206, 238, 75, 0.55);
  box-shadow: 0 34px 110px rgba(0,0,0,0.45), 0 0 38px rgba(163, 238, 75, 0.14);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 7px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-bright), var(--green-muted));
  color: #071006;
  font-weight: 900;
  font-size: 0.76rem;
}

.price-label {
  color: var(--green-main);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-card h3 {
  margin-top: 12px;
}

.price {
  margin: 22px 0 8px;
  color: var(--text-main);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.price span {
  color: var(--text-muted);
  font-size: 1rem;
  letter-spacing: 0;
}

.price-card ul {
  padding: 0;
  margin: 26px 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.price-card li {
  position: relative;
  padding-left: 26px;
  color: var(--text-soft);
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-bright);
  font-weight: 900;
}

.disclaimer {
  max-width: 860px;
  margin-top: 26px;
  text-align: center;
  font-size: 0.9rem;
}

.faq-list {
  max-width: 880px;
  margin-top: 34px;
  display: grid;
  gap: 12px;
}

details {
  padding: 0 22px;
  border-radius: 20px;
}

summary {
  padding: 22px 0;
  cursor: pointer;
  color: var(--text-main);
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--green-bright);
  font-size: 1.2rem;
}

details[open] summary::after {
  content: "–";
}

details p {
  margin: -4px 0 22px;
}

.final-cta {
  padding-top: 58px;
}

.final-box {
  padding: clamp(36px, 6vw, 68px);
  border-radius: 38px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(206,238,75,0.16), transparent 46%),
    linear-gradient(180deg, rgba(22, 33, 19, 0.88), rgba(9, 14, 8, 0.92));
}

.final-box h2 {
  max-width: 850px;
  margin: 14px auto 0;
}

.final-box p {
  max-width: 680px;
  margin: 18px auto 0;
}

.center-actions {
  justify-content: center;
}

.site-footer {
  padding: 48px 0 58px;
  border-top: 1px solid rgba(163, 238, 75, 0.1);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-grid p {
  max-width: 460px;
  margin-bottom: 0;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-content: start;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--green-main);
}

@media (max-width: 980px) {
  .site-header {
    border-radius: 22px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    padding: 12px;
    border: 1px solid var(--border-soft);
    border-radius: 22px;
    background: rgba(7, 11, 8, 0.96);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero-grid,
  .audience-grid,
  .screen-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: unset;
  }

  .feature-grid,
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-card {
    right: 18px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .brand-text {
    font-size: 0.92rem;
  }

  .section-pad {
    padding: 68px 0;
  }

  .slim-pad {
    padding: 56px 0;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4.4rem);
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .feature-grid,
  .pain-grid {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .trade-row {
    grid-template-columns: 0.6fr 0.8fr 0.55fr 0.6fr;
  }

  .trade-row span:last-child {
    display: none;
  }

  .mini-chart {
    height: 140px;
  }

  .screen-shot-list {
    min-height: 300px;
  }

  .floating-card {
    position: relative;
    inset: auto;
    margin: -18px auto 0;
  }

  .price-card {
    padding: 28px;
  }

  .footer-grid {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
