﻿:root {
      --bg:        hsl(40, 33%, 98%);
      --fg:        hsl(20, 20%, 10%);
      --primary:   hsl(216, 98%, 52%);
      --primary-fg:#fff;
      --muted-bg:  hsl(40, 20%, 92%);
      --muted-fg:  hsl(40, 10%, 40%);
      --border:    hsl(40, 10%, 85%);
      --card-bg:   #fff;
      --radius:    1rem;
    }

    *, *::before, *::after { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--fg);
      font-family: 'Plus Jakarta Sans', sans-serif;
      overflow-x: hidden;
    }

    /* Utilities */
    .font-mono { font-family: 'Space Mono', monospace; }

    .text-muted-fg { color: var(--muted-fg); }
    .bg-muted      { background: var(--muted-bg); }

    .btn-brand {
      background: var(--primary);
      color: #fff;
      border: none;
      border-radius: 0.6rem;
      font-weight: 600;
      padding: 0.8rem 2rem;
      font-size: 1rem;
      transition: opacity .2s;
      text-decoration: none;
    }
    .btn-brand:hover { opacity: .88; color: #fff; }
    .btn-brand-lg { padding: 1rem 2.4rem; font-size: 1.05rem; }

    .btn-outline-brand {
      background: transparent;
      color: var(--fg);
      border: 1.5px solid var(--border);
      border-radius: 0.6rem;
      font-weight: 600;
      padding: 0.8rem 2rem;
      font-size: 1rem;
      transition: border-color .2s, background .2s;
    }
    .btn-outline-brand:hover { border-color: var(--primary); background: rgba(220,110,30,.05); color: var(--fg); }

    /* Navbar */
    .site-nav {
      position: sticky;
      top: 0;
      z-index: 1030;
      background: rgba(250, 247, 242, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .site-nav .nav-link {
      color: var(--muted-fg);
      font-weight: 500;
      font-size: .92rem;
      transition: color .15s;
    }
    .site-nav .nav-link:hover { color: var(--fg); }
    .brand-logo {
      font-weight: 800;
      font-size: 1.25rem;
      letter-spacing: -.02em;
      color: var(--fg);
      text-decoration: none;
    }
    .brand-logo i { color: var(--primary); }

    /* Badge pill */
    .badge-pill {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      padding: .3rem .85rem;
      border-radius: 99px;
      background: rgba(220,110,30,.12);
      color: var(--primary);
      font-size: .82rem;
      font-weight: 600;
    }

    /* Hero */
    .hero {
      position: relative;
      padding: 6rem 0 8rem;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at top right, rgba(220,110,30,.10) 0%, transparent 65%);
      pointer-events: none;
    }
    .hero-title {
      font-size: clamp(2.6rem, 6vw, 4.5rem);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -.03em;
    }
    .gradient-text {
      background: linear-gradient(90deg, var(--primary), #f59e0b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Provisioning card */
    .provision-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: 0 20px 60px rgba(0,0,0,.10);
    }
    .provision-card .card-header {
      background: transparent;
      border-bottom: 1px solid var(--border);
      padding: 1.1rem 1.4rem .8rem;
    }
    .traffic-dot {
      width: 10px; height: 10px;
      border-radius: 50%;
      display: inline-block;
    }
    .check-item {
      display: flex;
      align-items: center;
      gap: .65rem;
      padding: .45rem 0;
      font-size: .92rem;
    }
    .check-item i { color: #22c55e; font-size: 1rem; flex-shrink: 0; }
    .provision-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: .78rem;
      color: var(--muted-fg);
      padding-top: .75rem;
      margin-top: .5rem;
      border-top: 1px solid var(--border);
    }
    .live-badge { color: #22c55e; font-weight: 700; }

    /* Cloud providers strip */
    .providers-strip {
      background: var(--muted-bg);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 3rem 0;
    }
    .provider-label {
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: -.01em;
      opacity: .48;
      transition: opacity .2s;
      cursor: default;
    }
    .provider-label:hover { opacity: 1; }

    /* Section headings */
    .section-title {
      font-size: clamp(1.9rem, 4vw, 3rem);
      font-weight: 800;
      letter-spacing: -.025em;
      line-height: 1.15;
    }
    .section-sub {
      font-size: 1.1rem;
      color: var(--muted-fg);
      max-width: 600px;
      margin: 0 auto;
    }

    /* How it works steps */
    .step-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2rem;
      position: relative;
      height: 100%;
      box-shadow: 0 2px 8px rgba(0,0,0,.04);
      transition: box-shadow .2s;
    }
    .step-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.09); }
    .step-num {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: rgba(220,110,30,.12);
      color: var(--primary);
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 1rem;
      margin-bottom: 1.25rem;
    }
    .step-icon {
      position: absolute;
      top: 1.75rem; right: 1.75rem;
      font-size: 1.4rem;
      color: rgba(0,0,0,.12);
    }
    .step-card h3 { font-weight: 700; font-size: 1.15rem; margin-bottom: .5rem; }
    .step-card p  { color: var(--muted-fg); font-size: .95rem; margin: 0; }

    /* Why Choose Us features */
    .feature-item {
      display: flex;
      gap: 1rem;
      padding: 1.5rem;
      border-radius: var(--radius);
      border: 1px solid transparent;
      transition: background .2s, border-color .2s, box-shadow .2s;
    }
    .feature-item:hover {
      background: var(--card-bg);
      border-color: var(--border);
      box-shadow: 0 2px 12px rgba(0,0,0,.06);
    }
    .feature-icon {
      flex-shrink: 0;
      width: 42px; height: 42px;
      border-radius: .65rem;
      background: rgba(220,110,30,.12);
      color: var(--primary);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      margin-top: .15rem;
    }
    .feature-item h4 { font-weight: 700; font-size: 1rem; margin-bottom: .3rem; }
    .feature-item p  { color: var(--muted-fg); font-size: .88rem; margin: 0; }

    /* Offers */
    .offer-card {
      border-radius: var(--radius);
      border: 1px solid;
      padding: 1.5rem;
      overflow: hidden;
    }
    .offer-card .offer-icon-wrap {
      flex-shrink: 0;
      width: 44px; height: 44px;
      border-radius: .7rem;
      background: rgba(255,255,255,.65);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.15rem;
      box-shadow: 0 1px 4px rgba(0,0,0,.08);
    }
    .offer-badge {
      font-size: .72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .06em;
      color: var(--muted-fg);
      display: block;
      margin-bottom: .25rem;
    }
    .offer-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; line-height: 1.35; }
    .offer-card p  { font-size: .88rem; color: var(--muted-fg); margin: 0; }

    .offer-orange  { background: linear-gradient(135deg, rgba(220,110,30,.14), rgba(245,158,11,.07)); border-color: rgba(220,110,30,.25) !important; }
    .offer-green   { background: linear-gradient(135deg, rgba(34,197,94,.10), rgba(52,211,153,.05)); border-color: rgba(34,197,94,.20) !important; }
    .offer-blue    { background: linear-gradient(135deg, rgba(59,130,246,.10), rgba(14,165,233,.05)); border-color: rgba(59,130,246,.18) !important; }
    .offer-purple  { background: linear-gradient(135deg, rgba(139,92,246,.10), rgba(167,139,250,.05)); border-color: rgba(139,92,246,.18) !important; }

    .offer-orange  .offer-icon-wrap { color: var(--primary); }
    .offer-green   .offer-icon-wrap { color: #16a34a; }
    .offer-blue    .offer-icon-wrap { color: #2563eb; }
    .offer-purple  .offer-icon-wrap { color: #7c3aed; }

    /* Referral */
    .referral-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: 0 16px 48px rgba(0,0,0,.10);
      overflow: hidden;
      position: relative;
    }
    .referral-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), #f59e0b);
    }
    .stat-box {
      background: var(--muted-bg);
      border: 1px solid var(--border);
      border-radius: .75rem;
      padding: .9rem .5rem;
      text-align: center;
    }
    .stat-box .stat-val { font-size: 1.3rem; font-weight: 800; color: var(--primary); }
    .stat-box .stat-lbl { font-size: .72rem; color: var(--muted-fg); margin-top: .2rem; line-height: 1.3; }

    .ref-link-box {
      display: flex; align-items: center; gap: .5rem;
      background: var(--muted-bg);
      border: 1px solid var(--border);
      border-radius: .75rem;
      padding: .75rem 1rem;
    }
    .ref-link-box span { flex: 1; font-family: 'Space Mono', monospace; font-size: .85rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .copy-btn { background: none; border: none; color: var(--muted-fg); cursor: pointer; transition: color .15s; padding: 0; }
    .copy-btn:hover { color: var(--primary); }

    .ref-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: .6rem 0;
      border-bottom: 1px solid var(--border);
    }
    .ref-row:last-child { border-bottom: none; }
    .ref-avatar {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: rgba(220,110,30,.12);
      color: var(--primary);
      font-size: .75rem; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
    }
    .status-pill {
      font-size: .72rem; font-weight: 600;
      padding: .15rem .6rem; border-radius: 99px;
    }
    .status-deployed { background: rgba(34,197,94,.12); color: #16a34a; }
    .status-pending  { background: rgba(245,158,11,.12); color: #b45309; }
    .earned-pos { color: #16a34a; font-weight: 700; font-size: .88rem; }
    .earned-pend { color: var(--muted-fg); font-size: .88rem; }

    .ref-step-icon {
      flex-shrink: 0;
      width: 42px; height: 42px;
      border-radius: .65rem;
      background: rgba(220,110,30,.12);
      color: var(--primary);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
    }

    /* FAQ */
    .faq-section { background: var(--muted-bg); }
    .accordion-item { background: transparent; border: none; border-bottom: 1px solid var(--border); }
    .accordion-button {
      background: transparent;
      color: var(--fg);
      font-weight: 600;
      font-size: 1rem;
      padding: 1.2rem 0;
      box-shadow: none !important;
    }
    .accordion-button:not(.collapsed) { color: var(--primary); background: transparent; }
    .accordion-button::after { filter: none; }
    .accordion-button:not(.collapsed)::after {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e07820'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }
    .accordion-body { padding: 0 0 1.2rem; color: var(--muted-fg); line-height: 1.7; }

    /* CTA */
    .cta-section {
      background: var(--primary);
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at bottom, rgba(245,158,11,.35) 0%, transparent 65%);
      pointer-events: none;
    }
    .cta-section h2 {
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 800;
      color: #fff;
      letter-spacing: -.03em;
    }
    .cta-section p { color: rgba(255,255,255,.82); font-size: 1.15rem; }
    .btn-cta {
      background: #fff;
      color: var(--fg);
      border: none;
      border-radius: .65rem;
      font-weight: 700;
      font-size: 1.05rem;
      padding: 1rem 2.4rem;
      box-shadow: 0 6px 20px rgba(0,0,0,.18);
      transition: opacity .2s;
    }
    .btn-cta:hover { opacity: .92; color: var(--fg); }

    /* Footer */
    .site-footer {
      background: var(--bg);
      border-top: 1px solid var(--border);
    }
    .footer-social {
      width: 34px; height: 34px;
      border-radius: 50%;
      background: var(--muted-bg);
      display: inline-flex; align-items: center; justify-content: center;
      color: var(--muted-fg);
      font-size: .95rem;
      transition: color .15s, background .15s;
      text-decoration: none;
    }
    .footer-social:hover { color: var(--fg); background: var(--border); }
    .footer-links a { color: var(--muted-fg); text-decoration: none; font-size: .9rem; transition: color .15s; }
    .footer-links a:hover { color: var(--fg); }
    .footer-links h6 { font-weight: 700; font-size: .92rem; margin-bottom: 1rem; }

    /* Misc */
    .section-bg-muted { background: var(--muted-bg); }

