  :root {
    --ink: #fff;
    --paper: #191127;
    --warm-white: #faf8f4;
    --amber: #883CF0;
    --amber-light: #7c3aed;
    --muted: #d6d6d6;
    --border: #3a1c63;
    --card-bg: #23133a;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom cursor */
  .cursor {
    position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
    width: 8px; height: 8px;
    background: var(--amber);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
  }
  .cursor-ring {
    position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998;
    width: 32px; height: 32px;
    border: 1px solid var(--amber);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.08s linear, width 0.2s, height 0.2s, opacity 0.2s;
    opacity: 0.5;
  }
  body:hover .cursor { opacity: 1; }
  a:hover ~ .cursor, button:hover ~ .cursor { width: 16px; height: 16px; }

  /* Nav */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.5rem 3rem;
    backdrop-filter: blur(12px);
    background: #180f26;
    border-bottom: 1px solid var(--border);
    transition: padding 0.3s;
  }
  nav.scrolled { padding: 1rem 3rem; }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em;
    color: var(--ink); text-decoration: none;
  }
  .nav-logo span { color: var(--amber); }
  .nav-links { display: flex; gap: 2.5rem; align-items: center; }
  .nav-links a {
    font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--muted); text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--ink); }
  .btn-download {
    background: #883CF0; color: var(--paper) !important;
    padding: 0.55rem 1.3rem; border-radius: 100px;
    font-size: 0.78rem !important; letter-spacing: 0.1em !important;
    transition: background 0.2s, transform 0.2s !important;
  }
  .btn-download:hover { background: #883cf0e0 !important; transform: scale(1.03); }

  /* Hero */
  .hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 3rem;
    gap: 4rem;
    padding-top: 6rem;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: -10%; right: -5%; width: 55%; height: 120%;
    background: radial-gradient(ellipse at 60% 40%, rgba(131, 42, 200, 0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: #1f1232;
    border: 1px solid #3a1c63;
    padding: 0.4rem 1rem; border-radius: 100px;
    font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--amber); margin-bottom: 1.8rem;
    opacity: 0; transform: translateY(16px);
    animation: fadeUp 0.6s 0.1s ease forwards;
  }
  .hero-badge::before { content: '✦'; font-size: 0.6rem; }
  .hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 300; line-height: 1.05;
    letter-spacing: -0.02em;
    opacity: 0; transform: translateY(24px);
    animation: fadeUp 0.7s 0.25s ease forwards;
  }
  .hero-headline em { font-style: italic; color: var(--amber); }
  .hero-sub {
    margin-top: 1.5rem;
    font-size: 1.05rem; line-height: 1.7; color: var(--muted); max-width: 420px;
    font-weight: 300;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.7s 0.4s ease forwards;
  }
  .hero-cta {
    margin-top: 2.5rem; display: flex; align-items: center; gap: 1.2rem;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.7s 0.55s ease forwards;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: #883CF0; color: #fff;
    padding: 0.85rem 1.8rem; border-radius: 100px;
    text-decoration: none; font-size: 0.88rem; font-weight: 500;
    transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(14, 13, 15, 0.15);
  }
  .btn-primary:hover { background: #883cf0e0; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(134, 42, 200, 0.3); }
  .btn-primary svg { width: 16px; height: 16px; }
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--muted); text-decoration: none; font-size: 0.85rem;
    transition: color 0.2s;
  }
  .btn-ghost:hover { color: var(--ink); }
  .rating-pill {
    display: flex; align-items: center; gap: 0.4rem;
    margin-top: 2rem; font-size: 0.82rem; color: var(--muted);
    opacity: 0; animation: fadeUp 0.7s 0.7s ease forwards;
  }
  .stars { color: var(--amber); letter-spacing: -2px; font-size: 0.9rem; }

  /* Phone mockup */
  .hero-phone {
    display: flex; justify-content: center; align-items: center;
    position: relative;
    opacity: 0; transform: translateY(30px) scale(0.97);
    animation: fadeUp 0.9s 0.35s ease forwards;
  }
  .phone-wrap {
    position: relative; width: 280px;
    filter: drop-shadow(0 30px 60px rgba(15,14,13,0.2));
  }
  .phone-frame {
    background: #180f26; border-radius: 42px;
    padding: 12px; position: relative; overflow: hidden;
  }
  .phone-screen {
    background: #2a1647; border-radius: 32px; overflow: hidden;
    height: 560px; position: relative;
  }
  .phone-notch {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 90px; height: 28px; background: #180f26; border-radius: 0 0 18px 18px;
    z-index: 10;
  }
  .phone-content {
    padding: 44px 20px 20px;
    height: 100%;
    display: flex; flex-direction: column; gap: 10px;
  }
  .phone-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
  .phone-title { color: #f7f4ef; font-size: 1.3rem; font-weight: 600; font-family: 'Cormorant Garamond', serif; }
  .phone-count { color: var(--amber); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }

  .client-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 14px;
    display: flex; align-items: center; gap: 12px;
    transition: background 0.3s;
    cursor: pointer;
    animation: slideIn 0.4s ease both;
  }
  .client-card:hover { background: rgba(255,255,255,0.1); }
  .client-avatar {
    width: 40px; height: 40px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 600; flex-shrink: 0;
  }
  .client-info { flex: 1; min-width: 0; }
  .client-name { color: #f7f4ef; font-size: 0.88rem; font-weight: 500; }
  .client-role { color: #888078; font-size: 0.72rem; margin-top: 2px; }
  .client-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
  .dot-green { background: #4ade80; }
  .dot-amber { background: #fbbf24; }
  .dot-muted { background: #555; }

  /* Floating orbit elements */
  .orbit-el {
    position: absolute; border-radius: 50%;
    pointer-events: none;
  }
  .orbit-1 {
    width: 380px; height: 380px;
    border: 1px solid #3a1c63;
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    animation: rotateOrbit 18s linear infinite;
  }
  .orbit-2 {
    width: 260px; height: 260px;
    border: 1px dashed #3a1c63;
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    animation: rotateOrbit 12s linear infinite reverse;
  }
  .orbit-dot {
    position: absolute; top: -4px; left: 50%; margin-left: -4px;
    width: 8px; height: 8px; background: var(--amber); border-radius: 50%;
    box-shadow: 0 0 10px var(--amber);
  }

  /* Features */
  .features {
    padding: 8rem 3rem;
    position: relative;
  }
  .section-eyebrow {
    font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--amber); margin-bottom: 1rem;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    font-weight: 300; line-height: 1.15;
    letter-spacing: -0.02em; max-width: 520px;
    margin-bottom: 4rem;
  }
  .section-title em { font-style: italic; color: var(--amber); }
  .features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px; background: var(--border);
    border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
  }
  .feature-card {
    background: #23133a;
    padding: 2.5rem 2rem;
    transition: background 0.3s;
    cursor: default;
    position: relative; overflow: hidden;
  }
  .feature-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: var(--amber);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s;
  }
  .feature-card:hover { background: #1f1232; }
  .feature-card:hover::after { transform: scaleX(1); }
  .feature-icon {
    width: 44px; height: 44px;
    background: rgba(155, 42, 200, 0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin-bottom: 1.4rem;
    transition: background 0.3s, transform 0.3s;
  }
  .feature-card:hover .feature-icon {
    background: var(--amber); transform: scale(1.08);
  }
  .feature-title {
    font-size: 1rem; font-weight: 500; margin-bottom: 0.6rem;
  }
  .feature-desc {
    font-size: 0.88rem; line-height: 1.65; color: var(--muted); font-weight: 300;
  }

  /* Stats strip */
  .stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 0 3rem;
  }
  .stat {
    padding: 3rem 2rem; text-align: center;
    border-right: 1px solid var(--border);
    position: relative;
  }
  .stat:last-child { border-right: none; }
  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem; font-weight: 300; color: var(--amber);
    letter-spacing: -0.03em; line-height: 1;
    display: block;
  }
  .stat-label { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 0.5rem; }

  /* How it works */
  .how {
    padding: 8rem 3rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  }
  .steps { display: flex; flex-direction: column; gap: 0; }
  .step {
    display: flex; gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: padding 0.3s;
  }
  .step:last-child { border-bottom: none; }
  .step:hover { padding-left: 0.5rem; }
  .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 300; color: var(--border);
    line-height: 1; min-width: 40px;
    transition: color 0.3s;
  }
  .step:hover .step-num, .step.active .step-num { color: var(--amber); }

  .step-title { font-size: 0.95rem; font-weight: 500; margin-bottom: 0.4rem; }
  .step-text { font-size: 0.85rem; color: var(--muted); line-height: 1.6; font-weight: 300; }
  .how-visual {
    background: #23133a; border-radius: 28px;
    padding: 2.5rem; color: #fff;
    position: relative; overflow: hidden;
    min-height: 420px;
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .how-visual::before {
    content: '';
    position: absolute; top: -40%; right: -20%;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(200,135,42,0.2) 0%, transparent 70%);
    pointer-events: none;
  }
  .how-visual-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 300; line-height: 1.2;
    position: relative; z-index: 1;
  }
  .how-visual-title em { color: var(--amber); font-style: italic; }
  .contact-preview {
    background: #1f1232;
    border: 1px solid #3a1c63;
    border-radius: 18px; padding: 1.5rem;
    position: relative; z-index: 1;
  }
  .contact-top { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.2rem; }
  .big-avatar {
    width: 52px; height: 52px; border-radius: 16px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; font-weight: 700; background: rgba(158, 42, 200, 0.2); color: var(--amber);
  }
  .contact-meta { flex: 1; }
  .contact-name { font-size: 1.05rem; font-weight: 500; }
  .contact-company { font-size: 0.75rem; color: #d1d1d1; margin-top: 2px; }
  .contact-tags { display: flex; gap: 0.4rem; margin-top: 0.6rem; flex-wrap: wrap; }
  .tag {
    font-size: 0.65rem; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 3px 8px; border-radius: 100px;
    background: #2a1647; color: #aaa;
  }
  .tag.active { background: rgba(155, 42, 200, 0.2); color: var(--amber-light); }
  .action-row { display: flex; gap: 0.6rem; }
  .action-btn {
    flex: 1; padding: 0.55rem; border-radius: 10px;
    background: #2a1647; border: 1px solid #3a1c63;
    color: #ccc; font-size: 0.72rem; font-family: 'DM Sans', sans-serif;
    cursor: pointer; transition: background 0.2s, color 0.2s;
    display: flex; align-items: center; justify-content: center; gap: 0.3rem;
  }
  .action-btn:hover { background: var(--amber); color: var(--ink); border-color: var(--amber); }

  /* Testimonials */
  .testimonials {
    padding: 6rem 3rem;
    background: #180f26; color: #fff;
    position: relative; overflow: hidden;
  }
  .testimonials::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(134, 42, 200, 0.06) 0%, transparent 60%);
    pointer-events: none;
  }
  .testimonials .section-title { color: #fff; }
  .testimonials .section-eyebrow { color: var(--amber); }
  .reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  }
  .review-card {
    background: #23133a;
    border: 1px solid #3a1c63;
    border-radius: 18px; padding: 1.8rem;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    cursor: default;
  }
  .review-card:hover { background: #1f1232; border-color: #3a1c63; transform: translateY(-3px); }
  .review-stars { color: var(--amber); font-size: 0.85rem; letter-spacing: -1px; margin-bottom: 1rem; }
  .review-text { font-size: 0.9rem; line-height: 1.7; color: #ccc; font-weight: 300; margin-bottom: 1.2rem; }
  .review-author { display: flex; align-items: center; gap: 0.8rem; }
  .review-avatar {
    width: 34px; height: 34px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 600; background: #2a1647; color: var(--amber);
  }
  .review-name { font-size: 0.82rem; font-weight: 500; }
  .review-role { font-size: 0.72rem; color: #666; margin-top: 1px; }

  /* CTA Section */
  .cta-section {
    padding: 8rem 3rem; text-align: center;
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(142, 42, 200, 0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-section .section-title { margin: 0 auto 1.5rem; text-align: center; }
  .cta-sub { color: var(--muted); font-size: 1rem; font-weight: 300; margin-bottom: 3rem; }
  .cta-buttons { display: flex; gap: 1rem; justify-content: center; align-items: center; }
  .app-store-btn {
    display: inline-flex; align-items: center; gap: 0.7rem;
    background: #180f26; color: #fff;
    padding: 0.9rem 1.8rem; border-radius: 14px;
    text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(14, 13, 15, 0.15);
  }
  .app-store-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(15, 13, 15, 0.2); }
  .app-store-btn .btn-label { text-align: left; }
  .app-store-btn .btn-sub { font-size: 0.65rem; color: #aaa; letter-spacing: 0.05em; display: block; }
  .app-store-btn .btn-name { font-size: 0.9rem; font-weight: 500; }
  .app-store-btn svg { width: 22px; height: 22px; }

  /* Footer */
  footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 3rem;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.8rem; color: var(--muted);
  }
  footer a { color: var(--muted); text-decoration: none; }
  footer a:hover { color: var(--ink); }
  .footer-links { display: flex; gap: 2rem; }

  /* Animations */
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  @keyframes slideIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
  }
  @keyframes rotateOrbit {
    to { transform: translate(-50%, -50%) rotate(360deg); }
  }
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
  }

  .reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .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; }

  /* Interactive search in phone */
  .phone-search {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; padding: 10px 14px;
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 4px;
  }
  .phone-search-icon { color: #666; font-size: 0.8rem; }
  .phone-search-text { color: #555; font-size: 0.78rem; font-family: 'DM Sans', sans-serif; }

  /* Scrollbar */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--paper); }
  ::-webkit-scrollbar-thumb { background: rgba(147, 42, 200, 0.3); border-radius: 2px; }

  @media (max-width: 900px) {
    nav { padding: 1.2rem 1.5rem; }
    .hero { grid-template-columns: 1fr; padding: 8rem 1.5rem 4rem; gap: 3rem; }
    .hero-phone { order: -1; }
    .phone-wrap { width: 220px; }
    .phone-screen { height: 440px; }
    .features { padding: 5rem 1.5rem; }
    .features-grid { grid-template-columns: 1fr; }
    .stats { grid-template-columns: 1fr; margin: 0 1.5rem; }
    .stat { border-right: none; border-bottom: 1px solid var(--border); }
    .how { grid-template-columns: 1fr; padding: 5rem 1.5rem; gap: 3rem; }
    .reviews-grid { grid-template-columns: 1fr; }
    .testimonials { padding: 5rem 1.5rem; }
    .cta-section { padding: 5rem 1.5rem; }
    .cta-buttons { flex-direction: column; }
    footer { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .nav-links { gap: 1rem; }
    .nav-links a:not(.btn-download):not(:last-child) { display: none; }
  }