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

  :root {
    --black: #0D0A1A;
    --white: #ffffff;
    --cream: #f5f2ec;
    --green: #A855F7;
    --green-mid: #7C3AED;
    --green-dark: #5B21B6;
    --gold: #D4A017;
    --gold-light: #F0C040;
    --muted: #6b7280;
    --border: rgba(255,255,255,0.1);
    --card-bg: rgba(255,255,255,0.04);
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 4rem;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
  }
  .nav-logo {
    font-family: var(--font-display);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .nav-logo img {
    height: 42px;
    width: auto;
    display: block;
  }
  .nav-links, .nav-cta { display: none; }
  .btn-ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 0.55rem 1.4rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
  }
  .btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
  .btn-primary {
    background: var(--green);
    border: none;
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-primary:hover { background: #C084FC; transform: translateY(-1px); }
  .btn-primary-lg {
    padding: 0.9rem 2.4rem;
    font-size: 1rem;
    border-radius: 100px;
    background: var(--green);
    color: var(--white);
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
    letter-spacing: -0.01em;
  }
  .btn-primary-lg:hover { background: #C084FC; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(168,85,247,0.32); }
  .btn-outline-lg {
    padding: 0.9rem 2.4rem;
    font-size: 1rem;
    border-radius: 100px;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-outline-lg:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.04); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 6rem;
    position: relative;
    overflow: hidden;
  }
  .hero-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168,85,247,0.14) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    pointer-events: none;
  }
  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
    pointer-events: none;
  }
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(168,85,247,0.12);
    border: 1px solid rgba(168,85,247,0.32);
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    animation: fadeUp 0.6s ease both;
  }
  .badge .pulse {
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }
  h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.04em;
    max-width: 900px;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.7s 0.1s ease both;
  }
  h1 .accent { color: var(--gold-light); }
  .hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.55);
    max-width: 540px;
    font-weight: 300;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    animation: fadeUp 0.7s 0.2s ease both;
  }
  .hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    animation: fadeUp 0.7s 0.3s ease both;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-social-proof {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    animation: fadeUp 0.7s 0.4s ease both;
  }
  .avatars {
    display: flex;
  }
  .avatars span {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid var(--black);
    margin-left: -8px;
    display: block;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
  }
  .avatars span:first-child { margin-left: 0; }

  /* Dashboard mockup */
  .hero-visual {
    width: 100%;
    max-width: 900px;
    margin-top: 4rem;
    animation: fadeUp 0.8s 0.5s ease both;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
  }
  .dashboard-top {
    background: #111;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .db-dots { display: flex; gap: 6px; }
  .db-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
  }
  .db-dots span:nth-child(1) { background: #ff5f57; }
  .db-dots span:nth-child(2) { background: #febc2e; }
  .db-dots span:nth-child(3) { background: #28c840; }
  .db-title { font-size: 0.8rem; color: rgba(255,255,255,0.35); font-weight: 400; }
  .dashboard-body {
    background: #0d0d0d;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
  }
  .db-stat {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1.25rem;
  }
  .db-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
  .db-stat-value { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; letter-spacing: -0.03em; }
  .db-stat-change { font-size: 0.75rem; margin-top: 0.25rem; }
  .up { color: var(--green); }
  .down { color: #ff6b6b; }
  .chart-area {
    grid-column: 1 / -1;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    height: 160px;
    overflow: hidden;
  }
  .chart-label { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-bottom: 0.75rem; }
  .chart-svg { width: 100%; height: 110px; }

  /* ── STATS STRIP ── */
  .stats-strip {
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 3rem 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
  }
  .stat-item {}
  .stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--white);
    line-height: 1;
  }
  .stat-number span { color: var(--green); }
  .stat-desc { font-size: 0.9rem; color: rgba(255,255,255,0.4); margin-top: 0.4rem; font-weight: 300; }

  /* ── SECTION ── */
  section { padding: 7rem 4rem; }
  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-light);
    margin-bottom: 1rem;
  }
  .section-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--gold-light);
  }
  h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    max-width: 600px;
  }
  .section-intro {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.5);
    max-width: 500px;
    font-weight: 300;
    margin-top: 1rem;
    line-height: 1.7;
  }

  /* ── FEATURES ── */
  .features-section { padding: 7rem 4rem; }
  .features-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    gap: 2rem;
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 2rem;
    transition: all 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, rgba(168,85,247,0.45), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .feature-card:hover { border-color: rgba(168,85,247,0.22); transform: translateY(-4px); }
  .feature-card:hover::before { opacity: 1; }
  .feature-icon {
    width: 44px; height: 44px;
    background: rgba(168,85,247,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
  }
  .feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
  }
  .feature-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
    font-weight: 300;
  }
  .feature-tag {
    display: inline-block;
    margin-top: 1.25rem;
    font-size: 0.75rem;
    color: var(--green);
    font-weight: 500;
  }

  /* ── SPLIT SECTION ── */
  .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
  .split.reverse { direction: rtl; }
  .split.reverse > * { direction: ltr; }
  .split-text {}
  .split-visual {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 2rem;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
  }
  .split-visual .bg-accent {
    position: absolute;
    right: -60px; top: -60px;
    width: 250px; height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168,85,247,0.10) 0%, transparent 70%);
    pointer-events: none;
  }
  .mini-chart { position: relative; height: 160px; margin-top: auto; }
  .price-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 0.3rem;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
  }
  .price-tag sup { font-size: 1.2rem; font-weight: 600; color: var(--green); }
  .price-tag .cents { font-size: 1.5rem; font-weight: 600; }
  .asset-list { list-style: none; }
  .asset-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
  }
  .asset-list li:last-child { border-bottom: none; }
  .asset-name { display: flex; align-items: center; gap: 0.75rem; }
  .asset-dot { width: 8px; height: 8px; border-radius: 50%; }
  .asset-val { font-weight: 500; font-family: var(--font-display); }
  .asset-pct { font-size: 0.78rem; padding: 0.15rem 0.5rem; border-radius: 4px; font-weight: 500; }
  .pct-up { background: rgba(168,85,247,0.14); color: var(--green); }
  .pct-down { background: rgba(255,107,107,0.12); color: #ff6b6b; }

  /* ── TESTIMONIALS ── */
  .testimonials-section { padding: 7rem 4rem; background: rgba(255,255,255,0.01); }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
  }
  .testimonial-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 1.75rem;
  }
  .stars { color: var(--green); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-style: italic;
  }
  .testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
  .author-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--black);
    flex-shrink: 0;
  }
  .author-name { font-size: 0.9rem; font-weight: 500; }
  .author-role { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 0.1rem; }

  /* ── PRICING ── */
  .pricing-section { padding: 7rem 4rem; text-align: center; }
  .pricing-header { margin-bottom: 4rem; }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
  }
  .plan-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s;
  }
  .plan-card.featured {
    background: var(--green);
    border-color: var(--green);
  }
  .plan-card.featured * { color: var(--black) !important; }
  .plan-card.featured .plan-feature { border-color: rgba(0,0,0,0.1) !important; }
  .plan-card.featured .plan-cta {
    background: var(--black) !important;
    color: var(--white) !important;
    border-color: var(--black) !important;
  }
  .plan-card.featured .plan-cta:hover { background: #111 !important; }
  .plan-badge {
    display: inline-block;
    background: var(--black);
    color: var(--green);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
  }
  .plan-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  .plan-desc { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-bottom: 1.5rem; font-weight: 300; }
  .plan-price {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.25rem;
  }
  .plan-price sup { font-size: 1.2rem; }
  .plan-period { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 1.75rem; }
  .plan-cta {
    display: block;
    width: 100%;
    padding: 0.75rem;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 1.75rem;
    text-align: center;
    text-decoration: none;
  }
  .plan-cta:hover { background: rgba(255,255,255,0.08); }
  .plan-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
  }
  .plan-feature:last-child { border-bottom: none; }
  .check { color: var(--green); font-size: 0.9rem; }

  /* ── CTA ── */
  .cta-section {
    padding: 7rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168,85,247,0.12) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .cta-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    max-width: 700px;
    margin: 0 auto 1.5rem;
  }
  .cta-section p {
    color: rgba(255,255,255,0.45);
    font-size: 1.05rem;
    max-width: 460px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
  }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 3rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-brand {
    font-family: var(--font-display);
    display: flex;
    align-items: center;
  }
  .footer-brand img {
    height: 34px;
    width: auto;
    display: block;
  }
  .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  .footer-links a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--white); }
  .footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.25); }

  /* ── 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);
  }

  /* Mobile */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    section, .features-section, .testimonials-section, .pricing-section, .cta-section { padding: 5rem 1.5rem; }
    .stats-strip { grid-template-columns: repeat(2,1fr); padding: 2.5rem 1.5rem; }
    .features-grid, .testimonials-grid, .pricing-grid { grid-template-columns: 1fr; }
    .features-header { flex-direction: column; align-items: flex-start; }
    .split, .split.reverse { grid-template-columns: 1fr; direction: ltr; gap: 3rem; }
    footer { flex-direction: column; gap: 1.5rem; text-align: center; }
    .dashboard-body { grid-template-columns: 1fr 1fr; }
  }
