    :root{
      --bg:#0f172a;        /* slate-900 */
      --card:#111827;      /* gray-900 */
      --muted:#94a3b8;     /* slate-400 */
      --text:#e5e7eb;      /* gray-200 */
      --accent:#22d3ee;    /* cyan-400 */
      --accent-2:#14b8a6;  /* teal-500 */
      --ring: rgba(34,211,238,.35);
      --radius:18px;
    }
    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0; font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu, "Helvetica Neue", Arial;
      background: radial-gradient(1200px 600px at 20% -10%, #0b1023 0%, var(--bg) 40%, #0b1023 100%), var(--bg);
      color:var(--text); display:grid; place-items:center; padding:24px;
    }
    .wrap{
      width:min(860px, 100%); 
    }
    .card{
      background: linear-gradient(180deg, #0f172a 0%, #0b1224 100%);
      border:1px solid #1f2937;
      border-radius:var(--radius);
      box-shadow: 0 20px 60px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.03);
      overflow:hidden;
    }
    header{
      padding:24px 28px; border-bottom:1px solid #1f2937;
      display:flex; align-items:center; justify-content:space-between; gap:16px;
    }
    header h1{margin:0; font-size:20px; letter-spacing:.2px}
    header h1 a{
      color:inherit;
      text-decoration:none;
      display:inline-flex;
      align-items:center;
    }
    header h1 a:focus-visible{
      outline:2px solid currentColor;
      outline-offset:4px;
    }
    header .hint{font-size:13px; color:var(--muted)}
    .slider{
      display:grid; grid-template-columns:auto 1fr auto; align-items:stretch; gap:12px;
      padding:18px;
    }
    .navbtn{
      display:grid; place-items:center; width:56px; border-radius:14px;
      background:#0b1224; border:1px solid #1f2937; cursor:pointer; user-select:none;
      transition: transform .06s ease, box-shadow .12s ease, border-color .12s ease;
      box-shadow: 0 6px 20px rgba(0,0,0,.35);
    }
    .navbtn:hover{border-color:#334155}
    .navbtn:active{transform:translateY(1px)}
    .navbtn svg{width:24px; height:24px; fill:var(--text); opacity:.9}
    .viewport{
      position:relative; display:grid; place-items:center;
      overflow:hidden; border-radius:16px; border:1px dashed #243040;
      background: conic-gradient(from 180deg at 50% 50%, #0b1326, #0a1429, #0b1326);
    }
    .slide{
      position:relative; display:grid; place-items:center; padding:24px;
      opacity:0; transform:translateX(30px) scale(.98);
      transition: opacity .22s ease, transform .22s ease;
      grid-area:1 / 1;
      pointer-events:none;
      width:100%;
    }
    .slide.active{opacity:1; transform:translateX(0) scale(1); pointer-events:auto}
    .product{
      text-align:center; max-width:560px; margin-inline:auto;
    }
    .product .media{
      margin:0 auto 16px;
      width:100%;
      max-width:100%;
      border-radius:20px;
      overflow:hidden;
      box-shadow:0 12px 40px rgba(15, 23, 42, 0.55);
    }
    .product .media img{
      display:block;
      width:100%;
      max-width:100%;
      height:auto;
    }
    .product .name{font-size:26px; font-weight:700; margin:0 0 8px}
    .product .desc{margin:0; color:var(--muted); font-size:14px}
    .qty{
      display:flex; align-items:center; justify-content:center; gap:10px; margin:18px 0 4px;
    }
    .qty button{
      width:40px; height:40px; border-radius:12px; border:1px solid #1f2937;
      background:#0b1224; color:var(--text); font-size:20px; cursor:pointer;
      transition:transform .06s ease, border-color .12s ease;
    }
    .qty button:hover{border-color:#334155}
    .qty button:active{transform:translateY(1px)}
    .qty input{
      width:88px; text-align:center; font-size:18px; padding:10px 12px; border-radius:12px;
      background:#0b1224; color:var(--text); border:1px solid #1f2937;
      outline:none; box-shadow: 0 0 0 0 var(--ring);
      transition: box-shadow .12s ease, border-color .12s ease;
    }
    .qty input:focus{border-color:#334155; box-shadow:0 0 0 6px var(--ring)}
    .maxnote{font-size:12px; color:var(--muted); text-align:center}
    form{padding:18px 18px 24px; display:grid; gap:16px}
    .field{
      display:grid; gap:8px;
    }
    label{font-size:13px; color:var(--muted)}
    input[type="email"]{
      width:100%; padding:12px 14px; border-radius:12px; border:1px solid #1f2937;
      background:#0b1224; color:var(--text); outline:none;
      transition: box-shadow .12s ease, border-color .12s ease;
    }
    input[type="email"]:focus{border-color:#334155; box-shadow:0 0 0 6px var(--ring)}
    .cta{
      display:flex; gap:12px; align-items:center; justify-content:space-between; flex-wrap:wrap;
      padding-top:6px;
    }
    .submit{
      padding:14px 18px; border:none; border-radius:14px; cursor:pointer;
      font-size:16px; font-weight:700; letter-spacing:.2px;
      background:linear-gradient(90deg, var(--accent), var(--accent-2));
      color:#072215; box-shadow:0 10px 30px rgba(20,184,166,.35);
      transition: transform .06s ease, filter .12s ease;
    }
    .submit:hover{filter:saturate(1.1) brightness(1.05)}
    .submit:active{transform:translateY(1px)}
    .ghost{
      font-size:13px; color:var(--muted)
    }
    footer{
      padding:14px 20px; border-top:1px solid #1f2937; font-size:12px; color:#94a3b8a6;
      display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
    }
    .pill{
      border:1px solid #1f2937; padding:6px 10px; border-radius:999px; background:#0b1224;
      font-size:12px; color:var(--muted)
    }

    .alert{
      margin:0 18px 18px; padding:12px 14px; border-radius:12px; text-align:center;
    }
    .alert.success{background:#065f46; color:#d1fae5}
    .alert.error{background:#7f1d1d; color:#fee2e2}
    .alert .details-btn{
      margin-left:12px; padding:0; border:0; background:none; color:inherit;
      font:inherit; font-weight:600; text-decoration:underline; cursor:pointer;
    }
    .alert .details-btn:hover,
    .alert .details-btn:focus-visible{opacity:.9}
    .alert .details-btn:focus-visible{outline:2px solid currentColor; outline-offset:3px}

    .verification-card{
      max-width:520px;
      margin:0 auto;
      padding:32px 36px 36px;
      display:grid;
      gap:28px;
      background: linear-gradient(175deg, rgba(15,23,42,.92) 0%, rgba(9,14,29,.92) 100%);
    }

    .verification-card__header{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
      flex-wrap:wrap;
    }

    .verification-card__titles{display:grid; gap:6px; min-width:200px}

    .verification-card__eyebrow{
      margin:0;
      font-size:13px;
      letter-spacing:.26em;
      text-transform:uppercase;
      color:var(--muted);
    }

    .verification-card__headline{
      margin:0;
      font-size:30px;
      letter-spacing:.3px;
    }

    .verification-card__timer{
      display:grid;
      gap:8px;
      text-align:center;
      place-items:center;
      color:var(--muted);
      min-width:120px;
    }

    .verification-card__timer-text{
      margin:0;
      font-size:12px;
      letter-spacing:.3px;
      text-transform:uppercase;
    }

    .verification-timer{
      --progress:0deg;
      position:relative;
      width:82px;
      height:82px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:conic-gradient(var(--accent) var(--progress), rgba(34,211,238,.08) 0);
      box-shadow:0 18px 34px rgba(6,182,212,.25);
      transition:background .4s ease;
    }

    .verification-timer::after{
      content:"";
      position:absolute;
      inset:8px;
      border-radius:50%;
      background:#0b1224;
      box-shadow: inset 0 0 0 1px #1f2937;
    }

    .verification-timer__value,
    .verification-timer__unit{
      position:relative;
      z-index:1;
    }

    .verification-timer__value{
      font-size:28px;
      font-weight:700;
      line-height:1;
      color:var(--text);
    }

    .verification-timer__unit{
      font-size:11px;
      letter-spacing:.3em;
      text-transform:uppercase;
      color:var(--muted);
    }

    .verification-card__body{
      display:grid;
      gap:12px;
      color:var(--muted);
      font-size:15px;
      line-height:1.6;
    }

    .verification-card__message{
      margin:0;
      font-size:17px;
      color:var(--text);
      font-weight:500;
    }

    .verification-card__note{margin:0; font-size:13px; color:var(--muted)}

    .verification-card__actions{display:flex; justify-content:center;}

    @media (max-width:600px){
      .verification-card{padding:28px 24px; gap:22px}
      .verification-card__headline{font-size:26px}
      .verification-card__header{justify-content:center}
    }

    .poll-results {
      display:grid;
      gap:1.25rem;
      margin-top:1.5rem;
    }

    .poll-results__summary {
      text-align:center;
      display:grid;
      gap:0.35rem;
    }

    .poll-results__heading {
      margin:0;
      font-size:1.2rem;
      font-weight:700;
    }

    .poll-results__total {
      margin:0;
      font-weight:600;
      color:var(--accent);
    }

    .poll-results__question {
      margin:0;
      color:var(--muted);
    }

    .poll-results__list {
      display:grid;
      gap:1rem;
    }

    .poll-results__item {
      display:grid;
      grid-template-columns:auto 1fr;
      gap:1.25rem;
      align-items:center;
      padding:1rem 1.25rem;
      border-radius:16px;
      background:linear-gradient(135deg, rgba(15,23,42,.65), rgba(8,12,24,.55));
      border:1px solid rgba(20,184,166,.35);
      box-shadow:0 18px 46px rgba(7,11,22,.55);
    }

    .poll-results__media img{
      max-width:140px;
      width:100%;
      border-radius:14px;
      box-shadow:0 12px 32px rgba(7,11,22,.6);
    }

    .poll-results__content{display:grid;gap:0.5rem;}

    .poll-results__title{
      margin:0;
      font-size:1.1rem;
      font-weight:700;
    }

    .poll-results__meta{
      display:flex;
      justify-content:space-between;
      gap:1rem;
      font-weight:600;
      color:var(--text);
    }

    .poll-results__percentage{color:var(--accent);}

    .poll-results__bar{
      width:100%;
      height:0.85rem;
      border-radius:999px;
      background:rgba(148,163,184,.28);
      overflow:hidden;
    }

    .poll-results__bar-fill{
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg, var(--accent), var(--accent-2));
      box-shadow:0 0 18px rgba(20,184,166,.45);
    }

    .poll-results__empty{
      margin:0;
      padding:1rem;
      text-align:center;
      border-radius:14px;
      background:rgba(15,23,42,.6);
      border:1px dashed rgba(148,163,184,.35);
      color:var(--muted);
    }

    @media (max-width:720px){
      .poll-results__item{
        grid-template-columns:1fr;
        text-align:center;
      }

      .poll-results__meta{
        justify-content:center;
      }

      .poll-results__media img{
        margin:0 auto;
        max-width:180px;
      }
    }
