:root{
  --bg1:#0b1020;
  --bg2:#0f172a;
  --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:22px 14px;
}

.card{
  width:min(980px, 100%);
  background: linear-gradient(180deg, #0b1226ee, #0b1226cc);
  border:1px solid var(--stroke);
  border-radius:24px;
  padding:26px;
  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;
  grid-template-areas: "left right";
  gap:22px;
}

.leftCol{ grid-area:left; }
.right{ grid-area:right; }

.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.5;
  color:var(--muted);
  max-width: 55ch;
}

/* Domain + CTA */
.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:#bee6be;
  font-size: clamp(18px, 2.2vw, 24px);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:11px 16px;
  border-radius:16px;
  border:1px solid #34d39980;
  background: linear-gradient(180deg, #2fdc73 0%, #22c55e 52%, #169447 100%);
  color:#03140a;
  font-size:16px;
  font-weight:800;
  letter-spacing:.15px;
  text-decoration:none;
  text-shadow:none;
  box-shadow: 0 14px 34px #16a34a45, inset 0 1px 0 #ffffff47;
  transition: transform .14s ease, box-shadow .14s ease, filter .14s ease;
  white-space:nowrap;
}
.btn > img{
  flex:0 0 auto;
  width:24px;
  height:24px;
}
.btn::after{
  content:"";
  width:24px;
  height:1px;
  flex:0 0 24px;
}
.btn:hover{
  transform: translateY(-1px);
  filter: saturate(1.03) brightness(1.01);
  box-shadow: 0 18px 38px #16a34a5a, inset 0 1px 0 #ffffff5c;
}
.btn:active{
  transform: translateY(0px);
  filter: saturate(.98) brightness(.97);
  box-shadow: 0 10px 22px #16a34a45, inset 0 1px 0 #ffffff40;
}
.btn:focus-visible{
  outline:none;
  box-shadow: 0 0 0 4px #22c55e40, 0 14px 34px #16a34a45, inset 0 1px 0 #ffffff47;
}

.kpis{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
}
.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;
}

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

/* Right */
.right{
  border:1px solid var(--stroke);
  background: #0b1226aa;
  border-radius:22px;
  padding:18px 16px 16px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  min-height: 340px;
  position:relative;
  overflow:visible; /* avoid clipping arrow stroke */
}

/* Arrow (desktop/tablet only) */
.arrow{
  position:absolute;
  left:14px;
  top:12px;
  width:130px;
  height:90px;
  opacity:.95;
  pointer-events:none;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.35));
  animation: floaty 1.6s ease-in-out infinite;
  z-index:1;
}
.arrow svg{ width:100%; height:100%; overflow:visible; }
@keyframes floaty{
  0%,100%{ transform: translateY(0px); }
  50%{ transform: translateY(-6px); }
}

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

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

.qrWrap img.qr{
  width: 230px;
  height: 230px;
  border-radius:20px;
  display:block;
  background:#fff;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

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

.hint{
  order:-1;
  text-align:center;
  color:var(--muted);
  font-size:14px;
  line-height:1.35;
  margin-top:0;
  margin-bottom:6px;
}

/* Timer */
.timerBox{
  width:100%;
  max-width: 400px;
  border:1px solid var(--stroke);
  background:#0b1226aa;
  border-radius:18px;
  padding:12px 14px;
  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:30px;
  letter-spacing:.9px;
  color:#fff;
}
.timerDesc{
  margin-top:8px;
  font-size:13px;
  line-height:1.35;
  color:var(--muted);
}
.timerDesc strong{ color:#fff; font-weight:950; }

.valueLink{
  margin-top:6px;
  font-weight:400;
  color:#424242;
  text-decoration:none;
}
.valueLink:hover{ text-decoration:underline; }

/* MOBILE / SMALL: no QR + arrow, timer after CTA, bigger button, no scroll */
@media (max-width: 768px){
  .wrap{
    padding:14px 10px;
    align-items:flex-start;
  }
  .card{padding:16px}
  .grid{
    grid-template-columns:1fr;
    grid-template-areas: "left" "right";
    gap:12px;
  }
  .right{
    min-height:auto;
    padding:14px;
    gap:10px;
    justify-content:center;
  }

  /* hide QR/arrow/hint on mobile */
  .arrow, .qrLink, .hint{ display:none !important; }

  /* reduce text blocks to avoid scroll */
  .kpis, .note{ display:none !important; }
  .sub{ font-size:15px; margin-top:8px; }

  .domainRow{ gap:10px; margin-top:12px; }
  .domain{ width:100%; text-align:center; }
  .btn{
    width:100%;
    padding:16px 18px;
    font-size:18px;
    border-radius:18px;
  }
  .btn > img{
    width:32px;
    height:32px;
  }
  .btn::after{
    width:32px;
    flex:0 0 32px;
  }

  .timerBox{ max-width:100%; padding:14px 14px; }
  .countdown{ font-size:36px; }
}
