:root{
      --bg:#0b1020;
      --card:#111a33;
      --text:#e7ecff;
      --muted:#b7c1ff;
      --accent:#7aa2ff;
      --accent2:#66f0d1;
      --border:rgba(255,255,255,.12);
      --shadow:0 18px 60px rgba(0,0,0,.45);
    }

    *{box-sizing:border-box;}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      background: radial-gradient(900px 600px at 10% 10%, rgba(122,162,255,.25), transparent 60%),
                  radial-gradient(800px 500px at 90% 20%, rgba(102,240,209,.18), transparent 55%),
                  linear-gradient(180deg, var(--bg), #070a14);
      color:var(--text);
      line-height:1.55;
    }

    a{color:var(--accent); text-decoration:none;}
    a:hover{text-decoration:underline;}

    .container{
      width:min(1100px, 92vw);
      margin:0 auto;
      padding:48px 0 80px;
    }

    header{
      padding:42px 0 28px;
    }

    .badge{
      display:inline-flex;
      gap:10px;
      align-items:center;
      padding:8px 14px;
      border:1px solid var(--border);
      border-radius:999px;
      background:rgba(255,255,255,.04);
      backdrop-filter: blur(6px);
      font-size:13px;
      color:var(--muted);
    }

    .badge-dot{
      width:10px;
      height:10px;
      border-radius:50%;
      background:linear-gradient(135deg,var(--accent),var(--accent2));
      box-shadow:0 0 0 3px rgba(122,162,255,.18);
    }

    h1{
      margin:18px 0 10px;
      font-size: clamp(34px, 4.4vw, 56px);
      line-height:1.05;
      letter-spacing:-0.02em;
    }

    .tagline{
      font-size: clamp(16px, 2vw, 20px);
      color:var(--muted);
      max-width:70ch;
    }

    .hero{
      margin-top:28px;
      display:grid;
      grid-template-columns: 1.25fr .75fr;
      gap:20px;
      align-items:stretch;
    }

    .card{
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
      border:1px solid var(--border);
      border-radius:22px;
      box-shadow: var(--shadow);
      overflow:hidden;
      position:relative;
    }

    .card::before{
      content:"";
      position:absolute;
      inset:-1px;
      background: radial-gradient(500px 240px at 30% 0%, rgba(122,162,255,.22), transparent 55%),
                  radial-gradient(520px 260px at 100% 30%, rgba(102,240,209,.16), transparent 55%);
      pointer-events:none;
    }

    .card > *{position:relative;}

    .hero-main{
      padding:28px 28px 26px;
    }

    .hero-main p{
      margin:0;
      color:var(--text);
      opacity:.92;
      max-width:78ch;
      font-size:16px;
    }

    .quote{
      margin:18px 0 0;
      padding:16px 18px;
      border-left:3px solid var(--accent2);
      background:rgba(0,0,0,.18);
      border-radius:14px;
      color:var(--muted);
    }

    .hero-side{
      padding:24px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:14px;
    }

    .info-row{display:flex; gap:10px; align-items:flex-start;}
    .icon{
      width:34px;
      height:34px;
      border-radius:12px;
      display:grid;
      place-items:center;
      background:rgba(255,255,255,.06);
      border:1px solid var(--border);
      flex:0 0 auto;
    }

    .label{font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:.08em;}
    .value{font-size:16px; margin-top:2px;}

    .pill{
      display:inline-block;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid var(--border);
      background:rgba(122,162,255,.08);
      color:var(--text);
      font-size:14px;
      margin-top:14px;
    }

    section{
      margin-top:26px;
    }

    .grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:18px;
    }

    .feature{
      padding:22px;
      border-radius:22px;
      border:1px solid var(--border);
      background:rgba(255,255,255,.03);
      box-shadow: 0 10px 40px rgba(0,0,0,.25);
    }

    .feature h3{
      margin:10px 0 8px;
      font-size:18px;
      letter-spacing:-0.01em;
    }

    .feature p{
      margin:0;
      color:var(--muted);
      font-size:15px;
    }

    .feature .icon{width:40px;height:40px;border-radius:14px;}

    footer{
      margin-top:42px;
      padding-top:22px;
      border-top:1px solid var(--border);
      color:var(--muted);
      display:flex;
      justify-content:space-between;
      align-items:center;
      flex-wrap:wrap;
      gap:12px;
      font-size:14px;
    }

    @media (max-width: 860px){
      .hero{grid-template-columns:1fr;}
      .grid{grid-template-columns:1fr;}
    }