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

    :root {
      --card-bg: #252741;
      --bg-color: #222531;
      --sb-bg: #0c0b15;
      --accent: #6c63ff;
      --accent-2: #a78bfa;
      --accent-glow: #6c63ff55;
      --text: #f0eeff;
      --text-muted: #8b89a8;
      --border: rgba(108, 99, 255, 0.18);
      --font-display: 'Syne', sans-serif;
      --font-body: 'DM Sans', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background-color: var(--bg-color);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ─── NOISE OVERLAY ─── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
      opacity: 0.4;
    }

    /* ─── GLOW BLOBS ─── */
    .blob {
      position: fixed;
      border-radius: 50%;
      filter: blur(120px);
      pointer-events: none;
      z-index: 0;
    }
    .blob-1 {
      width: 600px; height: 600px;
      background: radial-gradient(circle, #6c63ff22 0%, transparent 70%);
      top: -200px; left: -100px;
      animation: blobFloat 12s ease-in-out infinite;
    }
    .blob-2 {
      width: 400px; height: 400px;
      background: radial-gradient(circle, #a78bfa18 0%, transparent 70%);
      bottom: 10%; right: -100px;
      animation: blobFloat 16s ease-in-out infinite reverse;
    }
    @keyframes blobFloat {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(40px) scale(1.05); }
    }

    /* ─── NAVBAR ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 0 5%;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(12, 11, 21, 0.7);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #fff 30%, var(--accent-2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--text); }

    .nav-cta {
      background: var(--accent);
      color: #fff !important;
      padding: 0.5rem 1.25rem;
      border-radius: 8px;
      font-weight: 600 !important;
      transition: background 0.2s, transform 0.2s !important;
    }
    .nav-cta:hover { background: #5a52e0 !important; transform: translateY(-1px); }

    /* ─── HERO ─── */
    .hero {
      position: relative;
      z-index: 1;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 5% 80px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(108, 99, 255, 0.12);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 0.35rem 1rem;
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--accent-2);
      margin-bottom: 2rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      animation: fadeUp 0.8s ease both;
    }
    .hero-badge span { width: 6px; height: 6px; background: var(--accent-2); border-radius: 50%; display: inline-block; animation: pulse 2s infinite; }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.5); }
    }

    h1 {
      font-family: var(--font-display);
      font-size: clamp(3rem, 7vw, 6rem);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.03em;
      max-width: 900px;
      margin-bottom: 1.5rem;
      animation: fadeUp 0.8s 0.1s ease both;
    }

    h1 .gradient {
      background: linear-gradient(135deg, var(--accent-2) 0%, #c4b5fd 50%, var(--accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: var(--text-muted);
      max-width: 540px;
      margin-bottom: 2.5rem;
      font-weight: 300;
      line-height: 1.7;
      animation: fadeUp 0.8s 0.2s ease both;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
      animation: fadeUp 0.8s 0.3s ease both;
    }

    .btn-primary {
      background: var(--accent);
      color: #fff;
      padding: 0.85rem 2rem;
      border-radius: 10px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.2s;
      box-shadow: 0 0 30px var(--accent-glow);
    }
    .btn-primary:hover { background: #5a52e0; transform: translateY(-2px); box-shadow: 0 0 50px var(--accent-glow); }

    .btn-secondary {
      background: transparent;
      color: var(--text);
      padding: 0.85rem 2rem;
      border-radius: 10px;
      font-weight: 500;
      font-size: 1rem;
      text-decoration: none;
      border: 1px solid var(--border);
      transition: all 0.2s;
    }
    .btn-secondary:hover { border-color: var(--accent); color: var(--accent-2); }

    /* ─── DASHBOARD MOCKUP ─── */
    .hero-visual {
      position: relative;
      z-index: 1;
      margin-top: 5rem;
      width: 100%;
      max-width: 960px;
      animation: fadeUp 0.8s 0.4s ease both;
    }

    .mockup-frame {
      background: var(--sb-bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.5rem;
      box-shadow: 0 40px 120px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
      overflow: hidden;
    }

    .mockup-topbar {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
    }
    .dot { width: 10px; height: 10px; border-radius: 50%; }
    .dot-r { background: #ff5f57; }
    .dot-y { background: #ffbd2e; }
    .dot-g { background: #28c840; }

    .mockup-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .mock-stat {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 1rem 1.2rem;
    }

    .mock-stat-label {
      font-size: 0.72rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 0.3rem;
    }
    .mock-stat-val {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--text);
    }
    .mock-stat-val.up { color: #4ade80; }
    .mock-stat-val.warn { color: #f59e0b; }

    .mock-creators {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
    }

    .mock-row {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
      align-items: center;
      padding: 0.7rem 1rem;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      font-size: 0.82rem;
      gap: 0.5rem;
    }
    .mock-row:last-child { border-bottom: none; }
    .mock-row.header { color: var(--text-muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.07em; background: rgba(0,0,0,0.2); }

    .mock-avatar {
      width: 28px; height: 28px; border-radius: 50%;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 0.7rem; font-weight: 700; margin-right: 0.6rem;
    }
    .av1 { background: linear-gradient(135deg, #6c63ff, #a78bfa); }
    .av2 { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
    .av3 { background: linear-gradient(135deg, #10b981, #34d399); }
    .av4 { background: linear-gradient(135deg, #ef4444, #f87171); }

    .creator-name { display: flex; align-items: center; font-weight: 500; }

    .badge-risk {
      display: inline-block;
      padding: 0.15rem 0.5rem;
      border-radius: 100px;
      font-size: 0.7rem;
      font-weight: 600;
    }
    .risk-low { background: rgba(74, 222, 128, 0.15); color: #4ade80; }
    .risk-med { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }

    /* ─── LOGOS / SOCIAL PROOF ─── */
    .social-proof {
      position: relative;
      z-index: 1;
      padding: 3rem 5%;
      text-align: center;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .social-proof p {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--text-muted);
      margin-bottom: 2rem;
    }

    .logos {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 3rem;
      opacity: 0.45;
    }

    .logo-item {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text);
      letter-spacing: -0.02em;
    }

    /* ─── FEATURES ─── */
    section { position: relative; z-index: 1; }

    .features {
      padding: 8rem 5%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--accent-2);
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      max-width: 600px;
      line-height: 1.1;
      margin-bottom: 1rem;
    }

    .section-sub {
      color: var(--text-muted);
      font-size: 1rem;
      max-width: 460px;
      margin-bottom: 4rem;
      font-weight: 300;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .feature-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 2rem;
      transition: border-color 0.3s, transform 0.3s;
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .feature-card:hover {
      border-color: rgba(108, 99, 255, 0.4);
      transform: translateY(-4px);
    }
    .feature-card:hover::before { opacity: 1; }

    .feature-icon {
      width: 44px; height: 44px;
      background: rgba(108, 99, 255, 0.15);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.2rem;
      font-size: 1.3rem;
    }

    .feature-card h3 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
    }

    .feature-card p {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.65;
      font-weight: 300;
    }

    /* ─── METRICS STRIP ─── */
    .metrics {
      padding: 5rem 5%;
      background: var(--sb-bg);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .metrics-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 3rem;
      text-align: center;
    }

    .metric-val {
      font-family: var(--font-display);
      font-size: 3rem;
      font-weight: 800;
      letter-spacing: -0.04em;
      background: linear-gradient(135deg, var(--text), var(--accent-2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .metric-label {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-top: 0.3rem;
      font-weight: 300;
    }

    /* ─── HOW IT WORKS ─── */
    .how {
      padding: 8rem 5%;
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
      margin-top: 4rem;
    }

    .step {
      position: relative;
      padding: 2rem 1.5rem;
    }

    .step-num {
      font-family: var(--font-display);
      font-size: 4rem;
      font-weight: 800;
      color: rgba(108, 99, 255, 0.15);
      line-height: 1;
      margin-bottom: 1rem;
    }

    .step h3 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
    }

    .step p {
      color: var(--text-muted);
      font-size: 0.9rem;
      font-weight: 300;
    }

    /* ─── PRICING ─── */
    .pricing {
      padding: 8rem 5%;
      max-width: 1100px;
      margin: 0 auto;
      text-align: center;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-top: 4rem;
      align-items: start;
    }

    .pricing-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2.5rem 2rem;
      text-align: left;
      transition: transform 0.3s;
    }

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

    .pricing-card.featured {
      border-color: var(--accent);
      background: linear-gradient(160deg, rgba(108,99,255,0.12), var(--card-bg));
      box-shadow: 0 0 60px rgba(108, 99, 255, 0.15);
    }

    .plan-badge {
      display: inline-block;
      background: var(--accent);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.25rem 0.75rem;
      border-radius: 100px;
      margin-bottom: 1rem;
    }

    .plan-name {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .plan-price {
      font-family: var(--font-display);
      font-size: 2.8rem;
      font-weight: 800;
      letter-spacing: -0.04em;
      margin: 1rem 0 0.3rem;
    }
    .plan-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }

    .plan-desc {
      color: var(--text-muted);
      font-size: 0.85rem;
      margin-bottom: 2rem;
      font-weight: 300;
    }

    .plan-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
      margin-bottom: 2rem;
    }

    .plan-features li {
      font-size: 0.88rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .plan-features li::before {
      content: '✓';
      color: var(--accent-2);
      font-weight: 700;
      flex-shrink: 0;
    }

    .btn-plan {
      display: block;
      width: 100%;
      text-align: center;
      padding: 0.85rem;
      border-radius: 10px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.2s;
    }

    .btn-plan-outline {
      border: 1px solid var(--border);
      color: var(--text);
    }
    .btn-plan-outline:hover { border-color: var(--accent); color: var(--accent-2); }

    .btn-plan-filled {
      background: var(--accent);
      color: #fff;
      box-shadow: 0 0 30px var(--accent-glow);
    }
    .btn-plan-filled:hover { background: #5a52e0; }

    /* ─── CTA BANNER ─── */
    .cta-banner {
      padding: 6rem 5%;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .cta-inner {
      max-width: 700px;
      margin: 0 auto;
      background: linear-gradient(135deg, rgba(108,99,255,0.15), rgba(167,139,250,0.08));
      border: 1px solid rgba(108,99,255,0.3);
      border-radius: 24px;
      padding: 4rem 3rem;
      position: relative;
      overflow: hidden;
    }

    .cta-inner::before {
      content: '';
      position: absolute;
      top: -50%; left: -50%;
      width: 200%; height: 200%;
      background: radial-gradient(circle at center, rgba(108,99,255,0.08) 0%, transparent 60%);
      pointer-events: none;
    }

    .cta-inner h2 {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 1rem;
    }

    .cta-inner p {
      color: var(--text-muted);
      margin-bottom: 2rem;
      font-weight: 300;
    }

    /* ─── FOOTER ─── */
    footer {
      position: relative;
      z-index: 1;
      background: var(--sb-bg);
      border-top: 1px solid var(--border);
      padding: 3rem 5% 2rem;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .footer-brand p {
      color: var(--text-muted);
      font-size: 0.85rem;
      max-width: 260px;
      margin-top: 0.5rem;
      font-weight: 300;
    }

    .footer-links h4 {
      font-family: var(--font-display);
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }

    .footer-links ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .footer-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.88rem;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--text); }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .mockup-grid { grid-template-columns: 1fr 1fr; }
      .mock-row { grid-template-columns: 2fr 1fr 1fr; }
      .mock-row .col-hide { display: none; }
      .footer-top { flex-direction: column; }
    }