  :root {
    --bg: #06060a;
    --surface: #0e0e16;
    --surface2: #16161f;
    --accent: #00e5a0;
    --accent-glow: rgba(0,229,160,0.15);
    --accent2: #ff4d6d;
    --text: #f0f0f5;
    --muted: #7a7a8c;
    --border: rgba(255,255,255,0.07);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
  }

  /* Cursor */
  .cursor {
    width: 12px; height: 12px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease;
    mix-blend-mode: normal;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    opacity: 0.4;
  }
  * { cursor: none !important; }

  /* Grid bg */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(var(--border) 1px, transparent 1px),
      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
  }

  /* Orb */
  .orb {
    position: fixed;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(0,229,160,0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    top: -300px; left: -300px;
    transition: transform 1.8s ease;
  }

  section, nav, footer { position: relative; z-index: 1; }

  /* NAV */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 48px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(6,6,10,0.88);
    backdrop-filter: blur(20px);
    z-index: 100;
  }

  .logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    text-decoration: none;
  }
  .logo span { color: var(--accent); }
  .logo-dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px var(--accent);
  }
  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.8); opacity: 0.4; }
  }

  .nav-right { display: flex; align-items: center; gap: 16px; }

  .nav-lang {
    display: flex;
    gap: 4px;
  }
  .lang-btn {
    padding: 6px 14px;
    border-radius: 4px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    transition: all 0.2s;
  }
  .lang-btn.active { background: var(--accent); color: #000; border-color: var(--accent); font-weight: 500; }
  .lang-btn:hover:not(.active) { color: var(--text); border-color: rgba(255,255,255,0.2); }

  .nav-cta {
    padding: 10px 24px;
    background: var(--accent);
    color: #000;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.2s;
    display: inline-block;
  }
  .nav-cta:hover { background: #00ffc0; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,229,160,0.3); }

  /* HERO */
  .hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 48px 60px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    color: var(--accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s forwards 0.2s;
  }
  .hero-tag::before { content: ''; width: 24px; height: 1px; background: var(--accent); }

  .hero h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1.0;
    letter-spacing: -0.03em;
    max-width: 820px;
    opacity: 0;
    animation: fadeUp 0.8s forwards 0.4s;
  }
  .hero h1 .accent { color: var(--accent); }
  .hero h1 .strike {
    position: relative;
    color: var(--muted);
  }
  .hero h1 .strike::after {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 55%;
    height: 3px;
    background: var(--accent2);
    transform: scaleX(0);
    transform-origin: left;
    animation: strikeIn 0.6s forwards 1.4s;
  }
  @keyframes strikeIn { to { transform: scaleX(1); } }

  .hero-sub {
    margin-top: 32px;
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.75;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.8s forwards 0.6s;
  }

  .hero-actions {
    margin-top: 48px;
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s forwards 0.8s;
  }

  .btn-primary {
    padding: 16px 36px;
    background: var(--accent);
    color: #000;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.25s;
  }
  .btn-primary:hover { background: #00ffc0; transform: translateY(-2px); box-shadow: 0 20px 40px rgba(0,229,160,0.3); }
  .btn-primary svg { transition: transform 0.2s; }
  .btn-primary:hover svg { transform: translateX(4px); }

  .btn-secondary {
    padding: 16px 28px;
    background: transparent;
    color: var(--text);
    font-weight: 400;
    font-size: 0.95rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.2s;
  }
  .btn-secondary:hover { border-color: rgba(255,255,255,0.3); background: var(--surface); }

  .hero-proof {
    margin-top: 64px;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s forwards 1s;
  }
  .proof-item { display: flex; flex-direction: column; gap: 4px; }
  .proof-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--accent);
    letter-spacing: -0.03em;
  }
  .proof-label { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.05em; }
  .proof-divider { width: 1px; height: 48px; background: var(--border); }

  /* TICKER */
  .ticker-wrap {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    padding: 14px 0;
    overflow: hidden;
  }
  .ticker {
    display: flex;
    animation: ticker 35s linear infinite;
    white-space: nowrap;
    width: max-content;
  }
  .ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 40px;
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    color: var(--muted);
  }
  .ticker-item .tag {
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 3px;
    letter-spacing: 0.08em;
  }
  .tag.orange { color: var(--accent); background: rgba(0,229,160,0.1); }
  .tag.red { color: var(--accent2); background: rgba(255,77,109,0.1); }
  .tag.green { color: #00e5a0; background: rgba(0,229,160,0.1); }
  @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

  /* SECTIONS */
  .section-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
    max-width: 200px;
  }

  .section-heading {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    max-width: 680px;
  }

  /* PAIN */
  .pain-section {
    padding: 120px 48px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 48px;
  }
  .pain-card {
    background: var(--surface);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }
  .pain-card:hover { background: var(--surface2); }
  .pain-card::before {
    content: attr(data-num);
    position: absolute;
    top: 20px; right: 28px;
    font-family: 'Syne', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255,255,255,0.025);
    line-height: 1;
  }
  .pain-icon { font-size: 1.4rem; margin-bottom: 20px; }
  .pain-card h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .pain-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.75; }

  /* HOW IT WORKS */
  .how-section {
    padding: 120px 48px;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .how-inner { max-width: 1200px; margin: 0 auto; }
  .how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 64px;
  }
  .step {
    padding: 48px 40px;
    background: var(--bg);
    position: relative;
  }
  .step-num {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 24px;
  }
  .step h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
  }
  .step p { color: var(--muted); font-size: 0.88rem; line-height: 1.8; }
  .step-arrow {
    position: absolute;
    right: -1px; top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 28px;
    background: var(--accent);
    clip-path: polygon(0 20%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 0 80%);
    z-index: 2;
    opacity: 0.9;
  }
  .step:last-child .step-arrow { display: none; }

  /* FEATURES */
  .features-section {
    padding: 120px 48px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
  }
  .feature-card {
    padding: 36px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .feature-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .feature-card:hover::after { transform: scaleX(1); }
  .feature-card:hover {
    border-color: rgba(0,229,160,0.25);
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.4);
  }
  .feature-icon {
    width: 48px; height: 48px;
    background: rgba(0,229,160,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 24px;
  }
  .feature-card h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 12px;
  }
  .feature-card p { color: var(--muted); font-size: 0.85rem; line-height: 1.75; }

  /* DEMO */
  .demo-section {
    padding: 100px 48px;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .demo-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .demo-sub { color: var(--muted); font-size: 0.9rem; line-height: 1.8; max-width: 380px; font-weight: 300; margin-top: 20px; }

  .alert-mockup { display: flex; flex-direction: column; gap: 12px; }
  .alert-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
  }
  .alert-card.visible { opacity: 1; transform: translateX(0) !important; }
  .alert-card:hover { border-color: rgba(0,229,160,0.3); }
  .alert-dot {
    width: 10px; height: 10px;
    min-width: 10px; min-height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 3px;
    align-self: flex-start;
  }
  .alert-dot.orange { background: var(--accent2); box-shadow: 0 0 8px var(--accent2); }
  .alert-dot.green2 { background: var(--accent); box-shadow: 0 0 8px var(--accent); }
  .alert-dot.green  { background: #00e5a0; box-shadow: 0 0 8px #00e5a0; }
  .alert-dot.yellow { background: #ffd23f; box-shadow: 0 0 8px #ffd23f; }
  .alert-content { flex: 1; }
  .alert-title {
    font-family: 'DM Mono', monospace;
    font-size: 0.78rem;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
  }
  .alert-meta {
    font-size: 0.75rem;
    color: var(--muted);
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 3px;
  }
  .alert-meta .delta { color: var(--accent); }
  .alert-meta .delta.neg { color: var(--accent2); }
  .alert-time {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    color: var(--muted);
    opacity: 0.55;
    white-space: nowrap;
  }

  /* CTA / TRIAL */
  .cta-section {
    padding: 140px 48px;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
  }
  .cta-section h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .cta-section h2 .accent { color: var(--accent); }
  .cta-section > p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 48px;
  }

  /* FORM */
  #trial-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 500px;
    margin: 0 auto;
  }
  .form-row { display: flex; gap: 12px; }
  .form-row input { flex: 1; }
  .form-field { position: relative; display: flex; flex-direction: column; gap: 4px; }
  .field-optional {
    font-size: 0.7rem;
    color: var(--muted);
    opacity: 0.6;
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.03em;
    padding-left: 2px;
  }

  #trial-form input,
  #trial-form select {
    width: 100%;
    padding: 15px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
  }
  #trial-form input:focus { border-color: var(--accent); }
  #trial-form input::placeholder { color: var(--muted); }

  #trial-form .btn-primary {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 17px;
  }

  .trial-note { margin-top: 16px; font-size: 0.78rem; color: var(--muted); }

  .success-msg {
    display: none;
    background: rgba(0,229,160,0.08);
    border: 1px solid rgba(0,229,160,0.3);
    border-radius: 10px;
    padding: 36px 40px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
  }
  .success-msg .check {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }
  .success-msg h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
  }
  .success-msg p { color: var(--muted); font-size: 0.9rem; line-height: 1.75; }

  /* FOOTER */
  footer {
    border-top: 1px solid var(--border);
    padding: 40px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
  }
  .footer-logo span { color: var(--accent); }
  .footer-text { font-size: 0.8rem; color: var(--muted); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .hero { padding: 60px 24px 40px; min-height: auto; padding-top: 80px; }
    .pain-grid, .how-steps, .features-grid { grid-template-columns: 1fr; }
    .demo-inner { grid-template-columns: 1fr; gap: 48px; }
    .pain-section, .features-section, .cta-section { padding: 80px 24px; }
    .how-section, .demo-section { padding: 80px 24px; }
    .step-arrow { display: none; }
    footer { padding: 32px 24px; flex-direction: column; text-align: center; }
    .form-row { flex-direction: column; }
  }
