  :root {
    --sky: #0a0f1e;
    --cloud: #e8f4fd;
    --ice: #f7f7f7;
    --electric: #883CF0;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  .clouds-it-interactive {
    background: #191127;
    color: var(--cloud);
    position: relative;
    overflow-x: hidden;
    height:100vh;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  .cursor {
    position: fixed;
    width: 12px; height: 12px;
    background: var(--electric);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    transform: translate(-50%,-50%);
    transition: transform 0.1s, width 0.2s, height 0.2s, opacity 0.2s;
    mix-blend-mode: screen;
  }
  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1px solid #3a1c63;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    transform: translate(-50%,-50%);
    transition: transform 0.15s ease-out, width 0.3s, height 0.3s;
  }

  /* CANVAS BACKGROUND */
  #bg-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    opacity: 0.6;
  }

  /* NAVIGATION */
  .clouds-it-interactive nav {
    position: sticky;
    top: 0; left: 0; right: 0;
    z-index: 1;
    padding: 28px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #3a1c63;
    backdrop-filter: blur(20px);
    background: #180f26;
  }

  .logo {
    
    font-size: 28px;
    
    color: var(--cloud);
    text-decoration: none;
  }
  .logo span { color: var(--electric); }

  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }
  .nav-links a {
    font-size: 11px;
    
    text-transform: uppercase;
    color: var(--ice);
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.2s, color 0.2s;
  }
  .nav-links a:hover { opacity: 1; color: var(--electric); }

  .nav-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--ice);
    opacity: 0.5;
  }
  .status-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #883CF0;
    animation: pulse-dot 2s infinite;
  }
  @keyframes pulse-dot {
    0%,100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  /* HERO */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
    overflow: hidden;
  }

  .hero-eyebrow {
    font-size: 11px;
    
    text-transform: uppercase;
    color: var(--electric);
    opacity: 0.8;
    margin-bottom: 20px;
    animation: fadeUp 1s 0.2s both;
  }

  .hero-title {
    
    font-size: clamp(60px, 8vw, 160px);
    line-height: 0.9;
    
    color: var(--cloud);
    animation: fadeUp 1s 0.4s both;
  }
  .hero-title .accent { color: var(--electric); }
  .hero-title .italic {
    
    font-style: italic;
    font-weight: 300;
    font-size: 0.85em;
    color: var(--ice);
  }

  .hero-sub {
    margin-top: 40px;
    max-width: 480px;
    font-size: 13px;
    line-height: 2;
    color: var(--ice);
    opacity: 0.6;
    animation: fadeUp 1s 0.6s both;
  }

  .hero-cta {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    align-items: center;
    animation: fadeUp 1s 0.8s both;
  }

  .btn-primary {
    padding: 16px 40px;
    background: #fff;
    color: #883CF0;
    font-size: 11px;
    text-transform: uppercase;
    border: none;
    cursor: none;
    transition: transform 0.2s, box-shadow 0.2s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px #be52e50f;
  }

  .btn-ghost {
    padding: 16px 40px;
    background: transparent;
    color: var(--cloud);
    
    font-size: 11px;
    
    text-transform: uppercase;
    border: 1px solid #3a1c63;
    cursor: none;
    transition: border-color 0.2s, color 0.2s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  }
  .btn-ghost:hover { border-color: var(--electric); color: var(--electric); }

  .hero-metrics {
    position: absolute;
    right: 60px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    animation: fadeUp 1s 1s both;
  }
  .metric {
    text-align: right;
    border-right: 1px solid #3a1c63;
    padding-right: 20px;
  }
  .metric-val {
    
    font-size: 36px;
    
    color: var(--electric);
    line-height: 1;
  }
  .metric-label {
    font-size: 9px;
    text-transform: uppercase;
    color: var(--ice);
    opacity: 0.4;
  }

  .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    text-transform: uppercase;
    color: var(--ice);
    opacity: 0.3;
    animation: fadeUp 1s 1.2s both;
  }
  .scroll-line {
    width: 40px;
    height: 1px;
    background: var(--electric);
    animation: scrollLine 2s infinite;
  }
  @keyframes scrollLine {
    0% { transform: scaleX(0); transform-origin: left; }
    50% { transform: scaleX(1); transform-origin: left; }
    51% { transform: scaleX(1); transform-origin: right; }
    100% { transform: scaleX(0); transform-origin: right; }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* SERVICES SECTION */
  .section {
    position: relative;
    padding: 120px 60px;
  }

  .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 80px;
    border-bottom: 1px solid #3a1c63;
    padding-bottom: 40px;
  }
  .section-num {
    
    font-size: 120px;
    color: rgba(184,216,240,0.04);
    line-height: 1;
    user-select: none;
  }
  .section-title {
    
    font-size: clamp(36px, 5vw, 64px);
    
    color: var(--cloud);
  }
  .section-title .sub {
    
    font-style: italic;
    font-weight: 300;
    color: var(--ice);
    opacity: 0.5;
    font-size: 0.6em;
    display: block;
  }

  /* SERVICE CARDS */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #2a1647b1;
  }

  .service-card {
    background: #23133a;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    cursor: none;
    transition: background 0.3s;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--electric);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .service-card:hover::before { transform: scaleX(1); }
  .service-card:hover { background: #1f1232; }

  .service-icon {
    font-size: 32px;
    margin-bottom: 30px;
    display: block;
    filter: grayscale(1);
    transition: filter 0.3s;
  }
  .service-card:hover .service-icon { filter: grayscale(0); }

  .service-title {
    
    font-size: 28px;
    
    color: var(--cloud);
    margin-bottom: 16px;
  }

  .service-desc {
    font-size: 12px;
    line-height: 2;
    color: var(--ice);
    opacity: 0.5;
  }

  .service-tag {
    margin-top: 30px;
    display: inline-block;
    font-size: 9px;
    text-transform: uppercase;
    color: var(--electric);
    border: 1px solid #5e309d;
    padding: 6px 12px;
  }

  /* INTERACTIVE CLOUD VISUALIZER */
  .visualizer-section {
    position: relative;
    padding: 120px 60px;
    overflow: hidden;
  }

  .cloud-visualizer {
    position: relative;
    height: 500px;
    background: #cb56f90a;
    border: 1px solid #3a1c63;
    overflow: hidden;
    cursor: none;
  }

  #viz-canvas {
    width: 100%;
    height: 100%;
  }

  .viz-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    pointer-events: none;
  }
  .viz-title {
    
    font-size: 48px;
    
    color: var(--cloud);
    opacity: 0.9;
  }
  .viz-subtitle {
    font-size: 11px;
    
    color: var(--electric);
    opacity: 0.6;
  }

  .viz-controls {
    position: absolute;
    top: 30px; right: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: all;
  }

  .viz-btn {
    width: 36px; height: 36px;
    background: #23133a;
    border: 1px solid #5e309d;
    color: var(--electric);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: background 0.2s;
  }
  .viz-btn:hover, .viz-btn.active { background: #1f1232; }

  /* PRICING */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 0;
  }

  .pricing-card {
    border: 1px solid #3a1c63;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    cursor: none;
  }
  .pricing-card:hover {
    border-color: #5e309d;
    transform: translateY(-4px);
  }

  .pricing-card.featured {
    border-color: #3a1c63;
    background: linear-gradient(135deg, #23133a, #1f1232);
  }
  .pricing-card.featured::after {
    content: 'MOST POPULAR';
    position: absolute;
    top: 20px; right: -20px;
    background: var(--electric);
    color: var(--sky);
    font-size: 9px;
    
    padding: 6px 40px;
    transform: rotate(45deg);
  }

  .plan-tier {
    font-size: 10px;
    
    text-transform: uppercase;
    color: var(--electric);
    margin-bottom: 20px;
  }

  .plan-price {
    
    font-size: 72px;
    line-height: 1;
    color: var(--cloud);
    
  }
  .plan-price span {
    font-size: 20px;
    color: var(--ice);
    opacity: 0.5;
  }

  .plan-cycle {
    font-size: 11px;
    color: var(--ice);
    opacity: 0.4;
    margin-bottom: 40px;
  }

  .plan-features {
    list-style: none;
    margin-bottom: 40px;
  }
  .plan-features li {
    font-size: 12px;
    color: var(--ice);
    opacity: 0.6;
    padding: 10px 0;
    border-bottom: 1px solid #3a1c63;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .plan-features li::before {
    content: '→';
    color: var(--electric);
    opacity: 0.6;
    font-size: 10px;
  }

  /* STATS TICKER */
  .ticker-section {
    position: relative;
    overflow: hidden;
    border-top: 1px solid #3a1c63;
    border-bottom: 1px solid #3a1c63;
    padding: 20px 0;
    background: #1f123200;
  }
  .ticker-track {
    display: flex;
    gap: 60px;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
  }
  .ticker-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 11px;
    
    text-transform: uppercase;
    color: var(--ice);
    opacity: 0.4;
    flex-shrink: 0;
  }
  .ticker-item strong { color: var(--electric); opacity: 1; font-weight: 400; }
  .ticker-sep { color: var(--electric); opacity: 0.3; }

  @keyframes tickerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* TESTIMONIALS */
  .testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #191127;
  }

  .testimonial {
    background: #23133aae;
    padding: 60px;
    position: relative;
  }
  .testimonial::before {
    content: '"';
    position: absolute;
    top: 30px; left: 50px;
    
    font-size: 120px;
    color: var(--electric);
    opacity: 0.08;
    line-height: 1;
    pointer-events: none;
  }

  .testimonial-text {
    
    font-size: 18px;
    line-height: 1.8;
    color: var(--cloud);
    opacity: 0.8;
    font-weight: 300;
    margin-bottom: 30px;
    font-style: italic;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .author-avatar {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--electric), #6848954a);
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-size: 16px;
    color: var(--sky);
  }
  .author-name {
    font-size: 12px;
    color: var(--cloud);
  }
  .author-company {
    font-size: 10px;
    
    color: var(--electric);
    opacity: 0.6;
    text-transform: uppercase;
  }

  /* INFRASTRUCTURE MAP */
  .map-section {
    position: relative;
    padding: 120px 60px;
  }
  #map-canvas {
    width: 100%;
    height: 400px;
    cursor: none;
  }

  /* FOOTER */
  .clouds-it-interactive footer {
    position: relative;
    padding: 80px 60px 40px;
    border-top: 1px solid #3a1c63;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }

  .footer-brand .logo { font-size: 32px; display: block; margin-bottom: 20px; }
  .footer-tagline {
    font-size: 12px;
    line-height: 2;
    color: var(--ice);
    opacity: 0.4;
    max-width: 260px;
  }

  .footer-col h4 {
    font-size: 10px;
    
    text-transform: uppercase;
    color: var(--electric);
    opacity: 0.7;
    margin-bottom: 24px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li {
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--ice);
    opacity: 0.4;
    cursor: none;
    transition: opacity 0.2s;
  }
  .footer-col li:hover { opacity: 0.8; }

  .footer-bottom {
    border-top: 1px solid #3a1c63;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    color: var(--ice);
    opacity: 0.3;
  }

  /* HORIZONTAL SCROLL SECTION */
  .features-scroll {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
  }
  .features-track {
    display: flex;
    gap: 2px;
    width: max-content;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
    padding: 0 60px;
  }
  .feature-block {
    width: 320px;
    height: 280px;
    background: #23133a;
    border: 1px solid #3a1c63;
    padding: 40px;
    flex-shrink: 0;
    cursor: none;
    transition: background 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
  }
  .feature-block:hover {
    background: #1f1232;
    border-color: #3a1c63;
  }
  .feature-num {
    
    font-size: 80px;
    color: #9c4ba50f;
    position: absolute;
    bottom: -10px; right: 10px;
    line-height: 1;
    pointer-events: none;
  }
  .feature-block h3 {
    
    font-size: 24px;
    
    color: var(--cloud);
    margin-bottom: 16px;
  }
  .feature-block p {
    font-size: 12px;
    line-height: 1.8;
    color: var(--ice);
    opacity: 0.5;
  }

  .scroll-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 30px 0;
  }
  .scroll-nav button {
    width: 40px; height: 40px;
    background: transparent;
    border: 1px solid #3a1c63;
    color: var(--ice);
    font-size: 16px;
    cursor: none;
    transition: all 0.2s;
  }
  .scroll-nav button:hover {
    background: rgba(162, 0, 255, 0.1);
    border-color: var(--electric);
    color: var(--electric);
  }

  /* LOADING SCREEN */
  .loader {
    position: fixed;
    inset: 0;
    background: #191127;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transition: opacity 0.6s, visibility 0.6s;
  }
  .loader.hidden { opacity: 0; visibility: hidden; }

  .loader-logo {
    
    font-size: 48px;
    
    color: var(--cloud);
  }
  .loader-logo span { color: var(--electric); }

  .loader-bar {
    width: 200px;
    height: 1px;
    background: rgba(184,216,240,0.1);
    position: relative;
    overflow: hidden;
  }
  .loader-bar::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%;
    height: 100%;
    background: var(--electric);
    animation: loadBar 1.8s ease forwards;
  }
  @keyframes loadBar {
    from { left: -100%; }
    to { left: 0%; }
  }

  .loader-text {
    font-size: 10px;
    
    text-transform: uppercase;
    color: var(--electric);
    opacity: 0.5;
  }

  @media (max-width: 768px) {
    .clouds-it-interactive nav { padding: 10px; }
    .nav-links { display: none; }
    .clouds-it-interactive section { padding:20px; }
  }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #873cf015; }
::-webkit-scrollbar-thumb { background: #873cf015; border-radius: 3px; }