/* ===============================
   ROOT VARIABLES
   =============================== */

:root {
  --bg-main: #0b0d14;
  --bg-dark: #12141c;
  --panel: rgba(255,255,255,0.05);
  --panel-hover: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.1);

  --purple: #9b87f5;
  --purple-light: #c4b5fd;
  --purple-dark: #7c6ee6;

  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
}

/* ===============================
   RESET / BASE
   =============================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(180deg, var(--bg-main), var(--bg-dark));
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
}

/* ===============================
   CONTAINER
   =============================== */

.container {
  max-width: 1400px; /* was 1200px*/
  margin-inline: auto;
  padding-inline: 24px;
} 

/* ===============================
   NAVBAR
   =============================== */

.navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(11,13,20,0.7);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
  text-decoration: none;
}

.logo span {
  color: var(--purple);
}


.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  display: flex;
  gap: 12px;
}

/* ===============================
   BUTTONS
   =============================== */

.btn {
  height: 44px;
  padding: 0 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: #fff;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  transition: background 0.2s ease, transform 0.2s ease;
}


.btn.primary {
  background: var(--purple);
  border: none;
}

.btn.primary:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
}

.btn.outline {
  background: transparent;
}

.btn.ghost {
  border: none;
  color: var(--text-muted);
}

/* ===============================
   HERO
   =============================== */

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 120px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.35;
  pointer-events: none;
}

.hero::before {
  background: var(--purple);
  top: 15%;
  left: 10%;
  animation: pulse 6s ease-in-out infinite;
}

.hero::after {
  background: var(--purple-light);
  bottom: 10%;
  right: 10%;
  animation: pulse 6s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--border);
  font-size: 12px;
  margin-bottom: 24px;
}

.hero-badge .muted {
  color: var(--text-muted);
}

.hero h1 {
  font-size: 56px;
  line-height: 1.05;
  margin: 0 0 24px;
}

.gradient {
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-stats strong {
  display: block;
  font-size: 24px;
}

.hero-stats span {
  font-size: 13px;
  color: var(--text-muted);
}

.hero-stats .divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-image {
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

/* ===============================
   SECTIONS
   =============================== */

.section {
  padding: 120px 0;
}

.section-dark {
  background: linear-gradient(180deg, var(--bg-dark), var(--bg-main));
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
  color: var(--text-muted);
}

/* ===============================
   FEATURES
   =============================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  font-size: 16px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
  background: var(--panel-hover);
  transform: translateY(-4px);
}

/* ===============================
   PRICING
   =============================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
}

.pricing-card.highlight {
  border-color: var(--purple);
  box-shadow: 0 0 0 1px var(--purple);
}

.pricing-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.price {
  margin: 16px 0;
}

.price .amount {
  font-size: 36px;
  font-weight: 700;
}

.price .period {
  font-size: 14px;
  color: var(--text-muted);
  margin-left: 4px;
}

.pricing-desc {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.pricing-features li {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.pricing-badge {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--purple);
  color: #fff;
  margin-bottom: 12px;
}


/* ===============================
   FAQ
   =============================== */

.faq details {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  margin-top: 12px;
  color: var(--text-muted);
}

/* ===============================
   FOOTER
   =============================== */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-copy {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
}


.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}


/* Override ALL browser link states */
.footer-links a:link,
.footer-links a:visited,
.footer-links a:active {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--purple);
  opacity: 0.9;
}


/* Mobile footer */
@media (max-width: 900px) {
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}

.footer-legal {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Voorkom blauwe tel-links op mobiel */
.footer a[href^="tel"] {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}

.footer a[href^="+31"]:hover {
  color: inherit;
}


/* ===============================
   SCROLL TO TOP
   =============================== */

#scrollTop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--purple);
  color: #fff;
  display: none;
  cursor: pointer;
}

/* ===============================
   ANIMATIONS
   =============================== */

@keyframes fade-left {
  from { opacity: 0; transform: translateX(-32px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fade-right {
  from { opacity: 0; transform: translateX(32px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

@keyframes pulse {
  0% { opacity: .25; }
  50% { opacity: .5; }
  100% { opacity: .25; }
}

.animate {
  opacity: 1;
}

.animate.fade-left,
.animate.fade-right {
  opacity: 0;
}

.animate:not(.fade-left):not(.fade-right) {
  opacity: 1;
}


.fade-left {
  animation: fade-left .9s ease forwards;
}

.fade-right {
  animation: fade-right .9s ease forwards;
}

.float {
  animation: float 6s ease-in-out infinite;
}

/* ===============================
   MOBILE (EXACT BREAKPOINT)
   =============================== */

@media (max-width: 900px) {

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero-stats .divider {
    display: none;
  }

  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 0;
  }
}

/* ===============================
   ACCESSIBILITY
   =============================== */

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ===============================
   CTA SECTION (CryptoFlow-style)
   =============================== */

.cta-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-main), var(--bg-dark));
}

.cta-box {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 48px;
  text-align: center;
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

/* Glow blobs */
.cta-box::before,
.cta-box::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.25;
  pointer-events: none;
}

.cta-box::before {
  background: var(--purple);
  top: -20%;
  left: -10%;
}

.cta-box::after {
  background: var(--purple-light);
  bottom: -20%;
  right: -10%;
}

.cta-box h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-text {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 16px;
  color: var(--text-muted);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.cta-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* Mobile */
@media (max-width: 900px) {
  .cta-section {
    padding: 80px 0;
  }

  .cta-box {
    padding: 48px 24px;
  }

  .cta-box h2 {
    font-size: 28px;
  }
}
/* CTA conversion polish */
.cta-primary {
  padding: 0 32px;
  height: 48px;
  font-size: 15px;
}

.cta-primary:hover {
  box-shadow: 0 0 0 6px rgba(155,135,245,0.15);
}

.cta-box {
  box-shadow:
    0 40px 120px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

/* ===============================
   FEATURE ICONS (CryptoFlow-style)
   =============================== */

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(155,135,245,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--purple);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

/* hover subtle glow */
.feature-card:hover .feature-icon {
  background: rgba(155,135,245,0.22);
}

/* ===============================
   HOW IT WORKS (CryptoFlow-style)
   =============================== */

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.how-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.how-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}

/* Step number */
.how-step {
  position: absolute;
  top: -14px;
  left: -14px;
  background: rgba(155,135,245,0.15);
  border: 1px solid var(--border);
  color: var(--purple);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
}

/* CTA under cards */
.how-cta {
  margin-top: 56px;
  text-align: center;
}

/* ===============================
   MOBILE
   =============================== */

@media (max-width: 900px) {
  .how-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .how-step {
    top: -10px;
    left: -10px;
  }
}


/* ===============================
   TRIAL PAGE
   =============================== */

.trial-container {
  max-width: 560px;
}

.trial-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
}

.trial .choice {
  display: flex;
  gap: 12px;
  padding: 14px;
  margin-top: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}

.trial label {
  font-size: 14px;
  font-weight: 600;
}

.trial input[type="text"],
.trial input[type="email"] {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text-main);
}

.trial .fineprint {
  margin-top: 16px;
  font-size: 13px;
  text-align: center;
  color: var(--text-muted);
}
/* ===============================
   TRIAL FORM (SparkSignals)
   =============================== */

.trial-container {
  max-width: 520px;
  margin: 0 auto;
}

.trial-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
}

/* Form labels */
.trial-card label {
  display: block;
  margin-top: 16px;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
}

/* Inputs */
.trial-card input[type="text"],
.trial-card input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text-main);
  font-size: 14px;
}

.trial-card input::placeholder {
  color: var(--text-muted);
}

/* Choice blocks */
.trial-card .choice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  margin-top: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.trial-card .choice input {
  margin-top: 4px;
}

.trial-card .choice strong {
  display: block;
  font-size: 14px;
}

.trial-card .choice span {
  font-size: 13px;
  color: var(--text-muted);
}

/* Fine print */
.trial-card .fineprint {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* ===============================
   TRIAL ERROR MESSAGE
   =============================== */

.trial-success,
.trial-error {
  margin-bottom: 24px;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.trial-success {
  background: rgba(155,135,245,0.12);     /* paars */
  border: 1px solid rgba(155,135,245,0.35); /* paars */
  color: var(--purple-light);

  border-radius: 16px;
  padding: 24px;
  text-align: center;

  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}




.trial-error {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.35);
  color: #fca5a5;
}


/* home op header van trial */

/* ===============================
   NAV BUTTON (Header only)
   =============================== */

.btn-nav {
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition: background 0.2s ease, border-color 0.2s ease;
}

/* ===============================
   TRIAL PAGE
   =============================== */

.trial-container {
  display: flex;
  justify-content: center;
}

.trial-card {
  width: 100%;
  max-width: 520px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.45);
}

/* form basics */
.trial-card label {
  display: block;
  margin-top: 18px;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
}

.trial-card input[type="text"],
.trial-card input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text-main);
  font-size: 15px;
}

.trial-card input:focus {
  outline: none;
  border-color: var(--purple);
}

/* channel choices */
.choice {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  margin-top: 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.choice strong {
  display: block;
  font-size: 14px;
}

.choice span {
  font-size: 13px;
  color: var(--text-muted);
}

/* fineprint */
.fineprint {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* success & error */
.trial-success {
  background: rgba(155,135,245,0.12);     /* paars */
  border: 1px solid rgba(155,135,245,0.35); /* paars */
  color: var(--purple-light);

  border-radius: 16px;
  padding: 24px;
  text-align: center;

  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}


.trial-error {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.35);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 24px;
  color: #fecaca;
}

.trial-card {
  opacity: 1;
}

/* FINAL trial success style */
.trial-success {
  background: linear-gradient(
    180deg,
    rgba(155,135,245,0.22),
    rgba(155,135,245,0.08)
  );
  border: 1px solid rgba(155,135,245,0.45);
  color: #e9e7ff;
}

/* ===============================
   CONTACT (centered)
   =============================== */

.contact-center {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

.contact-center .contact-card {
  width: 100%;
  max-width: 640px; /* breder dan trial */
}

/* reuse existing form styles */
.contact-form label {
  display: block;
  margin-top: 16px;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text-main);
}

.contact-form textarea {
  resize: vertical;
}

/* Mobile */
@media (max-width: 900px) {
  .contact-center {
    margin-top: 48px;
  }

  .contact-center .contact-card {
    max-width: 100%;
  }
}

.contact-card.center {
  text-align: center;
}



