:root {
  --bg: #0b0e11;
  --bg-soft: #11161b;
  --panel: rgba(17, 22, 27, 0.82);
  --panel-strong: #131a21;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f5f7fa;
  --muted: #98a2b3;
  --accent-blue: #00e5ff;
  --accent-green: #39ff14;
  --shadow-blue: rgba(0, 229, 255, 0.24);
  --shadow-green: rgba(57, 255, 20, 0.16);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(0, 229, 255, 0.08), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(57, 255, 20, 0.08), transparent 18%),
    linear-gradient(180deg, #0b0e11 0%, #0d1117 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 88%);
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 20px auto 0;
  padding: 16px 20px;
  background: rgba(11, 14, 17, 0.78);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.brand {
  font-weight: 800;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
}

.site-nav a:hover,
.secondary-link:hover,
.site-footer a:hover {
  color: var(--accent-blue);
}

.nav-cta,
.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
  color: #041015;
  font-weight: 800;
  text-align: center;
  box-shadow:
    0 10px 30px var(--shadow-blue),
    0 0 32px var(--shadow-green);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover,
.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 36px var(--shadow-blue),
    0 0 38px rgba(57, 255, 20, 0.22);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 72px 0 48px;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  color: var(--accent-blue);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.trust-section h2,
.cta-panel h2 {
  margin: 14px 0 0;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.hero-text,
.benefit-card p,
.process-card p,
.risk-warning,
.trust-section h2 {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 60ch;
  margin: 24px 0 0;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.secondary-link {
  color: var(--text);
  font-weight: 600;
}

.hero-stats,
.trust-row,
.benefits-grid,
.process-grid,
.footer-top {
  display: grid;
}

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.hero-stats div,
.benefit-card,
.process-card,
.trust-section,
.cta-panel {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(19, 26, 33, 0.92), rgba(11, 14, 17, 0.86));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-stats div {
  padding: 18px;
  border-radius: 16px;
}

.hero-stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.3rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.device {
  position: absolute;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 13, 16, 0.92);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.device .screen {
  height: 100%;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(19, 26, 33, 0.92), rgba(11, 14, 17, 0.94)),
    rgba(11, 14, 17, 0.92);
}

.laptop {
  inset: 70px 40px 110px 0;
}

.phone {
  width: 240px;
  height: 480px;
  right: 0;
  top: 0;
  transform: rotate(7deg);
}

.screen-topbar,
.phone-header,
.trade-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.screen-topbar {
  gap: 6px;
  margin-bottom: 20px;
}

.screen-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.chart {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.05), rgba(11, 14, 17, 0.2));
}

.chart-wide {
  height: calc(100% - 30px);
  min-height: 380px;
}

.chart-tall {
  height: 290px;
  margin-top: 18px;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}

.candles {
  position: absolute;
  inset: 16% 12% 18%;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.candles.compact {
  inset: 18% 14% 18%;
}

.candle {
  position: relative;
  width: 18px;
  height: 44%;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.9), rgba(0, 229, 255, 0.3));
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.26);
}

.candle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -18px;
  bottom: -18px;
  width: 2px;
  background: rgba(255, 255, 255, 0.45);
  transform: translateX(-50%);
}

.candle.down {
  background: linear-gradient(180deg, rgba(255, 71, 117, 0.92), rgba(255, 71, 117, 0.38));
  box-shadow: 0 0 24px rgba(255, 71, 117, 0.18);
}

.candle.short {
  height: 28%;
}

.candle.tall {
  height: 62%;
}

.trend-line {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 24%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent-green), var(--accent-blue), transparent);
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.35);
  transform: rotate(-8deg);
}

.phone-header {
  font-size: 0.92rem;
  font-weight: 700;
}

.profit-pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(57, 255, 20, 0.12);
  color: var(--accent-green);
}

.entry-box {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 16%;
  height: 54px;
  border: 1px solid rgba(57, 255, 20, 0.45);
  border-radius: 14px;
  background: rgba(57, 255, 20, 0.08);
  box-shadow: 0 0 28px rgba(57, 255, 20, 0.08);
}

.trade-meta {
  gap: 14px;
  margin-top: 18px;
}

.trade-meta div {
  flex: 1;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.trade-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.trade-meta strong {
  display: block;
  margin-top: 6px;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.28;
}

.glow-blue {
  width: 220px;
  height: 220px;
  top: 60px;
  left: 60px;
  background: var(--accent-blue);
}

.glow-green {
  width: 180px;
  height: 180px;
  right: 20px;
  bottom: 70px;
  background: var(--accent-green);
}

.trust-section,
.benefits-section,
.process-section,
.final-cta,
.site-footer {
  margin-top: 28px;
}

.trust-section,
.cta-panel {
  padding: 28px;
  border-radius: 24px;
}

.trust-section h2 {
  margin-top: 10px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.trust-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.trust-row span {
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.48);
  text-align: center;
  filter: blur(0.2px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.benefits-grid,
.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.benefit-card,
.process-card {
  padding: 26px;
  border-radius: 22px;
}

.benefit-card h3,
.process-card h3 {
  margin: 18px 0 10px;
  font-size: 1.22rem;
}

.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.14);
}

.icon {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
}

.signal-icon::before,
.signal-icon::after,
.mentor-icon::before,
.mentor-icon::after,
.platform-icon::before,
.platform-icon::after {
  content: "";
  position: absolute;
}

.signal-icon::before {
  inset: 2px 3px 2px 3px;
  border-left: 2px solid var(--accent-green);
  border-bottom: 2px solid var(--accent-green);
  transform: skew(-24deg);
}

.signal-icon::after {
  right: 0;
  top: 1px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--accent-blue);
  border-right: 2px solid var(--accent-blue);
}

.mentor-icon::before {
  left: 4px;
  right: 4px;
  top: 2px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid var(--accent-blue);
}

.mentor-icon::after {
  left: 2px;
  right: 2px;
  bottom: 2px;
  height: 10px;
  border-radius: 999px 999px 6px 6px;
  border: 2px solid var(--accent-green);
}

.platform-icon::before {
  inset: 2px;
  border-radius: 7px;
  border: 2px solid var(--accent-blue);
}

.platform-icon::after {
  left: 7px;
  right: 7px;
  bottom: 4px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent-green);
  box-shadow: 0 -7px 0 var(--accent-green);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.24);
  color: var(--accent-green);
  font-weight: 800;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.primary-cta.large {
  min-width: 320px;
}

.site-footer {
  padding: 24px 0 40px;
}

.footer-top p,
.risk-warning {
  margin: 0;
}

.footer-top {
  grid-template-columns: 1fr;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.site-footer a {
  color: var(--accent-blue);
}

@media (max-width: 1080px) {
  .hero,
  .benefits-grid,
  .process-grid,
  .cta-panel,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .cta-panel {
    display: grid;
  }

  .primary-cta.large {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .site-header {
    position: static;
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    gap: 18px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .laptop {
    inset: 110px 0 70px 0;
  }

  .phone {
    width: 205px;
    height: 420px;
    right: 10px;
  }

  .trust-section,
  .benefit-card,
  .process-card,
  .cta-panel {
    padding: 22px;
  }
}
