html {
  scroll-behavior: smooth;
}

.hero-image {
  width: 100%;
  display: flex;
  justify-content: center;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    #0d1117;
  background-size: 50px 50px;
}

a {
  text-decoration: none;
}

/* BACKGROUND */

body::before,
body::after {
  content: "";
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.22;
}

body::before {
  background: #8b5cf6;
  top: -120px;
  right: -120px;
  animation: floatOrb1 12s ease-in-out infinite;
}

body::after {
  background: #6d28d9;
  bottom: -150px;
  left: -150px;
  animation: floatOrb2 15s ease-in-out infinite;
}

@keyframes floatOrb1 {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(30px) translateX(-20px);
  }
}

@keyframes floatOrb2 {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-20px) translateX(25px);
  }
}

.stars {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.stars span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(168, 85, 247, 0.9);
  border-radius: 50%;
  box-shadow:
    0 0 10px rgba(168, 85, 247, 0.8),
    0 0 20px rgba(168, 85, 247, 0.5);
  animation: twinkle 3s infinite ease-in-out;
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.2;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.8);
  }
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  animation: floatOrb 10s ease-in-out infinite;
}

.orb1 {
  width: 300px;
  height: 300px;
  background: #9333ea;
  top: 10%;
  left: 70%;
}

.orb2 {
  width: 220px;
  height: 220px;
  background: #6d28d9;
  bottom: 10%;
  left: 10%;
  animation-delay: 4s;
}

@keyframes floatOrb {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-30px) translateX(20px);
  }
}

/* HERO */

.hero {
  min-height: 100vh;
  padding: 40px 8%;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(109, 40, 217, 0.45) 0%, transparent 35%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background:
    radial-gradient(
      circle,
      rgba(162, 0, 255, 0.22) 0%,
      transparent 70%
    );
  top: -250px;
  right: -200px;
  filter: blur(40px);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background:
    radial-gradient(
      circle,
      rgba(0, 140, 255, 0.15) 0%,
      transparent 70%
    );
  bottom: -200px;
  left: -150px;
  filter: blur(50px);
  z-index: 0;
}

nav {

  display: flex;

  justify-content: space-between;

  align-items: center;

  width: 100%;

  padding: 20px 0;

  background: transparent;

  box-shadow: none;

  position: relative;

  z-index: 20;

}

.hero-content,
nav {
  position: relative;
  z-index: 2;
}

.site-logo {

  width: 520px;

  height: auto;

  display: block;

  margin: 0 auto;

  position: relative;

  top: 0;
  left: 0;

  z-index: 20;

  filter:
    drop-shadow(0 0 20px rgba(168,85,247,0.45));

  transition:
    transform 0.3s ease;
}

.site-logo:hover {
  transform: scale(1.03);
}

.install-btn {
  background: linear-gradient(135deg, #a855f7, #7c3cff);
  color: white;
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.35);
}

.install-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 0 30px rgba(168, 85, 247, 0.5),
    0 10px 30px rgba(168, 85, 247, 0.35);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  padding-top: 120px;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h2 {
  font-size: 5rem;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 25px;
  font-weight: 800;
  color: white;
  text-shadow:
    0 0 10px rgba(168, 85, 247, 0.8),
    0 0 20px rgba(168, 85, 247, 0.6),
    0 0 40px rgba(168, 85, 247, 0.4);
}

.hero-text p {
  margin-top: 25px;
  margin-bottom: 35px;
  font-size: 1.2rem;
  color: #c9d1d9;
  max-width: 650px;
  line-height: 1.8;
  opacity: 0.92;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: bold;
  transition: all 0.35s ease;
}

.primary-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #a855f7, #7c3cff);
  color: white;
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.35);
}

.primary-btn:hover {

    transform:
      translateY(-4px)
      scale(1.03);

    box-shadow:
      0 0 25px rgba(162, 0, 255, 0.6),
      0 0 60px rgba(162, 0, 255, 0.35);

}

.primary-btn::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 100%;
  top: 0;
  left: -120%;
  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,0.35),
      transparent
    );
  transition: 0.6s;
}

.primary-btn:hover::before {
  left: 120%;
}

.secondary-btn {
  border: 1px solid #444;
  color: white;
  background: transparent;
}

.secondary-btn:hover {
  background: #161b22;
  transform: translateY(-4px) scale(1.03);
}

.hero-image {
  flex: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
}

.hero-card-img {
  width: 100%;
  max-width: 760px;
  border-radius: 28px;
  transform-style: preserve-3d;
  box-shadow:
    0 0 50px rgba(138, 43, 226, 0.45),
    0 0 120px rgba(111, 0, 255, 0.25);
  transition: transform 0.3s ease;
  animation: floatCard 5s ease-in-out infinite;
}

.hero-card-img:hover {
  transform: scale(1.02);
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* SHARED SECTIONS */

.features,
.how-section,
.trust-section,
.roadmap-section,
.demo-section,
.supported-section,
.cta-section {
  padding: 100px 8%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.features h3,
.how-section h3,
.trust-section h3,
.roadmap-section h3,
.demo-section h3,
.supported-section h3,
.cta-section h3 {
  font-size: 2rem;
  margin-bottom: 50px;
}

.feature-grid,
.how-grid,
.trust-grid,
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* CARDS */

.feature-card,
.how-card,
.trust-card,
.roadmap-card {
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 40px 30px;
  border-radius: 26px;
  border: 1px solid rgba(168, 85, 247, 0.22);
  box-shadow:
    0 15px 45px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.feature-card:hover,
.how-card:hover,
.trust-card:hover,
.roadmap-card:hover {
  transform: translateY(-12px) scale(1.025);
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(168, 85, 247, 0.75);
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.45),
    0 0 35px rgba(168, 85, 247, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.feature-card h4,
.how-card h4,
.trust-card h4,
.roadmap-card h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #a855f7;
  text-shadow: 0 0 18px rgba(168, 85, 247, 0.45);
}

.feature-card,
.how-card,
.trust-card,
.roadmap-card {

  text-align: center;

}

.feature-card p,
.how-card p,
.trust-card p,
.roadmap-card p {

  color: #c9d1d9;

  line-height: 1.7;

  text-align: center;

}

.how-number {
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      145deg,
      #7c3aed,
      #a855f7
    );
  font-size: 24px;
  font-weight: 900;
  color: white;
  box-shadow: 0 0 25px rgba(168,85,247,0.35);
}

.roadmap-card span {
  font-size: 42px;
  display: block;
  margin-bottom: 22px;
}

/* LIVE DEMO */

.demo-section p {
  color: rgba(255,255,255,0.72);
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.demo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.demo-before,
.demo-after {
  flex: 1;
  width: 100%;
  max-width: 420px;
}

.demo-label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.demo-label.protected {
  background: rgba(168,85,247,0.18);
  color: #c084fc;
}

.fake-article {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  overflow: hidden;
  text-align: left;
  backdrop-filter: blur(10px);
}

.fake-article img {
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.fake-article h4 {
  padding: 24px 24px 12px;
  font-size: 24px;
  line-height: 1.4;
}

.fake-article p {
  padding: 0 24px 24px;
  margin: 0;
  color: rgba(255,255,255,0.65);
}

.demo-arrow {
  font-size: 54px;
  font-weight: 800;
  color: #a855f7;
}

.mnf-demo-block {
  background:
    radial-gradient(circle at top, rgba(168,85,247,0.22), transparent 70%),
    #0d0d16;
  border: 1px solid rgba(168,85,247,0.35);
  border-radius: 32px;
  padding: 50px 30px;
  box-shadow: 0 0 40px rgba(168,85,247,0.22);
}

.mnf-demo-block img {
  width: 90px;
  margin-bottom: 24px;
}

.mnf-demo-block h4 {
  font-size: 34px;
  margin-bottom: 14px;
}

.mnf-demo-block p {
  margin-bottom: 26px;
  color: rgba(255,255,255,0.72);
}

.demo-protected {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #9333ea, #c084fc);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
}

/* SUPPORTED SITES */

.supported-section p {
  max-width: 700px;
  margin: 0 auto 50px;
  color: rgba(255,255,255,0.72);
}

.supported-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.supported-card {
  padding: 18px 30px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  font-weight: 600;
  transition: 0.3s ease;
}

.supported-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168,85,247,0.55);
  box-shadow: 0 0 24px rgba(168,85,247,0.25);
}

/* TRUST STRIP */

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 8%;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.trust-strip-item {
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* CTA */

.cta-section {
  text-align: center;
}

.cta-section p {
  max-width: 700px;
  margin: 20px auto 40px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
}

.cta-section .hero-buttons {
  justify-content: center;
}

.community-banner {
  margin-top: 60px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050509;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(168,85,247,0.18);
  box-shadow: 0 0 30px rgba(168,85,247,0.12);
}

.community-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c084fc;
  margin-bottom: 14px;
}

.community-banner h3 {
  font-size: 30px !important;
  max-width: none;
  margin: 0 0 18px;
  color: white;
  line-height: 1.1;
  text-align: center;
  padding: 0 20px;
  white-space: normal;
}

.community-logo {
  display: block;
  margin: 0 auto 18px;
  max-width: 460px;
  width: 100%;
}

.community-btn {
  display: inline-block;
  margin-top: -4px;
  padding: 12px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #9333ea, #c084fc);
  color: white;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.community-btn:hover {
  transform: translateY(-3px);

  box-shadow:
    0 0 22px rgba(168,85,247,0.35);
}

/* FOOTER */

.footer,
footer {
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 80px;
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,0.55);
}

.footer p,
footer p {
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.footer a,
footer a {
  color: #c084fc;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.footer a:hover,
footer a:hover {
  color: white;
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */

@media (max-width: 768px) {

  .hero {
    padding: 10px 6% 40px;
    min-height: auto;
  }

  .hero-card-img {
    max-width: 320px;

}

  nav {
    justify-content: space-between;
    min-height: 90px;
    margin-bottom: 25px;
    width: 100%;
  }

  .site-logo {
    width: 220px;
    position: relative;
    top: 0;
    left: 0;
  }

  .install-btn {
    display: none;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 28px;
    padding-top: 35px;
  }

  .hero-text {
    width: 100%;
    min-width: 0;
  }

  .hero-text h2,
  .hero h2 {
    font-size: 3rem;
    line-height: 1.05;
  }

  .hero-text p,
  .hero p {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-buttons {
    width: 100%;
    justify-content: center;
  }

  .primary-btn:hover,
.secondary-btn:hover {

  transform: translateY(-4px) scale(1.03);

  box-shadow:
    0 0 25px rgba(168,85,247,0.45),
    0 0 60px rgba(168,85,247,0.25);

} 

    .hero {

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  text-align: center;

  gap: 40px;

  padding: 40px 20px;

}

.hero-content {

  width: 100%;
  max-width: 100%;

  align-items: center;

}

.hero h1 {

  font-size: 3rem;
  line-height: 1.1;

}

.hero p {

  font-size: 1rem;
  line-height: 1.7;

  max-width: 95%;
  margin: 0 auto;

}

.hero-buttons {

  flex-direction: column;

  width: 100%;

  align-items: center;

  gap: 16px;

}

.hero-image {

  width: 100%;

  display: flex;

  justify-content: center;

}

.hero-card-img {

  width: 100%;

  max-width: 340px;

  height: auto;

}

.features-grid,
.how-grid,
.trust-grid {

  grid-template-columns: 1fr;

}

  .hero-image {

    flex: 1;

    width: 100%;

    min-width: 0;

    display: flex;

    justify-content: center;

    align-items: center;

    overflow: hidden;
}

  .hero-card-img {

  width: 100%;
  max-width: 420px;

  height: auto;

  object-fit: contain;

  display: block;
  margin: 0 auto;

  border-radius: 24px;

  filter:
    drop-shadow(0 0 30px rgba(168,85,247,0.35));

  transition:
    transform 0.35s ease,
    filter 0.35s ease;

}

.hero-card-img:hover {

  transform:
    translateY(-6px)
    scale(1.02);

  filter:
    drop-shadow(0 0 45px rgba(168,85,247,0.55));

}

  .features,
  .how-section,
  .trust-section,
  .roadmap-section,
  .demo-section,
  .supported-section,
  .cta-section {
    padding: 70px 6%;
  }

  .features h3,
  .how-section h3,
  .trust-section h3,
  .roadmap-section h3,
  .demo-section h3,
  .supported-section h3,
  .cta-section h3 {
    font-size: 2rem;
  }

  .feature-grid,
  .how-grid,
  .trust-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .how-card,
  .trust-card,
  .roadmap-card {
    padding: 30px;
  }

  .demo-wrapper {
    flex-direction: column;
  }

  .demo-arrow {
    transform: rotate(90deg);
    font-size: 42px;
  }

  .fake-article h4 {
    font-size: 20px;
  }

  .mnf-demo-block h4 {
    font-size: 28px;
  }

  .supported-grid {
    flex-direction: column;
    align-items: center;
  }

  .supported-card {
    width: 100%;
    max-width: 320px;
  }

  .trust-strip {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================
   PRICING
========================= */

.pricing-section,
.waitlist-section,
.install-section {
  padding: 100px 8%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.pricing-section h3,
.waitlist-section h3,
.install-section h3 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.pricing-section p,
.waitlist-section p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 60px;
}

.pricing-grid,
.install-grid {
  display: grid;
  grid-template-columns:
    repeat(auto-fit, minmax(280px, 1fr));

  gap: 30px;
}

.pricing-card,
.install-card {
  position: relative;

  background:
    rgba(255,255,255,0.05);

  border:
    1px solid rgba(255,255,255,0.08);

  border-radius: 28px;

  padding: 45px 35px;

  backdrop-filter: blur(16px);

  transition: 0.35s ease;
}

.pricing-card:hover,
.install-card:hover {
  transform:
    translateY(-10px);

  border-color:
    rgba(168,85,247,0.55);

  box-shadow:
    0 0 35px rgba(168,85,247,0.2);
}

.featured-price {
  border:
    1px solid rgba(168,85,247,0.65);

  box-shadow:
    0 0 40px rgba(168,85,247,0.2);
}

.popular-tag {
  position: absolute;

  top: -12px;
  left: 50%;

  transform:
    translateX(-50%);

  background:
    linear-gradient(
      135deg,
      #9333ea,
      #c084fc
    );

  color: white;

  padding:
    8px 16px;

  border-radius:
    999px;

  font-size:
    12px;

  font-weight:
    700;

  letter-spacing:
    1px;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  margin: 20px 0;
}

.price span {
  font-size: 1rem;
  opacity: 0.7;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 35px;
}

.pricing-card li {
  margin-bottom: 14px;
  color: rgba(255,255,255,0.82);
}

.waitlist-form {
  max-width: 650px;
  margin: 0 auto;

  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.waitlist-form input {
  flex: 1;
  min-width: 260px;

  padding: 18px 22px;

  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);

  background:
    rgba(255,255,255,0.05);

  color: white;
  font-size: 1rem;

  outline: none;
}

.waitlist-form button {
  padding: 18px 30px;

  border: none;
  border-radius: 16px;

  background:
    linear-gradient(
      135deg,
      #9333ea,
      #c084fc
    );

  color: white;

  font-weight: 700;
  cursor: pointer;

  transition: 0.3s ease;
}

.waitlist-form button:hover {
  transform:
    translateY(-4px);

  box-shadow:
    0 0 30px rgba(168,85,247,0.35);
}

.install-number {
  width: 65px;
  height: 65px;

  margin: 0 auto 25px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      135deg,
      #9333ea,
      #c084fc
    );

  font-size: 1.5rem;
  font-weight: 800;

  box-shadow:
    0 0 25px rgba(168,85,247,0.35);
}

.install-card h4 {
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.install-card p {
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

/* MOBILE */

@media (max-width: 768px) {

  .pricing-section,
  .waitlist-section,
  .install-section {
    padding: 70px 6%;
  }

  .pricing-section h3,
  .waitlist-section h3,
  .install-section h3 {
    font-size: 2rem;
  }

  .waitlist-form {
    flex-direction: column;
  }

  .waitlist-form input,
  .waitlist-form button {
    width: 100%;
  }

}

/* REMOVE PRICING BUTTON SHIMMER GHOST */

.pricing-card .primary-btn::before,
.pricing-card .secondary-btn::before {
  display: none;
}

.pricing-card .primary-btn,
.pricing-card .secondary-btn {
  overflow: hidden;
  isolation: isolate;
}

.pricing-card h4 {
  color: #c084fc;
  text-shadow: 0 0 14px rgba(168,85,247,0.5);
}

/* =========================
   FLOATING INSTALL CTA
========================= */

.floating-install {
  position: fixed;

  bottom: 30px;
  right: 30px;

  z-index: 9999;

  background:
    linear-gradient(
      135deg,
      #9333ea,
      #c084fc
    );

  color: white;

  text-decoration: none;

  padding:
    18px 26px;

  border-radius:
    999px;

  font-weight:
    700;

  box-shadow:
    0 0 30px rgba(168,85,247,0.45);

  transition:
    0.3s ease;
}

.floating-install:hover {
  transform:
    translateY(-6px)
    scale(1.03);

  box-shadow:
    0 0 40px rgba(168,85,247,0.7);
}

/* MOBILE */

@media (max-width: 768px) {

  .floating-install {
    bottom: 20px;
    right: 20px;

    padding:
      14px 20px;

    font-size:
      0.95rem;
  }

}

/* =========================
   PRO FEATURES
========================= */

.pro-section {
  padding: 100px 8%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.pro-section h3 {
  font-size: 2.8rem;
  margin-bottom: 60px;
}

.pro-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(260px, 1fr));

  gap: 30px;
}

.pro-card {
  background:
    rgba(255,255,255,0.05);

  border:
    1px solid rgba(255,255,255,0.08);

  border-radius:
    28px;

  padding:
    45px 35px;

  backdrop-filter:
    blur(18px);

  transition:
    0.35s ease;
}

.pro-card:hover {
  transform:
    translateY(-10px);

  border-color:
    rgba(168,85,247,0.45);

  box-shadow:
    0 0 35px rgba(168,85,247,0.2);
}

.pro-card span {
  font-size: 3rem;
  display: block;
  margin-bottom: 20px;
}

.pro-card h4 {
  color: #c084fc;
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.pro-card p {
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

/* SOCIAL PROOF */

.social-proof {

    display: grid;

    grid-template-columns:
      repeat(auto-fit, minmax(220px, 1fr));

    gap: 24px;

    margin: 120px auto;

    max-width: 1200px;

    padding: 0 24px;
}

.proof-card {

    background:
      rgba(255,255,255,0.03);

    border:
      1px solid rgba(168,85,247,0.2);

    border-radius: 24px;

    padding: 30px;

    text-align: center;

    font-weight: 600;

    backdrop-filter: blur(10px);

    transition: 0.3s ease;
}

.proof-card:hover {

    transform:
      translateY(-5px);

    border-color:
      rgba(168,85,247,0.7);

    box-shadow:
      0 0 30px rgba(168,85,247,0.2);
}

/* WAITLIST NOTE */

.waitlist-warning {

  margin-top: 16px;

  font-size: 0.95rem;

  opacity: 0.8;

  color: #c084fc;

}

.waitlist-note {
  margin-top: 16px;
  font-size: 0.95rem;
  opacity: 0.8;
  color: #c084fc;
}

.live-counter {
  margin-top: 18px;
  font-size: 0.95rem;
  opacity: 0.85;
  color: #d8b4fe;
}

.social-proof {
  text-align: center;
  padding: 80px 20px;
}

.social-proof h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.social-proof p {
  opacity: 0.85;
}

@media (max-width: 768px) {
  .fake-article {
    max-width: 260px;
    margin: 0 auto;
  }

  .fake-article img {
    width: 100%;
    max-width: 260px;
    height: auto;
  }
}

/* CLEAN FINAL MOBILE FIX */

@media (max-width: 768px) {

  .hero {
    padding: 30px 20px 50px;
    min-height: auto;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding-top: 30px;
  }

  .hero-text h2 {
    font-size: 2.6rem;
    line-height: 1.1;
  }

  .hero-text p {
    font-size: 1rem;
    max-width: 95%;
    margin: 0 auto;
  }

  .hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
  }

  .hero-card-img {
    width: 100%;
    max-width: 260px !important;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }

  .fake-article {
    width: 100%;
    max-width: 260px !important;
    margin: 0 auto;
    overflow: hidden;
  }

  .fake-article img {
    width: 100%;
    max-width: 260px !important;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }

  .site-logo {
    width: 220px;
  }
}

/* ABSOLUTE FINAL MOBILE IMAGE KILL SWITCH */

@media (max-width: 768px) {

  .demo-section {
    overflow: hidden;
  }

  .demo-wrapper,
  .demo-before,
  .demo-after,
  .fake-article,
  .hero-image {
    width: 100% !important;
    max-width: 280px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow: hidden !important;
  }

  .hero-card-img,
  .fake-article img {
    width: 100% !important;
    max-width: 280px !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 900px) {

  .demo-image {
    max-width: 92vw;
  }

}

.hero-mini-card {
  margin-top: 50px;

  display: flex;
  justify-content: center;
}

.mini-preview {
  width: min(420px, 92vw);

  border-radius: 28px;

  border: 1px solid rgba(168,85,247,0.28);

  box-shadow:
    0 0 35px rgba(168,85,247,0.24),
    0 18px 45px rgba(0,0,0,0.45);
}