  :root {
    --ink: #180f26;
    --paper: #191127;
    --gold: #883CF0;
    --gold-light: #7c3aed;
    --rust: #b29dce;
    --sage: #af62c8;
    --cream: #faf7f0;
    --mid: #d6d6d6;
    --border: #3a1c63;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--paper);
    color: #fff;
    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: 1000;
    opacity: 0.5;
  }

  /* ---- NAV ---- */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 4rem;
    background: #180f26;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
  }
  nav.scrolled {
    padding: 0.9rem 4rem;
    background: #180f2697;
  }
  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #fff;
    text-decoration: none;
  }
  .logo-dot { color: var(--gold); }
  nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
  }
  nav ul a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--mid);
    text-decoration: none;
    transition: color 0.2s;
  }
  nav ul a:hover { color: #fff; }
  .nav-cta {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: #23133a;
    color: #fff;
    padding: 0.6rem 1.4rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
  }
  .nav-cta:hover { background: var(--gold); color: #fff; }

  /* ---- HERO ---- */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    position: relative;
    overflow: hidden;
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 4rem 4rem 4rem;
    position: relative;
    z-index: 2;
  }
  .hero-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .hero-label::before {
    content: '';
    width: 2rem;
    height: 1px;
    background: var(--gold);
    display: block;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--rust);
  }
  .hero-sub {
    font-size: 1.1rem;
    color: var(--mid);
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 2.5rem;
    font-weight: 300;
  }
  .hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  .btn-primary {
    background: #883CF0;
    color: #fff;
    padding: 1rem 2rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid #3a1c63;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-block;
  }
  .btn-primary:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-2px);
  }
  .btn-ghost {
    background: transparent;
    color: #fff;
    padding: 1rem 2rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-block;
  }
  .btn-ghost:hover {
    border-color: #fff;
    transform: translateY(-2px);
  }

  /* hero stats strip */
  .hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
  }

  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
  }
  .stat-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--mid);
    margin-top: 0.3rem;
  }

  /* ---- HERO RIGHT — ANIMATED DOCKET ---- */
  .hero-right {
    background: var(--ink);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(161, 76, 201, 0.15) 0%, transparent 60%);
  }
  .docket-display {
    position: relative;
    z-index: 2;
    width: 85%;
    max-width: 460px;
  }
  .docket-window {
    background: #23133ab3;
    border: 1px solid #3a1c63;
    padding: 1.5rem;
    font-family: 'IBM Plex Mono', monospace;
    color: rgba(245,240,232,0.85);
    font-size: 0.72rem;
    line-height: 1.8;
  }
  .docket-header {
    color: var(--gold);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #3a1c63;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
  .docket-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid #3a1c63;
    opacity: 0;
    transform: translateX(10px);
    animation: slideIn 0.4s ease forwards;
  }
  .docket-row:nth-child(1) { animation-delay: 0.3s; }
  .docket-row:nth-child(2) { animation-delay: 0.5s; }
  .docket-row:nth-child(3) { animation-delay: 0.7s; }
  .docket-row:nth-child(4) { animation-delay: 0.9s; }
  .docket-row:nth-child(5) { animation-delay: 1.1s; }
  .docket-row:nth-child(6) { animation-delay: 1.3s; }
  @keyframes slideIn {
    to { opacity: 1; transform: translateX(0); }
  }
  .d-label { color: rgba(245,240,232,0.5); }
  .d-value { color: rgba(245,240,232,0.9); text-align: right; }
  .badge {
    display: inline-block;
    padding: 0.1rem 0.5rem;
    font-size: 0.6rem;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .badge-green { background: rgba(61,90,78,0.6); color: #7ebfa0; border: 1px solid rgba(126,191,160,0.3); }
  .badge-amber { background: rgb(147 82 161 / 20%); color: var(--gold-light); border: 1px solid rgba(168, 76, 201, 0.3); }
  .badge-red { background: rgba(139,58,46,0.4); color: #d4856a; border: 1px solid rgba(212,133,106,0.3); }

  /* AI insight card below docket */
  .ai-insight {
    margin-top: 1rem;
    background: #23133a50;
    border: 1px solid #3a1c63;
    padding: 1rem 1.25rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    color: rgba(245,240,232,0.7);
    line-height: 1.6;
    opacity: 0;
    animation: fadeUp 0.5s ease 1.8s forwards;
  }
  .ai-insight-label {
    color: var(--gold);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .ai-pulse {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 1.5s ease infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* decorative lines on hero right */
  .grid-lines {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(153, 76, 201, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(151, 76, 201, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
  }

  /* ---- MARQUEE ---- */
  .marquee-strip {
    background: #1f1232;
    padding: 0.85rem 0;
    overflow: hidden;
    position: relative;
  }
  .marquee-inner {
    display: flex;
    gap: 3rem;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
  }
  .marquee-inner span {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(245, 240, 232, 0.873);
    flex-shrink: 0;
  }
  .marquee-inner span.accent {
    color: var(--gold);
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ---- FEATURES ---- */
  .features {
    padding: 7rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
  }
  .section-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .section-label::before {
    content: '';
    width: 1.5rem;
    height: 1px;
    background: var(--gold);
  }
  .features-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: end;
  }
  .features-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
  }
  .features-header p {
    color: var(--mid);
    line-height: 1.8;
    font-weight: 300;
    font-size: 1.05rem;
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--border);
  }
  .feature-card {
    background: #2a1647;
    padding: 2.5rem;
    transition: background 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .feature-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    height: 3px;
    width: 0;
    background: var(--gold);
    transition: width 0.3s ease;
  }
  .feature-card:hover { background: var(--paper); }
  .feature-card:hover::before { width: 100%; }
  .feature-card:hover .feature-icon { transform: scale(1.05); }
  .feature-icon {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    display: block;
    transition: transform 0.3s;
  }
  .feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
  }
  .feature-card p {
    font-size: 0.9rem;
    color: var(--mid);
    line-height: 1.7;
    font-weight: 300;
  }
  .feature-tag {
    display: inline-block;
    margin-top: 1.25rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 1px;
  }

  /* ---- SEARCH DEMO ---- */
  .demo-section {
    background: var(--ink);
    padding: 6rem 4rem;
    position: relative;
    overflow: hidden;
  }
  .demo-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(151, 76, 201, 0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .demo-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .demo-inner .section-label { justify-content: center; }
  .demo-inner .section-label::before { background: #883CF0; }
  .demo-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
  }
  .demo-inner > p {
    color: rgba(245, 240, 232, 0.83);
    text-align: center;
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 3rem;
  }

  /* search bar */
  .search-bar {
    display: flex;
    gap: 0;
    margin-bottom: 2.5rem;
    border: 1px solid #3a1c63;
    background: rgba(255,255,255,0.03);
  }
  .search-bar input {
    flex: 1;
    padding: 1.1rem 1.5rem;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.85rem;
    color: #fff;
    caret-color: var(--gold);
  }
  .search-bar input::placeholder { color: rgba(245,240,232,0.3); }
  .search-bar button {
    padding: 1.1rem 2rem;
    background: var(--gold);
    border: none;
    cursor: pointer;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    font-weight: 500;
    transition: background 0.2s;
  }
  .search-bar button:hover { background: var(--gold-light); }
  .search-chips {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    justify-content: center;
  }
  .chip {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.9rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(245,240,232,0.6);
    cursor: pointer;
    transition: all 0.2s;
  }
  .chip:hover, .chip.active {
    background: #1f1232;
    border-color: #3a1c63;
    color: var(--gold-light);
  }

  /* results area */
  .results-area {
    min-height: 200px;
  }
  .result-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 1.25rem 1.5rem;
    margin-bottom: 0.75rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    cursor: pointer;
    transition: all 0.25s ease;
    opacity: 0;
    transform: translateY(8px);
  }
  .result-card.visible {
    animation: resultAppear 0.3s ease forwards;
  }
  @keyframes resultAppear {
    to { opacity: 1; transform: translateY(0); }
  }
  .result-card:hover {
    background: #1f1232;
    border-color: #3a1c63;
  }
  .result-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #725994ab;
    min-width: 2rem;
    text-align: right;
    padding-top: 2px;
  }
  .result-content h4 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
  }
  .result-meta {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    color: rgba(245,240,232,0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .result-excerpt {
    font-size: 0.85rem;
    color: rgba(245,240,232,0.55);
    line-height: 1.6;
    font-weight: 300;
  }

  /* ---- TIMELINE / HOW IT WORKS ---- */
  .how-section {
    padding: 7rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .how-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.2rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
  }
  .how-section > p {
    text-align: center;
    color: var(--mid);
    font-weight: 300;
    margin-bottom: 5rem;
    font-size: 1.05rem;
  }
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
  }
  .steps::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold), var(--gold), transparent);
    opacity: 0.3;
    z-index: 0;
  }
  .step {
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
  }
  .step-num {
    width: 4rem; height: 4rem;
    border-radius: 50%;
    background: var(--ink);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
  }
  .step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
  }
  .step p {
    font-size: 0.88rem;
    color: var(--mid);
    line-height: 1.7;
    font-weight: 300;
  }

  /* ---- PRICING ---- */
  .pricing-section {
    background: #191127;
    padding: 7rem 4rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .pricing-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .pricing-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.2rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
  }
  .pricing-inner > p {
    text-align: center;
    color: var(--mid);
    font-weight: 300;
    margin-bottom: 4rem;
    font-size: 1.05rem;
  }
  .plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
  }
  .plan {
    padding: 2.5rem;
    border-right: 1px solid var(--border);
    transition: background 0.3s;
    position: relative;
  }
  .plan:last-child { border-right: none; }
  .plan.featured {
    background: #23133a;
    color: #fff;
  }
  .plan-name {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 1rem;
  }
  .plan-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.25rem;
    letter-spacing: -0.03em;
  }
  .plan.featured .plan-price { color: #fff; }
  .plan-period {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    color: var(--mid);
    margin-bottom: 1.5rem;
  }
  .plan.featured .plan-period { color: rgba(245, 240, 232, 0.792); }
  .plan-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 1.5rem;
  }
  .plan.featured .plan-divider { background: rgba(255, 255, 255, 0.1); }
  .plan-features {
    list-style: none;
    margin-bottom: 2rem;
  }
  .plan-features li {
    font-size: 0.88rem;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--mid);
    font-weight: 300;
    border-bottom: 1px dashed rgba(0,0,0,0.06);
  }
  .plan.featured .plan-features li {
    color: rgba(245,240,232,0.7);
    border-bottom-color: rgba(255,255,255,0.06);
  }
  .plan-features li::before {
    content: '✓';
    color: var(--gold);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    flex-shrink: 0;
  }
  .plan-btn {
    width: 100%;
    padding: 0.9rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.25s;
    border: 2px solid #3a1c63;
    background: transparent;
    color: #fff;
  }
  .plan.featured .plan-btn {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
  }
  .plan-btn:hover {
    background: #23133a;
    color: #fff;
  }
  .plan.featured .plan-btn:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
  }
  .plan-badge {
    position: absolute;
    top: -1px; right: 1.5rem;
    background: var(--gold);
    color: #fff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.7rem;
  }

  /* ---- TESTIMONIALS ---- */
  .testimonials {
    padding: 7rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
  }
  .testimonials h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.03em;
  }
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
  }
  .testimonial-card {
    background: #23133a;
    padding: 2.5rem;
    position: relative;
  }
  .testimonial-card::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: rgba(201,168,76,0.15);
    position: absolute;
    top: 1rem; left: 2rem;
    line-height: 1;
  }
  .testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.75;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    padding-top: 1rem;
  }
  .testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .author-name {
    font-weight: 500;
    font-size: 0.9rem;
  }
  .author-role {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--mid);
  }

  /* ---- CTA FOOTER ---- */
  .cta-section {
    background: #23133a;
    padding: 7rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.04em;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
  }
  .cta-section h2 em { font-style: italic; color: var(--gold); }
  .cta-section p {
    color: rgba(245, 240, 232, 0.832);
    font-weight: 300;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
  }
  .cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    position: relative;
    z-index: 1;
  }
  .cta-actions .btn-primary {
    border-color: var(--gold);
    background: var(--gold);
    color: #fff;
  }
  .cta-actions .btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
  }
  .cta-actions .btn-ghost {
    border-color: #3a1c63;
    color: rgba(245,240,232,0.7);
  }
  .cta-actions .btn-ghost:hover {
    border-color: rgba(245, 240, 232, 0.897);
    color: #fff;
  }

  /* ---- FOOTER ---- */
  footer {
    background: #180f26;
    border-top: 1px solid #3a1c63;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer .logo { color: #fff; font-size: 1.1rem; }
  .footer-copy {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(245, 240, 232, 0.88);
  }
  .footer-links {
    display: flex;
    gap: 1.5rem;
  }
  .footer-links a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(245, 240, 232, 0.833);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--gold); }

  /* ---- MODAL ---- */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,10,15,0.85);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    backdrop-filter: blur(4px);
  }
  .modal-overlay.open {
    opacity: 1;
    pointer-events: all;
  }
  .modal {
    background: #191127;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    transform: scale(0.95) translateY(10px);
    transition: transform 0.3s;
    position: relative;
  }
  .modal-overlay.open .modal {
    transform: scale(1) translateY(0);
  }
  .modal h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
  }
  .modal p {
    color: var(--mid);
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .modal input {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 1px solid var(--border);
    background: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    outline: none;
    transition: border-color 0.2s;
  }
  .modal input:focus { border-color: var(--gold); }
  .modal .btn-primary {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
    border: none;
  }
  .modal-close {
    position: absolute;
    top: 1.25rem; right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--mid);
    transition: color 0.2s;
    line-height: 1;
  }
  .modal-close:hover { color: #fff; }
  .modal-success {
    display: none;
    text-align: center;
    padding: 1rem 0;
  }
  .modal-success.show { display: block; }
  .modal-success .check { font-size: 3rem; margin-bottom: 1rem; }
  .modal-success h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  /* ---- SCROLL ANIMATIONS ---- */
  .fade-up {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .fade-up:nth-child(2) { transition-delay: 0.1s; }
  .fade-up:nth-child(3) { transition-delay: 0.2s; }
  .fade-up:nth-child(4) { transition-delay: 0.3s; }
  .fade-up:nth-child(5) { transition-delay: 0.4s; }
  .fade-up:nth-child(6) { transition-delay: 0.5s; }

  /* Responsive */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    nav ul { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { padding: 6rem 1.5rem 3rem; }
    .features { padding: 4rem 1.5rem; }
    .features-grid { grid-template-columns: 1fr; }
    .features-header { grid-template-columns: 1fr; gap: 1.5rem; }
    .steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .steps::before { display: none; }
    .plans { grid-template-columns: 1fr; }
    .plan { border-right: none; border-bottom: 1px solid var(--border); }
    .testimonial-grid { grid-template-columns: 1fr; }
    .demo-section { padding: 4rem 1.5rem; }
    .how-section { padding: 4rem 1.5rem; }
    .pricing-section { padding: 4rem 1.5rem; }
    .testimonials { padding: 4rem 1.5rem; }
    .cta-section { padding: 4rem 1.5rem; }
    footer { padding: 1.5rem; flex-direction: column; gap: 1rem; text-align: center; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
    nav.scrolled { padding: 0.8rem 1.5rem; }
  }