/* Checkout button in ebook modal – full width */
.ebook-pay-btn {
  width: 100%;
  font-size: 1rem;
  padding: 0.72rem 1rem;
  letter-spacing: 0.01em;
}

/* PayPal button in ebook modal – inherit btn-paypal full-width below */
.small-paypal-btn {
  width: 100%;
}
:root {
  --bg: #07131a;
  --bg-soft: #0d1f2a;
  --card: #102735;
  --text: #e9f5fb;
  --muted: #9fc0cf;
  --line: #2a4554;
  --accent: #27e29b;
  --accent-2: #1db4d1;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 10% 0%, #133043, var(--bg));
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
img:not(.tradingview-widget-container img) {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}
a, button, input, select, textarea, label {
  /* restore pointer events so forms and links work */
  pointer-events: auto;
}
.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}
.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(7, 19, 26, 0.9);
  position: sticky;
  top: 0;
  backdrop-filter: blur(6px);
  z-index: 20;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-downloads {
  white-space: nowrap;
  border-color: rgba(29, 180, 209, 0.45);
  color: #bfefff;
  background: linear-gradient(135deg, rgba(13, 35, 48, 0.82), rgba(9, 27, 37, 0.95));
}

.nav-downloads:hover {
  border-color: var(--accent-2);
  color: white;
  box-shadow: 0 12px 26px rgba(29, 180, 209, 0.2);
}

.nav-join-beta {
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(52, 248, 191, 0.85);
  background: linear-gradient(135deg, #20d8a5 0%, #37f4c0 42%, #17b8de 100%);
  color: #052219;
  box-shadow: 0 0 0 rgba(39, 226, 155, 0.25);
  animation: betaGlowPulse 2.4s ease-in-out infinite;
}

.nav-join-beta::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -45%;
  width: 42%;
  height: 330%;
  transform: rotate(24deg);
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0));
  animation: betaShimmerSweep 2.9s linear infinite;
}

.nav-join-beta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(39, 226, 155, 0.34), 0 0 16px rgba(39, 226, 155, 0.42);
}

.login-menu {
  position: relative;
}

.login-trigger {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(39, 226, 155, 0.55);
  background: radial-gradient(circle at 32% 28%, rgba(39, 226, 155, 0.25), rgba(16, 39, 53, 0.95));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.login-trigger:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(39, 226, 155, 0.2);
}

.login-icon-image {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 50%;
  filter: hue-rotate(96deg) saturate(1.2) brightness(0.95);
}

.login-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: rgba(9, 22, 30, 0.97);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.35rem;
  display: none;
  z-index: 30;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.35);
}

.login-dropdown a {
  display: block;
  color: var(--text);
  text-decoration: none;
  padding: 0.48rem 0.58rem;
  border-radius: 7px;
  font-weight: 600;
}

.login-dropdown a:hover {
  background: rgba(39, 226, 155, 0.14);
  color: var(--accent);
}

.login-menu:hover .login-dropdown,
.login-menu:focus-within .login-dropdown {
  display: block;
}

.site-meta-bar {
  border-bottom: 1px solid var(--line);
  background: rgba(4, 11, 15, 0.96);
}

.site-meta-row {
  display: flex;
  gap: 0.7rem;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
}

.status-pill,
.counter-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  font-size: 0.8rem;
}

.status-checking {
  color: #e6c86a;
  border-color: rgba(230, 200, 106, 0.45);
}

.status-live {
  color: var(--accent);
  border-color: rgba(39, 226, 155, 0.5);
}

.status-down {
  color: #ff8585;
  border-color: rgba(255, 133, 133, 0.55);
}

.counter-pill {
  color: var(--muted);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}
.brand > img:first-child {
  width: 50px;
  height: 50px;
}
.brand .brand-wordmark {
  width: auto;
  height: 44px;
  max-width: min(60vw, 420px);
  border-radius: 0;
  object-fit: contain;
}
.hero {
  padding: 3.2rem 0 2.4rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(7, 19, 26, 0.72), rgba(7, 19, 26, 0.35)),
    repeating-linear-gradient(
      to right,
      rgba(159, 192, 207, 0.08) 0,
      rgba(159, 192, 207, 0.08) 1px,
      transparent 1px,
      transparent 46px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(159, 192, 207, 0.05) 0,
      rgba(159, 192, 207, 0.05) 1px,
      transparent 1px,
      transparent 34px
    );
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.78;
  background:
    linear-gradient(to top, rgba(39, 226, 155, 0.95) 0 30%, transparent 30% 100%) 8% 70% / 10px 66px no-repeat,
    linear-gradient(to top, rgba(39, 226, 155, 0.9) 0 38%, transparent 38% 100%) 16% 58% / 10px 80px no-repeat,
    linear-gradient(to top, rgba(255, 95, 122, 0.9) 0 24%, transparent 24% 100%) 24% 68% / 10px 58px no-repeat,
    linear-gradient(to top, rgba(39, 226, 155, 0.95) 0 48%, transparent 48% 100%) 32% 50% / 10px 92px no-repeat,
    linear-gradient(to top, rgba(255, 95, 122, 0.9) 0 28%, transparent 28% 100%) 40% 64% / 10px 64px no-repeat,
    linear-gradient(to top, rgba(39, 226, 155, 0.95) 0 52%, transparent 52% 100%) 48% 46% / 10px 100px no-repeat,
    linear-gradient(to top, rgba(39, 226, 155, 0.9) 0 34%, transparent 34% 100%) 56% 61% / 10px 72px no-repeat,
    linear-gradient(to top, rgba(255, 95, 122, 0.9) 0 22%, transparent 22% 100%) 64% 71% / 10px 54px no-repeat,
    linear-gradient(to top, rgba(39, 226, 155, 0.9) 0 42%, transparent 42% 100%) 72% 55% / 10px 86px no-repeat,
    linear-gradient(to top, rgba(255, 95, 122, 0.88) 0 30%, transparent 30% 100%) 80% 63% / 10px 66px no-repeat,
    linear-gradient(to top, rgba(39, 226, 155, 0.92) 0 36%, transparent 36% 100%) 88% 60% / 10px 76px no-repeat,
    linear-gradient(to top, rgba(255, 95, 122, 0.9) 0 24%, transparent 24% 100%) 96% 68% / 10px 58px no-repeat,
    linear-gradient(to top, rgba(226, 240, 255, 0.65) 0 100%, transparent 100%) 8% 44% / 2px 96px no-repeat,
    linear-gradient(to top, rgba(226, 240, 255, 0.62) 0 100%, transparent 100%) 16% 36% / 2px 110px no-repeat,
    linear-gradient(to top, rgba(226, 240, 255, 0.62) 0 100%, transparent 100%) 24% 47% / 2px 90px no-repeat,
    linear-gradient(to top, rgba(226, 240, 255, 0.62) 0 100%, transparent 100%) 32% 28% / 2px 130px no-repeat,
    linear-gradient(to top, rgba(226, 240, 255, 0.62) 0 100%, transparent 100%) 40% 39% / 2px 112px no-repeat,
    linear-gradient(to top, rgba(226, 240, 255, 0.62) 0 100%, transparent 100%) 48% 24% / 2px 140px no-repeat,
    linear-gradient(to top, rgba(226, 240, 255, 0.62) 0 100%, transparent 100%) 56% 35% / 2px 118px no-repeat,
    linear-gradient(to top, rgba(226, 240, 255, 0.62) 0 100%, transparent 100%) 64% 49% / 2px 92px no-repeat,
    linear-gradient(to top, rgba(226, 240, 255, 0.62) 0 100%, transparent 100%) 72% 32% / 2px 126px no-repeat,
    linear-gradient(to top, rgba(226, 240, 255, 0.62) 0 100%, transparent 100%) 80% 42% / 2px 108px no-repeat,
    linear-gradient(to top, rgba(226, 240, 255, 0.62) 0 100%, transparent 100%) 88% 37% / 2px 116px no-repeat,
    linear-gradient(to top, rgba(226, 240, 255, 0.62) 0 100%, transparent 100%) 96% 48% / 2px 94px no-repeat;
  z-index: 1;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 0 0 0.7rem;
}
.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.bullets {
  margin: 0 0 1.2rem;
  padding-left: 1.2rem;
}
.bullets li { margin: 0.45rem 0; }
.hero-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(0,0,0,0.35);
  min-height: 360px;
  aspect-ratio: 16 / 10;
  position: relative;
}
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
  background: radial-gradient(circle at 20% 15%, rgba(39, 226, 155, 0.16), transparent 40%), #06131b;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  animation: heroSlideFade 42s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-split-media {
  position: absolute;
  inset: 0.65rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  padding: 0.65rem;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(5, 20, 30, 0.9), rgba(3, 13, 19, 0.96));
  border: 1px solid rgba(49, 95, 122, 0.42);
}

.hero-split-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  border: 1px solid rgba(63, 124, 156, 0.52);
  padding: 0.85rem;
  background: linear-gradient(165deg, rgba(10, 30, 41, 0.95), rgba(5, 15, 22, 0.95));
}

.hero-slide-1 { animation-delay: 0s; }
.hero-slide-2 { animation-delay: 6s; }
.hero-slide-3 { animation-delay: 12s; }
.hero-slide-4 { animation-delay: 18s; }
.hero-slide-5 { animation-delay: 24s; }
.hero-slide-6 { animation-delay: 30s; }
.hero-slide-7 { animation-delay: 36s; }

.hero-slide-2 img,
.hero-slide-4 img,
.hero-slide-7 img {
  object-fit: contain;
  object-position: center;
  padding: 1.1rem;
  background: linear-gradient(150deg, rgba(10, 34, 46, 0.92), rgba(4, 14, 20, 0.92));
}

.hero-slide-1 img {
  object-fit: contain;
  object-position: center;
  padding: 1rem;
  background: linear-gradient(150deg, rgba(8, 24, 34, 0.94), rgba(4, 12, 18, 0.96));
}

.hero-slide-3 .hero-split-media img:nth-child(2) {
  padding: 0.78rem;
}

.hero-slide-content {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  border: 1px solid rgba(54, 110, 141, 0.62);
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(4, 15, 23, 0.9), rgba(7, 26, 38, 0.82));
  backdrop-filter: blur(6px);
  padding: 0.9rem 1rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
  max-height: 48%;
  overflow: hidden;
}

.hero-slide-content h3 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.02rem, 2.05vw, 1.34rem);
  line-height: 1.28;
  color: #ecfaff;
}

.hero-slide-content p {
  margin: 0;
  color: #c1dae4;
  font-size: 0.89rem;
  line-height: 1.4;
}

.hero-slide-3 .hero-slide-content {
  max-height: 44%;
}

.hero-slide-3 .hero-slide-meta {
  font-size: 0.79rem;
  line-height: 1.35;
}

.hero-slide-meta {
  margin-top: 0.35rem;
  color: #8fffd2;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-carousel-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(120deg, transparent 0%, rgba(39, 226, 155, 0.08) 45%, transparent 55%) 0 0 / 220% 100% no-repeat,
    linear-gradient(180deg, rgba(0,0,0,0.02) 40%, rgba(0,0,0,0.32) 100%);
  animation: heroOverlaySweep 14s linear infinite;
}

.hero-indicators {
  position: absolute;
  left: 50%;
  bottom: 0.38rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.36rem;
}
.hero-indicator {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(197, 224, 237, 0.45);
  box-shadow: 0 0 0 1px rgba(28, 53, 66, 0.6);
  animation: indicatorPulse 42s linear infinite;
}
.hero-indicator-1 { animation-delay: 0s; }
.hero-indicator-2 { animation-delay: 6s; }
.hero-indicator-3 { animation-delay: 12s; }
.hero-indicator-4 { animation-delay: 18s; }
.hero-indicator-5 { animation-delay: 24s; }
.hero-indicator-6 { animation-delay: 30s; }
.hero-indicator-7 { animation-delay: 36s; }

.hero-carousel:hover .hero-slide,
.hero-carousel:hover .hero-carousel-overlay,
.hero-carousel:hover .hero-indicator {
  animation-play-state: paused;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.section {
  padding: 2.6rem 0;
}
.section.alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.08));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

#waitlist {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

#waitlist::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.38;
  background:
    linear-gradient(165deg, rgba(16, 39, 53, 0.88), rgba(7, 19, 26, 0.56)),
    repeating-linear-gradient(
      to right,
      rgba(39, 226, 155, 0.14) 0,
      rgba(39, 226, 155, 0.14) 1px,
      transparent 1px,
      transparent 42px
    );
}

#waitlist::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.32;
  pointer-events: none;
  background:
    linear-gradient(102deg, transparent 0%, rgba(39, 226, 155, 0.2) 48%, transparent 52%) 0 0 / 220% 100% no-repeat,
    linear-gradient(108deg, transparent 0%, rgba(29, 180, 209, 0.16) 48%, transparent 52%) 0 0 / 240% 100% no-repeat;
  animation: chartSweep 22s linear infinite;
}

#waitlist .container {
  position: relative;
  z-index: 2;
}

@keyframes chartSweep {
  0% {
    background-position: 150% 0, 180% 0;
  }
  100% {
    background-position: -80% 0, -100% 0;
  }
}
h2 {
  margin: 0 0 0.5rem;
  font-size: 1.9rem;
}
.section-sub {
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 1rem;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem;
  position: relative;
}
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(39,226,155,0.2) inset;
}

.price-card.coming-soon {
  border-color: rgba(29, 180, 209, 0.55);
  box-shadow: 0 0 0 1px rgba(29, 180, 209, 0.16) inset;
}
.badge {
  position: absolute;
  top: -10px;
  right: 12px;
  background: var(--accent);
  color: #07211a;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
}

.badge-soon {
  background: #1db4d1;
  color: #06212a;
}
.price {
  font-size: 2rem;
  margin: 0.4rem 0;
  font-weight: 700;
}
.price span { font-size: 0.95rem; color: var(--muted); }
.price-card ul {
  margin: 0.8rem 0 1rem;
  padding-left: 1.1rem;
}
.price-card li { margin: 0.45rem 0; }

.plan-with {
  font-size: 0.74em;
  font-weight: 600;
  opacity: 0.9;
  letter-spacing: 0.01em;
  text-transform: lowercase;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ticker-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #000000;
}

.ticker-wrap .tradingview-widget-container {
  max-width: 100%;
}

.ticker-bottom {
  margin-top: 0.4rem;
}

.chart-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 1rem;
}

.chart-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #081720;
  min-height: 480px;
  height: 480px;
}

.chart-main {
  min-height: 500px;
  height: 500px;
}

.chart-side {
  min-height: 500px;
  height: 500px;
}

.chart-widget,
.chart-widget .tradingview-widget-container__widget {
  width: 100%;
  height: 500px;
  min-height: inherit;
  display: block;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  gap: 0.9rem;
}

.quote-grid blockquote {
  margin: 0;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  background: var(--card);
  border-radius: 10px;
  padding: 1rem;
  color: var(--text);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(190px, 1fr));
  gap: 0.9rem;
}

.testimonial-card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 10px;
  padding: 1rem;
}

.testimonial-card p {
  margin: 0 0 0.7rem;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.beta-form,
.beta-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

#beta-message {
  grid-column: 1 / -1;
}
video, .social-proof img {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #02070a;
}
.social-proof img { width: 100%; display: block; }
.downloads {
  display: grid;
  gap: 0.6rem;
}

.ebook-section-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}

.ebook-section-copy,
.ebook-section-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(12, 28, 38, 0.96), rgba(8, 20, 28, 0.96));
  padding: 1.2rem;
}

.ebook-section-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.22);
}

.ebook-feature-list {
  margin: 0;
}

.ebook-quotes {
  margin-top: 1rem;
  display: grid;
  gap: 0.55rem;
}

.ebook-quotes blockquote {
  margin: 0;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(29, 180, 209, 0.28);
  border-left: 3px solid var(--accent-2);
  border-radius: 10px;
  background: rgba(8, 26, 35, 0.78);
  color: #d8f4ff;
  font-size: 0.92rem;
  line-height: 1.4;
}

.ebook-cover-frame {
  margin: 0;
  position: relative;
  perspective: 1200px;
}

.ebook-cover-image {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(39, 226, 155, 0.45);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.34s ease, filter 0.34s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.ebook-cover-flip {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.ebook-cover-flip .ebook-cover-image {
  max-width: none;
}

.ebook-cover-front,
.ebook-cover-back {
  display: block;
}

.ebook-cover-back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
}

.ebook-cover-caption {
  margin-top: 0.55rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

.ebook-intro-overlay {
  position: absolute;
  left: 50%;
  bottom: 2.1rem;
  transform: translateX(-50%);
  width: min(86%, 320px);
  border-radius: 10px;
  border: 1px solid rgba(29, 180, 209, 0.35);
  background: linear-gradient(160deg, rgba(6, 21, 31, 0.92), rgba(7, 27, 39, 0.92));
  padding: 0.58rem 0.68rem;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s ease, transform 0.26s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.32);
}

.ebook-intro-title {
  margin: 0 0 0.22rem;
  color: #bff3ff;
  font-size: 0.84rem;
  font-weight: 700;
}

.ebook-intro-text {
  margin: 0;
  color: #c5dde7;
  font-size: 0.75rem;
  line-height: 1.35;
}

@media (hover: hover) and (pointer: fine) and (min-width: 901px) {
  .ebook-cover-frame:hover .ebook-cover-flip {
    transform: rotateY(180deg) rotateX(2deg) translateY(-3px) scale(1.01);
  }

  .ebook-cover-frame:hover .ebook-cover-image {
    filter: saturate(1.06) brightness(1.02);
    box-shadow: 0 24px 36px rgba(0, 0, 0, 0.42), 0 0 18px rgba(39, 226, 155, 0.25);
  }

  .ebook-cover-frame:hover .ebook-intro-overlay {
    opacity: 1;
    transform: translateX(-50%) translateY(-3px);
  }
}

#waitlist,
#beta {
  padding: 2rem 0;
}

#waitlist .container,
#beta .container {
  width: min(900px, 92vw);
}

#waitlist .waitlist-form,
#beta .waitlist-form {
  max-width: 760px;
}

#waitlist h2,
#beta h2 {
  font-size: 1.65rem;
}

#waitlist .section-sub,
#beta .section-sub {
  margin-bottom: 0.95rem;
}

.download-release-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.download-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.release-card {
  position: relative;
  background: linear-gradient(180deg, rgba(15, 36, 49, 0.96), rgba(9, 24, 33, 0.96));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.15rem;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.release-card-live {
  border-color: rgba(39, 226, 155, 0.55);
  box-shadow: 0 0 0 1px rgba(39, 226, 155, 0.14) inset, 0 18px 34px rgba(0, 0, 0, 0.22);
}

.release-card-soon {
  border-color: rgba(29, 180, 209, 0.38);
}

.release-card h3 {
  margin: 0.25rem 0 0.45rem;
}

.release-card ul {
  margin: 0.8rem 0 1rem;
  padding-left: 1.1rem;
}

.release-card li {
  margin: 0.42rem 0;
}

.release-meta {
  color: var(--muted);
}

.release-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
  background: rgba(39, 226, 155, 0.14);
  color: #baffdf;
  border: 1px solid rgba(39, 226, 155, 0.25);
  font-size: 0.78rem;
  font-weight: 700;
}

.release-badge-soon {
  background: rgba(29, 180, 209, 0.12);
  color: #bfefff;
  border-color: rgba(29, 180, 209, 0.25);
}

.release-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.downloads-subheading {
  margin: 0 0 0.8rem;
  font-size: 1.15rem;
}
.downloads a {
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--line);
  background: #0d2431;
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
}
.downloads a:hover { border-color: var(--accent-2); }
.waitlist-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.waitlist-form label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.92rem;
}
.waitlist-form textarea,
.waitlist-form input,
.waitlist-form select {
  background: #0a1b25;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 8px;
  padding: 0.62rem;
}
.waitlist-form textarea { grid-column: 1 / -1; }
.waitlist-form button { width: fit-content; }
.btn {
  display: inline-block;
  border-radius: 9px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  padding: 0.58rem 0.95rem;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #34f8bf);
  color: #052219;
}
.btn-secondary {
  background: linear-gradient(135deg, #1ea5c2, #2fd3f0);
  color: #06212a;
}
.btn-outline {
  border-color: var(--line);
  color: var(--text);
  background: transparent;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 1rem 0 2rem;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(39, 226, 155, 0.1);
  color: var(--accent);
  border: 1px solid var(--accent);
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-icon:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
}
.social-icon svg {
  width: 18px;
  height: 18px;
}

.flow-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1rem;
  align-items: start;
}

.spotify-widget {
  position: relative;
  width: 100%;
  border: 1px solid rgba(39, 226, 155, 0.36);
  border-radius: 14px;
  padding: 0.72rem 0.8rem 0.78rem;
  background: linear-gradient(165deg, rgba(5, 16, 24, 0.96), rgba(8, 30, 38, 0.95));
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(29, 180, 209, 0.12) inset;
  backdrop-filter: blur(6px);
}

.spotify-widget-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #d6faff;
  font-size: 0.87rem;
}

.spotify-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1ed760;
  box-shadow: 0 0 10px rgba(30, 215, 96, 0.72);
}

.spotify-track {
  margin: 0.42rem 0 0.18rem;
  font-weight: 700;
  font-size: 1.01rem;
  color: #f0fbff;
}

.spotify-artist {
  margin: 0;
  color: #9dc7d6;
  font-size: 0.86rem;
}

.spotify-playlist {
  margin-top: 0.58rem;
  display: grid;
  gap: 0.34rem;
}

.spotify-track-btn {
  text-align: left;
  border: 1px solid rgba(73, 134, 160, 0.42);
  background: rgba(8, 30, 41, 0.7);
  color: #c8e5ef;
  border-radius: 8px;
  padding: 0.35rem 0.48rem;
  font-size: 0.77rem;
  cursor: pointer;
}

.spotify-track-btn:hover {
  border-color: rgba(39, 226, 155, 0.48);
  color: #e9fdff;
}

.spotify-track-btn.active {
  border-color: rgba(30, 215, 96, 0.72);
  background: linear-gradient(135deg, rgba(15, 50, 38, 0.86), rgba(7, 36, 27, 0.92));
  color: #d9ffe9;
}

.spotify-controls {
  margin-top: 0.62rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.62rem;
  align-items: center;
}

.spotify-toggle {
  border: 1px solid rgba(39, 226, 155, 0.55);
  background: linear-gradient(140deg, rgba(16, 52, 43, 0.9), rgba(9, 34, 29, 0.92));
  color: #d3ffe9;
  border-radius: 999px;
  padding: 0.38rem 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

.spotify-toggle:hover {
  border-color: #1ed760;
}

.spotify-volume-wrap {
  display: grid;
  gap: 0.24rem;
  color: #b6d5e0;
  font-size: 0.76rem;
}

#spotify-volume {
  width: 100%;
  accent-color: #1ed760;
}

.muted {
  color: var(--muted);
}
@media (max-width: 900px) {
  .hero-grid,
  .flow-grid,
  .pricing-grid,
  .ebook-section-grid,
  .download-release-grid,
  .download-plan-grid,
  .demo-grid,
  .waitlist-form,
  .chart-grid,
  .quote-grid,
  .testimonial-grid,
  .beta-grid {
    grid-template-columns: 1fr;
  }

  .chart-card,
  .chart-main,
  .chart-side {
    min-height: 360px;
    height: 360px;
  }

  .chart-widget,
  .chart-widget .tradingview-widget-container__widget {
    height: 360px;
  }

  .hero-slide-content {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    padding: 0.68rem 0.78rem;
  }

  .hero-slide-content p {
    font-size: 0.84rem;
  }

  .hero-slide-content {
    max-height: 52%;
  }

  .hero-slide-3 .hero-slide-content {
    max-height: 48%;
  }

  .hero-slide-3 .hero-slide-meta {
    font-size: 0.74rem;
  }

  .hero-split-media {
    inset: 0.5rem;
    gap: 0.5rem;
    padding: 0.5rem;
  }

  .hero-split-media img {
    padding: 0.78rem;
  }

  .site-meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .promo-slot {
    flex-direction: column;
    align-items: flex-start;
  }

  .promo-widget-copy,
  .promo-widget-shell {
    width: 100%;
  }

  .nav-join-beta {
    padding: 0.5rem 0.72rem;
    font-size: 0.88rem;
  }

  .login-trigger {
    width: 40px;
    height: 40px;
  }

  .brand .brand-wordmark {
    height: 32px;
    max-width: min(66vw, 280px);
  }

  .brand > img:first-child {
    width: 42px;
    height: 42px;
  }

  .footer {
    padding: 1.1rem 0 2.2rem;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .social-links {
    gap: 0.65rem;
  }

  .social-icon {
    width: 38px;
    height: 38px;
  }
}


/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem 1rem;
  max-width: 370px;
  width: 98vw;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  max-height: 96vh;
  overflow-y: auto;
}

/* Wider checkout modal for ebook payment */
.ebook-modal-content {
  max-width: 480px;
  padding: 2rem 2rem 1.6rem;
}
/* Progress Bar for Ebook Modal */
.ebook-progress-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0 1.2rem 0;
  padding: 0.2rem 0.1rem;
}
.progress-step {
  flex: 1;
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
  background: #0a1b25;
  border-radius: 6px;
  margin: 0 0.2rem;
  padding: 0.4rem 0.1rem;
  border: 1px solid var(--line);
  transition: background 0.2s, color 0.2s;
}
.progress-step.active {
  color: var(--accent);
  background: rgba(39, 226, 155, 0.08);
  border-color: var(--accent);
  font-weight: 600;
}

/* PayPal Button Styles */
.btn-paypal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: #ffc439;
  color: #222;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.72rem 1rem;
  margin-top: 0.5rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.15s, transform 0.12s;
}
.btn-paypal:hover {
  background: #ffb800;
  transform: translateY(-1px);
}
.btn-paypal:active {
  transform: translateY(0);
}
.paypal-logo {
  height: 1.25em;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
/* OR divider between payment options */
.paypal-or {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0.85rem 0 0.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.paypal-or::before,
.paypal-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
/* Checkout security note */
.checkout-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 1rem;
  text-align: center;
  letter-spacing: 0.01em;
}
.checkout-security-note svg {
  flex-shrink: 0;
  opacity: 0.7;
}

/* Ebook checkout status message */
#ebook-message {
  min-height: 1.2em;
  margin-top: 0.7rem;
  font-size: 0.93rem;
  text-align: center;
  transition: all 0.2s;
  border-radius: 6px;
  padding: 0;
}
#ebook-message:not(:empty) {
  padding: 0.45em 0.6em;
}
#ebook-message.error:not(:empty) {
  color: #ff6b6b;
  background: rgba(255, 100, 100, 0.09);
  border: 1px solid rgba(255, 100, 100, 0.2);
}
#ebook-message.success:not(:empty) {
  color: var(--accent);
  background: rgba(39, 226, 155, 0.08);
  border: 1px solid rgba(39, 226, 155, 0.25);
}

.close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--muted);
}

.close:hover {
  color: var(--text);
}

#feedback-form {
  display: grid;
  gap: 0.75rem;
}

#feedback-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

#feedback-form input,
#feedback-form textarea {
  background: #0a1b25;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 8px;
  padding: 0.62rem;
}

#feedback-message.success {
  color: #89ffc8;
}

#feedback-message.error {
  color: #ff8f8f;
}

@keyframes heroSlideFade {
  0% {
    opacity: 0;
    transform: scale(1.02);
  }
  5% {
    opacity: 1;
    transform: scale(1.005);
  }
  11% {
    opacity: 1;
    transform: scale(1);
  }
  15% {
    opacity: 0;
    transform: scale(1.015);
  }
  100% {
    opacity: 0;
    transform: scale(1.015);
  }
}

@keyframes heroOverlaySweep {
  0% {
    background-position: 0% 0, 0 0;
  }
  100% {
    background-position: 100% 0, 0 0;
  }
}
@keyframes indicatorPulse {
  0% {
    background: rgba(197, 224, 237, 0.45);
    transform: scale(1);
  }
  5% {
    background: #90ffd2;
    transform: scale(1.28);
  }
  11% {
    background: #90ffd2;
    transform: scale(1.2);
  }
  15% {
    background: rgba(197, 224, 237, 0.45);
    transform: scale(1);
  }
  100% {
    background: rgba(197, 224, 237, 0.45);
    transform: scale(1);
  }
}

@keyframes betaGlowPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(39, 226, 155, 0.18), 0 0 8px rgba(39, 226, 155, 0.2);
  }
  50% {
    box-shadow: 0 6px 22px rgba(39, 226, 155, 0.34), 0 0 20px rgba(39, 226, 155, 0.38);
  }
}

@keyframes betaShimmerSweep {
  0% {
    left: -50%;
  }
  100% {
    left: 125%;
  }
}

.modal-content h3 {
  margin: 0 0 0.5rem;
  color: var(--accent);
}

.modal-content p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 1rem;
}

#email-verify-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#email-verify-form label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.92rem;
}

#email-verify-form input,
#email-verify-form button {
  background: #0a1b25;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 8px;
  padding: 0.62rem;
}

#email-verify-form button {
  background: linear-gradient(135deg, var(--accent), #34f8bf);
  color: #052219;
  font-weight: 700;
  cursor: pointer;
  border: none;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.modal-message {
  margin-top: 1rem;
  padding: 0.8rem;
  border-radius: 6px;
  text-align: center;
  font-size: 0.9rem;
  display: none;
}

.modal-message.success {
  display: block;
  background: rgba(39, 226, 155, 0.1);
  color: var(--accent);
  border: 1px solid var(--accent);
}

.modal-message.error {
  display: block;
  background: rgba(255, 100, 100, 0.1);
  color: #ff6464;
  border: 1px solid #ff6464;
}

.hidden {
  display: none !important;
}

/* Feature List Styles */
.features-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.features-box::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 20px;
  width: 250px;
  height: 250px;
  transform: translateX(-50%);
  background-image: url("assets/Screenshot x.png");
  background-repeat: no-repeat;
  background-size: 150%;
  background-position: 78% center;
  clip-path: inset(0 0 0 20%);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.features-box h3 {
  margin: 0 0 1rem;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.feature-list {
  margin: 0;
  padding-left: 1.2rem;
  list-style: none;
  position: relative;
  z-index: 1;
  margin-bottom: 1.2rem;
}

.feature-list li {
  margin: 0.6rem 0;
  color: var(--text);
  position: relative;
  padding-left: 1.2rem;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.feature-list strong {
  color: var(--accent);
}

/* Revenue block styles removed: .promo-slot, .promo-main-ad, .affiliate-grid, .affiliate-card, .promo-slot-label, etc. */

.offer-kicker {
  margin: 0 0 0.4rem;
  color: #baffdf;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ebook-offer-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.2rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(39, 226, 155, 0.3);
  background: linear-gradient(135deg, rgba(16, 41, 55, 0.95), rgba(8, 30, 39, 0.98));
}

.ebook-price-was {
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 700;
}

.ebook-price-now {
  color: var(--accent);
  font-size: 1.55rem;
  font-weight: 800;
}

.ebook-offer-badge {
  padding: 0.32rem 0.58rem;
  border-radius: 999px;
  background: rgba(39, 226, 155, 0.16);
  color: #baffdf;
  font-size: 0.8rem;
  font-weight: 700;
}

.ebook-offer-form {
  margin-top: 0.4rem;
}

/* Download Link Styling */
.download-link {
  display: inline-block;
  padding: 0.75rem 0.9rem !important;
  cursor: pointer;
  transition: all 0.2s ease;
}

.download-link:hover {
  background: #0f3544 !important;
  border-color: var(--accent) !important;
  color: var(--accent) !important;
}

#waitlist-message.success {
  color: var(--accent);
}

#waitlist-message.error {
  color: #ff6464;
}

