*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-top: #050816;
  --bg-bottom: #020617;
  --fg: #f9fbff;
  --muted: #a2b0d8;
  --border-subtle: rgba(120, 140, 200, 0.35);

  --accent-primary-start: #38bdf8;
  --accent-primary-end: #a855f7;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  background:
    url("assets/novaai-logo.png") no-repeat 6% 18%,
    url("assets/chatbot-3ds-logo.png") no-repeat 94% 78%,
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.25), transparent 55%),
    radial-gradient(circle at top right, rgba(236, 72, 153, 0.24), transparent 55%),
    linear-gradient(to bottom, var(--bg-top), var(--bg-bottom));
  color: var(--fg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Inter", sans-serif;
}

body {
  line-height: 1.6;
  position: relative;
}

/* Breaking News bar */
.breaking-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 1.4rem;
  background: rgba(15, 23, 42, 0.96);
  border-bottom: 1px solid rgba(148, 163, 184, 0.45);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
}

.breaking-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #ef4444, #f97316);
  font-weight: 700;
}

.breaking-ticker {
  overflow: hidden;
  flex: 1;
}

.breaking-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.breaking-item {
  display: inline-flex;
  align-items: center;
  margin-right: 2.4rem;
  font-size: 1rem;
  color: var(--muted);
  text-decoration: none;
}

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

/* Header */
.site-header {
  padding: 1.2rem clamp(1.5rem, 5vw, 4rem);
}

.logo-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.logo {
  height: 92px;
  width: auto;
  object-fit: contain;
}

.logo-title {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 800;
  color: #facc15;
  text-shadow: 0 0 26px rgba(250, 204, 21, 0.9);
  white-space: nowrap;
}

.main-nav {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 1.2rem;
  overflow-x: auto;
  padding-bottom: 0.1rem;
  -webkit-overflow-scrolling: touch;
}

.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  position: relative;
  padding-bottom: 0.25rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--accent-primary-start),
    var(--accent-primary-end)
  );
  transition: width 0.25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.lang-pill {
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(15, 23, 42, 0.85);
  padding: 0.5rem 1.1rem;
  color: var(--fg);
  font-size: 0.9rem;
  cursor: pointer;
}

/* Hero */
.hero-shell {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  margin-top: 1.8rem;
}

.hero {
  flex: 0 0 60%;
  max-width: 640px;
}

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.subtitle {
  color: var(--muted);
  max-width: 40rem;
  margin-bottom: 0.9rem;
}

.creator-tagline {
  font-size: 0.95rem;
  margin-bottom: 1.3rem;
}

.creator-tagline span {
  font-weight: 600;
  background: linear-gradient(
    90deg,
    var(--accent-primary-start),
    var(--accent-primary-end)
  );
  -webkit-background-clip: text;
  color: transparent;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-media {
  flex: 0 0 320px;
  margin-left: auto;
  min-width: 260px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,0.65);
  border: 1px solid rgba(148, 163, 184, 0.6);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248,0.25), transparent 55%),
    radial-gradient(circle at bottom right, rgba(168, 85, 247,0.28), transparent 55%),
    #020617;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  font-size: 0.85rem;
  color: var(--muted);
}
.hero-promo-card {
  margin-top: 0.8rem;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.9);
  max-width: 380px;
}

.hero-promo-image {
  display: block;
  width: 100%;
  height: auto;
}

.floating-promo {
  animation: floatingPromo 10s ease-in-out infinite;
}

@keyframes floatingPromo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}


/* Buttons & glow */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.7rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background 0.18s ease;
}

.btn.primary {
  background: linear-gradient(
    90deg,
    var(--accent-primary-start),
    var(--accent-primary-end)
  );
  color: white;
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.85);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.95);
}

.btn.ghost {
  background: transparent;
  border-color: var(--border-subtle);
  color: var(--fg);
}

.btn.ghost:hover {
  background: rgba(15, 23, 42, 0.9);
}

.btn.launch {
  background: radial-gradient(circle at 0% 0%, #22c55e, #16a34a);
  color: white;
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.85);
}

.btn.launch:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(34, 197, 94, 0.98);
}

.btn.primary-sm {
  background: linear-gradient(
    90deg,
    var(--accent-primary-start),
    var(--accent-primary-end)
  );
  color: white;
  padding-inline: 1.1rem;
  padding-block: 0.5rem;
  font-size: 0.9rem;
}

.btn.outline-sm {
  border-color: rgba(148, 163, 184, 0.9);
  background: rgba(15, 23, 42, 0.9);
  color: var(--fg);
  padding-inline: 1.1rem;
  padding-block: 0.5rem;
  font-size: 0.9rem;
}

.btn.disabled {
  opacity: 0.6;
  cursor: default;
}

.glow-link {
  transition: color 0.2s ease, text-shadow 0.2s ease, transform 0.2s ease;
}

.glow-link:hover {
  color: #e5f2ff;
  text-shadow: 0 0 18px rgba(56, 189, 248, 0.9);
  transform: translateY(-1px);
}

/* Hero lead capture */
.hero-lead {
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248,0.16), transparent 55%),
    radial-gradient(circle at bottom right, rgba(168, 85, 247,0.16), transparent 55%),
    rgba(15, 23, 42, 0.96);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
}

.hero-lead-title {
  font-weight: 700;
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.hero-lead-copy {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.hero-lead-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.hero-lead-form input[type="email"],
.hero-lead-form input[type="tel"] {
  flex: 1 1 180px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  background: rgba(15, 23, 42, 0.96);
  padding: 0.6rem 0.9rem;
  color: var(--fg);
  font-size: 0.9rem;
}

.hero-lead-note {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Sections */
.section {
  padding: 2rem clamp(1.5rem, 5vw, 4rem);
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  color: #facc15;
  text-shadow: 0 0 18px rgba(250, 204, 21, 0.6);
}

.subtitle.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Brand scroller */
.brand-scroller {
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 0.5rem 0.3rem;
  margin-bottom: 1.3rem;
  background: rgba(15, 23, 42, 0.9);
}

.brand-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}

.brand-track .chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  margin-right: 0.7rem;
  text-decoration: none;
  color: var(--fg);
}

.symolive-chip { border: 1px solid rgba(244, 114, 182, 0.9); }
.casinai-chip { border: 1px solid rgba(251, 191, 36, 0.95); }
.eproute-chip { border: 1px solid rgba(52, 211, 153, 0.95); }
.novaai-chip { border: 1px solid rgba(96, 165, 250, 0.95); }
.ffl-chip    { border: 1px solid rgba(248, 250, 252, 0.9); }
.quick-chip  { border: 1px solid rgba(129, 140, 248, 0.95); }

/* Brand cards */
.brand-card {
  border-radius: 1.4rem;
  padding: 1.6rem;
  border: 1px solid rgba(248, 250, 252, 0.12);
  background:
    radial-gradient(circle at top left, rgba(129, 140, 248, 0.18), transparent 55%),
    rgba(15, 23, 42, 0.96);
  margin-bottom: 1.5rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
}

.brand-card.symolive { border-color: rgba(236, 72, 153, 0.7); }
.brand-card.casinai  { border-color: rgba(251, 191, 36, 0.75); }
.brand-card.eproute  { border-color: rgba(45, 212, 191, 0.75); }
.brand-card.ffl      { border-color: rgba(250, 204, 21, 0.85); }

.ffl-partner-card {
  margin-top: 0.9rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.9);
  display: flex;
  gap: 0.9rem;
  align-items: center;
}
.ffl-partner-main {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ffl-partner-mini-poster {
  width: 120px;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.85);
  display: block;
}

@media (min-width: 900px) {
  .ffl-partner-main {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .ffl-partner-mini-poster {
    width: 140px;
  }
}


.ffl-partner-photo {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(250, 204, 21, 0.9);
}

.ffl-partner-text p {
  margin: 0 0 0.2rem 0;
  font-size: 0.85rem;
}

.ffl-partner-link a {
  color: var(--accent-primary-start);
  font-weight: 500;
  text-decoration: none;
}

.ffl-partner-link a:hover {
  text-decoration: underline;
}
.brand-header {
  margin-bottom: 0.9rem;
}

.brand-title-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.98);
  font-size: 0.85rem;
}

.brand-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.brand-card p {
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.brand-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Suites / pricing */
.pricing .tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
  margin-top: 1.4rem;
}

.tier-card {
  border-radius: 1.5rem;
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(15, 23, 42, 0.98);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  color: var(--fg);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.95);
}

.tier-card .tier-name {
  font-weight: 600;
  font-size: 1.02rem;
}

.tier-card .tier-price {
  font-weight: 700;
  font-size: 1.15rem;
}

.tier-card .tier-copy {
  font-size: 0.9rem;
  color: var(--muted);
}

.tier-card .tier-list {
  list-style: none;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.tier-card .tier-list li::before {
  content: "• ";
  color: var(--accent-primary-start);
}

.tier-card.tier-signature {
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.26), transparent 55%),
    radial-gradient(circle at bottom right, rgba(168, 85, 247, 0.28), transparent 60%),
    rgba(15, 23, 42, 0.98);
}

.tier-card.tier-pro {
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.24), transparent 55%),
    radial-gradient(circle at bottom right, rgba(20, 184, 166, 0.28), transparent 60%),
    rgba(15, 23, 42, 0.98);
}

.tier-card.tier-elite {
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.24), transparent 55%),
    radial-gradient(circle at bottom right, rgba(250, 204, 21, 0.26), transparent 60%),
    rgba(15, 23, 42, 0.98);
}

.tier-card.tier-studio {
  background:
    radial-gradient(circle at top left, rgba(232, 121, 249, 0.24), transparent 55%),
    radial-gradient(circle at bottom right, rgba(251, 113, 133, 0.28), transparent 60%),
    rgba(15, 23, 42, 0.98);
}

.catalog-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Courses */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.course-card {
  border-radius: 1.2rem;
  padding: 1.1rem 1rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.9);
}

.course-card.highlight {
  border-color: rgba(56, 189, 248, 0.9);
  box-shadow: 0 18px 40px rgba(56, 189, 248, 0.8);
}

.course-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.course-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.course-card ul {
  list-style: none;
  font-size: 0.85rem;
  color: var(--muted);
}

.course-card li::before {
  content: "• ";
  color: var(--accent-primary-start);
}

/* Courses badge */
.courses-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  background: radial-gradient(circle at 0% 0%, rgba(56,189,248,0.7), rgba(129,140,248,0.8));
  color: #0b1020;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.8);
  margin-bottom: 0.8rem;
  animation: pulseGlow 2.4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 16px rgba(56, 189, 248, 0.7); transform: translateY(0); }
  50% { box-shadow: 0 0 26px rgba(168, 85, 247, 0.9); transform: translateY(-1px); }
  100% { box-shadow: 0 0 16px rgba(56, 189, 248, 0.7); transform: translateY(0); }
}

/* Contact */
.contact {
  padding-bottom: 3rem;
}

.contact-form {
  max-width: 640px;
  margin: 0 auto;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.field-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.9);
  background: rgba(15, 23, 42, 0.95);
  padding: 0.7rem 0.9rem;
  color: var(--fg);
  font-size: 0.95rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(148, 163, 184, 0.9);
}

.footer-note {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.95);
  padding: 1.2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-links {
  margin-top: 0.3rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-shell {
    flex-direction: column;
  }
  .hero {
    flex: 1 1 auto;
  }
  .hero-media {
    margin-left: 0;
  }
  .logo-title {
    white-space: normal;
    line-height: 1.2;
  }
}

@media (max-width: 768px) {
  .logo-row {
    flex-direction: row;
    align-items: center;
  }

  .main-nav {
    display: none;
  }

  .site-header {
    padding-inline: 1.2rem;
  }

  .section {
    padding-inline: 1.2rem;
  }

  .breaking-bar {
    padding-inline: 0.8rem;
  }
}


/* v13.1: mixed NovaAI colors only on scrolling messages */
.breaking-item,
.brand-track .chip {
  background-image: linear-gradient(120deg, #38bdf8, #a855f7, #facc15, #22c55e);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  color: transparent;
  animation: rainbowShift 14s ease-in-out infinite;
}

@keyframes rainbowShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* v14: Featured tracks strip */
.featured-tracks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
}

.featured-label {
  opacity: 0.85;
}

.featured-pill {
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  text-decoration: none;
  font-size: 0.82rem;
}

/* v14: Course promo text under cards */
.course-promo {
  margin-top: 0.65rem;
  padding-top: 0.55rem;
  border-top: 1px dashed rgba(148, 163, 184, 0.6);
  font-size: 0.82rem;
  color: var(--muted);
}

.course-promo-headline {
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.course-promo-hook {
  font-style: italic;
  margin-bottom: 0.2rem;
}

.course-promo-caption {
  font-size: 0.8rem;
}

/* ChatBot 3Ds sections */
#chatbot3ds-roi .note,
#chatbot3ds-compare .note,
#chatbot3ds-pricing .catalog-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

#chatbot3ds-leads .field {
  margin-bottom: 0.85rem;
}

#chatbot3ds-leads label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

#chatbot3ds-leads input,
#chatbot3ds-leads textarea {
  width: 100%;
  border-radius: 0.6rem;
  border: 1px solid var(--border-subtle);
  padding: 0.6rem 0.8rem;
  background: rgba(15, 23, 42, 0.85);
  color: var(--fg);
}

#chatbot3ds-leads input::placeholder,
#chatbot3ds-leads textarea::placeholder {
  color: var(--muted);
}

#chatbot3ds-leads .options label {
  display: block;
  font-weight: 400;
  margin-bottom: 0.35rem;
}

#chatbot3ds-leads .hidden {
  display: none;
}

/* Hero logos strip */
.hero-logos {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
}

.hero-logo-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at 0% 0%, rgba(250, 204, 21, 0.22), rgba(15, 23, 42, 0.95));
  box-shadow: 0 0 18px rgba(15, 23, 42, 0.85);
}

.hero-logo-item img {
  height: 32px;
  width: 32px;
  object-fit: contain;
}

.hero-logo-item span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Tweak brand scroller to feel smooth */
.brand-track {
  animation-duration: 42s;
}

/* Subtle NovaAI & ChatBot 3Ds watermark logos in background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    url("assets/novaai-logo.png") no-repeat 6% 18%,
    url("assets/chatbot-3ds-logo.png") no-repeat 94% 78%;
  background-size: 120px 120px, 140px 140px;
  opacity: 0.06;
  pointer-events: none;
  z-index: -1;
}
