:root{
      --bg:#0b0c11;
      --panel:#111219;
      --text:#f7f7f8;
      --muted:#a9abb4;
      --red:#ee0a35;
      --red2:#ff3156;
      --line:rgba(255,255,255,.09);
      --success:#57d79b;
      --error:#ff7a91;
    }
    *{box-sizing:border-box}
    html,body{
      margin:0;
      width:100%;
      min-height:100%;
      font-family:Arial,Helvetica,sans-serif;
      background:var(--bg);
      color:var(--text)
    }
    body{
      min-height:100svh;
      display:grid;
      place-items:center;
      padding:clamp(14px,2.5vh,26px);
      background:
        radial-gradient(circle at 50% -18%,rgba(238,10,53,.15),transparent 40%),
        linear-gradient(180deg,#0b0c11 0%,#090a0e 100%);
    }
    .shell{
      width:min(820px,100%);
      text-align:center;
    }
    .logo-box{
      width:80px;
      height:80px;
      margin:0 auto clamp(14px,2vh,20px);
      padding:8px;
      display:grid;
      place-items:center;
      background:#fff;
      border-radius:18px;
      box-shadow:0 18px 45px rgba(0,0,0,.28);
    }
    .logo-box img{
      display:block;
      width:100%;
      height:100%;
      object-fit:contain;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:9px;
      padding:8px 14px;
      margin-bottom:clamp(16px,2vh,22px);
      border:1px solid rgba(238,10,53,.45);
      border-radius:999px;
      color:#ff6b87;
      font-size:12px;
      font-weight:800;
      letter-spacing:.14em;
      text-transform:uppercase;
    }
    .eyebrow::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--red);
      box-shadow:0 0 0 5px rgba(238,10,53,.12);
    }
    h1{
      margin:0 auto;
      max-width:760px;
      font-size:clamp(32px,4.8vw,52px);
      line-height:1.03;
      letter-spacing:-.045em;
      text-transform:uppercase;
      font-weight:900;
    }
    h1 span{color:var(--red)}
    .lead{
      max-width:700px;
      margin:clamp(17px,2.4vh,24px) auto 0;
      color:#d2d3d8;
      font-size:clamp(15px,1.6vw,18px);
      line-height:1.55;
    }
    .signup{
      margin:clamp(22px,3vh,30px) auto 0;
      max-width:650px;
      padding:20px;
      border:1px solid var(--line);
      border-radius:24px;
      background:rgba(17,18,25,.88);
      box-shadow:0 22px 65px rgba(0,0,0,.22);
    }
    .form-row{
      display:grid;
      grid-template-columns:1fr auto;
      gap:12px;
    }
    input[type="email"]{
      width:100%;
      height:52px;
      padding:0 17px;
      border:1px solid rgba(255,255,255,.12);
      border-radius:14px;
      background:#0c0d12;
      color:#fff;
      font:inherit;
      font-size:16px;
      outline:none;
    }
    input[type="email"]:focus{
      border-color:rgba(238,10,53,.75);
      box-shadow:0 0 0 4px rgba(238,10,53,.10);
    }
    input::placeholder{color:#72747d}
    button{
      min-height:52px;
      padding:0 22px;
      border:0;
      border-radius:14px;
      background:linear-gradient(135deg,var(--red),var(--red2));
      color:#fff;
      font:inherit;
      font-weight:800;
      font-size:15px;
      cursor:pointer;
      transition:transform .18s ease,filter .18s ease,opacity .18s ease;
    }
    button:hover{transform:translateY(-1px);filter:brightness(1.04)}
    button:disabled{cursor:wait;opacity:.65;transform:none}
    .consent{
      display:flex;
      align-items:flex-start;
      gap:9px;
      margin-top:13px;
      text-align:left;
      color:#9698a1;
      font-size:11px;
      line-height:1.45;
    }
    .consent input{margin-top:2px;accent-color:var(--red)}
    .privacy{
      margin:10px 2px 0;
      color:#73757e;
      font-size:10px;
      line-height:1.45;
      text-align:left;
    }
    .status{
      min-height:18px;
      margin-top:10px;
      font-size:12px;
      font-weight:700;
    }
    .success-box{
      display:none;
      margin:clamp(22px,3vh,30px) auto 0;
      max-width:650px;
      padding:22px;
      border:1px solid rgba(87,215,155,.35);
      border-radius:20px;
      background:rgba(87,215,155,.07);
      color:#eefcf6;
    }
    .success-box.show{display:block}
    .success-box strong{
      display:block;
      font-size:19px;
      margin-bottom:7px;
      color:var(--success);
    }
    .success-box p{
      margin:0;
      font-size:14px;
      line-height:1.5;
      color:#d8efe4;
    }
    .status.success{color:var(--success)}
    .status.error{color:var(--error)}
    .hp{
      position:absolute!important;
      left:-9999px!important;
      opacity:0!important;
      pointer-events:none!important
    }
    .bottom-line{
      width:70px;
      height:3px;
      margin:clamp(20px,2.8vh,28px) auto 0;
      border-radius:999px;
      background:var(--red);
    }

    @media(max-width:620px){
      body{padding:14px}
      .shell{width:min(100%,560px)}
      .logo-box{width:66px;height:66px;margin-bottom:12px}
      .eyebrow{font-size:10px;margin-bottom:14px;padding:7px 12px}
      h1{font-size:clamp(29px,9vw,40px)}
      .lead{font-size:14px;line-height:1.45;margin-top:14px}
      .signup{padding:16px;border-radius:20px;margin-top:18px}
      .form-row{grid-template-columns:1fr;gap:10px}
      input[type="email"],button{height:48px;min-height:48px}
      button{width:100%}
      .consent{font-size:10px;margin-top:10px}
      .privacy{font-size:9px;margin-top:8px}
      .bottom-line{margin-top:16px}
    }

    @media(max-height:720px){
      body{padding:10px}
      .logo-box{width:62px;height:62px;margin-bottom:10px}
      .eyebrow{margin-bottom:11px;padding:6px 11px;font-size:10px}
      h1{font-size:clamp(28px,4.5vw,42px)}
      .lead{margin-top:11px;font-size:14px;line-height:1.38}
      .signup{margin-top:14px;padding:14px}
      input[type="email"],button{height:46px;min-height:46px}
      .consent{margin-top:8px}
      .privacy{margin-top:6px}
      .status{margin-top:6px;min-height:15px}
      .bottom-line{margin-top:12px}
    }
