:root{
  --bg1:#0b1020;
  --bg2:#0f172a;
  --card:#0b1226cc;
  --stroke:#ffffff1a;
  --text:#e5e7eb;
  --muted:#9ca3af;
  --accent:#22c55e; /* WhatsApp green */
  --accent2:#38bdf8;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1000px 500px at 20% 10%, #1f3bff33 0%, transparent 60%),
    radial-gradient(900px 450px at 90% 20%, #22c55e2a 0%, transparent 60%),
    radial-gradient(900px 600px at 50% 110%, #38bdf826 0%, transparent 60%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
}

.wrap{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px 16px;
}

.card{
  width:min(980px, 100%);
  background: linear-gradient(180deg, #0b1226ee, #0b1226cc);
  border:1px solid var(--stroke);
  border-radius:24px;
  padding:28px;
  box-shadow: 0 30px 80px #00000066;
  position:relative;
  overflow:hidden;
}

.card:before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(600px 250px at 10% 0%, #38bdf81a, transparent 60%),
              radial-gradient(500px 200px at 100% 20%, #22c55e1a, transparent 60%);
  pointer-events:none;
}

.grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap:22px;
}

@media (max-width: 860px){
  .grid{grid-template-columns:1fr}
  .card{padding:22px}
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border:1px solid var(--stroke);
  border-radius:999px;
  background:#0b1226aa;
  color:var(--muted);
  font-size:14px;
  letter-spacing:.2px;
}

.badge .dot{
  width:9px;height:9px;border-radius:99px;
  background:var(--accent);
  box-shadow:0 0 18px #22c55e88;
}

h1{
  margin:14px 0 6px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height:1.02;
  letter-spacing:-.8px;
}

h1 strong{
  color:#fff;
}

.sub{
  margin:10px 0 0;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height:1.55;
  color:var(--muted);
  max-width: 55ch;
}

/* Domain + CTA side by side */
.domainRow{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  margin-top:14px;
}

.domain{
  display:inline-block;
  padding:10px 14px;
  border-radius:16px;
  border:1px dashed #ffffff33;
  background:#0b1226aa;
  font-weight:950;
  letter-spacing:.3px;
  color:#fff;
  font-size: clamp(18px, 2.2vw, 24px);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid #22c55e55;
  background: linear-gradient(180deg, #22c55e, #16a34a);
  color:#06230f;
  font-weight:950;
  text-decoration:none;
  box-shadow: 0 16px 40px #22c55e30;
  transition: transform .12s ease, filter .12s ease;
  white-space:nowrap;
}

.btn:hover{transform: translateY(-1px); filter:brightness(1.03)}
.btn:active{transform: translateY(0px); filter:brightness(.98)}

.small{
  font-size:14px;
  color:var(--muted);
}

.kpis{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
}
@media (max-width: 520px){
  .kpis{grid-template-columns:1fr}
}
.kpi{
  border:1px solid var(--stroke);
  background:#0b1226aa;
  border-radius:18px;
  padding:12px 14px;
}
.kpi .num{
  font-weight:950;
  font-size:18px;
  color:#fff;
}
.kpi .lbl{
  margin-top:4px;
  font-size:13px;
  color:var(--muted);
  line-height:1.25;
}

.right{
  border:1px solid var(--stroke);
  background: #0b1226aa;
  border-radius:22px;
  padding:16px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height: 320px;
  position:relative;
}

.qrLink{
  display:inline-block;
  text-decoration:none;
}

.qrWrap{
  width: 240px;
  height: 240px;
  border-radius:24px;
  background:#fff;
  display:grid;
  place-items:center;
  position:relative;
  box-shadow: 0 18px 60px #00000055;
  cursor:pointer;
  transition: transform .12s ease, filter .12s ease;
}
.qrLink:hover .qrWrap{ transform: translateY(-1px); filter:brightness(1.02); }
.qrLink:active .qrWrap{ transform: translateY(0px); filter:brightness(.99); }

.qrWrap img.qr{
  width: 220px;
  height: 220px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.qrWrap .waIcon{
  position:absolute;
  width:56px;height:56px;
  border-radius:18px;
  background: #ffffff;
  display:grid;
  place-items:center;
  box-shadow: 0 10px 25px #00000033;
  border: 1px solid #00000010;
}

.qrWrap .waIcon img{
  width:36px;height:36px;
}

.right .hint{
  text-align:center;
  color:var(--muted);
  font-size:14px;
  line-height:1.4;
  margin-top:2px;
}

/* Arrow pointing to QR */
.arrow{
  position:absolute;
  left:-26px;
  top:26px;
  width:140px;
  height:140px;
  opacity:.9;
  pointer-events:none;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.35));
  animation: floaty 1.6s ease-in-out infinite;
}
@keyframes floaty{
  0%,100%{ transform: translateY(0px); }
  50%{ transform: translateY(-6px); }
}
@media (max-width: 860px){
  .arrow{
    left:10px;
    top:10px;
    width:120px;
    height:120px;
  }
}

/* Timer box */
.timerBox{
  width:100%;
  max-width: 360px;
  border:1px solid var(--stroke);
  background:#0b1226aa;
  border-radius:18px;
  padding:12px 14px;
  margin-top:8px;
  text-align:center;
}
.timerTitle{
  font-size:13px;
  color:var(--muted);
  margin-bottom:6px;
}
.countdown{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace;
  font-weight:950;
  font-size:26px;
  letter-spacing:.6px;
  color:#fff;
}
.timerDesc{
  margin-top:8px;
  font-size:13px;
  line-height:1.35;
  color:var(--muted);
}

.valueLink{
  margin-top:10px;
  font-weight:950;
  color:#c7d2fe;
  text-decoration:none;
}
.valueLink:hover{ text-decoration:underline; }

.note{
  margin-top:12px;
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}
