:root {
    --ink: #14172b;
    --muted: #5f647a;
    --bg-muted: #f3f4f8;
    --purple: #6a1b9a;
    --orange: #ff8f00;
    --gradient: linear-gradient(135deg, var(--purple), var(--orange));
    --max: 1040px;
  }
  
  /* RESET */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    width: 100%;
    overflow-x: hidden;
  }
  
  body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.6;
  }
  
  /* LAYOUT */
  .wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 1.25rem;
  }
  
  .block {
    padding: 4rem 0;
  }
  
  .block.muted {
    background: var(--bg-muted);
  }
  
  .block.cta {
    background: var(--gradient);
    color: white;
  }
  
  /* NAV */
  .nav {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    z-index: 10;
  }
  
  /* NAV */

  .nav-inner {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .logo-block {
    position: absolute;
    left: 1rem;
  }
  
  .logo {
    height: 60px; /* controls size */
    width: auto;
  }
  
  
  .company-name {
    font-weight: 700;
    font-size: 2rem;
    /* Option: gradient fallback removed to avoid editor errors */
    background: var(--gradient);
    color: var(--purple); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  
  
  /* HERO */
  .hero-content {
    text-align: center;
  }
  
  h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.15;
  }
  
  h2 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
  }
  
  .lead {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 720px;
    margin: 1rem auto 0;
  }
  
  .support {
    margin-top: 0.8rem;
    font-weight: 500;
  }
  
  .emphasis {
    font-weight: 600;
    margin-top: 1rem;
  }
  
  /* LISTS */
  .list {
    margin: 1rem 0;
    padding-left: 1.2rem;
  }
  
  .list li {
    margin-bottom: 0.6rem;
  }
  
  /* BUTTONS */
  .actions {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 7px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
  }
  
  .btn.primary {
    background: var(--gradient);
    color: white;
    border: none;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  }
  
  .btn.primary:hover {
    transform: translateY(-2px);
  }
  
  .btn.ghost {
    background: transparent;
    border: 1px solid currentColor;
  }
  
  /* FOOTER */
  .footer {
    background: #0e1224;
    color: white;
    padding: 2.5rem 0;
    text-align: center;
  }
  
  .muted-text {
    color: rgba(255,255,255,0.65);
  }
  
  /* SCROLL FADE */
  .fade {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  
  .fade.in {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    .btn { padding: 0.6rem 1.2rem; font-size: 0.95rem; }
    .wrap { padding: 0 1rem; }
  }
  