    /* Hero Layout (Home Page) */
    .hero-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 70px 40px;
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: 60px;
      align-items: center;
      width: 100%;
    }

    .hero-text h1 {
      font-size: 56px;
      font-weight: 900;
      line-height: 1.12;
      margin-bottom: 22px;
      background: linear-gradient(135deg, #ffffff 30%, #ff3b68 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      filter: drop-shadow(0 0 25px rgba(255, 43, 91, 0.25));
    }

    .hero-text p {
      color: var(--mf-text-muted);
      font-size: 16.5px;
      line-height: 1.65;
      margin-bottom: 38px;
      max-width: 490px;
    }

    .cta-group {
      display: flex;
      gap: 18px;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--mf-accent), #c90022);
      color: #fff;
      padding: 15px 32px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 700;
      font-size: 15px;
      box-shadow: 0 0 30px rgba(255, 43, 91, 0.45);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .btn-primary:hover {
      box-shadow: 0 0 45px rgba(255, 43, 91, 0.75);
      transform: translateY(-3px) scale(1.02);
      background: linear-gradient(135deg, #ff3b68, #e00028);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.03);
      color: #e1e1e8;
      padding: 15px 32px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      border: 1px solid rgba(255, 43, 91, 0.3);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
      background: rgba(255, 43, 91, 0.12);
      border-color: rgba(255, 43, 91, 0.65);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(255, 43, 91, 0.15);
    }

    /* UI Engine Preview Card */
    .ui-card {
      background: rgba(16, 10, 14, 0.75);
      border: 1px solid rgba(255, 43, 91, 0.3);
      border-radius: 20px;
      padding: 28px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 43, 91, 0.15);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      position: relative;
      transition: border-color 0.4s ease, box-shadow 0.4s ease;
    }

    .ui-card:hover {
      border-color: rgba(255, 43, 91, 0.5);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 55px rgba(255, 43, 91, 0.25);
    }

    .card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 18px;
      border-bottom: 1px solid rgba(255, 43, 91, 0.15);
      margin-bottom: 22px;
    }

    .card-title {
      font-size: 15px;
      font-weight: 800;
      color: var(--mf-accent);
      letter-spacing: 1.2px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .card-tabs {
      display: flex;
      gap: 18px;
      font-size: 13.5px;
      color: #838398;
    }

    .card-tab {
      cursor: pointer;
      padding-bottom: 4px;
      transition: all 0.3s ease;
      position: relative;
    }

    .card-tab:hover { color: #ffffff; }

    .card-tab.active {
      color: var(--mf-accent);
      font-weight: 700;
    }

    .card-tab.active::after {
      content: '';
      position: absolute;
      bottom: -18px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--mf-accent);
      box-shadow: 0 0 10px var(--mf-accent);
    }

    .tab-content {
      display: none;
      animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .tab-content.active { display: block; }

    .form-group { margin-bottom: 20px; }

    .form-label {
      display: flex;
      justify-content: space-between;
      font-size: 13.5px;
      color: #b0b0c5;
      margin-bottom: 10px;
      font-weight: 500;
    }

    /* Smooth Interactive Sliders */
    .slider-wrapper {
      position: relative;
      height: 20px;
      display: flex;
      align-items: center;
      cursor: pointer;
    }

    .slider-bg {
      width: 100%;
      height: 8px;
      border-radius: 4px;
      background: rgba(255, 255, 255, 0.08);
      position: relative;
      overflow: hidden;
    }

    .slider-fill {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      background: linear-gradient(90deg, var(--mf-accent), var(--mf-accent-light));
      border-radius: 4px;
      box-shadow: 0 0 12px rgba(255, 43, 91, 0.8);
      transition: width 0.1s linear;
      pointer-events: none;
    }

    .slider-thumb {
      width: 16px;
      height: 16px;
      background: #fff;
      border-radius: 50%;
      position: absolute;
      top: 50%;
      transform: translate(-50%, -50%);
      box-shadow: 0 0 10px rgba(255, 43, 91, 0.8);
      pointer-events: none;
      transition: left 0.1s linear, transform 0.2s ease;
    }

    .slider-wrapper:hover .slider-thumb {
      transform: translate(-50%, -50%) scale(1.25);
    }

    /* Toggle Switches */
    .toggle-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(255, 43, 91, 0.04);
      border: 1px solid rgba(255, 43, 91, 0.15);
      padding: 14px 18px;
      border-radius: 10px;
      margin-bottom: 14px;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .toggle-row:hover {
      background: rgba(255, 43, 91, 0.09);
      border-color: rgba(255, 43, 91, 0.35);
      transform: translateX(3px);
    }

    .toggle-label {
      font-size: 13.5px;
      color: #d1d1e4;
      font-weight: 500;
    }

    .switch {
      width: 42px;
      height: 22px;
      background: rgba(255, 255, 255, 0.12);
      border-radius: 12px;
      position: relative;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .switch.active {
      background: linear-gradient(135deg, var(--mf-accent), var(--mf-accent-deep));
      box-shadow: 0 0 14px rgba(255, 43, 91, 0.6);
    }

    .switch-handle {
      width: 18px;
      height: 18px;
      background: #fff;
      border-radius: 50%;
      position: absolute;
      top: 2px;
      left: 2px;
      transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    }

    .switch.active .switch-handle { left: 22px; }

    /* Toast Notification Floating Card */
    .toast-notification {
      position: absolute;
      top: -24px;
      right: -24px;
      background: rgba(18, 10, 15, 0.92);
      border: 1px solid rgba(255, 43, 91, 0.45);
      padding: 14px 20px;
      border-radius: 14px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 43, 91, 0.25);
      backdrop-filter: blur(16px);
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      z-index: 10;
    }

    .toast-notification:hover {
      transform: translateY(-4px) scale(1.03);
      border-color: var(--mf-accent);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 43, 91, 0.4);
    }

    .toast-tag {
      font-size: 10.5px;
      font-weight: 800;
      color: var(--mf-accent);
      letter-spacing: 0.8px;
      text-transform: uppercase;
      margin-bottom: 2px;
    }

    .toast-title {
      font-size: 13.5px;
      font-weight: 700;
      color: #ffffff;
    }



/* Home v5 — social proof */
.social-proof-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 110px 0 118px;
  border-top: 1px solid rgba(255,43,91,.08);
  background:
    linear-gradient(180deg, rgba(7,4,6,.42), rgba(8,5,7,.92)),
    radial-gradient(circle at 18% 28%, rgba(255,43,91,.10), transparent 33%),
    radial-gradient(circle at 82% 76%, rgba(155,10,42,.09), transparent 31%);
}
.social-proof-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.012) 0, rgba(255,255,255,.012) 1px, transparent 1px, transparent 17px),
    linear-gradient(124deg, transparent 0 43%, rgba(255,43,91,.035) 43% 44%, transparent 44% 100%);
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 88%, transparent);
}
.social-proof-orb { position:absolute; border-radius:50%; filter:blur(75px); pointer-events:none; opacity:.45; }
.social-proof-orb-one { width:310px; height:310px; left:-120px; top:120px; background:rgba(255,43,91,.14); }
.social-proof-orb-two { width:260px; height:260px; right:-70px; bottom:80px; background:rgba(116,7,31,.18); }
.social-proof-container { position:relative; z-index:1; width:min(1180px, calc(100% - 64px)); margin:0 auto; }
.social-proof-heading {
  max-width: 1100px;
  margin: 0 auto 48px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;

  text-align: left;
}
.section-kicker { display:inline-block; margin-bottom:11px; color:#ff6688; font-size:10px; font-weight:600; letter-spacing:1.8px; }
.social-proof-heading h2 {
  white-space: nowrap;
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.1;
  margin: 0;
}
.social-proof-heading p { margin:0 auto; max-width:620px; color:#8d8d9f; font-size:15px; line-height:1.75; }
.testimonial-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.testimonial-card {
  position:relative; min-height:180px; padding:23px; overflow:hidden;
  border:1px solid rgba(255,43,91,.11); border-radius:16px;
  background:linear-gradient(145deg,rgba(14,9,12,.84),rgba(8,6,7,.78));
  box-shadow:0 16px 42px rgba(0,0,0,.24);
  transition:transform .26s ease,border-color .26s ease,background .26s ease,box-shadow .26s ease;
}
.testimonial-card::after {
  content:""; position:absolute; width:170px; height:170px; right:-90px; top:-100px;
  border-radius:50%; background:rgba(255,43,91,.08); filter:blur(28px); opacity:0; transition:opacity .26s ease;
}
.testimonial-card:hover {
  transform:translateY(-3px); border-color:rgba(255,43,91,.27);
  background:linear-gradient(145deg,rgba(17,10,14,.93),rgba(9,6,8,.88));
  box-shadow:0 20px 48px rgba(0,0,0,.29),0 0 28px rgba(255,43,91,.06);
}
.testimonial-card:hover::after { opacity:1; }
.testimonial-card-featured { border-color:rgba(255,43,91,.18); background:linear-gradient(145deg,rgba(20,10,15,.91),rgba(9,6,8,.82)); }
.testimonial-meta { display:flex; align-items:center; gap:12px; margin-bottom:17px; }
.testimonial-avatar {
  width:38px; height:38px; flex:0 0 auto; display:flex; align-items:center; justify-content:center;
  border-radius:11px; border:1px solid rgba(255,43,91,.18); background:rgba(255,43,91,.065);
  color:#ff6688; font-size:11px; font-weight:600; letter-spacing:.4px;
}
.testimonial-meta strong { display:block; margin-bottom:3px; color:#ededf2; font-size:13px; font-weight:600; }
.testimonial-meta span { display:block; color:#a35b6c; font-size:8.5px; font-weight:600; letter-spacing:.9px; }
.testimonial-card blockquote { margin:0; color:#a4a4b2; font-size:13px; line-height:1.75; font-weight:400; }
.social-proof-note { display:flex; align-items:center; justify-content:center; gap:8px; margin-top:25px; color:#5d5d6b; font-size:9px; }
.social-proof-note span { width:5px; height:5px; border-radius:50%; background:#ff2b5b; box-shadow:0 0 8px rgba(255,43,91,.5); }
@media (max-width:820px) {
  .social-proof-section { padding:82px 0 90px; }
  .social-proof-container { width:min(100% - 34px,1180px); }
  .testimonial-grid { grid-template-columns:1fr; }
  .testimonial-card { min-height:auto; }
}


/* Home v6 — opposing review ribbons */
.social-proof-section {
  padding-bottom: 105px;
}

.social-proof-heading {
  margin-bottom: 34px;
}

.social-proof-heading p {
  color: #858596;
}

.testimonial-grid,
.social-proof-note {
  display: none !important;
}

.testimonial-marquee {
  position: relative;
  height: 680px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  overflow: hidden;
  isolation: isolate;
  padding: 4px 0;
}

.testimonial-column {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  flex-direction: column;
  gap: 18px;
  will-change: transform;
}

.testimonial-column-up .testimonial-track {
  animation: reviews-up 34s linear infinite;
}

.testimonial-column-down .testimonial-track {
  animation: reviews-down 34s linear infinite;
  transform: translateY(-50%);
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  min-height: 155px;
  flex: 0 0 auto;
}

.testimonial-fade {
  position: absolute;
  left: 0;
  right: 0;
  height: 150px;
  z-index: 5;
  pointer-events: none;
}

.testimonial-fade-top {
  top: 0;
  background: linear-gradient(
    to bottom,
    #090507 0%,
    rgba(9,5,7,.92) 22%,
    rgba(9,5,7,.5) 58%,
    transparent 100%
  );
}

.testimonial-fade-bottom {
  bottom: 0;
  background: linear-gradient(
    to top,
    #090507 0%,
    rgba(9,5,7,.92) 22%,
    rgba(9,5,7,.5) 58%,
    transparent 100%
  );
}

@keyframes reviews-up {
  from { transform: translateY(0); }
  to   { transform: translateY(calc(-50% - 9px)); }
}

@keyframes reviews-down {
  from { transform: translateY(calc(-50% - 9px)); }
  to   { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-track {
    animation: none !important;
    transform: none !important;
  }
  .testimonial-marquee {
    height: auto;
  }
  .testimonial-column {
    overflow: visible;
  }
  .testimonial-column .testimonial-card:nth-child(n+5) {
    display: none;
  }
}

@media (max-width: 820px) {
  .testimonial-marquee {
    height: 610px;
    grid-template-columns: 1fr;
  }

  .testimonial-column-down {
    display: none;
  }

  .testimonial-column-up .testimonial-track {
    animation-duration: 30s;
  }

  .testimonial-fade {
    height: 120px;
  }
}
.hero-text h1,
.hero-text p,
.hero-text .cta-group,
.ui-card,
.toast-notification {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(14px);
  animation: heroReveal 0.9s cubic-bezier(.22, .8, .22, 1) forwards;
}

.hero-text h1 {
  animation-delay: 0.05s;
}

.hero-text p {
  animation-delay: 0.18s;
}

.hero-text .cta-group {
  animation-delay: 0.32s;
}

.ui-card {
  animation-delay: 0.22s;
}

.toast-notification {
  animation-delay: 0.42s;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(14px);
  }

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

@media (prefers-reduced-motion: reduce) {
  .hero-text h1,
  .hero-text p,
  .hero-text .cta-group,
  .ui-card,
  .toast-notification {
    animation: none;
    opacity: 1;
    filter: none;
    transform: none;
  }
}.fog-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.app-container,
.site-header,
main,
footer {
  position: relative;
  z-index: 1;
}

.fog {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
  will-change: transform, opacity;
  mix-blend-mode: screen;
}

.fog-1 {
  width: 520px;
  height: 520px;
  left: -120px;
  top: 80px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, rgba(255,80,120,0.10) 35%, rgba(255,80,120,0.04) 55%, transparent 75%);
  animation: fogFloatOne 22s ease-in-out infinite alternate;
}

.fog-2 {
  width: 620px;
  height: 620px;
  right: -180px;
  top: 220px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(255,40,90,0.08) 35%, rgba(255,40,90,0.03) 60%, transparent 78%);
  animation: fogFloatTwo 28s ease-in-out infinite alternate;
}

.fog-3 {
  width: 480px;
  height: 480px;
  left: 35%;
  bottom: -120px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, rgba(255,60,110,0.07) 38%, rgba(255,60,110,0.02) 60%, transparent 78%);
  animation: fogFloatThree 26s ease-in-out infinite alternate;
}

@keyframes fogFloatOne {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.10;
  }
  100% {
    transform: translate(90px, -40px) scale(1.12);
    opacity: 0.16;
  }
}

@keyframes fogFloatTwo {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.08;
  }
  100% {
    transform: translate(-110px, 50px) scale(1.08);
    opacity: 0.14;
  }
}

@keyframes fogFloatThree {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.06;
  }
  100% {
    transform: translate(-70px, -60px) scale(1.15);
    opacity: 0.12;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fog {
    animation: none;
  }
}