    :root {
      --bg: #050510;
      --neon-gold: #a76a30;
      --neon-blue: #4e96e2;
      --text: #ffffff;
      --muted: #b0b0b8;
      --card-bg: rgba(20, 20, 30, 0.6);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      background-color: var(--bg);
      background-image:
        radial-gradient(circle at 85% 90%, rgba(112,198,201,.12), transparent 50%),
        radial-gradient(circle at 15% 10%, rgba(128,75,25,.1), transparent 50%),
        linear-gradient(180deg, #0c0d66 0%, #bd5c24 100%);
      background-attachment: fixed;
      color: var(--text);
      min-height: 100vh;
    }

    .container {
      max-width: 1100px;
      margin: auto;
      padding: 24px;
    }

    /* Header */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 28px;
      font-weight: 900;
      letter-spacing: 1px;
      background: linear-gradient(135deg, var(--neon-gold), var(--neon-blue));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-decoration: none;
    }

    .social-link {
      display: flex;
      align-items: center;
      gap: 6px;
      color: var(--text);
      text-decoration: none;
      font-weight: 700;
    }

    .social-link svg {
      width: 20px;
      height: 20px;
      fill: var(--neon-gold);
    }

    /* Buttons */
    .btn {
      background: white;
      color: #000;
      padding: 12px 18px;
      border-radius: 50px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .btn:hover {
      background: var(--neon-gold);
      box-shadow: 0 0 20px var(--neon-gold);
    }

    /* Hero */
    .hero {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 28px;
      padding: 80px 0;
    }

    .hero h1 {
      font-size: clamp(36px, 5vw, 64px);
      line-height: 1.05;
      margin-bottom: 16px;
    }

    .hero p {
      color: var(--muted);
      font-size: 18px;
      margin-bottom: 28px;
    }

    .pill {
      display: inline-flex;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.08);
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 16px;
    }

    /* Cards */
    .card {
      background: var(--card-bg);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 22px;
      border: 2px solid transparent;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
    }

    .card:hover {
      transform: scale(1.03);
      box-shadow: 0 0 25px rgba(255,255,255,.15);
    }

    /* Steps */
    .how-it-works {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .step {
      display: flex;
      align-items: center;
      gap: 16px;
      background: rgba(255,255,255,.03);
      border-radius: 16px;
      padding: 16px;
      border: 1px solid rgba(255,255,255,.08);
    }

    .step-number {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      font-weight: 900;
      color: var(--neon-gold);
      border: 1px solid var(--neon-gold);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .step-text {
      text-align: left;
      flex: 1;
    }

    /* Pricing */
    section {
        padding: 48px 0;
    }

    h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 24px;
    }

    .grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    }

    .pricing-note {
    margin-top: 16px;
    text-align: center;
    font-size: 14px;
    color: var(--muted);
    }

    /* Pricing cards layout fix */
    #pricing .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    }

    #pricing .card strong {
    margin-bottom: 6px;
    }

    #pricing .card .muted {
    margin-bottom: 12px;
    }

    #pricing .card h3 {
    margin-bottom: 20px;
    }

    #pricing .card .btn {
    margin-top: auto;
    }


        footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--muted);
    font-size: 0.9rem;
    }
    footer a { color: #fff; text-decoration: none; margin: 0 5px; }
    footer p { margin-top: 10px; }
    /* Modal */
    .modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);
    z-index: 1000;

    display: none;
    justify-content: center;
    align-items: center;
    }

    .modal-content {
    background: linear-gradient(145deg, #1a1a24 0%, #0f0f15 100%);
    padding: 40px;
    border-radius: 24px;
    width: 90%;
    max-width: 600px;
    position: relative;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 25px 50px -12px rgba(0,0,0,0.7),
        inset 6px 6px 20px rgba(255,170,91,0.15),
        inset -6px -6px 20px rgba(92,225,230,0.15);
    }

    .close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
    }


        /* How it works */
    .how-it-works {
    display: flex;
    flex-direction: column;
    gap: 16px;
    }

    .how-title {
    text-align: center;
    margin-bottom: 8px;
    }

    .how-cta {
    margin-top: 12px;
    align-self: center;
    padding: 12px 24px;
    font-size: 16px;
    }

  