/* Precision Trader Starter Website */

:root {
  --black: #080b0f;
  --graphite: #13161c;
  --slate: #1e232b;
  --line: #2a313c;
  --blue: #006efd;
  --blue-light: #00a4ff;
  --green: #00d084;
  --text: #f3f6fb;
  --muted: #a8b0bd;
  --danger: #ff4d4d;
  --radius: 18px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(0, 110, 253, 0.18), transparent 35%),
    radial-gradient(circle at top left, rgba(0, 164, 255, 0.08), transparent 30%),
    var(--black);
}

a {
  color: inherit;
  text-decoration: none;
}
/* ===== MARKET STRIP ===== */

.market-strip {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
}

.market-track {
  display: flex;
  gap: 42px;
  width: max-content;
  padding: 10px 0;
  animation: tickerMove 28s linear infinite;
}

.market-track span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.market-track span:nth-child(odd) {
  color: var(--green);
}

.market-track span:nth-child(even) {
  color: var(--blue-light);
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
.site-header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 26px 36px;
  display: flex;
  align-items: center;
  gap: 42px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 11, 15, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.logo-img {
  height: 72px;
  width: auto;
  display: block;
}

.logo-text {
  display: block;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.logo small {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--muted);
  font-size: 0.95rem;
  margin-left: auto;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--blue-light);
}

.nav-cta {
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), #155dff);
  box-shadow: 0 10px 30px rgba(0, 110, 253, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 110, 253, 0.42);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: white;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 1.2rem;
}

.hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 42px 36px 70px;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 86px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

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

h1 {
  font-size: clamp(3.4rem, 5.8vw, 5.7rem);
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: -0.065em;
  margin-bottom: 26px;
  text-shadow: 0 18px 70px rgba(0, 110, 253, 0.18);
  max-width: 780px;
}

h1 span,
h2 span {
  color: var(--blue);
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.75;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin: 28px 0 34px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 14px;
  font-weight: 900;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 28px;
}

.stats-row div {
  padding: 22px 18px;
  border-right: 1px solid var(--line);
}

.stats-row div:last-child {
  border-right: 0;
}

.stats-row strong {
  display: block;
  font-size: 1.5rem;
}

.stats-row span {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.dashboard-card {
  position: relative;
  padding: 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(0, 110, 253, 0.22), transparent 35%),
    linear-gradient(180deg, rgba(30, 35, 43, 0.92), rgba(8, 11, 15, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

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

.dashboard-top div,
.mini-panels div {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}

.dashboard-top small,
.mini-panels small {
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}

.candles span {
  width: 12px;
  background: linear-gradient(to top, var(--blue), white);
  border-radius: 4px;
}

.candles span:nth-child(1) { height: 65px; }
.candles span:nth-child(2) { height: 92px; }
.candles span:nth-child(3) { height: 78px; }
.candles span:nth-child(4) { height: 126px; }
.candles span:nth-child(5) { height: 108px; }
.candles span:nth-child(6) { height: 144px; }
.candles span:nth-child(7) { height: 118px; }
.candles span:nth-child(8) { height: 152px; }
.candles span:nth-child(9) { height: 132px; }
.candles span:nth-child(10) { height: 168px; }
.candles span:nth-child(11) { height: 148px; }
.candles span:nth-child(12) { height: 178px; }
.candles span:nth-child(13) { height: 162px; }
.candles span:nth-child(14) { height: 194px; }
.candles span:nth-child(15) { height: 210px; }

.mini-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.bars,
.sparkline {
  height: 70px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,110,253,0.45), rgba(0,164,255,0.08));
}

.trusted,
.features,
.product-section,
.pricing,
.community,
.site-footer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 36px;
}

.trusted {
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.features h2,
.pricing h2,
.community h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.04em;
}

.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-grid article,
.pricing article {
  padding: 30px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(30, 35, 43, 0.86), rgba(8, 11, 15, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-grid article:hover,
.pricing article:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 164, 255, 0.45);
}

.feature-grid p,
.product-section p,
.pricing p,
.community p {
  color: var(--muted);
  line-height: 1.7;
}

.product-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 90px 36px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 52px;
  align-items: center;
}

.product-section h2 {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
}

.product-section li,
.pricing li {
  margin-bottom: 10px;
  color: var(--muted);
}

.product-card {
  position: relative;
  padding: 34px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(0, 110, 253, 0.16), transparent 35%),
    linear-gradient(180deg, rgba(30, 35, 43, 0.9), rgba(8, 11, 15, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.box-mockup {
  height: 280px;
  border-radius: 22px;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    radial-gradient(circle at top right, rgba(0, 110, 253, 0.2), transparent 40%),
    linear-gradient(135deg, #0c0f14, #1c2430);
  background-size: 38px 38px, 38px 38px, auto, auto;
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: grid;
  place-items: center;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 900;
  margin-bottom: 24px;
}

.pricing {
  max-width: 1400px;
  margin: 0 auto;
  padding: 90px 36px;
  text-align: center;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  text-align: left;
  gap: 24px;
  margin-top: 36px;
}

.price {
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--text) !important;
  margin-bottom: 4px;
}

.featured-price {
  border-color: var(--blue) !important;
  transform: translateY(-14px);
  box-shadow:
    0 34px 100px rgba(0, 110, 253, 0.22),
    0 24px 70px rgba(0, 0, 0, 0.35) !important;
}

.community {
  text-align: center;
}

.community p {
  max-width: 720px;
  margin: 0 auto 28px;
}

.site-footer {
  padding: 70px 36px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 36px;
  color: var(--muted);
}

.email-form label {
  display: block;
  color: var(--text);
  margin-bottom: 10px;
  font-weight: 800;
}

.email-form div {
  display: flex;
}

.email-form input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 14px;
  border-radius: 12px 0 0 12px;
}

.email-form button {
  border: 0;
  padding: 0 20px;
  background: var(--blue);
  color: white;
  font-weight: 800;
  border-radius: 0 12px 12px 0;
}

.risk {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

@media (max-width: 960px) {
  .site-header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 36px;
  display: flex;
  align-items: center;
  gap: 42px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 11, 15, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

  .mobile-menu-btn {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--graphite);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .product-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .pricing-grid,
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .featured-price {
    transform: none;
  }
  .hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 54px 36px 70px;
  min-height: 680px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

  .logo-img {
  height: 58px;
  width: auto;
  display: block;
}
}

@media (max-width: 620px) {
  .hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 76px 36px 70px;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}
}

  h1 {
  font-size: clamp(3.8rem, 6.4vw, 6.2rem);
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: -0.07em;
  margin-bottom: 30px;
  text-shadow: 0 18px 70px rgba(0, 110, 253, 0.18);
}

.feature-grid,
.pricing-grid,
.stats-row,
.dashboard-top,
.mini-panels {
    grid-template-columns: 1fr;
}

  .stats-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .email-form div {
    flex-direction: column;
  }

  .email-form input,
  .email-form button {
    border-radius: 12px;
  }

  .email-form button {
    padding: 14px;
    margin-top: 10px;
  }
  .site-header {
    padding: 18px 18px;
  }

  .logo-img {
    height: 48px;
  }

  .hero {
    padding: 46px 20px 50px;
  }

  .product-section,
  .pricing,
  .features,
  .community,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }}
.orb-preview {
  width: 100%;
  height: 100%;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.orb-top,
.orb-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.orb-top span {
  color: var(--text);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
}

.orb-top strong {
  color: var(--blue-light);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.orb-chart {
  flex: 1;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    rgba(0, 0, 0, 0.18);
  background-size: 32px 32px;
}

.orb-zone {
  position: absolute;
  left: 10%;
  top: 34%;
  width: 80%;
  height: 22%;
  background: rgba(0, 110, 253, 0.12);
  border-top: 1px solid rgba(0, 164, 255, 0.55);
  border-bottom: 1px solid rgba(0, 164, 255, 0.55);
}

.orb-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 42%;
  height: 2px;
  background: var(--blue-light);
  box-shadow: 0 0 24px rgba(0, 164, 255, 0.7);
}

.orb-vwap {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 32%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  transform: rotate(-6deg);
}

.orb-candles {
  position: absolute;
  inset: 18% 8% 12%;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.orb-candles i {
  width: 12px;
  border-radius: 6px;
  background: linear-gradient(to top, var(--blue), white);
  box-shadow: 0 0 18px rgba(0, 110, 253, 0.35);
}

.orb-candles i:nth-child(1) { height: 42%; }
.orb-candles i:nth-child(2) { height: 48%; }
.orb-candles i:nth-child(3) { height: 36%; }
.orb-candles i:nth-child(4) { height: 58%; }
.orb-candles i:nth-child(5) { height: 52%; }
.orb-candles i:nth-child(6) { height: 64%; }
.orb-candles i:nth-child(7) { height: 71%; }
.orb-candles i:nth-child(8) { height: 78%; }
.orb-candles i:nth-child(9) { height: 86%; }
.orb-candles i:nth-child(10) { height: 92%; }

.orb-bottom span {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
/* ===== PREMIUM EFFECTS ===== */

.hero,
.dashboard-card,
.product-card,
.feature-grid article,
.pricing article {
  animation: fadeUp 0.9s ease forwards;
}

.dashboard-card {
  max-width: 680px;
  animation: dashboardFloat 6s ease-in-out infinite;
}

.chart-line,
.orb-line {
  animation: glowPulse 2.8s ease-in-out infinite;
}

.feature-grid article:hover,
.product-card:hover,
.pricing article:hover,
.dashboard-card:hover {
  transform: translateY(-8px);
  transition: transform 0.25s ease;
}

/* ===== BUTTON EFFECTS ===== */

.btn,
.nav-cta {
  position: relative;
  overflow: hidden;
}

.btn::before,
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.18),
    transparent
  );
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn:hover::before,
.nav-cta:hover::before {
  transform: translateX(120%);
}

/* ===== CARD GLOW ===== */

.dashboard-card::after,
.product-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background:
    linear-gradient(
      135deg,
      rgba(0,110,253,0.12),
      transparent,
      rgba(0,164,255,0.1)
    );
  z-index: -1;
  filter: blur(18px);
}

/* ===== ANIMATIONS ===== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowPulse {
  0% {
    opacity: 0.55;
    box-shadow: 0 0 12px rgba(0,164,255,0.3);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 28px rgba(0,164,255,0.85);
  }

  100% {
    opacity: 0.55;
    box-shadow: 0 0 12px rgba(0,164,255,0.3);
  }
}

@keyframes dashboardFloat {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}
/* ===== SCANNER FEED ===== */

.scanner-feed {
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
}

.scanner-header,
.scanner-row {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr 0.7fr;
  align-items: center;
  gap: 10px;
}

.scanner-header {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.scanner-header strong {
  color: var(--blue-light);
  font-weight: 800;
}

.scanner-row {
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  animation: scannerPulse 3s ease-in-out infinite;
}

.scanner-row span {
  font-weight: 900;
  color: var(--text);
}

.scanner-row em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.82rem;
}

.scanner-row strong {
  color: var(--green);
  text-align: right;
}

.scanner-row:nth-child(3) {
  animation-delay: 0.5s;
}

.scanner-row:nth-child(4) {
  animation-delay: 1s;
}

.scanner-row:nth-child(5) {
  animation-delay: 1.5s;
}

@keyframes scannerPulse {
  0%, 100% {
    opacity: 0.72;
  }

  50% {
    opacity: 1;
  }
}
/* ===== ADVANCED DASHBOARD ===== */

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

/* WATCHLIST */

.watchlist-panel {
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
}

.watchlist-header,
.watch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.watchlist-header {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.watchlist-header strong {
  color: var(--blue-light);
}

.watch-row {
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.watch-row span {
  font-weight: 800;
  color: var(--text);
}

.watch-row strong {
  color: var(--green);
  font-size: 0.92rem;
}

/* METRIC GLOW */

.dashboard-top strong {
  text-shadow: 0 0 18px rgba(0,164,255,0.25);
}
.dashboard-lower {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
/* ===== TERMINAL DASHBOARD V2 ===== */

.terminal-dashboard {
  max-width: 700px;
  padding: 20px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(0,110,253,0.12), transparent 30%),
    linear-gradient(180deg, rgba(16,20,28,0.92), rgba(8,11,15,0.96));
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow:
    0 30px 90px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.terminal-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.metric-card {
  min-height: 110px;
  padding: 16px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(14px);
}

.metric-card small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.metric-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.6rem;
}

.mini-line {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  height: 24px;
  opacity: 0.9;
}

.blue-line {
  background:
    radial-gradient(circle at left, rgba(0,110,253,0.8), transparent 60%);
}

.green-line {
  background:
    radial-gradient(circle at left, rgba(0,208,132,0.8), transparent 60%);
}

.purple-line {
  background:
    radial-gradient(circle at left, rgba(120,80,255,0.8), transparent 60%);
}

.blue-line {
  background: linear-gradient(135deg, transparent 40%, rgba(0,110,253,0.85), transparent 65%);
}

.green-line {
  background: linear-gradient(135deg, transparent 40%, rgba(0,208,132,0.85), transparent 65%);
}

.purple-line {
  background: linear-gradient(135deg, transparent 40%, rgba(120,80,255,0.9), transparent 65%);
}

.equity-chart {
  padding: 16px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 18px;
  backdrop-filter: blur(12px);
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.chart-header span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

.chart-header button {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  border-radius: 8px;
  padding: 6px 10px;
}

.equity-plot {
  min-height: 200px;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 100% 25%, 70px 100%;
}

.y {
  position: absolute;
  left: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.y1 { top: 12%; }
.y2 { top: 30%; }
.y3 { top: 50%; }
.y4 { top: 70%; }

.equity-bars {
  position: absolute;
  left: 70px;
  right: 18px;
  bottom: 28px;
  height: 160px;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.equity-bars i {
  width: 9px;
  border-radius: 2px 2px 0 0;
  background:
    linear-gradient(to top,
      rgba(0,110,253,0.95),
      rgba(255,255,255,0.82));
  box-shadow: 0 0 12px rgba(0,110,253,0.22);
  opacity: 0.92;
}

.equity-bars i:nth-child(1) { height: 35%; }
.equity-bars i:nth-child(2) { height: 42%; }
.equity-bars i:nth-child(3) { height: 48%; }
.equity-bars i:nth-child(4) { height: 44%; }
.equity-bars i:nth-child(5) { height: 56%; }
.equity-bars i:nth-child(6) { height: 62%; }
.equity-bars i:nth-child(7) { height: 58%; }
.equity-bars i:nth-child(8) { height: 68%; }
.equity-bars i:nth-child(9) { height: 72%; }
.equity-bars i:nth-child(10) { height: 70%; }
.equity-bars i:nth-child(11) { height: 78%; }
.equity-bars i:nth-child(12) { height: 75%; }
.equity-bars i:nth-child(13) { height: 84%; }
.equity-bars i:nth-child(14) { height: 80%; }
.equity-bars i:nth-child(15) { height: 92%; }

.equity-line {
  position: absolute;
  left: 72px;
  right: 24px;
  bottom: 78px;
  height: 2px;
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      rgba(0,110,253,0.4),
      rgba(0,164,255,1));
  transform: rotate(-4deg);
  box-shadow: 0 0 18px rgba(0,164,255,0.38);
}

.orb-tag {
  position: absolute;
  right: 34px;
  top: 28px;
  z-index: 3;
  background: var(--blue);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 900;
}

.dashboard-lower {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.scanner-feed,
.watchlist-panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
}
/* ===== REALISTIC METRIC SPARKLINES ===== */

.mini-line {
  display: none;
}

.sparkline-svg {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  width: calc(100% - 32px);
  height: 42px;
  overflow: visible;
}

.sparkline-svg polyline {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px currentColor);
}

.sparkline-svg circle {
  fill: currentColor;
  filter: drop-shadow(0 0 8px currentColor);
}

.blue-spark {
  color: var(--blue);
}

.green-spark {
  color: var(--green);
}

.purple-spark {
  color: #8b5cf6;
}

.metric-card {
  min-height: 128px;
}

.metric-card strong {
  position: relative;
  z-index: 2;
}
/* ===== REAL SPARKLINES ===== */

.sparkline-svg {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 12px;
  width: calc(100% - 32px);
  height: 42px;
  overflow: visible;
}

.sparkline-svg polyline {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sparkline-svg circle {
  r: 3;
}

.blue-spark polyline,
.blue-spark circle {
  stroke: #1d9bf0;
  fill: #1d9bf0;
}

.green-spark polyline,
.green-spark circle {
  stroke: #00c853;
  fill: #00c853;
}

.purple-spark polyline,
.purple-spark circle {
  stroke: #8b5cf6;
  fill: #8b5cf6;
}

.metric-card {
  position: relative;
  overflow: hidden;
  min-height: 130px;
}

.metric-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.6rem;
  position: relative;
  z-index: 2;
}
/* ===== REALISTIC EQUITY CHART ===== */

.equity-svg {
  position: absolute;
  left: 58px;
  right: 18px;
  top: 20px;
  bottom: 24px;
  width: calc(100% - 76px);
  height: calc(100% - 44px);
  overflow: visible;
  z-index: 2;
}

.equity-svg path:first-of-type {
  filter: drop-shadow(0 0 12px rgba(0,164,255,0.65));
}

.equity-svg circle {
  filter: drop-shadow(0 0 12px rgba(0,208,132,0.85));
}

.volume-bars {
  position: absolute;
  left: 70px;
  right: 24px;
  bottom: 16px;
  height: 46px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  opacity: 0.45;
  z-index: 1;
}

.volume-bars i {
  width: 8px;
  border-radius: 2px 2px 0 0;
  background: rgba(0,164,255,0.75);
}

.volume-bars i:nth-child(1) { height: 24%; }
.volume-bars i:nth-child(2) { height: 38%; }
.volume-bars i:nth-child(3) { height: 30%; }
.volume-bars i:nth-child(4) { height: 46%; }
.volume-bars i:nth-child(5) { height: 34%; }
.volume-bars i:nth-child(6) { height: 58%; }
.volume-bars i:nth-child(7) { height: 42%; }
.volume-bars i:nth-child(8) { height: 66%; }
.volume-bars i:nth-child(9) { height: 54%; }
.volume-bars i:nth-child(10) { height: 72%; }
.volume-bars i:nth-child(11) { height: 48%; }
.volume-bars i:nth-child(12) { height: 78%; }
.volume-bars i:nth-child(13) { height: 62%; }
.volume-bars i:nth-child(14) { height: 84%; }
.volume-bars i:nth-child(15) { height: 68%; }

.equity-bars,
.equity-line {
  display: none;
}
/* ===== RESPONSIVE DASHBOARD POLISH ===== */

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-top: 48px;
  }

  .terminal-dashboard {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .terminal-metrics {
    grid-template-columns: 1fr;
  }

  .dashboard-lower {
    grid-template-columns: 1fr;
  }

  .equity-plot {
    min-height: 220px;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content {
    text-align: left;
  }
}

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

  .logo-img {
    height: 42px;
  }

  h1 {
    font-size: 2.65rem;
    line-height: 1;
    letter-spacing: -0.05em;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .terminal-dashboard {
    padding: 16px;
    border-radius: 22px;
  }

  .equity-svg {
    left: 42px;
    width: calc(100% - 58px);
  }

  .volume-bars {
    left: 52px;
  }

  .orb-tag {
    right: 14px;
    top: 16px;
    font-size: 0.62rem;
  }
}
/* ===== PRODUCT PAGE ===== */

.product-hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.product-preview-card {
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(0,110,253,0.16), transparent 30%),
    linear-gradient(180deg, rgba(16,20,28,0.94), rgba(8,11,15,0.98));

  border: 1px solid rgba(255,255,255,0.06);

  box-shadow:
    0 30px 90px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.preview-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.preview-top span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.preview-top strong {
  color: var(--green);
}

.preview-chart {
  position: relative;
  height: 280px;
  border-radius: 22px;
  overflow: hidden;

  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    rgba(255,255,255,0.02);

  background-size:
    100% 25%,
    70px 100%;

  border: 1px solid rgba(255,255,255,0.05);
}

.preview-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.preview-svg path {
  filter: drop-shadow(0 0 16px rgba(0,164,255,0.65));
  animation: previewGlow 3s ease-in-out infinite;
}

.preview-tag {
  position: absolute;
  right: 20px;
  top: 20px;

  background: var(--blue);

  color: white;

  padding: 10px 14px;

  border-radius: 10px;

  font-size: 0.72rem;

  font-weight: 800;

  letter-spacing: 0.08em;
}

.preview-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.preview-bottom div {
  padding: 14px;
  border-radius: 14px;

  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));

  border: 1px solid rgba(255,255,255,0.05);
}

.preview-bottom small {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.preview-bottom strong {
  font-size: 1.1rem;
}

.feature-showcase {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 36px;
}

.feature-showcase h2 {
  margin-bottom: 36px;
  font-size: clamp(2rem, 4vw, 4rem);
}

@keyframes previewGlow {
  0% {
    filter: drop-shadow(0 0 8px rgba(0,164,255,0.35));
  }

  50% {
    filter: drop-shadow(0 0 22px rgba(0,164,255,0.85));
  }

  100% {
    filter: drop-shadow(0 0 8px rgba(0,164,255,0.35));
  }
}

@media (max-width: 960px) {

  .product-hero {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 620px) {

  .preview-bottom {
    grid-template-columns: 1fr;
  }

}
/* ===== FEATURE CARDS ===== */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 30px;
  border-radius: 22px;

  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));

  border: 1px solid rgba(255,255,255,0.05);

  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.feature-card:hover {
  transform: translateY(-4px);

  border-color: rgba(0,164,255,0.25);

  background:
    linear-gradient(180deg, rgba(0,164,255,0.08), rgba(255,255,255,0.02));
}

.feature-icon {
  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 22px;

  border-radius: 16px;

  background:
    linear-gradient(135deg, rgba(0,110,253,0.2), rgba(0,164,255,0.08));

  border: 1px solid rgba(255,255,255,0.06);

  font-size: 1.4rem;

  color: var(--blue);
}

/* ===== TESTIMONIALS ===== */

.testimonials {
  max-width: 1400px;
  margin: 0 auto;
  padding: 90px 36px;
}

.testimonials h2 {
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 32px;
  border-radius: 24px;

  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));

  border: 1px solid rgba(255,255,255,0.05);

  transition:
    transform 0.22s ease,
    border-color 0.22s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);

  border-color: rgba(0,164,255,0.22);
}

.testimonial-card p {
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-card strong {
  color: white;
}

@media (max-width: 900px) {

  .testimonial-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

}
/* ===== PRODUCT PREVIEW MOTION ===== */

.preview-chart {
  position: relative;
}

.preview-chart::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(0,164,255,0.08),
      transparent
    );
  transform: translateX(-100%);
  animation: chartScan 4s ease-in-out infinite;
  z-index: 1;
}

.preview-svg {
  z-index: 2;
}

.preview-tag {
  z-index: 3;
  animation: tagPulse 2.5s ease-in-out infinite;
}

.preview-bottom div {
  transition:
    transform 0.22s ease,
    border-color 0.22s ease;
}

.preview-bottom div:hover {
  transform: translateY(-4px);
  border-color: rgba(0,164,255,0.28);
}

@keyframes chartScan {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes tagPulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(0,164,255,0);
  }

  50% {
    box-shadow: 0 0 24px rgba(0,164,255,0.55);
  }
}
/* ===== CHECKOUT PAGE ===== */

.checkout-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 90px 36px;

  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.checkout-benefits {
  margin-top: 32px;
}

.checkout-benefits p {
  margin-bottom: 14px;
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
}

.checkout-card {
  padding: 34px;
  border-radius: 28px;

  background:
    radial-gradient(circle at top right, rgba(0,110,253,0.16), transparent 30%),
    linear-gradient(180deg, rgba(16,20,28,0.94), rgba(8,11,15,0.98));

  border: 1px solid rgba(255,255,255,0.06);

  box-shadow:
    0 30px 90px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.checkout-card h2 {
  margin-bottom: 28px;
}

.checkout-row,
.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 0;

  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.checkout-total {
  margin-top: 18px;
  border-bottom: none;
}

.checkout-total strong {
  font-size: 1.8rem;
  color: white;
}

.checkout-btn {
  width: 100%;
  margin-top: 24px;
  padding: 18px;
  font-size: 1rem;
}

.checkout-note {
  margin-top: 18px;
  color: var(--muted);
  text-align: center;
  font-size: 0.82rem;
}

@media (max-width: 960px) {

  .checkout-section {
    grid-template-columns: 1fr;
  }

}
/* ===== LOGIN PAGE ===== */

.login-section {
  max-width: 680px;
  margin: 0 auto;
  padding: 100px 36px;
}

.login-card {
  padding: 42px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(0,110,253,0.18), transparent 34%),
    linear-gradient(180deg, rgba(16,20,28,0.94), rgba(8,11,15,0.98));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 30px 90px rgba(0,0,0,0.45);
}

.login-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.login-form label {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.login-form input {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: var(--text);
}

.login-btn {
  width: 100%;
  margin-top: 12px;
}
/* ===== MEMBER DASHBOARD ===== */

.member-dashboard {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
}

.dashboard-sidebar {
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,0.06);

  background:
    linear-gradient(180deg, rgba(10,14,20,0.98), rgba(6,8,12,1));
}

.dashboard-sidebar nav {
  margin-top: 40px;

  display: grid;
  gap: 14px;
}

.dashboard-sidebar nav a {
  padding: 14px 18px;
  border-radius: 14px;

  color: rgba(255,255,255,0.76);

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.dashboard-sidebar nav a:hover {
  background: rgba(0,164,255,0.12);
  color: white;
  transform: translateX(4px);
}

.dashboard-main {
  padding: 42px;
}

.dashboard-main h1 {
  margin-bottom: 30px;
}

.dashboard-main .terminal-metrics {
  margin-bottom: 26px;
}

@media (max-width: 960px) {

  .member-dashboard {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

}
/* ===== LEGAL PAGES ===== */

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 36px;
  color: rgba(255,255,255,0.84);
}

.legal-page h1 {
  margin-bottom: 24px;
}

.legal-page h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  color: white;
}

.legal-page p {
  line-height: 1.75;
  margin-bottom: 16px;
}
