/* Exclusive product page */
:root {
  --bg: #09090f;
  --card: rgba(18, 18, 28, 0.85);
  --card-border: rgba(255, 255, 255, 0.1);
  --text: #fafafa;
  --text-muted: rgba(250, 250, 250, 0.58);
  --accent: #a855f7;
  --accent-2: #f59e0b;
  --accent-glow: rgba(168, 85, 247, 0.45);
  --gold: #fbbf24;
  --radius: 20px;
  --font: "Outfit", system-ui, sans-serif;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Background */
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 45% at 50% -5%, rgba(168, 85, 247, 0.28), transparent),
    radial-gradient(ellipse 40% 30% at 90% 80%, rgba(245, 158, 11, 0.12), transparent),
    radial-gradient(ellipse 35% 25% at 10% 70%, rgba(99, 102, 241, 0.1), transparent);
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 99;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* Header */
.header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--card-border);
  backdrop-filter: blur(12px);
  background: rgba(9, 9, 15, 0.7);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
}
.brand:hover { color: var(--accent); }

.brand__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px var(--accent-glow);
  animation: pulse-dot 2.5s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.9); }
}

.header__secure {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Main */
.main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem 3rem;
}

.product {
  position: relative;
  width: 100%;
  max-width: 28rem;
  padding: 2rem 1.75rem 1.75rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 0 1px rgba(168, 85, 247, 0.08),
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(168, 85, 247, 0.06);
}

.product__glow {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--gold), transparent);
  border-radius: 999px;
}

.product__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.product__type {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(168, 85, 247, 0.15);
  border-radius: 999px;
}

.product__badge {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 999px;
}

.product__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1.25rem;
}

.product__visual-ring {
  position: absolute;
  inset: 0;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(168,85,247,0.25), rgba(251,191,36,0.15));
  animation: ring-spin 8s linear infinite;
}

.product__visual-ring::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 1.1rem;
  background: rgba(12, 12, 20, 0.9);
}

@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

.product__emoji {
  position: relative;
  z-index: 1;
  font-size: 2.75rem;
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(251, 191, 36, 0.3));
}

.product__title {
  margin: 0 0 0.65rem;
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 30%, rgba(255,255,255,0.75));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.product__desc {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.product__perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.product__perks li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  border-radius: 999px;
}

.product__perks svg { color: #22c55e; flex-shrink: 0; }

.product__price-block {
  margin-bottom: 1.25rem;
  padding: 1.35rem 1.25rem;
  background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.15));
  border: 1px solid var(--card-border);
  border-radius: 14px;
}

.product__price-label {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product__price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.product__price {
  margin: 0;
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, #fff, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.product__currency {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.product__price-note {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Buy button */
.btn-buy {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1.05rem 1.5rem;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    0 4px 20px rgba(168, 85, 247, 0.4),
    inset 0 1px 0 rgba(255,255,255,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 28px rgba(168, 85, 247, 0.5),
    inset 0 1px 0 rgba(255,255,255,0.15);
  color: #fff;
}

.btn-buy:active { transform: translateY(0); }

.btn-buy:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-buy__shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shine 3s ease infinite;
}

@keyframes shine {
  0% { left: -100%; }
  40%, 100% { left: 150%; }
}

.btn-buy__arrow {
  transition: transform 0.2s;
}
.btn-buy:hover .btn-buy__arrow {
  transform: translateX(3px);
}

/* Payment methods */
.payments {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--card-border);
}

.payments h2 {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.payments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pay-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.35rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
}

.pay-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

.pay-card span {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.pay-logo {
  display: block;
  width: 100%;
  max-width: 58px;
  height: 36px;
  object-fit: contain;
  object-position: center;
}

.payments__note {
  margin: 0.85rem 0 0;
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.8;
}

/* Included */
.included {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--card-border);
  text-align: left;
}

.included h2 {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

.included ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.included li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.included li:last-child { border-bottom: none; }

.included__icon {
  flex-shrink: 0;
  font-size: 1.15rem;
  line-height: 1.4;
}

.included li strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.1rem;
}

.included li span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid var(--card-border);
  text-align: center;
  background: rgba(9, 9, 15, 0.8);
  backdrop-filter: blur(12px);
}

.footer__stripe {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  border-radius: 999px;
}

.footer p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (min-width: 480px) {
  .product { padding: 2.25rem 2rem 2rem; }
  .payments__grid { gap: 0.65rem; }
  .pay-card { padding: 0.65rem 0.5rem; }
  .pay-logo { max-width: 64px; height: 40px; }
}



/* Added conversion sections */
.cta-note{
  margin:0.75rem 0 0;
  font-size:0.82rem;
  color:var(--gold);
  font-weight:600;
  text-align:center;
}

.trustbar{
  display:flex;
  flex-wrap:wrap;
  gap:0.5rem;
  justify-content:center;
  margin-top:1rem;
}
.trust-pill{
  padding:0.45rem 0.75rem;
  border-radius:999px;
  background:rgba(255,255,255,0.04);
  border:1px solid var(--card-border);
  font-size:0.78rem;
  color:var(--text-muted);
  font-weight:600;
}

.proof,.guarantee,.faq{
  margin-top:1.5rem;
  padding-top:1.5rem;
  border-top:1px solid var(--card-border);
  text-align:left;
}
.proof h2,.guarantee h2,.faq h2{
  margin:0 0 1rem;
  font-size:0.75rem;
  font-weight:700;
  color:var(--text-muted);
  text-transform:uppercase;
  letter-spacing:0.1em;
  text-align:center;
}
.proof__grid{
  display:grid;
  gap:0.75rem;
}
.proof-card{
  background:rgba(255,255,255,0.03);
  border:1px solid var(--card-border);
  border-radius:14px;
  padding:0.9rem;
}
.proof-card strong{display:block; margin-bottom:0.25rem;}
.proof-card p{
  margin:0;
  color:var(--text-muted);
  font-size:0.85rem;
  line-height:1.55;
}
.guarantee__list{
  margin:0;
  padding-left:1.1rem;
  color:var(--text-muted);
}
.guarantee__list li{margin:0.45rem 0;}
.faq details{
  background:rgba(255,255,255,0.03);
  border:1px solid var(--card-border);
  border-radius:14px;
  padding:0.9rem 1rem;
  margin-bottom:0.65rem;
}
.faq summary{
  cursor:pointer;
  font-weight:600;
}
.faq p{
  margin:0.65rem 0 0;
  color:var(--text-muted);
  font-size:0.85rem;
}


/* Top-of-page fixes */
.header{
  position: sticky;
  top: 0;
}

.main{
  padding-top: 1.25rem;
}

.product{
  margin-top: 0.25rem;
}

.product__top{
  margin-bottom: 0.9rem;
}

.product__visual{
  width: 5.4rem;
  height: 5.4rem;
  margin: 0 auto 1rem;
}

.product__title{
  font-size: 2.1rem;
  margin-bottom: 0.5rem;
}

.product__desc{
  margin-bottom: 1rem;
}

@media (max-width: 480px){
  .header{
    padding: 0.9rem 1rem;
  }
  .main{
    padding-top: 1rem;
  }
  .product{
    padding-top: 1.5rem;
  }
}
