  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --ink: #191127;
    --cream: #f5f0e8;
    --gold: #883CF0;
    --coral: #af62c8;
    --electric: #7c6bff;
    --muted: #d6d6d6;
    --glass: #291a3e;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--ink);
    color: var(--cream);
    font-family: 'Syne', sans-serif;
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  #cursor {
    position: fixed; width: 12px; height: 12px;
    background: var(--gold); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, background 0.2s, width 0.2s, height 0.2s;
    mix-blend-mode: difference;
  }
  #cursor-ring {
    position: fixed; width: 40px; height: 40px;
    border: 1px solid #883CF0; border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.3s, height 0.3s, opacity 0.3s;
  }
  body:hover #cursor { opacity: 1; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 24px 48px;
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(to bottom, #180f26 0%, transparent 100%);
    backdrop-filter: blur(4px);
  }
  .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px; letter-spacing: 3px; color: var(--cream);
    display: flex; align-items: center; gap: 10px;
  }
  .logo-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    color: var(--muted); text-decoration: none; font-size: 13px;
    letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--cream); }
  .nav-cta {
    background: var(--gold); color: var(--ink);
    padding: 10px 24px; border-radius: 2px;
    font-size: 12px; font-weight: 800; letter-spacing: 2px;
    text-transform: uppercase; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(171, 74, 232, 0.3); }

  /* HERO */
  #hero {
    min-height: 100vh; position: relative;
    display: flex; align-items: center;
    overflow: hidden;
    padding: 0 48px;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 60% 50%, rgba(164, 74, 232, 0.08) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 80% 20%, rgba(200, 0, 255, 0.06) 0%, transparent 50%),
      radial-gradient(ellipse 50% 70% at 10% 80%, rgba(248, 60, 255, 0.05) 0%, transparent 50%);
  }

  /* FILM GRAIN */
  .grain {
    position: fixed; inset: 0; z-index: 200;
    pointer-events: none; opacity: 0.03;
    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)'/%3E%3C/svg%3E");
  }

  .hero-content { position: relative; z-index: 2; max-width: 700px; }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: #23133a; border: 1px solid #3a1c633e;
    padding: 6px 16px; border-radius: 100px; margin-bottom: 32px;
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
    backdrop-filter: blur(8px);
  }
  .badge-pulse {
    width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
  }

  .hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(56px, 8vw, 110px);
    line-height: 0.95; letter-spacing: -2px;
    margin-bottom: 28px;
  }
  .hero-title em { font-style: italic; color: var(--gold); }
  .hero-title span { display: block; }

  .hero-sub {
    color: var(--muted); font-size: 17px; line-height: 1.7;
    max-width: 480px; margin-bottom: 44px; font-weight: 400;
  }

  .hero-actions { display: flex; align-items: center; gap: 24px; }
  .btn-primary {
    background: var(--gold); color: var(--ink);
    padding: 16px 36px; font-family: 'Syne', sans-serif;
    font-size: 13px; font-weight: 800; letter-spacing: 2px;
    text-transform: uppercase; border: none; border-radius: 2px;
    cursor: none; transition: all 0.25s;
    position: relative; overflow: hidden;
  }
  .btn-primary::after {
    content: ''; position: absolute; inset: 0;
    background: var(--coral); transform: translateX(-101%);
    transition: transform 0.3s cubic-bezier(0.77,0,0.175,1);
  }
  .btn-primary:hover::after { transform: translateX(0); }
  .btn-primary span { position: relative; z-index: 1; }

  .btn-ghost {
    color: var(--cream); font-size: 13px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    display: flex; align-items: center; gap: 10px;
    background: none; border: none; cursor: none;
    transition: gap 0.2s;
  }
  .btn-ghost:hover { gap: 16px; }
  .btn-ghost-arrow { font-size: 18px; }

  /* STATS */
  .hero-stats {
    display: flex; gap: 48px; margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid #3a1c63b7;
  }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px; line-height: 1; color: var(--cream); letter-spacing: 1px;
  }
  .stat-label { font-size: 11px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }

  /* HERO VISUAL */
  .hero-visual {
    position: absolute; right: 0; top: 0; bottom: 0; width: 45%;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }

  .video-preview {
    width: 380px; height: 500px;
    border: 1px solid #3a1c63;
    border-radius: 4px;
    background:
      linear-gradient(135deg, rgba(148, 74, 232, 0.05) 0%, rgba(162, 0, 255, 0.03) 50%, rgba(216, 60, 255, 0.05) 100%);
    position: relative; overflow: hidden;
    animation: float 6s ease-in-out infinite;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
  }
  .video-scanlines {
    position: absolute; inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0, 0, 0, 0.08) 3px, rgba(0, 0, 0, 0.08) 4px);
  }
  .video-inner {
    padding: 32px; height: 100%;
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .vi-tag {
    display: inline-block; background: var(--coral); color: white;
    padding: 4px 10px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    font-weight: 700; border-radius: 2px;
  }
  .vi-title {
    font-family: 'DM Serif Display', serif;
    font-size: 32px; line-height: 1.1; color: var(--cream);
  }
  .vi-waveform {
    display: flex; align-items: flex-end; gap: 3px; height: 40px;
  }
  .wave-bar {
    width: 4px; background: var(--gold); border-radius: 2px;
    animation: wave 1.2s ease-in-out infinite;
  }
  .wave-bar:nth-child(1) { animation-delay: 0s; }
  .wave-bar:nth-child(2) { animation-delay: 0.1s; }
  .wave-bar:nth-child(3) { animation-delay: 0.2s; }
  .wave-bar:nth-child(4) { animation-delay: 0.3s; }
  .wave-bar:nth-child(5) { animation-delay: 0.15s; }
  .wave-bar:nth-child(6) { animation-delay: 0.05s; }
  .wave-bar:nth-child(7) { animation-delay: 0.25s; }
  .wave-bar:nth-child(8) { animation-delay: 0.35s; }
  .wave-bar:nth-child(9) { animation-delay: 0.1s; }
  .wave-bar:nth-child(10) { animation-delay: 0.2s; }
  @keyframes wave {
    0%, 100% { height: 8px; }
    50% { height: 32px; }
  }
  .vi-progress {
    background: rgba(241, 232, 245, 0.1); border-radius: 100px; height: 2px;
    position: relative; overflow: hidden;
  }
  .vi-progress-fill {
    position: absolute; left: 0; top: 0; height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--electric));
    width: 60%; animation: progress 4s linear infinite;
  }
  @keyframes progress {
    0% { width: 0%; }
    100% { width: 100%; }
  }

  /* MARQUEE */
  .marquee-section {
    overflow: hidden; padding: 32px 0;
    border-top: 1px solid #3a1c63e4;
    border-bottom: 1px solid #3a1c63e4;
    background: rgba(214, 184, 240, 0.02);
  }
  .marquee-track {
    display: flex; gap: 64px; white-space: nowrap;
    animation: marquee 20s linear infinite;
    align-items: center;
  }
  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .marquee-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px; letter-spacing: 4px; color: var(--muted);
    flex-shrink: 0; display: flex; align-items: center; gap: 24px;
  }
  .marquee-sep { color: var(--gold); font-size: 8px; }

  /* SECTION BASE */
  section { padding: 120px 48px; }

  .section-label {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); font-weight: 700; margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
  }
  .section-label::before {
    content: ''; display: block; width: 24px; height: 1px; background: var(--gold);
  }

  /* TEXT-TO-VIDEO DEMO */
  #demo { background: rgba(239, 232, 245, 0.01); }
  .demo-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center; margin-top: 64px;
  }
  .demo-left h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(40px, 5vw, 68px); line-height: 1.05; margin-bottom: 24px;
  }
  .demo-left h2 em { font-style: italic; color: var(--gold); }
  .demo-left p { color: var(--muted); font-size: 16px; line-height: 1.8; margin-bottom: 40px; }

  .demo-terminal {
    background: rgba(241, 232, 245, 0.03);
    border: 1px solid #3a1c6391; border-radius: 6px;
    overflow: hidden;
  }
  .terminal-bar {
    background: #3a1c6328; padding: 12px 18px;
    display: flex; align-items: center; gap: 8px;
    border-bottom: 1px solid #3a1c6391;
  }
  .t-dot { width: 10px; height: 10px; border-radius: 50%; }
  .t-dot.r { background: #ff5f57; }
  .t-dot.y { background: #febc2e; }
  .t-dot.g { background: #28c840; }
  .t-label { font-size: 11px; color: var(--muted); letter-spacing: 1px; margin-left: auto; }

  .terminal-body { padding: 24px; min-height: 120px; }
  .t-prompt { color: var(--gold); font-size: 12px; margin-bottom: 8px; font-weight: 700; letter-spacing: 1px; }
  #t-input {
    background: none; border: none; outline: none;
    color: var(--cream); font-family: 'Syne', sans-serif;
    font-size: 15px; width: 100%; cursor: none;
  }
  #t-input::placeholder { color: rgba(241, 232, 245, 0.2); }
  .t-cursor { display: inline-block; width: 2px; height: 16px; background: var(--gold); animation: blink 1s step-end infinite; vertical-align: middle; }
  @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

  .terminal-output {
    border-top: 1px solid #3a1c6391; padding: 20px 24px;
    display: none;
  }
  .terminal-output.show { display: block; }
  .t-generating {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: var(--electric); letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 12px;
  }
  .t-gen-dot {
    width: 6px; height: 6px; background: var(--electric); border-radius: 50%;
    animation: gen-pulse 0.8s ease-in-out infinite;
  }
  .t-gen-dot:nth-child(2) { animation-delay: 0.2s; }
  .t-gen-dot:nth-child(3) { animation-delay: 0.4s; }
  @keyframes gen-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.5); opacity: 0.3; }
  }
  .t-result-preview {
    height: 80px;
    background: linear-gradient(135deg, rgba(171, 74, 232, 0.08), rgba(157, 0, 255, 0.04));
    border: 1px solid #3a1c63; border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: 3px; color: var(--muted);
  }

  /* FEATURES */
  #features { position: relative; }
  .features-header { text-align: center; margin-bottom: 80px; }
  .features-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(36px, 5vw, 64px); margin-top: 16px;
  }

  .features-tabs {
    display: flex; gap: 4px; justify-content: center;
    margin-bottom: 64px; padding: 6px;
    background: rgba(242, 232, 245, 0.04); border-radius: 100px;
    width: fit-content; margin-left: auto; margin-right: auto;
    border: 1px solid #3a1c6391;
  }
  .ftab {
    padding: 10px 24px; border-radius: 100px; cursor: none;
    font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    background: none; border: none; color: var(--muted);
    transition: all 0.3s;
  }
  .ftab.active { background: var(--gold); color: var(--ink); }
  .ftab:hover:not(.active) { color: var(--cream); }

  .feature-panel { display: none; }
  .feature-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

  .fp-visual {
    aspect-ratio: 4/3; border-radius: 6px;
    position: relative; overflow: hidden;
    border: 1px solid #3a1c633f;
  }
  .fp-bg {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
  }

  /* Text-to-Video visual */
  .ttv-bg {
    background: linear-gradient(135deg, #140d1a 0%, #170d1a 100%);
  }
  .ttv-text-block {
    text-align: center; padding: 40px;
  }
  .ttv-typing {
    font-size: 14px; color: var(--muted); margin-bottom: 32px;
    border-bottom: 1px solid #3a1c63b4; padding-bottom: 16px;
  }
  .ttv-arrow {
    font-size: 32px; color: var(--gold); margin-bottom: 16px; display: block;
  }
  .ttv-result {
    font-family: 'DM Serif Display', serif; font-size: 20px;
    color: var(--cream); font-style: italic;
  }

  /* Voiceover visual */
  .vo-bg { background: linear-gradient(135deg, #140d1a 0%, #180d1a 100%); }
  .vo-circles {
    position: relative; display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%;
  }
  .vo-ring {
    position: absolute; border-radius: 50%; border: 1px solid #5d309d58;
    animation: expand 3s ease-out infinite;
  }
  .vo-ring:nth-child(1) { width: 80px; height: 80px; animation-delay: 0s; }
  .vo-ring:nth-child(2) { width: 140px; height: 140px; animation-delay: 0.5s; }
  .vo-ring:nth-child(3) { width: 200px; height: 200px; animation-delay: 1s; }
  .vo-ring:nth-child(4) { width: 260px; height: 260px; animation-delay: 1.5s; }
  @keyframes expand {
    0% { opacity: 0.8; transform: scale(0.8); }
    100% { opacity: 0; transform: scale(1.2); }
  }
  .vo-mic {
    position: relative; z-index: 2; background: var(--electric);
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
  }

  /* Export visual */
  .exp-bg { background: linear-gradient(135deg, #140d1a 0%, #160d1a 100%); }
  .exp-formats {
    display: flex; flex-direction: column; gap: 12px; width: 100%; padding: 32px;
  }
  .exp-fmt {
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(239, 232, 245, 0.04); border: 1px solid #3a1c633f;
    padding: 12px 16px; border-radius: 4px;
  }
  .exp-name { font-size: 14px; font-weight: 700; letter-spacing: 1px; }
  .exp-bar-wrap { flex: 1; margin: 0 16px; height: 3px; background: rgba(243, 232, 245, 0.1); border-radius: 100px; overflow: hidden; }
  .exp-bar { height: 100%; background: var(--coral); border-radius: 100px; }
  .exp-size { font-size: 11px; color: var(--muted); }

  .fp-content h3 {
    font-family: 'DM Serif Display', serif; font-size: 40px;
    margin-bottom: 16px; margin-top: 8px;
  }
  .fp-content p { color: var(--muted); line-height: 1.8; margin-bottom: 32px; }
  .fp-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .fp-list li {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px; color: var(--cream);
  }
  .fp-list li::before {
    content: ''; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0;
  }

  /* PRICING */
  #pricing { background: rgba(240, 232, 245, 0.01); }
  .pricing-header { text-align: center; margin-bottom: 64px; }
  .pricing-header h2 { font-family: 'DM Serif Display', serif; font-size: clamp(36px, 5vw, 64px); margin-top: 12px; }
  .pricing-toggle {
    display: flex; align-items: center; gap: 12px; justify-content: center;
    margin-top: 24px; font-size: 13px; color: var(--muted);
  }
  .toggle-switch {
    width: 44px; height: 24px; background: rgba(242, 232, 245, 0.1);
    border-radius: 100px; position: relative; cursor: none;
    border: 1px solid #3a1c631d; transition: background 0.3s;
  }
  .toggle-switch.on { background: var(--gold); }
  .toggle-knob {
    position: absolute; top: 3px; left: 3px;
    width: 16px; height: 16px; background: var(--cream); border-radius: 50%;
    transition: transform 0.3s;
  }
  .toggle-switch.on .toggle-knob { transform: translateX(20px); background: var(--ink); }
  .save-badge {
    background: var(--coral); color: white; padding: 2px 8px;
    border-radius: 100px; font-size: 10px; font-weight: 700; letter-spacing: 1px;
  }

  .pricing-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }

  .price-card {
    border: 1px solid #3a1c63; border-radius: 6px;
    padding: 40px 32px; position: relative; transition: transform 0.3s, border-color 0.3s;
    background: rgba(242, 232, 245, 0.02);
  }
  .price-card:hover { transform: translateY(-8px); border-color: #3a1c63; }
  .price-card.featured {
    background: var(--gold); border-color: var(--gold);
    transform: scale(1.04);
  }
  .price-card.featured:hover { transform: scale(1.04) translateY(-8px); }
  .price-card.featured * { color: var(--ink) !important; }

  .price-tag {
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    font-weight: 700; color: var(--muted); margin-bottom: 24px;
  }
  .price-card.featured .price-tag { color: rgba(10,10,15,0.6) !important; }

  .price-num {
    font-family: 'Bebas Neue', sans-serif; font-size: 64px; line-height: 1;
    color: var(--cream); display: flex; align-items: flex-start; gap: 4px;
  }
  .price-currency { font-size: 24px; margin-top: 12px; }
  .price-period { font-size: 14px; color: var(--muted); margin-top: 8px; font-family: 'Syne', sans-serif; font-weight: 400; }

  .price-divider {
    height: 1px; background: rgba(241, 232, 245, 0.1); margin: 28px 0;
  }
  .price-card.featured .price-divider { background: rgba(10,10,15,0.15); }

  .price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
  .price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--muted); line-height: 1.5; }
  .price-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
  .price-card.featured .price-features li { color: rgba(10,10,15,0.8) !important; }
  .price-card.featured .price-features li::before { color: var(--ink) !important; }

  .price-btn {
    display: block; text-align: center; padding: 14px;
    border: 1px solid rgba(245,240,232,0.2); border-radius: 4px;
    color: var(--cream); font-size: 12px; font-weight: 800; letter-spacing: 2px;
    text-transform: uppercase; text-decoration: none; cursor: none;
    transition: all 0.2s;
    background: none;
  }
  .price-btn:hover { background: var(--cream); color: var(--ink); }
  .price-card.featured .price-btn {
    background: var(--ink); border-color: var(--ink); color: var(--gold) !important;
  }
  .price-card.featured .price-btn:hover { background: rgba(10,10,15,0.8); }

  /* TESTIMONIAL */
  #testimonial {
    padding: 120px 48px; position: relative; overflow: hidden;
    border-top: 1px solid #3a1c63d4;
  }
  .testimonial-inner {
    max-width: 900px; margin: 0 auto; text-align: center; position: relative;
  }
  .t-quote-mark {
    font-family: 'DM Serif Display', serif; font-size: 200px;
    color: rgba(232,200,74,0.08); line-height: 0.8;
    position: absolute; top: -40px; left: -20px; user-select: none;
  }
  .t-stars { display: flex; gap: 4px; justify-content: center; margin-bottom: 32px; }
  .star { color: var(--gold); font-size: 18px; }
  .t-text {
    font-family: 'DM Serif Display', serif; font-style: italic;
    font-size: clamp(20px, 3vw, 32px); line-height: 1.5; color: var(--cream);
    margin-bottom: 40px; position: relative; z-index: 1;
  }
  .t-author { display: flex; align-items: center; gap: 16px; justify-content: center; }
  .t-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--coral));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif; font-size: 18px; color: var(--ink);
  }
  .t-name { font-weight: 700; font-size: 15px; }
  .t-role { font-size: 12px; color: var(--muted); letter-spacing: 1px; }

  /* FAQ */
  #faq { padding: 120px 48px; background: rgba(240, 232, 245, 0.01); }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .faq-left h2 {
    font-family: 'DM Serif Display', serif; font-size: clamp(36px, 4vw, 56px);
    line-height: 1.05; margin-bottom: 20px; margin-top: 12px;
  }
  .faq-left p { color: var(--muted); line-height: 1.8; }
  .faq-rating {
    margin-top: 48px; padding: 32px;
    border: 1px solid #3a1c63; border-radius: 6px;
    background: #78638b1d;
  }
  .rating-num {
    font-family: 'Bebas Neue', sans-serif; font-size: 72px; line-height: 1; color: var(--gold);
  }
  .rating-label { font-size: 13px; color: var(--muted); letter-spacing: 1px; }

  .faq-list { display: flex; flex-direction: column; }
  .faq-item {
    border-bottom: 1px solid #3a1c63;
    overflow: hidden;
  }
  .faq-q {
    padding: 24px 0; display: flex; align-items: center; justify-content: space-between;
    cursor: none; font-size: 15px; font-weight: 600;
    transition: color 0.2s;
  }
  .faq-q:hover { color: var(--gold); }
  .faq-icon {
    width: 28px; height: 28px; border: 1px solid #3a1c63;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0; transition: all 0.3s; color: var(--muted);
  }
  .faq-item.open .faq-icon { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: rotate(45deg); }
  .faq-a {
    max-height: 0; overflow: hidden;
    font-size: 14px; color: var(--muted); line-height: 1.8;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
    padding-bottom: 0;
  }
  .faq-item.open .faq-a { max-height: 200px; padding-bottom: 24px; }

  /* CTA */
  #cta {
    padding: 120px 48px; text-align: center;
    position: relative; overflow: hidden;
  }
  .cta-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 50% 50%, rgba(161, 74, 232, 0.06) 0%, transparent 70%);
  }
  .cta-content { position: relative; z-index: 1; }
  .cta-content h2 {
    font-family: 'DM Serif Display', serif; font-size: clamp(40px, 6vw, 88px);
    line-height: 1.0; margin-bottom: 24px;
  }
  .cta-content h2 em { font-style: italic; color: var(--gold); }
  .cta-content p { color: var(--muted); font-size: 17px; max-width: 480px; margin: 0 auto 48px; line-height: 1.7; }

  /* FOOTER */
  footer {
    padding: 64px 48px 40px;
    border-top: 1px solid #3a1c63;
  }
  .footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 64px; }
  .footer-brand { max-width: 300px; }
  .footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 3px; margin-bottom: 16px; }
  .footer-tagline { color: var(--muted); font-size: 14px; line-height: 1.7; }
  .footer-links { display: flex; gap: 64px; }
  .footer-col h4 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 20px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
  .footer-col a:hover { color: var(--cream); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 32px; border-top: 1px solid #3a1c63;
    font-size: 12px; color: var(--muted);
  }
  .footer-socials { display: flex; gap: 16px; }
  .social-link {
    width: 36px; height: 36px;
    border: 1px solid #3a1c63; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); text-decoration: none; font-size: 14px;
    transition: all 0.2s;
  }
  .social-link:hover { border-color: var(--gold); color: var(--gold); }

  /* SCROLL REVEAL */
  .reveal {
    opacity: 0; transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 20px 24px; }
    .nav-links { display: none; }
    section, #hero, #testimonial, #faq, #cta, footer { padding: 80px 24px; }
    .hero-visual { display: none; }
    .demo-grid, .feature-panel.active, .pricing-grid, .faq-grid, .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .price-card.featured { transform: none; }
    .footer-links { flex-direction: column; gap: 32px; }
    .hero-stats { flex-wrap: wrap; gap: 32px; }
  }