  :root {
    --ink: #191127;
    --paper: #f4f1ea;
    --cream: #ede8de;
    --acid: #883CF0;
    --rust: #e05c3a;
    --slate: #23133a;
    --mist: #e5d9f8;
    --gold: #7c6bff;
    --font-head: 'Fraunces', serif;
    --font-body: 'Syne', sans-serif;
    --font-mono: 'DM Mono', monospace;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--ink);
    color: var(--paper);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom cursor */
  .cursor {
    width: 12px; height: 12px;
    background: var(--acid);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
  }
  .cursor-ring {
    width: 40px; height: 40px;
    border: 1px solid #883CF0;
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9998;
    transition: all 0.18s ease;
    mix-blend-mode: difference;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 3rem;
    background: #180f26;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #3a1c63;
  }
  .nav-logo {
    font-family: var(--font-head);
    font-size: 1.4rem; font-weight: 700;
    color: var(--paper);
    letter-spacing: -0.02em;
  }
  .nav-logo span { color: var(--acid); }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--mist);
    text-decoration: none; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--acid); }
  .nav-cta {
    background: var(--acid); color: var(--ink);
    border: none; padding: 0.6rem 1.4rem;
    font-family: var(--font-body); font-size: 0.8rem;
    font-weight: 700; letter-spacing: 0.05em;
    text-transform: uppercase; cursor: none;
    transition: all 0.2s;
  }
  .nav-cta:hover { background: var(--paper); transform: translateY(-1px); }

  /* HERO */
  #hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 8rem 3rem 4rem;
    position: relative;
    overflow: hidden;
  }

  .hero-bg-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(186, 58, 245, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(195, 58, 245, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }
  .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
  }
  .orb-1 {
    width: 500px; height: 500px;
    background: rgba(167, 58, 245, 0.08);
    top: -100px; right: -100px;
    animation: orbFloat 8s ease-in-out infinite;
  }
  .orb-2 {
    width: 300px; height: 300px;
    background: rgba(180, 58, 224, 0.1);
    bottom: 50px; left: 200px;
    animation: orbFloat 10s ease-in-out infinite reverse;
  }

  @keyframes orbFloat {
    0%,100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(20px,-20px) scale(1.05); }
  }

  .hero-left { position: relative; z-index: 2; }

  .hero-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: #23133a;
    border: 1px solid #3a1c63;
    color: var(--acid);
    font-family: var(--font-mono); font-size: 0.72rem;
    padding: 0.4rem 0.8rem; letter-spacing: 0.08em;
    margin-bottom: 2rem;
    animation: fadeSlideUp 0.6s ease forwards;
    opacity: 0;
  }
  .hero-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--acid);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.3} }

  h1.hero-title {
    font-family: var(--font-head);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700; line-height: 1.0;
    letter-spacing: -0.03em;
    color: var(--paper);
    animation: fadeSlideUp 0.6s 0.15s ease forwards;
    opacity: 0;
    margin-bottom: 1.5rem;
  }
  h1.hero-title em {
    font-style: italic;
    color: var(--acid);
    font-weight: 300;
  }

  .hero-sub {
    font-size: 1.05rem; line-height: 1.6;
    color: var(--mist); max-width: 460px;
    animation: fadeSlideUp 0.6s 0.3s ease forwards;
    opacity: 0;
    margin-bottom: 2.5rem;
  }

  .hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeSlideUp 0.6s 0.45s ease forwards;
    opacity: 0;
  }

  .btn-primary {
    background: var(--acid); color: var(--ink);
    border: none; padding: 0.9rem 2rem;
    font-family: var(--font-body); font-size: 0.85rem;
    font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; cursor: none;
    transition: all 0.25s;
    position: relative; overflow: hidden;
  }
  .btn-primary::after {
    content: ''; position: absolute;
    inset: 0; background: #873cf030;
    transform: translateX(-100%);
    transition: transform 0.3s;
  }
  .btn-primary:hover::after { transform: translateX(0); }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px #be52e50f; }

  .btn-ghost {
    background: transparent; color: var(--paper);
    border: 1px solid #3a1c63;
    padding: 0.9rem 2rem;
    font-family: var(--font-body); font-size: 0.85rem;
    font-weight: 600; letter-spacing: 0.04em;
    cursor: none; transition: all 0.25s;
  }
  .btn-ghost:hover { border-color: var(--paper); background: #1f1232; }

  @keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* HERO RIGHT — Live Task Demo */
  .hero-right {
    position: relative; z-index: 2;
    display: flex; justify-content: center;
    animation: fadeSlideUp 0.7s 0.6s ease forwards;
    opacity: 0;
  }

  .task-board {
    width: 100%; max-width: 460px;
    background: #23133a;
    border: 1px solid #3a1c63;
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  }
  .board-header {
    padding: 1rem 1.4rem;
    border-bottom: 1px solid #3a1c63;
    display: flex; align-items: center; justify-content: space-between;
  }
  .board-title {
    font-family: var(--font-mono); font-size: 0.72rem;
    color: var(--mist); letter-spacing: 0.1em; text-transform: uppercase;
  }
  .board-badge {
    font-family: var(--font-mono); font-size: 0.68rem;
    background: #2a1647; color: var(--acid);
    padding: 0.2rem 0.6rem; letter-spacing: 0.06em;
  }

  .task-list { padding: 0.8rem; }

  .task-item {
    display: flex; align-items: center; gap: 0.8rem;
    padding: 0.75rem 0.8rem;
    background: #1f1232;
    border: 1px solid #3a1c63;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.2s;
    cursor: none;
    position: relative;
  }
  .task-item:hover { background: #2a1647; border-color: #5e309d; }
  .task-item.done .task-label { text-decoration: line-through; opacity: 0.5; }

  .task-check {
    width: 18px; height: 18px; flex-shrink: 0;
    border: 1.5px solid #3a1c63;
    border-radius: 4px; cursor: none;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
  }
  .task-item.done .task-check {
    background: var(--acid); border-color: var(--acid);
  }
  .task-check svg { display: none; }
  .task-item.done .task-check svg { display: block; }

  .task-label { font-size: 0.83rem; color: var(--paper); flex: 1; }
  .task-priority {
    font-family: var(--font-mono); font-size: 0.62rem;
    padding: 0.15rem 0.5rem; letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .p-high { background: rgba(224,92,58,0.2); color: var(--rust); }
  .p-med { background: rgba(181, 64, 240, 0.2); color: var(--gold); }
  .p-low { background: rgba(158, 138, 181, 0.15); color: var(--mist); }

  .ai-suggestion {
    margin: 0.8rem;
    padding: 0.8rem 1rem;
    background: #cb56f90a;
    border: 1px solid #5e309d;
    border-radius: 8px;
    display: flex; align-items: flex-start; gap: 0.6rem;
  }
  .ai-icon {
    font-size: 0.8rem; color: var(--acid);
    font-family: var(--font-mono);
    flex-shrink: 0; margin-top: 1px;
  }
  .ai-text { font-size: 0.75rem; color: #883CF0; line-height: 1.5; }

  .board-footer {
    padding: 0.8rem 1.4rem;
    border-top: 1px solid #3a1c63;
    display: flex; align-items: center; justify-content: space-between;
  }
  .progress-bar-wrap {
    flex: 1; height: 3px;
    background: #282035;
    border-radius: 3px; overflow: hidden;
    margin-right: 0.8rem;
  }
  .progress-fill {
    height: 100%; background: var(--acid);
    border-radius: 3px;
    transition: width 0.5s ease;
  }
  .progress-label {
    font-family: var(--font-mono); font-size: 0.65rem;
    color: var(--mist);
  }

  /* TRUST STRIP */
  .trust-strip {
    padding: 2rem 3rem;
    border-top: 1px solid #3a1c63;
    border-bottom: 1px solid #3a1c63;
  }
  .trust-inner {
    display: flex; align-items: center; gap: 3rem;
  }
  .trust-label {
    font-family: var(--font-mono); font-size: 0.7rem;
    color: var(--mist); letter-spacing: 0.1em;
    text-transform: uppercase; white-space: nowrap; flex-shrink: 0;
  }
  .trust-logos {
    display: flex; gap: 2.5rem; align-items: center;
    overflow: hidden; flex: 1;
  }
  .trust-logo-item {
    font-family: var(--font-head); font-size: 1rem;
    font-weight: 700; color: rgba(255, 255, 255, 0.679);
    white-space: nowrap; letter-spacing: -0.02em;
    transition: color 0.2s;
  }
  .trust-logo-item:hover { color: rgba(255,255,255,0.5); }

  /* FEATURES */
  #features {
    padding: 7rem 3rem;
    position: relative;
  }
  .section-label {
    font-family: var(--font-mono); font-size: 0.72rem;
    color: var(--acid); letter-spacing: 0.15em;
    text-transform: uppercase; margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.6rem;
  }
  .section-label::before {
    content: ''; width: 24px; height: 1px; background: var(--acid);
  }
  h2.section-title {
    font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700; letter-spacing: -0.03em;
    line-height: 1.1; max-width: 560px;
    margin-bottom: 1.5rem;
  }
  h2.section-title em { font-style: italic; font-weight: 300; color: var(--mist); }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #23133a7e;
    margin-top: 4rem;
    border: 1px solid #3a1c63;
  }

  .feature-card {
    background: #2a164755;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: none;
  }
  .feature-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: transparent;
    transition: background 0.3s;
  }
  .feature-card:hover { background: #1f1232; }
  .feature-card:hover::before { background: var(--acid); }

  .feature-number {
    font-family: var(--font-mono); font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.615); letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
  }
  .feature-icon {
    font-size: 1.8rem; margin-bottom: 1.2rem;
    display: block;
  }
  .feature-title {
    font-family: var(--font-head); font-size: 1.3rem;
    font-weight: 700; margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
  }
  .feature-desc {
    font-size: 0.85rem; line-height: 1.65;
    color: var(--mist);
  }

  /* BENEFITS */
  #benefits {
    padding: 7rem 3rem;
    background: #191127;
    border-top: 1px solid #3a1c63;
    border-bottom: 1px solid #3a1c63;
  }
  .benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-top: 4rem;
  }
  .benefit-item {
    display: flex; gap: 1.2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #3a1c63;
    cursor: none;
    transition: all 0.2s;
  }
  .benefit-item:hover .benefit-num { color: var(--acid); }
  .benefit-item:last-child { border-bottom: none; }
  .benefit-num {
    font-family: var(--font-mono); font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.749); padding-top: 4px;
    transition: color 0.2s; flex-shrink: 0;
  }
  .benefit-title {
    font-family: var(--font-head); font-size: 1.1rem;
    font-weight: 700; margin-bottom: 0.4rem;
  }
  .benefit-desc { font-size: 0.83rem; color: var(--mist); line-height: 1.6; }

  /* STATS */
  .stats-panel {
    background: var(--slate);
    border: 1px solid #3a1c63d1;
    padding: 3rem;
  }
  .stat-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #3a1c63b9;
  }
  .stat-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
  .stat-num {
    font-family: var(--font-head); font-size: 3.5rem;
    font-weight: 700; line-height: 1;
    color: var(--acid); letter-spacing: -0.04em;
  }
  .stat-num span { font-size: 1.8rem; }
  .stat-label { font-size: 0.8rem; color: var(--mist); margin-top: 0.3rem; }

  /* PRICING */
  #pricing { padding: 7rem 3rem; }

  .pricing-toggle {
    display: flex; align-items: center; gap: 1rem;
    margin: 3rem 0;
  }
  .toggle-label {
    font-family: var(--font-mono); font-size: 0.75rem;
    color: var(--mist); letter-spacing: 0.06em;
  }
  .toggle-label.active { color: var(--paper); }
  .toggle-switch {
    width: 44px; height: 24px;
    background: rgba(255, 255, 255, 0.321);
    border-radius: 12px; position: relative;
    cursor: none; transition: background 0.3s;
  }
  .toggle-switch.on { background: #5f488236; }
  .toggle-knob {
    width: 18px; height: 18px;
    background: var(--paper); border-radius: 50%;
    position: absolute; top: 3px; left: 3px;
    transition: transform 0.3s; cursor: none;
  }
  .toggle-switch.on .toggle-knob { transform: translateX(20px); background: var(--acid); }
  .toggle-save {
    font-family: var(--font-mono); font-size: 0.68rem;
    background: #5f488236; color: var(--acid);
    padding: 0.2rem 0.6rem; letter-spacing: 0.06em;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
  }
  .price-card {
    background: #23133a;
    border: 1px solid #3a1c63;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s;
    cursor: none;
  }
  .price-card:hover { transform: translateY(-4px); border-color: #3a1c6342; }
  .price-card.featured {
    background: #1f1232;
    border-color: #3a1c63;
  }
  .price-badge {
    position: absolute; top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--acid); color: var(--ink);
    font-family: var(--font-mono); font-size: 0.65rem;
    font-weight: 500; padding: 0.25rem 0.8rem;
    letter-spacing: 0.08em; text-transform: uppercase;
    white-space: nowrap;
  }
  .price-plan {
    font-family: var(--font-mono); font-size: 0.75rem;
    color: var(--mist); letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 0.8rem;
  }
  .price-amount {
    font-family: var(--font-head); font-size: 3rem;
    font-weight: 700; letter-spacing: -0.04em;
    line-height: 1; margin-bottom: 0.3rem;
  }
  .price-period {
    font-family: var(--font-mono); font-size: 0.7rem;
    color: var(--mist); margin-bottom: 1.5rem;
  }
  .price-desc {
    font-size: 0.8rem; color: var(--mist);
    margin-bottom: 2rem; line-height: 1.5;
  }
  .price-features { list-style: none; margin-bottom: 2rem; }
  .price-features li {
    font-size: 0.82rem; color: var(--mist);
    padding: 0.5rem 0;
    border-bottom: 1px solid #3a1c6361;
    display: flex; align-items: center; gap: 0.6rem;
  }
  .price-features li::before {
    content: '✓';
    color: var(--acid); font-size: 0.75rem; flex-shrink: 0;
  }

  .btn-card {
    width: 100%; padding: 0.85rem;
    font-family: var(--font-body); font-size: 0.82rem;
    font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; cursor: none;
    border: 1px solid #3a1c63;
    background: transparent; color: var(--paper);
    transition: all 0.25s;
  }
  .btn-card:hover { border-color: var(--paper); background: #2a1647; }
  .price-card.featured .btn-card {
    background: var(--acid); color: var(--ink);
    border-color: var(--acid);
  }
  .price-card.featured .btn-card:hover {
    background: var(--paper); border-color: var(--paper);
  }

  /* TESTIMONIALS */
  #testimonials {
    padding: 7rem 3rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid #3a1c63;
    overflow: hidden;
  }
  .testimonial-track-wrap { overflow: hidden; margin-top: 4rem; }
  .testimonial-track {
    display: flex; gap: 1.5rem;
    width: max-content;
    animation: scrollLeft 40s linear infinite;
  }
  .testimonial-track:hover { animation-play-state: paused; }
  @keyframes scrollLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .testimonial-card {
    width: 340px; flex-shrink: 0;
    background: #1f1232;
    border: 1px solid #5e309d;
    padding: 2rem;
  }
  .t-quote {
    font-family: var(--font-head); font-size: 0.95rem;
    font-style: italic; line-height: 1.7;
    color: var(--paper); margin-bottom: 1.5rem;
  }
  .t-author { display: flex; align-items: center; gap: 0.8rem; }
  .t-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--slate), var(--mist));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-size: 0.85rem;
    font-weight: 700; color: var(--paper); flex-shrink: 0;
  }
  .t-name { font-size: 0.82rem; font-weight: 600; }
  .t-role { font-family: var(--font-mono); font-size: 0.68rem; color: var(--mist); }

  /* CTA */
  #cta {
    padding: 7rem 3rem;
    text-align: center;
    position: relative; overflow: hidden;
  }
  .cta-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(180, 58, 245, 0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
  .cta-title {
    font-family: var(--font-head); font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700; letter-spacing: -0.03em; line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  .cta-title em { font-style: italic; font-weight: 300; color: var(--acid); }
  .cta-sub {
    font-size: 1rem; color: var(--mist); margin-bottom: 3rem; line-height: 1.6;
  }
  .cta-actions { display: flex; justify-content: center; gap: 1rem; }

  /* FOOTER */
  footer {
    padding: 3rem;
    border-top: 1px solid #3a1c63;
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  }
  .footer-brand {
    font-family: var(--font-head); font-size: 1.1rem;
    font-weight: 700; color: var(--paper); letter-spacing: -0.02em;
  }
  .footer-brand span { color: var(--acid); }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a {
    font-family: var(--font-mono); font-size: 0.7rem;
    color: var(--mist); text-decoration: none;
    letter-spacing: 0.06em; text-transform: uppercase;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--paper); }
  .footer-copy {
    font-family: var(--font-mono); font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.697);
  }

  /* SCROLL FADE IN */
  .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) {
    #hero { grid-template-columns: 1fr; }
    .hero-right { margin-top: 3rem; }
    .features-grid { grid-template-columns: 1fr; }
    .benefits-layout { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    #hero, #features, #benefits, #pricing, #testimonials, #cta { padding-left: 1.5rem; padding-right: 1.5rem; }
    .trust-strip { padding: 2rem 1.5rem; }
    footer { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; }
  }