  :root {
    --ink: #fff;
    --paper: #191127;
    --gold: #883CF0;
    --gold-light: #873cf0b5;
    --rust: #7b5cff;
    --teal: #af62c8;
    --cream: #faf7f0;
    --line: #3a1c63;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  .enablewebsiteai {
    background: var(--paper);
    color: var(--ink);
    position: relative;
    overflow-x: hidden;
    cursor: none;
    height:100vh;
  }

  /* CUSTOM CURSOR */
  .cursor {
    position: fixed; width: 12px; height: 12px;
    background: var(--gold); border-radius: 50%;
    pointer-events: none; z-index: 2;
    transform: translate(-50%,-50%);
    transition: transform 0.08s ease;
    mix-blend-mode: multiply;
  }
  .cursor-ring {
    position: fixed; width: 36px; height: 36px;
    border: 1.5px solid var(--gold); border-radius: 50%;
    pointer-events: none; z-index: 2;
    transform: translate(-50%,-50%);
    transition: all 0.18s ease;
    opacity: 0.5;
  }

  .enablewebsiteai:hover .cursor { opacity:1; }

  /* NOISE TEXTURE */
  .enablewebsiteai::before {
    content:''; position:absolute; 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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events:none; opacity:0.4;
  }

  /* MARQUEE TICKER */
  .ticker {
    background: #180f26; color: var(--gold);
    font-size: 11px; 
    padding: 8px 0; overflow: hidden;
    border-bottom: 2px solid var(--gold);
  }
  .ticker-inner {
    display: flex; white-space: nowrap;
    animation: ticker 28s linear infinite;
  }
  .ticker-inner span { padding: 0 40px; }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* NAV */
  .enablewebsiteai nav {
    position: sticky; top: 0; z-index: 1;
    background: var(--paper); border-bottom: 1px solid var(--line);
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 48px;
    backdrop-filter: blur(8px);
  }
  .nav-logo {
    
    font-size: 22px; font-weight: 900;
    
  }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 32px; }
  .nav-links a {
    font-size: 11px;  text-transform: uppercase;
    text-decoration: none; color: var(--ink);
    position: relative; padding-bottom: 3px;
  }
  .nav-links a::after {
    content:''; position: absolute; bottom:0; left:0; width:0; height:1px;
    background: var(--gold); transition: width 0.3s ease;
  }
  .nav-links a:hover::after { width: 100%; }

  /* HERO */
  .hero {
    min-height: 92vh;
    display: grid; grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
  }
  .hero-left {
    padding: 80px 48px; display: flex;
    flex-direction: column; justify-content: center;
    border-right: 1px solid var(--line);
  }
  .hero-eyebrow {
    font-size: 11px;  text-transform: uppercase;
    color: var(--rust); margin-bottom: 24px;
    display: flex; align-items: center; gap: 12px;
  }
  .hero-eyebrow::before {
    content:''; display: inline-block;
    width: 32px; height: 1px; background: var(--rust);
  }
  .hero-title {
    
    font-size: clamp(52px, 6vw, 88px);
    font-weight: 900; line-height: 0.95;
    
    margin-bottom: 32px;
  }
  .hero-title em {
    font-style: italic; color: var(--teal);
    display: block;
  }
  .hero-desc {
    font-size: 13px; line-height: 1.8;
    color: rgba(243, 243, 250, 0.65); max-width: 420px;
    margin-bottom: 48px;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 12px;
    background: #883CF0; color: #fff;
    
    font-size: 11px;  text-transform: uppercase;
    padding: 16px 32px; border: none; cursor: none;
    text-decoration: none;
    position: relative; overflow: hidden;
    transition: color 0.3s ease;
  }
  .btn-primary::before {
    content:''; position: absolute; inset: 0;
    background: #731cebe0; transform: scaleX(0);
    transform-origin: left; transition: transform 0.4s ease;
  }
  .btn-primary:hover::before { transform: scaleX(1); }
  .btn-primary:hover { color: var(--ink); }
  .btn-primary span { position: relative; }

  .hero-right {
    position: relative; overflow: hidden;
    background: #1f1232;
    display: flex; align-items: center; justify-content: center;
  }
  /* Animated finance chart */
  .chart-canvas {
    position: absolute; inset: 0;
    display: flex; align-items: flex-end; justify-content: center;
    padding: 40px; gap: 6px;
  }
  .chart-bar {
    flex: 1; background: rgba(163, 76, 201, 0.15);
    border-top: 2px solid var(--gold);
    position: relative; border-radius: 2px 2px 0 0;
    animation: barRise 1.2s ease forwards;
    transform-origin: bottom;
    transform: scaleY(0);
  }
  @keyframes barRise {
    to { transform: scaleY(1); }
  }
  .chart-bar:nth-child(1) { height: 45%; animation-delay: 0.1s; }
  .chart-bar:nth-child(2) { height: 62%; animation-delay: 0.2s; }
  .chart-bar:nth-child(3) { height: 38%; animation-delay: 0.3s; }
  .chart-bar:nth-child(4) { height: 78%; animation-delay: 0.4s; }
  .chart-bar:nth-child(5) { height: 55%; animation-delay: 0.5s; }
  .chart-bar:nth-child(6) { height: 85%; animation-delay: 0.6s; background: rgba(163,76,201,0.3); }
  .chart-bar:nth-child(7) { height: 70%; animation-delay: 0.7s; }
  .chart-bar:nth-child(8) { height: 92%; animation-delay: 0.8s; background: rgba(163,76,201,0.5); }
  .chart-bar:nth-child(9) { height: 68%; animation-delay: 0.9s; }
  .chart-bar:nth-child(10) { height: 96%; animation-delay: 1.0s; background: var(--gold); }

  .hero-stat {
    position: absolute; color: var(--paper);
    font-size: 11px; 
  }
  .hero-stat.s1 { top: 32px; left: 32px; }
  .hero-stat.s2 { top: 32px; right: 32px; text-align: right; }
  .hero-stat .big {
    
    font-size: 42px; font-weight: 900;
    color: var(--gold); display: block;
    line-height: 1;
  }

  /* LINE DIVIDER */
  .section-rule {
    display: flex; align-items: center;
    gap: 16px; padding: 0 48px;
    margin: 0;
  }
  .section-rule::before, .section-rule::after {
    content:''; flex:1; height:1px; background: var(--line);
  }
  .section-rule-label {
    font-size: 10px;  text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4); white-space: nowrap;
  }

  /* HOW IT WORKS — HORIZONTAL SCROLL STEPS */
  .how-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--line);
  }
  .section-header {
    padding: 0 48px; margin-bottom: 56px;
  }
  .section-label {
    font-size: 10px;  text-transform: uppercase;
    color: var(--rust); margin-bottom: 12px;
  }
  .section-title {
    
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900; line-height: 1.05;
    
  }
  .steps-scroll {
    display: flex; gap: 0;
    overflow-x: auto; padding: 0 48px;
    scrollbar-width: none;
  }
  .steps-scroll::-webkit-scrollbar { display: none; }
  .step-card {
    min-width: 270px; padding: 48px 40px;
    border: 1px solid var(--line); border-right: none;
    position: relative; flex-shrink: 0;
    transition: background 0.3s ease;
    cursor: none;
  }
  .step-card:last-child { border-right: 1px solid var(--line); }
  .step-card:hover { background: #1f1232; }
  .step-card:hover .step-icon { transform: scale(1.1) rotate(-5deg); }
  .step-num {
    
    font-size: 80px; font-weight: 900;
    color: rgba(219, 219, 244, 0.06);
    position: absolute; top: 16px; right: 24px;
    line-height: 1; pointer-events: none;
  }
  .step-icon {
    width: 56px; height: 56px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 24px;
    transition: transform 0.3s ease;
  }
  .step-title {
    
    font-size: 22px; font-weight: 700;
    margin-bottom: 14px; line-height: 1.2;
  }
  .step-desc {
    font-size: 12px; line-height: 1.8;
    color: rgba(236, 236, 244, 0.6);
  }

  /* BENEFITS GRID */
  .benefits-section {
    padding: 80px 48px;
    border-bottom: 1px solid var(--line);
  }
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px; background: var(--line);
    margin-top: 56px;
  }
  .benefit-item {
    background: var(--paper); padding: 48px 40px;
    position: relative; overflow: hidden;
    transition: background 0.3s ease;
    cursor: none;
  }
  .benefit-item:hover { background: #1f1232; }
  .benefit-item:hover .benefit-num,
  .benefit-item:hover .benefit-title,
  .benefit-item:hover .benefit-text { color: #fff; }
  .benefit-item:hover .benefit-bar { background: var(--gold); }
  .benefit-num {
    
    font-size: 13px; color: var(--gold);
    margin-bottom: 16px; display: block;
    transition: color 0.3s;
  }
  .benefit-title {
    
    font-size: 26px; font-weight: 700;
    margin-bottom: 16px; line-height: 1.2;
    transition: color 0.3s;
  }
  .benefit-text {
    font-size: 12px; line-height: 1.8;
    color: rgba(220, 220, 232, 0.6);
    transition: color 0.3s;
  }
  .benefit-bar {
    position: absolute; bottom: 0; left: 0;
    height: 3px; background: var(--gold);
    transition: background 0.3s;
    animation: barWidth 1.5s ease forwards;
  }
  .benefit-bar.w60 { width: 60%; }
  .benefit-bar.w80 { width: 80%; }
  .benefit-bar.w45 { width: 45%; }
  .benefit-bar.w90 { width: 90%; }

  /* TECH STACK SECTION */
  .tech-section {
    display: grid; grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--line);
  }
  .tech-left {
    padding: 80px 48px;
    border-right: 1px solid var(--line);
    background: #1f1232; color: #fff;
  }
  .tech-left .section-label { color: var(--gold); }
  .tech-left .section-title { color: #fff; }
  .tech-tags {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-top: 40px;
  }
  .tech-tag {
    font-size: 11px; 
    padding: 8px 16px; border: 1px solid #3a1c63;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease; cursor: none;
  }
  .tech-tag:hover {
    background: var(--gold); color: var(--ink);
    border-color: var(--gold);
  }
  .tech-tag.active { background: var(--gold); color: var(--ink); border-color: var(--gold); }

  .tech-right { padding: 80px 48px; }
  .tech-detail { display: none; }
  .tech-detail.visible { display: block; }
  .tech-detail-title {
    
    font-size: 32px; font-weight: 700; margin-bottom: 20px;
    line-height: 1.1;
  }
  .tech-detail-text {
    font-size: 13px; line-height: 1.9;
    color: rgba(251, 251, 251, 0.65); margin-bottom: 24px;
  }
  .tech-detail-metric {
    display: flex; gap: 40px; margin-top: 32px;
  }
  .metric-item .metric-val {
    
    font-size: 36px; font-weight: 900; color: var(--teal);
    display: block; line-height: 1;
  }
  .metric-item .metric-label {
    font-size: 10px;  text-transform: uppercase;
    color: rgba(248, 248, 248, 0.5); margin-top: 6px;
  }

  /* LIVE FINANCE SIMULATOR */
  .sim-section {
    padding: 80px 48px;
    border-bottom: 1px solid var(--line);
    background: #180f26;
  }
  .sim-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; margin-top: 56px; align-items: start;
  }

  .sim-control {
    margin-bottom: 32px;
  }
  .sim-label {
    font-size: 11px;  text-transform: uppercase;
    margin-bottom: 12px; display: flex; justify-content: space-between;
    align-items: center;
  }
  .sim-value {
    
    font-size: 22px; font-weight: 700; color: var(--teal);
  }
  input[type=range] {
    width: 100%; height: 2px;
    background: var(--line); outline: none; cursor: none;
  }
  input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none; width: 18px; height: 18px;
    background: var(--ink); border-radius: 50%;
    cursor: none; border: 3px solid var(--gold);
    transition: transform 0.2s;
  }
  input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.3); }

  .sim-output {
    background: #1f1232; color: #fff;
    padding: 40px; position: sticky; top: 80px;
  }
  .sim-output-label {
    font-size: 10px;  text-transform: uppercase;
    color: var(--gold); margin-bottom: 28px;
  }
  .sim-result-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 0; border-bottom: 1px solid #3a1c63;
  }
  .sim-result-item:last-child { border-bottom: none; }
  .sim-result-name { font-size: 11px; color: rgba(255,255,255,0.6); }
  .sim-result-val {
    
    font-size: 22px; font-weight: 700; color: var(--gold-light);
  }
  .sim-insight {
    margin-top: 24px; padding: 16px;
    background: #cb56f90a;
    border-left: 3px solid var(--gold);
    font-size: 11px; line-height: 1.8; color: rgba(255,255,255,0.7);
  }

  /* TOOL TYPES */
  .tools-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
  }
  .tools-marquee {
    display: flex; gap: 24px;
    animation: marqueeLeft 20s linear infinite;
    white-space: nowrap;
  }
  .tools-marquee:hover { animation-play-state: paused; }
  @keyframes marqueeLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .tool-pill {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 20px 32px; border: 1px solid var(--line);
    flex-shrink: 0; background: var(--paper);
    transition: background 0.3s, border-color 0.3s;
    cursor: none;
  }
  .tool-pill:hover { background: #1f1232; border-color: #3a1c63; }
  .tool-pill:hover .pill-name { color: var(--gold); }
  .tool-pill:hover .pill-icon { filter: grayscale(0); }
  .pill-icon { font-size: 22px; filter: grayscale(0.5); transition: filter 0.3s; }
  .pill-name {
    font-size: 13px;  font-weight: 700;
    transition: color 0.3s;
  }
  .pill-type {
    font-size: 10px; color: rgba(245, 245, 247, 0.4); 
    text-transform: uppercase;
  }

  /* CTA */
  .cta-section {
    padding: 100px 48px; text-align: center;
    background: #180f26; color: #fff;
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content:''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(155, 76, 201, 0.08), transparent);
  }
  .cta-title {
    
    font-size: clamp(40px, 6vw, 72px); font-weight: 900;
    line-height: 1; 
    position: relative; margin-bottom: 24px;
  }
  .cta-title em { font-style: italic; color: var(--gold); }
  .cta-sub {
    font-size: 13px; color: rgba(255, 255, 255, 0.794);
    margin-bottom: 48px; max-width: 480px; margin-left: auto; margin-right: auto;
    line-height: 1.8;
  }
  .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    border: 1px solid #3a1c63; color: rgba(255,255,255,0.8);
    
    font-size: 11px;  text-transform: uppercase;
    padding: 16px 32px; cursor: none; text-decoration: none;
    transition: all 0.3s;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

  /* FOOTER */
  .enablewebsiteai footer {
    padding: 48px; display: flex;
    align-items: center; justify-content: space-between;
    border-top: 1px solid var(--line);
    flex-wrap: wrap; gap: 20px;
  }
  .footer-logo {
    
    font-size: 18px; font-weight: 900;
  }
  .footer-logo span { color: var(--gold); }
  .footer-copy {
    font-size: 10px; 
    color: rgba(255, 255, 255, 0.4);
  }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a {
    font-size: 10px;  text-transform: uppercase;
    text-decoration: none; color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--ink); }

  /* SCROLL REVEAL */
  .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: none; }

  @media (max-width: 768px) {
    .enablewebsiteai nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-right { height: 300px; }
    .hero-left { padding: 48px 24px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .tech-section { grid-template-columns: 1fr; }
    .tech-left { border-right: none; border-bottom: 1px solid var(--line); }
    .sim-grid { grid-template-columns: 1fr; }
    .benefits-section { padding: 60px 24px; }
    .sim-section { padding: 60px 24px; }
    .cta-section { padding: 60px 24px; }
    .enablewebsiteai footer { padding: 32px 24px; flex-direction: column; text-align: center; }
    .section-header { padding: 0 24px; }
    .steps-scroll { padding: 0 24px; }
    .tech-left, .tech-right { padding: 48px 24px; }
  }


::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #873cf015; }
::-webkit-scrollbar-thumb { background: #873cf015; border-radius: 3px; }