/* ── Custom Properties ───────────────────────────────────────────────── */
:root {
  --bg-page:         #060d14;
  --bg-card:         #0f1923;
  --bg-mid:          #1a2a3a;
  --bg-deep:         #0d1f2d;
  --gold:            #C9A84C;
  --gold-light:      #e8cc7a;
  --gold-dark:       #8B6914;
  --gold-glow:       rgba(201, 168, 76, 0.40);
  --gold-subtle:     rgba(201, 168, 76, 0.12);
  --gold-border:     rgba(201, 168, 76, 0.22);
  --text-primary:    rgba(255, 255, 255, 0.92);
  --text-secondary:  rgba(200, 215, 230, 0.72);
  --text-muted:      rgba(180, 200, 220, 0.45);
  --radius-card:     16px;
  --radius-btn:      14px;
  --radius-input:    10px;
  --transition:      0.20s ease;
}

/* ── Reset ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-page);
  color: var(--text-primary);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 20px 64px;
  overflow-x: hidden;
}

/* ── Background glow orbs ────────────────────────────────────────────── */
body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
body::before {
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, transparent 65%);
}
body::after {
  bottom: -100px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
}

/* ── Page container ──────────────────────────────────────────────────── */
.vv-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 390px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Page load animation ─────────────────────────────────────────────── */
.vv-section {
  opacity: 0;
  transform: translateY(16px);
  animation: vv-fadein 0.5s ease forwards;
}
.vv-section:nth-child(1) { animation-delay: 0.05s; }
.vv-section:nth-child(2) { animation-delay: 0.15s; }
.vv-section:nth-child(3) { animation-delay: 0.25s; }
.vv-section:nth-child(4) { animation-delay: 0.35s; }
.vv-section:nth-child(5) { animation-delay: 0.45s; }
.vv-section:nth-child(6) { animation-delay: 0.55s; }

@keyframes vv-fadein {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Header ──────────────────────────────────────────────────────────── */
.vv-header {
  text-align: center;
  margin-bottom: 24px;
  padding-top: 8px;
}

/* Avatar ring */
.vv-avatar-ring {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 40%, var(--gold-light) 70%, var(--gold) 100%);
  padding: 3px;
  margin: 0 auto 18px;
  box-shadow: 0 0 0 1px rgba(201,168,76,0.15), 0 0 32px var(--gold-glow), 0 0 70px rgba(201,168,76,0.15);
  animation: vv-pulse 3s ease-in-out infinite;
}

@keyframes vv-pulse {
  0%, 100% {
    box-shadow: 0 0 0 1px rgba(201,168,76,0.15), 0 0 32px rgba(201,168,76,0.40), 0 0 70px rgba(201,168,76,0.15);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(201,168,76,0.25), 0 0 48px rgba(201,168,76,0.60), 0 0 90px rgba(201,168,76,0.25);
  }
}

.vv-avatar-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg-card), var(--bg-mid));
  display: flex;
  align-items: center;
  justify-content: center;
}
.vv-avatar-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Brand name */
.vv-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(18px, 5vw, 22px);
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 45%, var(--gold) 75%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1.2;
}

/* Tagline */
.vv-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.9;
  margin-bottom: 12px;
}

/* Bio */
.vv-bio {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto;
}

/* ── Gold divider ────────────────────────────────────────────────────── */
.vv-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.40), transparent);
  margin: 22px 0;
}

/* ── Links stack ─────────────────────────────────────────────────────── */
.vv-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── eBook CTA button ────────────────────────────────────────────────── */
.vv-btn-ebook {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--gold) 0%, #ddb84a 35%, var(--gold-light) 55%, var(--gold) 80%);
  border-radius: var(--radius-btn);
  padding: 15px 18px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(201,168,76,0.40), 0 1px 0 rgba(255,255,255,0.25) inset;
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 64px;
}
.vv-btn-ebook:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(201,168,76,0.55), 0 1px 0 rgba(255,255,255,0.25) inset;
}
.vv-btn-ebook:active { transform: translateY(0); }

/* Shimmer animation on eBook button */
.vv-btn-ebook::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  animation: vv-shimmer 2.8s infinite;
}
@keyframes vv-shimmer {
  0%   { left: -100%; }
  60%  { left: 150%; }
  100% { left: 150%; }
}

.vv-ebook-cover {
  width: 40px; height: 52px;
  background: linear-gradient(160deg, var(--gold-dark), #5a4510);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 8px rgba(0,0,0,0.35);
  font-size: 22px;
  position: relative;
  z-index: 1;
}
.vv-ebook-text   { flex: 1; position: relative; z-index: 1; }
.vv-ebook-title  {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #0d1520;
  line-height: 1.2;
  margin-bottom: 3px;
}
.vv-ebook-sub    { font-size: 10.5px; color: rgba(15,25,35,0.65); }
.vv-ebook-price  {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: #0d1520;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

/* ── Newsletter form ─────────────────────────────────────────────────── */
.vv-newsletter {
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-card);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color var(--transition);
}
.vv-newsletter:focus-within {
  border-color: rgba(201,168,76,0.45);
}

.vv-newsletter-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2px;
}
.vv-newsletter-sub {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}

.vv-input {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius-input);
  padding: 12px 14px;
  color: var(--text-primary);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  width: 100%;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  min-height: 44px;
}
.vv-input::placeholder { color: var(--text-muted); }
.vv-input:focus {
  border-color: rgba(201,168,76,0.45);
  background: rgba(255,255,255,0.07);
}

/* Honeypot — visually hidden, accessible to screen readers but labelled */
.vv-honeypot {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.vv-btn-subscribe {
  background: linear-gradient(135deg, rgba(201,168,76,0.18), rgba(201,168,76,0.08));
  border: 1px solid rgba(201,168,76,0.45);
  border-radius: var(--radius-input);
  padding: 12px;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.vv-btn-subscribe:hover:not(:disabled) {
  background: linear-gradient(135deg, rgba(201,168,76,0.28), rgba(201,168,76,0.14));
  border-color: rgba(201,168,76,0.65);
  transform: translateY(-1px);
}
.vv-btn-subscribe:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Spinner icon inside button */
.vv-spinner {
  width: 14px; height: 14px;
  border: 2px solid rgba(201,168,76,0.3);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: vv-spin 0.7s linear infinite;
  display: none;
}
.vv-btn-subscribe.vv-loading .vv-spinner { display: block; }
.vv-btn-subscribe.vv-loading .vv-btn-label { display: none; }

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

/* Success state */
.vv-newsletter-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  animation: vv-fadein 0.3s ease forwards;
}
.vv-success-icon {
  font-size: 32px;
}
.vv-success-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
  text-align: center;
}
.vv-success-sub {
  font-size: 11.5px;
  color: var(--text-muted);
  text-align: center;
}

/* Error message */
.vv-form-error {
  font-size: 11px;
  color: #ff7070;
  text-align: center;
  display: none;
  animation: vv-fadein 0.2s ease forwards;
}
.vv-form-error.visible { display: block; }

/* ── Social row ──────────────────────────────────────────────────────── */
.vv-socials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.vv-social-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-card);
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  min-height: 72px;
}
.vv-social-btn:hover {
  border-color: rgba(201,168,76,0.30);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.vv-social-icon {
  width: 28px; height: 28px;
  fill: var(--text-secondary);
  flex-shrink: 0;
  transition: fill var(--transition);
}
.vv-social-btn:hover .vv-social-icon { fill: var(--gold-light); }

.vv-social-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.vv-social-btn:hover .vv-social-label { color: var(--gold-light); }

/* ── Generic link button (e.g. Customer Login) ───────────────────────── */
.vv-btn-link {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-btn);
  padding: 13px 18px;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  min-height: 56px;
}
.vv-btn-link:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-2px);
}
.vv-btn-link:active { transform: translateY(0); }

.vv-btn-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--gold-subtle);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.vv-btn-text-wrap { flex: 1; }
.vv-btn-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 2px;
}
.vv-btn-sub {
  font-size: 10.5px;
  color: var(--text-muted);
}
.vv-btn-arrow {
  color: rgba(201,168,76,0.45);
  font-size: 18px;
  line-height: 1;
}

/* ── Footer ──────────────────────────────────────────────────────────── */
.vv-footer {
  text-align: center;
  margin-top: 8px;
}
.vv-footer-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: rgba(201,168,76,0.25);
  text-transform: uppercase;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 360px) {
  .vv-socials { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .vv-ebook-price { font-size: 13px; }
}
@media (max-width: 300px) {
  .vv-socials { grid-template-columns: 1fr; }
}

/* ── Reduced motion ──────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .vv-section { animation: none; opacity: 1; transform: none; }
  .vv-avatar-ring { animation: none; }
  .vv-btn-ebook::before { animation: none; }
  .vv-spinner { animation: none; }
}

/* ── Screen reader only ──────────────────────────────────────────────── */
.vv-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
