:root {
      --red: #FF4757;
      --blush: #F5C5A3;
      --dark: #0E0B0B;
      --card: #170F0F;
      --card2: #1C1212;
      --border: rgba(245, 197, 163, 0.08);
      --border2: rgba(255, 71, 87, 0.15);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--dark);
      color: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      cursor: none;
      overflow-x: hidden;
    }

    /* ── CURSOR ── */
    .cur {
      position: fixed;
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
    }

    #cd {
      width: 10px;
      height: 10px;
      background: var(--red);
      transition: width .15s, height .15s;
      mix-blend-mode: difference;
    }

    #cr {
      width: 34px;
      height: 34px;
      border: 1.5px solid rgba(255, 71, 87, .45);
      transition: width .25s, height .25s;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 48px;
      backdrop-filter: blur(20px);
      background: rgba(14, 11, 11, 0.85);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 24px;
      letter-spacing: 4px;
      color: #fff;
      text-decoration: none;
    }

    .nav-logo span {
      color: var(--red);
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      color: rgba(255, 255, 255, .4);
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      transition: color .2s;
    }

    .nav-links a:hover {
      color: #fff;
    }

    .nav-cta {
      background: var(--red);
      color: #fff !important;
      padding: 10px 24px;
      border-radius: 99px;
      font-weight: 700 !important;
      transition: box-shadow .2s, transform .2s !important;
    }

    .nav-cta:hover {
      box-shadow: 0 8px 24px rgba(255, 71, 87, .4) !important;
      transform: translateY(-1px);
    }

    /* ══════════════════════════════
     HERO — full viewport, unchanged
  ══════════════════════════════ */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 24px 80px;
      position: relative;
      overflow: hidden;
    }

    .bg-glow {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(ellipse 65% 55% at 50% 45%, rgba(255, 71, 87, .09) 0%, transparent 65%),
        radial-gradient(ellipse 30% 30% at 15% 85%, rgba(245, 197, 163, .05) 0%, transparent 55%),
        radial-gradient(ellipse 25% 25% at 85% 15%, rgba(255, 71, 87, .04) 0%, transparent 50%);
    }

    .bg-noise {
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: .025;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 200px;
    }

    .bg-grid {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 70%);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 71, 87, .08);
      border: 1px solid rgba(255, 71, 87, .2);
      color: var(--blush);
      padding: 5px 16px;
      border-radius: 99px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 28px;
      animation: fadeUp .6s .05s ease both;
    }

    .dq-mark {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(120px, 22vw, 240px);
      line-height: .88;
      letter-spacing: 8px;
      color: #fff;
      position: relative;
      animation: fadeUp .7s .1s ease both;
    }

    .dq-mark .q {
      color: var(--red);
      position: relative;
      display: inline-block;
    }

    .score-badge {
      position: absolute;
      top: 12%;
      right: -20px;
      background: var(--red);
      color: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 800;
      padding: 6px 12px;
      border-radius: 99px;
      white-space: nowrap;
      animation: fadeUp .7s .5s ease both, floatY 5s ease-in-out infinite;
      box-shadow: 0 8px 24px rgba(255, 71, 87, .4);
    }

    @keyframes floatY {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-8px);
      }
    }

    .headline {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(22px, 4vw, 42px);
      letter-spacing: 3px;
      color: rgba(255, 255, 255, .22);
      margin-top: 4px;
      margin-bottom: 28px;
      animation: fadeUp .7s .15s ease both;
    }

    .headline em {
      font-family: 'Instrument Serif', serif;
      font-style: italic;
      color: var(--blush);
      letter-spacing: 1px;
      opacity: .8;
    }

    .sub {
      font-size: clamp(14px, 1.6vw, 17px);
      color: rgba(255, 255, 255, .4);
      max-width: 420px;
      line-height: 1.7;
      font-weight: 300;
      margin-bottom: 44px;
      animation: fadeUp .7s .2s ease both;
    }

    .sub strong {
      color: rgba(255, 255, 255, .85);
      font-weight: 600;
    }

    .cta {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--red);
      color: #fff;
      text-decoration: none;
      padding: 18px 44px;
      border-radius: 99px;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: .3px;
      border: none;
      cursor: none;
      position: relative;
      overflow: hidden;
      animation: fadeUp .7s .28s ease both;
      transition: transform .2s, box-shadow .2s;
    }

    .cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, .15), transparent);
      opacity: 0;
      transition: opacity .2s;
    }

    .cta:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 20px 50px rgba(255, 71, 87, .45);
    }

    .cta:hover::before {
      opacity: 1;
    }

    .cta-arrow {
      width: 24px;
      height: 24px;
      background: rgba(255, 255, 255, .2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      transition: transform .2s;
    }

    .cta:hover .cta-arrow {
      transform: translateX(3px);
    }

    .proof {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-top: 36px;
      animation: fadeUp .7s .35s ease both;
      flex-wrap: wrap;
      justify-content: center;
    }

    .proof-avatars {
      display: flex;
    }

    .proof-avatars span {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 2px solid var(--dark);
      margin-left: -8px;
      font-size: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
    }

    .proof-avatars span:first-child {
      margin-left: 0;
    }

    .proof-text {
      font-size: 12px;
      color: rgba(255, 255, 255, .35);
      line-height: 1.5;
    }

    .proof-text strong {
      color: var(--blush);
      font-weight: 600;
    }

    .proof-divider {
      width: 1px;
      height: 28px;
      background: var(--border);
    }

    .proof-stat {
      text-align: center;
    }

    .proof-stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 20px;
      color: var(--blush);
      line-height: 1;
    }

    .proof-stat-label {
      font-size: 10px;
      color: rgba(255, 255, 255, .25);
      letter-spacing: .5px;
      text-transform: uppercase;
    }

    /* scroll hint */
    .scroll-hint {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      animation: fadeUp 1s .8s ease both;
      color: rgba(255, 255, 255, .2);
      font-size: 11px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .scroll-hint .arrow {
      animation: bounce 2s ease infinite;
      font-size: 16px;
    }

    @keyframes bounce {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(6px);
      }
    }

    /* ══════════════════════════════
     FLOATING PROFILE CARDS
  ══════════════════════════════ */
    .float-cards {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .fcard {
      position: absolute;
      background: rgba(23, 15, 15, .85);
      border: 1px solid rgba(245, 197, 163, .1);
      border-radius: 18px;
      padding: 16px 18px;
      backdrop-filter: blur(16px);
      width: 220px;
      box-shadow: 0 16px 40px rgba(0, 0, 0, .4), 0 0 0 1px rgba(255, 71, 87, .06);
      animation: fadeUp .8s ease both;
    }

    .fcard:hover {
      pointer-events: auto;
    }




    /* card internals */
    .fcard-top {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .fcard-avatar {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 800;
      color: #fff;
    }

    .fcard-name {
      font-size: 13px;
      font-weight: 700;
      color: rgba(255, 255, 255, .9);
      line-height: 1.2;
    }

    .fcard-meta {
      font-size: 11px;
      color: rgba(255, 255, 255, .3);
    }

    .fcard-score-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(255, 255, 255, .04);
      border-radius: 8px;
      padding: 8px 10px;
      margin-bottom: 10px;
    }

    .fcard-score-label {
      font-size: 10px;
      color: rgba(255, 255, 255, .35);
      text-transform: uppercase;
      letter-spacing: .8px;
    }

    .fcard-score-val {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 20px;
      line-height: 1;
      letter-spacing: 1px;
    }

    .fcard-bar {
      height: 3px;
      background: rgba(255, 255, 255, .06);
      border-radius: 99px;
      overflow: hidden;
      margin-bottom: 10px;
    }

    .fcard-bar-fill {
      height: 100%;
      border-radius: 99px;
      background: linear-gradient(90deg, var(--red), #FF8C42);
    }

    .fcard-insight {
      font-size: 12px;
      color: rgba(255, 255, 255, .45);
      line-height: 1.5;
      border-top: 1px solid rgba(255, 255, 255, .05);
      padding-top: 9px;
    }

    .fcard-insight strong {
      color: var(--blush);
      font-weight: 600;
    }

    /* hide on small screens */

    /* ══════════════════════════════
     MARQUEE
  ══════════════════════════════ */
    .marquee-wrap {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
      background: rgba(255, 71, 87, .03);
      padding: 28px 0;
    }

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

    .marquee-item {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      padding: 0 32px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 16px;
      letter-spacing: 2px;
      color: rgba(255, 255, 255, .18);
    }

    .marquee-item .dot {
      width: 5px;
      height: 5px;
      background: var(--red);
      border-radius: 50%;
      opacity: .5;
    }

    @keyframes marquee {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    /* ══════════════════════════════
     SHARED SECTION STYLES
  ══════════════════════════════ */
    .section {
      max-width: 1100px;
      margin: 0 auto;
      padding: 100px 48px;
    }

    .section-tag {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 14px;
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(40px, 6vw, 68px);
      line-height: .95;
      letter-spacing: 1px;
      margin-bottom: 16px;
    }

    .section-title em {
      font-family: 'Instrument Serif', serif;
      font-style: italic;
      color: rgba(255, 255, 255, .3);
      letter-spacing: 0;
    }

    .section-sub {
      font-size: 15px;
      color: rgba(255, 255, 255, .4);
      max-width: 440px;
      line-height: 1.75;
      font-weight: 300;
    }

    /* reveal */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 {
      transition-delay: .1s;
    }

    .reveal-delay-2 {
      transition-delay: .2s;
    }

    .reveal-delay-3 {
      transition-delay: .3s;
    }

    /* ══════════════════════════════
     HOW IT WORKS
  ══════════════════════════════ */
    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: 56px;
    }

    .step {
      background: var(--card);
      padding: 40px 32px;
      position: relative;
      overflow: hidden;
      transition: background .25s;
    }

    .step:first-child {
      border-radius: 24px 0 0 24px;
    }

    .step:last-child {
      border-radius: 0 24px 24px 0;
    }

    .step:hover {
      background: var(--card2);
    }

    .step-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 72px;
      color: rgba(255, 255, 255, .04);
      line-height: 1;
      position: absolute;
      top: 16px;
      right: 20px;
    }

    .step-icon {
      font-size: 30px;
      margin-bottom: 18px;
    }

    .step-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 26px;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }

    .step-desc {
      font-size: 14px;
      color: rgba(255, 255, 255, .42);
      line-height: 1.7;
    }

    /* ══════════════════════════════
     PRICING
  ══════════════════════════════ */
    .pricing-wrap {
      background: linear-gradient(180deg, transparent, rgba(255, 71, 87, .02), transparent);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 56px;
    }

    .price-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 44px 40px;
      position: relative;
      overflow: hidden;
      transition: transform .3s;
    }

    .price-card:hover {
      transform: translateY(-4px);
    }

    .price-card.featured {
      border-color: var(--border2);
      background: linear-gradient(135deg, #1f0a0e, #170F0F);
    }

    .price-card.featured::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--red), #FF8C42);
    }

    .price-badge {
      display: inline-block;
      background: var(--red);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 99px;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .price-tier {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 18px;
      letter-spacing: 2px;
      color: rgba(255, 255, 255, .4);
      margin-bottom: 6px;
    }

    .price-amount {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 60px;
      line-height: 1;
      letter-spacing: 1px;
      margin-bottom: 6px;
    }

    .price-amount.free {
      color: var(--blush);
    }

    .price-amount.paid {
      color: #fff;
    }

    .price-desc {
      font-size: 13px;
      color: rgba(255, 255, 255, .38);
      margin-bottom: 32px;
      line-height: 1.65;
    }

    .feature-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 36px;
    }

    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: rgba(255, 255, 255, .68);
      line-height: 1.5;
    }

    .check {
      width: 20px;
      height: 20px;
      background: rgba(255, 71, 87, .12);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      flex-shrink: 0;
      margin-top: 1px;
      color: var(--red);
    }

    .lock {
      width: 20px;
      height: 20px;
      background: rgba(255, 255, 255, .04);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      flex-shrink: 0;
      margin-top: 1px;
      color: rgba(255, 255, 255, .18);
    }

    .btn-full {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding: 15px;
      border-radius: 99px;
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      border: none;
      cursor: none;
      transition: transform .2s, box-shadow .2s;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .btn-full.ghost {
      background: rgba(255, 255, 255, .06);
      color: rgba(255, 255, 255, .7);
    }

    .btn-full.ghost:hover {
      background: rgba(255, 255, 255, .1);
    }

    .btn-full.solid {
      background: var(--red);
      color: #fff;
    }

    .btn-full.solid:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(255, 71, 87, .4);
    }

    /* ══════════════════════════════
     REVIEWS
  ══════════════════════════════ */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 56px;
    }

    .review-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 28px;
      transition: transform .3s, border-color .3s;
    }

    .review-card:hover {
      transform: translateY(-4px);
      border-color: var(--border2);
    }

    .review-stars {
      color: var(--blush);
      font-size: 13px;
      letter-spacing: 3px;
      margin-bottom: 12px;
    }

    .review-text {
      font-family: 'Instrument Serif', serif;
      font-style: italic;
      font-size: 15px;
      color: rgba(255, 255, 255, .72);
      line-height: 1.68;
      margin-bottom: 20px;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .review-avatar {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .review-name {
      font-size: 13px;
      font-weight: 600;
      color: rgba(255, 255, 255, .8);
    }

    .review-handle {
      font-size: 11px;
      color: rgba(255, 255, 255, .28);
    }

    /* ══════════════════════════════
     BOTTOM CTA
  ══════════════════════════════ */
    .bottom-cta {
      text-align: center;
      padding: 120px 48px;
      position: relative;
      overflow: hidden;
    }

    .bottom-cta-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255, 71, 87, .07) 0%, transparent 70%);
      pointer-events: none;
    }

    .bottom-cta .section-title {
      max-width: 700px;
      margin: 0 auto 20px;
      font-size: clamp(48px, 8vw, 96px);
    }

    .bottom-cta .section-sub {
      max-width: 380px;
      margin: 0 auto 44px;
    }

    /* ══════════════════════════════
     FOOTER
  ══════════════════════════════ */
    footer {
      border-top: 1px solid var(--border);
      padding: 36px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px;
      letter-spacing: 4px;
      color: rgba(255, 255, 255, .3);
    }

    .footer-logo span {
      color: var(--red);
    }

    .footer-copy {
      font-size: 12px;
      color: rgba(255, 255, 255, .18);
    }

    .footer-links {
      display: flex;
      gap: 24px;
      list-style: none;
    }

    .footer-links a {
      font-size: 12px;
      color: rgba(255, 255, 255, .25);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-links a:hover {
      color: rgba(255, 255, 255, .6);
    }

    /* ══════════════════════════════
     ANIMATIONS
  ══════════════════════════════ */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

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

    /* ══════════════════════════════
     RESPONSIVE
  ══════════════════════════════ */
    @media (max-width: 900px) {
      nav {
        padding: 16px 24px;
      }

      .nav-links {
        display: none;
      }

      .section {
        padding: 72px 24px;
      }

      .steps {
        grid-template-columns: 1fr;
      }

      .step:first-child {
        border-radius: 20px 20px 0 0;
      }

      .step:last-child {
        border-radius: 0 0 20px 20px;
      }

      .pricing-grid {
        grid-template-columns: 1fr;
      }

      .reviews-grid {
        grid-template-columns: 1fr;
      }

      .bottom-cta {
        padding: 80px 24px;
      }

      footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 24px;
      }

      .score-badge {
        right: -10px;
        font-size: 11px;
        padding: 5px 10px;
      }

      .proof-divider {
        display: none;
      }
    }

    /* ══════════════════════════════
     HERO CARDS
  ══════════════════════════════ */
    .fcard-hero-right {
      position: absolute;
      top: 50%;
      right: 5%;
      transform: translateY(-50%) rotate(0deg);
      animation: fadeUp .8s .6s ease both, fcHeroRight 7s 1.4s ease-in-out infinite;
      width: 210px;
    }

    @keyframes fcHeroRight {

      0%,
      100% {
        transform: translateY(calc(-50% + 0px)) rotate(0deg);
      }

      50% {
        transform: translateY(calc(-50% - 14px)) rotate(0deg);
      }
    }

    .fcard-hero-left {
      position: absolute;
      top: 50%;
      left: 5%;
      transform: translateY(-50%) rotate(0deg);
      animation: fadeUp .8s .6s ease both, fcHeroLeft 7s 1.4s ease-in-out infinite;
      width: 210px;
    }

    @keyframes fcHeroLeft {

      0%,
      100% {
        transform: translateY(calc(-50% + 0px)) rotate(0deg);
      }

      50% {
        transform: translateY(calc(-50% - 14px)) rotate(0deg);
      }
    }


    /* photo thumbnail inside hero card */
    .fcard-photo {
      width: 100%;
      aspect-ratio: 3 / 4;
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 12px;
      position: relative;
      background: #1a1010;
    }

    .fcard-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    .fcard-photo-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 55%, rgba(14, 11, 11, .7) 100%);
    }

    /* ══════════════════════════════
     EXAMPLES SECTION (below marquee)
  ══════════════════════════════ */
    .examples-section {
      padding: 80px 48px;
      background: rgba(255, 71, 87, .02);
      border-top: 1px solid var(--border);
    }

    .examples-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .examples-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 14px;
      margin-top: 48px;
      align-items: start;
    }

    .fcard-static {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 16px;
      transition: transform .3s, border-color .3s;
    }

    .fcard-static:hover {
      transform: translateY(-4px);
      border-color: var(--border2);
    }

    @media (max-width: 1200px) {
      .fcard-hero-left,
      .fcard-hero-right {
        display: none;
      }

      .examples-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .examples-section {
        padding: 64px 24px;
      }
    }

    @media (max-width: 600px) {
      .examples-grid {
        grid-template-columns: 1fr;
      }
    }

/* ── APP CAROUSEL ── */
.app-carousel-section {
  padding: 40px 0 8px;
}

.carousel-shell {
  margin-top: 32px;
}

.carousel-wrapper {
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0 20px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.app-slide {
  flex: 0 0 280px;
  min-height: 560px;
  border-radius: 28px;
  scroll-snap-align: start;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.app-slide-header {
  padding: 32px 24px 0;
  position: relative;
  z-index: 2;
}

.app-slide-header h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  line-height: 1;
  letter-spacing: 0.5px;
}

.app-slide-header h3 em {
  color: var(--blush);
  font-style: normal;
}

.app-slide-header p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.5;
}

.app-slide-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.app-slide-hero {
  background: #0E0B0B;
}

.app-slide-bg-grain {
  background: radial-gradient(ellipse at 70% 30%, rgba(255, 71, 87, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(245, 197, 163, 0.12) 0%, transparent 50%);
}

.app-slide-tag {
  position: relative;
  z-index: 2;
  margin: 32px 28px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 71, 87, 0.15);
  border: 1px solid rgba(255, 71, 87, 0.3);
  border-radius: 99px;
  padding: 6px 14px;
  width: fit-content;
}

.app-slide-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.8s ease infinite;
}

.app-slide-tag span:last-child {
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.app-slide-headline {
  position: relative;
  z-index: 2;
  margin: 20px 28px 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 54px;
  line-height: 0.95;
  color: #fff;
  letter-spacing: 1px;
}

.app-slide-headline em {
  color: var(--red);
  font-style: normal;
}

.app-slide-sub {
  position: relative;
  z-index: 2;
  margin: 14px 28px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
  font-weight: 400;
}

.app-slide-score-ghost {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 80px;
  text-align: right;
}

.app-slide-score-ghost .big-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 100px;
  line-height: 1;
  color: rgba(255, 71, 87, 0.18);
  letter-spacing: -2px;
}

.app-slide-logo {
  position: relative;
  z-index: 2;
  margin: 0 28px 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 4px;
  color: #fff;
}

.app-slide-logo span {
  color: var(--red);
}

.app-slide-score,
.app-slide-photos {
  background: var(--red);
  color: #fff;
}

.app-slide-score .app-slide-header p,
.app-slide-photos .app-slide-header p {
  color: rgba(255, 255, 255, 0.75);
}

.app-slide-card {
  margin: 16px 16px 24px;
  flex: 1;
}

.app-slide-card-light {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.score-ring-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.score-ring {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.score-ring svg {
  transform: rotate(-90deg);
  width: 72px;
  height: 72px;
}

.score-ring .track {
  fill: none;
  stroke: #f2f2f7;
  stroke-width: 5;
}

.score-ring .fill {
  fill: none;
  stroke: var(--red);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 198;
  stroke-dashoffset: 35;
}

.score-ring .label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: #0E0B0B;
}

.score-summary h4 {
  font-size: 14px;
  font-weight: 700;
  color: #0E0B0B;
}

.score-summary p {
  font-size: 11.5px;
  color: #8e8e93;
  margin-top: 2px;
  line-height: 1.4;
}

.score-bars {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.bar-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #3c3c43;
  font-weight: 500;
}

.bar-value {
  color: var(--red);
}

.bar-track {
  height: 5px;
  background: #f2f2f7;
  border-radius: 99px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 99px;
  background: var(--red);
}

.quick-fix-box {
  background: #fff5f6;
  border: 1px solid rgba(255, 71, 87, 0.2);
  border-radius: 12px;
  padding: 12px;
}

.quick-fix-box .qf-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.quick-fix-box p {
  font-size: 11.5px;
  color: #3c3c43;
  line-height: 1.45;
}

.app-slide-attract,
.app-slide-bio {
  background: #0E0B0B;
  color: #fff;
}

.app-slide-bg-soft {
  background: radial-gradient(ellipse at 50% 20%, rgba(245, 197, 163, 0.15) 0%, transparent 60%);
}

.app-slide-bg-red {
  background: radial-gradient(ellipse at 30% 70%, rgba(255, 71, 87, 0.2) 0%, transparent 55%);
}

.app-slide-attract .app-slide-header p,
.app-slide-bio .app-slide-header p {
  color: rgba(255, 255, 255, 0.5);
}

.app-slide-card-dark,
.app-slide-card-stack {
  position: relative;
  z-index: 2;
}

.app-slide-card-dark {
  background: #170F0F;
  border: 1px solid rgba(245, 197, 163, 0.1);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.attract-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.attract-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F5C5A3, #FF4757);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.attract-info {
  flex: 1;
}

.attract-info .name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.attract-info .desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

.attract-pct {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: #F5C5A3;
}

.attract-divider {
  height: 1px;
  background: rgba(245, 197, 163, 0.08);
}

.attract-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #F5C5A3;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.attract-label-secondary {
  margin-top: 2px;
}

.attract-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.trait-chip {
  background: rgba(245, 197, 163, 0.08);
  border: 1px solid rgba(245, 197, 163, 0.15);
  border-radius: 99px;
  padding: 4px 10px;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.6);
}

.app-slide-photos {
  position: relative;
}

.app-slide-photos::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.photos-grid {
  margin: 18px 16px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.photo-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 12px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.photo-card.warn {
  background: rgba(0, 0, 0, 0.12);
}

.photo-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.photo-thumb {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.photo-score-badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: #fff;
}

.photo-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.photo-note {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 4px;
  line-height: 1.35;
}

.bottom-note {
  margin: 12px 16px 24px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
}

.bottom-note strong {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3px;
}

.app-slide-card-stack {
  margin: 16px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.bio-box {
  background: #170F0F;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 14px;
}

.bio-box .bio-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #8e8e93;
  margin-bottom: 7px;
}

.bio-box.after .bio-label {
  color: var(--red);
}

.bio-box.after {
  border-color: rgba(255, 71, 87, 0.2);
}

.bio-box p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
}

.bio-box.before p {
  text-decoration: line-through;
}

.bio-box.after p {
  color: rgba(255, 255, 255, 0.85);
}

.bio-arrow {
  text-align: center;
  font-size: 18px;
  color: var(--red);
}

.platform-chips {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.p-chip {
  flex: 1;
  background: rgba(255, 71, 87, 0.08);
  border: 1px solid rgba(255, 71, 87, 0.2);
  border-radius: 10px;
  padding: 8px 0;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.p-chip.active {
  background: rgba(255, 71, 87, 0.18);
  border-color: rgba(255, 71, 87, 0.4);
  color: var(--red);
}

.carousel-dots {
  display: flex;
  gap: 6px;
  margin-top: 20px;
  justify-content: center;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: #c7c7cc;
  transition: width 0.3s, background 0.3s;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.carousel-dot.active {
  width: 20px;
  background: var(--red);
}

.carousel-note {
  margin-top: 24px;
  font-size: 11px;
  color: #8e8e93;
  text-align: center;
}

@media (max-width: 768px) {
  .app-carousel-section {
    padding-top: 8px;
  }

  .app-slide {
    flex-basis: 250px;
    min-height: 520px;
  }

  .app-slide-header h3,
  .app-slide-headline {
    font-size: 40px;
  }
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.blog-preview-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  transition: transform .3s, border-color .3s;
}

.blog-preview-card:hover {
  transform: translateY(-4px);
  border-color: var(--border2);
}

.blog-preview-section {
  padding-top: 72px;
}

.blog-preview-sub {
  max-width: 560px;
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.blog-preview-card {
  background: linear-gradient(180deg, rgba(23, 15, 15, 0.96), rgba(28, 18, 18, 0.96));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.blog-preview-card:hover {
  transform: translateY(-4px);
  border-color: var(--border2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
}

.blog-preview-card-top {
  margin-bottom: 12px;
}

.blog-preview-category {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 99px;
  background: rgba(255, 71, 87, .08);
  border: 1px solid rgba(255, 71, 87, .18);
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-preview-title {
  margin: 0 0 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  line-height: .95;
  letter-spacing: .4px;
}

.blog-preview-title a {
  color: #fff;
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}

.blog-preview-card:hover .blog-preview-title a {
  color: var(--blush);
}

.blog-preview-excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .46);
  margin-bottom: 20px;
  flex: 1;
}

.blog-preview-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.blog-preview-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, .26);
}

.blog-preview-readmore {
  color: var(--blush);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: color .2s ease, transform .2s ease;
}

.blog-preview-readmore:hover {
  color: #fff;
}

.blog-preview-cta {
  margin-top: 28px;
}

.blog-preview-cta .btn-full {
  max-width: 260px;
}

@media (max-width: 980px) {
  .blog-preview-grid {
    grid-template-columns: 1fr;
  }

  .blog-preview-card {
    min-height: unset;
  }
}
