/* ═══════════════════════════════════════════════════════════════
   PROSPERITY WAVE X — Sales Funnel Styles
   Dark luxurious theme with gold accents
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --pw-bg-deep: #060610;
  --pw-bg-dark: #0a0a14;
  --pw-bg-card: #0f0f1a;
  --pw-bg-card-hover: #141425;
  --pw-bg-surface: #1a1a2e;
  --pw-gold: #c9a84c;
  --pw-gold-light: #e0c872;
  --pw-gold-dim: #a08535;
  --pw-gold-glow: rgba(201, 168, 76, 0.15);
  --pw-gold-border: rgba(201, 168, 76, 0.25);
  --pw-text: #e8e8ec;
  --pw-text-secondary: #9a9ab0;
  --pw-text-muted: #6a6a80;
  --pw-border: rgba(255, 255, 255, 0.06);
  --pw-glass: rgba(255, 255, 255, 0.03);
  --pw-radius: 12px;
  --pw-radius-lg: 20px;
  --pw-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --pw-font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --pw-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --pw-font-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body.info-page {
  font-family: var(--pw-font-body);
  background: var(--pw-bg-deep);
  color: var(--pw-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--pw-font-heading);
  font-weight: 600;
  line-height: 1.2;
}

/* ─── Background Effects ────────────────────────────────────── */
.pw-bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.pw-bg-radial {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}

/* ═══════════════════════════════════════════════════════════════
   CAPTURE PAGE (Gate)
   ═══════════════════════════════════════════════════════════════ */

.capture-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 40px 20px;
}

/* ─── Shimmer Border Wrapper ────────────────────────────────── */
.capture-shimmer-wrap {
  position: relative;
  border-radius: calc(var(--pw-radius-lg) + 2px);
  padding: 2px;
  width: 100%;
  max-width: 480px;
}

/* Rotating conic-gradient shimmer */
.capture-shimmer-border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
}

.capture-shimmer-border::before {
  content: '';
  position: absolute;
  inset: -80%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    transparent 25%,
    rgba(201, 168, 76, 0.5) 30%,
    var(--pw-gold-light) 35%,
    rgba(201, 168, 76, 0.5) 40%,
    transparent 45%,
    transparent 70%,
    rgba(201, 168, 76, 0.2) 75%,
    rgba(201, 168, 76, 0.08) 80%,
    transparent 85%,
    transparent 100%
  );
  animation: shimmerRotate 4s linear infinite;
}

@keyframes shimmerRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ─── The Card Itself ───────────────────────────────────────── */
.capture-card {
  width: 100%;
  background: linear-gradient(160deg, rgba(14, 14, 32, 0.92) 0%, rgba(8, 8, 20, 0.95) 100%);
  backdrop-filter: blur(40px) saturate(1.4);
  -webkit-backdrop-filter: blur(40px) saturate(1.4);
  border-radius: var(--pw-radius-lg);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 120px rgba(201, 168, 76, 0.05),
    0 30px 100px rgba(0, 0, 0, 0.6);
}

/* Glass shine reflection */
.capture-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -30%;
  width: 160%;
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
  pointer-events: none;
}

/* ─── Logo & Branding ───────────────────────────────────────── */
.capture-logo {
  text-align: center;
  margin-bottom: 12px;
  animation: captureReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.capture-logo .logo-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, rgba(201, 168, 76, 0.04) 70%);
  position: relative;
  animation: iconPulseGlow 3s ease-in-out infinite;
}

@keyframes iconPulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(201, 168, 76, 0.1), 0 0 40px rgba(201, 168, 76, 0.05); }
  50%      { box-shadow: 0 0 30px rgba(201, 168, 76, 0.2), 0 0 60px rgba(201, 168, 76, 0.08); }
}

.capture-logo .logo-icon svg {
  width: 28px;
  height: 28px;
  color: var(--pw-gold);
}

.capture-logo h1 {
  font-size: 1.4rem;
  color: var(--pw-gold);
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}

.capture-logo .tagline {
  font-size: 0.7rem;
  color: var(--pw-text-muted);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 400;
}

/* ─── Divider ───────────────────────────────────────────────── */
.capture-divider {
  width: 80px;
  height: 1px;
  margin: 30px auto;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
  position: relative;
  animation: captureReveal 0.8s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.capture-divider::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pw-gold);
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.4);
}

/* ─── Intro Copy ────────────────────────────────────────────── */
.capture-intro {
  text-align: center;
  margin-bottom: 32px;
  animation: captureReveal 0.8s 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.capture-intro h2 {
  font-size: 1.35rem;
  color: var(--pw-text);
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.capture-intro p {
  font-size: 0.88rem;
  color: var(--pw-text-secondary);
  line-height: 1.7;
}

.capture-intro .capture-lead {
  font-size: 1rem;
  color: var(--pw-text);
  font-weight: 400;
  margin-bottom: 4px;
  letter-spacing: 0.2px;
}

.capture-intro .capture-cta-text {
  margin-top: 18px;
  color: var(--pw-gold-light);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ─── Form (staggered reveal) ───────────────────────────────── */
.pw-capture-form {
  animation: captureReveal 0.8s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.pw-capture-form .pw-form-group:nth-child(2) {
  animation: captureReveal 0.8s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.pw-capture-form .pw-btn {
  animation: captureReveal 0.8s 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ─── Footer with lock icon ─────────────────────────────────── */
.capture-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  animation: captureReveal 0.8s 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.capture-footer-icon {
  color: var(--pw-text-muted);
  opacity: 0.5;
  flex-shrink: 0;
  display: flex;
}

.capture-footer p {
  font-size: 0.72rem;
  color: var(--pw-text-muted);
  opacity: 0.6;
  line-height: 1.4;
}

/* Staggered reveal keyframe */
@keyframes captureReveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Form Styles ───────────────────────────────────────────── */
.pw-form-group {
  margin-bottom: 20px;
}

.pw-form-group label {
  display: block;
  font-size: 0.72rem;
  color: var(--pw-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  font-weight: 500;
}

.pw-form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: var(--pw-text);
  font-family: var(--pw-font-body);
  font-size: 0.95rem;
  transition: var(--pw-transition);
  outline: none;
}

.pw-form-input::placeholder {
  color: var(--pw-text-muted);
  opacity: 0.6;
}

.pw-form-input:focus {
  border-color: var(--pw-gold);
  background: rgba(201, 168, 76, 0.04);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

/* ─── Buttons ───────────────────────────────────────────────── */
.pw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  font-family: var(--pw-font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--pw-transition);
  text-decoration: none;
}

.pw-btn-gold {
  background: linear-gradient(135deg, var(--pw-gold-light) 0%, var(--pw-gold) 50%, var(--pw-gold-dim) 100%);
  color: #08080d;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.pw-btn-gold::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: rotate(45deg) translateX(-100%);
  transition: 0.6s ease;
}

.pw-btn-gold:hover::after {
  transform: rotate(45deg) translateX(100%);
}

.pw-btn-gold:hover {
  color: #08080d;
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(201, 168, 76, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.pw-btn-outline {
  background: rgba(201, 168, 76, 0.06);
  color: var(--pw-gold-light);
  border: 1px solid var(--pw-gold-border);
  font-weight: 600;
}

.pw-btn-outline:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--pw-gold);
  color: #fff;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.15);
  transform: translateY(-1px);
}

.pw-btn-ghost {
  background: transparent;
  color: var(--pw-text-secondary);
  font-size: 0.78rem;
  padding: 10px;
  letter-spacing: 1px;
}

.pw-btn-ghost:hover {
  color: var(--pw-gold);
}

/* ─── Error / Success Messages ──────────────────────────────── */
.pw-alert {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  text-align: center;
}

.pw-alert-error {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.25);
  color: #f08090;
}

.pw-alert-success {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.25);
  color: #70d090;
}

/* ─── Security Badge ────────────────────────────────────────── */
.capture-footer {
  text-align: center;
  margin-top: 24px;
}

.capture-footer p {
  font-size: 0.7rem;
  color: var(--pw-text-muted);
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════════════
   VERIFY PAGE
   ═══════════════════════════════════════════════════════════════ */

.verify-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 40px 20px;
}

.verify-card {
  width: 100%;
  max-width: 460px;
  background: linear-gradient(160deg, rgba(20, 20, 40, 0.95) 0%, rgba(10, 10, 20, 0.98) 100%);
  border: 1px solid var(--pw-gold-border);
  border-radius: var(--pw-radius-lg);
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 80px rgba(201, 168, 76, 0.06),
    0 20px 60px rgba(0, 0, 0, 0.5);
}

.verify-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pw-gold), transparent);
  opacity: 0.5;
}

.verify-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border: 2px solid var(--pw-gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pw-gold-glow);
}

.verify-icon svg {
  width: 32px;
  height: 32px;
  color: var(--pw-gold);
}

.verify-card h2 {
  font-size: 1.3rem;
  color: var(--pw-text);
  margin-bottom: 8px;
}

.verify-card .verify-subtitle {
  font-size: 0.85rem;
  color: var(--pw-text-secondary);
  margin-bottom: 6px;
}

.verify-card .verify-email {
  font-size: 0.85rem;
  color: var(--pw-gold);
  margin-bottom: 28px;
  font-weight: 500;
}

/* Code input group */
.code-input-group {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}

.code-digit {
  width: 50px;
  height: 60px;
  text-align: center;
  font-family: var(--pw-font-mono);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pw-gold);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--pw-border);
  border-radius: 10px;
  outline: none;
  transition: var(--pw-transition);
  caret-color: var(--pw-gold);
}

.code-digit:focus {
  border-color: var(--pw-gold);
  background: rgba(201, 168, 76, 0.06);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.code-digit.filled {
  border-color: var(--pw-gold-dim);
  background: rgba(201, 168, 76, 0.08);
}

/* Hidden real input */
.code-hidden-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.verify-actions {
  margin-top: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   PRESENTATION PAGE
   ═══════════════════════════════════════════════════════════════ */

/* ─── Navigation Bar ────────────────────────────────────────── */
.pw-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6, 6, 16, 0.65);
  backdrop-filter: blur(30px) saturate(1.5);
  -webkit-backdrop-filter: blur(30px) saturate(1.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.pw-nav::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.12), transparent);
  pointer-events: none;
}

.pw-nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.15), transparent);
}

.pw-nav.scrolled {
  background: rgba(6, 6, 16, 0.9);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.pw-nav-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  height: 64px;
  gap: 12px;
}

.pw-nav-brand {
  font-family: var(--pw-font-heading);
  font-size: 1rem;
  color: var(--pw-gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Center navigation links */
.pw-nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.pw-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.pw-nav-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: color 0.25s ease;
  padding: 6px 10px;
  border-radius: 6px;
  position: relative;
  white-space: nowrap;
}

.pw-nav-links a:hover {
  color: rgba(255, 255, 255, 0.95);
}

.pw-nav-links a.active {
  color: var(--pw-gold);
}

/* Right-side action buttons */
.pw-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.pw-nav-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-family: var(--pw-font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.25s ease;
  background: transparent;
  white-space: nowrap;
}

.pw-nav-login:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.pw-nav-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--pw-font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 8px;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--pw-gold-light) 0%, var(--pw-gold) 100%);
  color: #0a0a0f;
  border: none;
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.25);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.pw-nav-register::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 100%);
  pointer-events: none;
}

.pw-nav-register:hover {
  color: #0a0a0f;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

.pw-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.pw-nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.7);
  margin: 5px 0;
  transition: var(--pw-transition);
  border-radius: 1px;
}

/* ─── Section Base ──────────────────────────────────────────── */
.pw-section {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
}

.pw-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pw-section-label {
  display: inline-block;
  font-size: 0.68rem;
  color: var(--pw-gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}

.pw-section-title {
  font-size: 2.4rem;
  color: var(--pw-text);
  margin-bottom: 16px;
  max-width: 700px;
}

.pw-section-subtitle {
  font-size: 1.05rem;
  color: var(--pw-text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.pw-section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--pw-gold), var(--pw-gold-dim), transparent);
  margin: 20px 0 0 0;
  position: relative;
}

.pw-section-divider::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 2px;
  background: var(--pw-gold-light);
  animation: dividerSlide 3s ease-in-out infinite;
}

/* ─── Hero Section ──────────────────────────────────────────── */
.pw-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

.pw-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.pw-hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.pw-hero-label {
  font-size: 0.72rem;
  color: var(--pw-gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}

.pw-hero h1 {
  font-size: 3.2rem;
  color: var(--pw-text);
  margin-bottom: 12px;
  line-height: 1.15;
}

.pw-hero h1 .gold {
  background: linear-gradient(135deg, var(--pw-gold-light), var(--pw-gold), #f0d878, var(--pw-gold));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 4s ease-in-out infinite;
}

.pw-hero .hero-sub {
  font-size: 1.15rem;
  color: var(--pw-text-secondary);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.pw-hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.pw-hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--pw-text-secondary);
  font-size: 0.85rem;
}

.pw-hero-feature .dot {
  width: 6px;
  height: 6px;
  background: var(--pw-gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.4);
}

.pw-hero-feature:nth-child(2) .dot { animation-delay: 0.5s; }
.pw-hero-feature:nth-child(3) .dot { animation-delay: 1s; }
.pw-hero-feature:nth-child(4) .dot { animation-delay: 1.5s; }

.pw-hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pw-hero-ctas .pw-btn {
  width: auto;
  padding: 16px 36px;
}

.pw-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--pw-text-muted);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.pw-scroll-indicator .line {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, var(--pw-gold-dim), transparent);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── Feature Cards Grid ────────────────────────────────────── */
.pw-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.pw-card {
  background: linear-gradient(160deg, rgba(18, 18, 35, 0.7) 0%, rgba(10, 10, 20, 0.6) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--pw-radius);
  padding: 32px 28px;
  transition: var(--pw-transition);
  position: relative;
  overflow: hidden;
}

/* Glass reflection */
.pw-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
  pointer-events: none;
  transition: var(--pw-transition);
}

/* Top edge highlight */
.pw-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: opacity var(--pw-transition);
}

.pw-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-6px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(201, 168, 76, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pw-card:hover::after {
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.pw-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--pw-gold-glow);
  border: 1px solid var(--pw-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pw-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--pw-gold);
}

.pw-card h3 {
  font-size: 1.05rem;
  color: var(--pw-text);
  margin-bottom: 10px;
  font-family: var(--pw-font-body);
  font-weight: 600;
}

.pw-card p {
  font-size: 0.88rem;
  color: var(--pw-text-secondary);
  line-height: 1.65;
}

/* ─── Two Column Layout ─────────────────────────────────────── */
.pw-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.pw-two-col-text h3 {
  font-size: 1.6rem;
  color: var(--pw-text);
  margin-bottom: 16px;
}

.pw-two-col-text p {
  font-size: 0.92rem;
  color: var(--pw-text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

/* ─── Process / Steps ───────────────────────────────────────── */
.pw-steps {
  margin-top: 48px;
}

.pw-step {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--pw-border);
  align-items: flex-start;
}

.pw-step:last-child {
  border-bottom: none;
}

.pw-step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pw-gold-glow);
  border: 1px solid var(--pw-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pw-font-mono);
  font-size: 0.85rem;
  color: var(--pw-gold);
  font-weight: 600;
  flex-shrink: 0;
}

.pw-step-content h4 {
  font-size: 1rem;
  color: var(--pw-text);
  margin-bottom: 6px;
  font-family: var(--pw-font-body);
  font-weight: 600;
}

.pw-step-content p {
  font-size: 0.88rem;
  color: var(--pw-text-secondary);
  line-height: 1.6;
}

/* ─── Pillars Section ───────────────────────────────────────── */
.pw-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pw-pillar {
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(160deg, rgba(18, 18, 38, 0.6) 0%, rgba(10, 10, 22, 0.5) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--pw-radius-lg);
  transition: var(--pw-transition);
  position: relative;
  overflow: hidden;
}

.pw-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
  pointer-events: none;
}

.pw-pillar:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-6px);
  box-shadow:
    0 16px 50px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(201, 168, 76, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pw-pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--pw-gold-glow);
  border: 1px solid var(--pw-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.pw-pillar-icon svg {
  width: 28px;
  height: 28px;
  color: var(--pw-gold);
}

.pw-pillar h3 {
  font-size: 1.15rem;
  color: var(--pw-gold);
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pw-pillar p {
  font-size: 0.88rem;
  color: var(--pw-text-secondary);
  line-height: 1.65;
}

/* ─── Info Table ─────────────────────────────────────────────── */
.pw-table-wrap {
  margin-top: 40px;
  overflow-x: auto;
  border-radius: var(--pw-radius);
  border: 1px solid var(--pw-border);
}

.pw-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.pw-table thead {
  background: rgba(201, 168, 76, 0.08);
}

.pw-table th {
  padding: 14px 18px;
  text-align: left;
  color: var(--pw-gold);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--pw-gold-border);
  white-space: nowrap;
}

.pw-table td {
  padding: 14px 18px;
  color: var(--pw-text-secondary);
  border-bottom: 1px solid var(--pw-border);
}

.pw-table tbody tr {
  transition: var(--pw-transition);
}

.pw-table tbody tr:hover {
  background: rgba(201, 168, 76, 0.04);
}

.pw-table tbody tr:last-child td {
  border-bottom: none;
}

.pw-table .highlight {
  color: var(--pw-gold);
  font-weight: 600;
}

/* ─── Quote / Callout Block ─────────────────────────────────── */
.pw-callout {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.06) 0%, rgba(201, 168, 76, 0.02) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-left: 3px solid var(--pw-gold);
  border-radius: 0 var(--pw-radius) var(--pw-radius) 0;
  padding: 28px 32px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.pw-callout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--pw-gold-border), transparent);
}

.pw-callout p {
  font-size: 1rem;
  color: var(--pw-text);
  line-height: 1.7;
  font-weight: 400;
}

.pw-callout .callout-highlight {
  color: var(--pw-gold);
  font-weight: 600;
}

/* ─── Rule / Principle Block ────────────────────────────────── */
.pw-rule-block {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: rgba(220, 53, 69, 0.04);
  border: 1px solid rgba(220, 53, 69, 0.15);
  border-radius: var(--pw-radius);
  margin: 24px 0;
}

.pw-rule-block.positive {
  background: rgba(40, 167, 69, 0.04);
  border-color: rgba(40, 167, 69, 0.15);
}

.pw-rule-block .rule-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.pw-rule-block p {
  font-size: 0.9rem;
  color: var(--pw-text-secondary);
}

/* ─── Stats Row ─────────────────────────────────────────────── */
.pw-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0;
}

.pw-stat {
  text-align: center;
  padding: 28px 16px;
  background: var(--pw-bg-card);
  border: 1px solid var(--pw-border);
  border-radius: var(--pw-radius);
}

.pw-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--pw-gold);
  font-family: var(--pw-font-heading);
  margin-bottom: 6px;
}

.pw-stat-label {
  font-size: 0.75rem;
  color: var(--pw-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── FAQ Accordion ─────────────────────────────────────────── */
.pw-faq-list {
  margin-top: 40px;
}

.pw-faq-item {
  border-bottom: 1px solid var(--pw-border);
}

.pw-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--pw-text);
  font-family: var(--pw-font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: var(--pw-transition);
}

.pw-faq-question:hover {
  color: var(--pw-gold);
}

.pw-faq-question .faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--pw-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--pw-transition);
  color: var(--pw-text-muted);
  font-size: 1.1rem;
}

.pw-faq-item.open .pw-faq-question .faq-toggle {
  background: var(--pw-gold-glow);
  border-color: var(--pw-gold-border);
  color: var(--pw-gold);
  transform: rotate(45deg);
}

.pw-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.pw-faq-item.open .pw-faq-answer {
  max-height: 300px;
  padding-bottom: 22px;
}

.pw-faq-answer p {
  font-size: 0.9rem;
  color: var(--pw-text-secondary);
  line-height: 1.7;
  padding-right: 50px;
}

/* ─── Contact Form ──────────────────────────────────────────── */
.pw-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
}

.pw-contact-info h3 {
  font-size: 1.4rem;
  color: var(--pw-text);
  margin-bottom: 16px;
}

.pw-contact-info p {
  font-size: 0.92rem;
  color: var(--pw-text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.pw-contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.pw-contact-detail .detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--pw-gold-glow);
  border: 1px solid var(--pw-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pw-contact-detail .detail-icon svg {
  width: 18px;
  height: 18px;
  color: var(--pw-gold);
}

.pw-contact-detail p {
  font-size: 0.88rem;
  color: var(--pw-text-secondary);
  margin: 0;
}

.pw-contact-form {
  background: var(--pw-bg-card);
  border: 1px solid var(--pw-border);
  border-radius: var(--pw-radius-lg);
  padding: 36px;
}

.pw-contact-form .pw-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pw-contact-form textarea.pw-form-input {
  min-height: 120px;
  resize: vertical;
}

/* ─── Footer ────────────────────────────────────────────────── */
.pw-footer {
  border-top: 1px solid var(--pw-border);
  padding: 48px 24px 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.pw-footer-brand {
  font-family: var(--pw-font-heading);
  font-size: 1rem;
  color: var(--pw-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pw-footer p {
  font-size: 0.78rem;
  color: var(--pw-text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 8px;
}

.pw-footer-legal {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--pw-border);
}

.pw-footer-legal p {
  font-size: 0.7rem;
  color: var(--pw-text-muted);
  opacity: 0.7;
}

/* ─── CTA Band ──────────────────────────────────────────────── */
.pw-cta-band {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, rgba(201, 168, 76, 0.02) 100%);
  border-top: 1px solid var(--pw-gold-border);
  border-bottom: 1px solid var(--pw-gold-border);
  text-align: center;
  padding: 64px 24px;
}

.pw-cta-band h2 {
  font-size: 2rem;
  color: var(--pw-text);
  margin-bottom: 12px;
}

.pw-cta-band p {
  font-size: 1rem;
  color: var(--pw-text-secondary);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.pw-cta-band .pw-btn {
  width: auto;
  padding: 16px 40px;
}

/* ─── List Styles ───────────────────────────────────────────── */
.pw-list {
  list-style: none;
  padding: 0;
}

.pw-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--pw-text-secondary);
}

.pw-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pw-gold);
  flex-shrink: 0;
  margin-top: 9px;
}

/* ─── Tabs ──────────────────────────────────────────────────── */
.pw-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--pw-border);
}

.pw-tab {
  padding: 14px 24px;
  background: none;
  border: none;
  color: var(--pw-text-muted);
  font-family: var(--pw-font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--pw-transition);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.pw-tab:hover {
  color: var(--pw-text-secondary);
}

.pw-tab.active {
  color: var(--pw-gold);
  border-bottom-color: var(--pw-gold);
}

.pw-tab-content {
  display: none;
}

.pw-tab-content.active {
  display: block;
}

/* ─── Separator ─────────────────────────────────────────────── */
.pw-sep {
  height: 1px;
  background: var(--pw-border);
  margin: 0;
  border: none;
}

/* ─── Animations ────────────────────────────────────────────── */
.pw-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.pw-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.pw-fade-in-delay-1 { transition-delay: 0.1s; }
.pw-fade-in-delay-2 { transition-delay: 0.2s; }
.pw-fade-in-delay-3 { transition-delay: 0.3s; }
.pw-fade-in-delay-4 { transition-delay: 0.4s; }

/* ─── Loading Spinner ───────────────────────────────────────── */
.pw-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(10, 10, 15, 0.3);
  border-top-color: #0a0a0f;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.pw-btn.loading .pw-spinner {
  display: block;
}

.pw-btn.loading .btn-text {
  opacity: 0.6;
}

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

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .pw-hero h1 {
    font-size: 2.6rem;
  }

  .pw-section-title {
    font-size: 2rem;
  }

  .pw-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pw-pillars {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pw-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .pw-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pw-nav-links {
    gap: 2px;
  }

  .pw-nav-links a {
    font-size: 0.68rem;
    padding: 6px 8px;
  }

  .pw-nav-login,
  .pw-nav-register {
    font-size: 0.68rem;
    padding: 7px 14px;
  }
}

@media (max-width: 768px) {
  .pw-hero h1 {
    font-size: 2rem;
  }

  .pw-hero .hero-sub {
    font-size: 1rem;
  }

  .pw-section {
    padding: 64px 20px;
  }

  .pw-section-title {
    font-size: 1.65rem;
  }

  .pw-cards-grid {
    grid-template-columns: 1fr;
  }

  .pw-hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .pw-hero-ctas .pw-btn {
    width: 100%;
    max-width: 300px;
  }

  .pw-hero-features {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .pw-nav-center {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(6, 6, 16, 0.94);
    backdrop-filter: blur(30px) saturate(1.4);
    -webkit-backdrop-filter: blur(30px) saturate(1.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: none;
    padding: 16px 24px 20px;
  }

  .pw-nav-center.open {
    display: block;
  }

  .pw-nav-links {
    flex-direction: column;
    gap: 4px;
  }

  .pw-nav-links a {
    display: block;
    padding: 10px 12px;
    font-size: 0.8rem;
    border-radius: 8px;
  }

  .pw-nav-links a:hover {
    background: rgba(255, 255, 255, 0.04);
  }

  .pw-nav-actions {
    margin-right: 48px;
  }

  .pw-nav-actions .pw-nav-login {
    display: none;
  }

  .pw-calc-grid {
    grid-template-columns: 1fr;
  }

  .pw-calc-card {
    padding: 28px 20px;
  }

  .pw-nav-toggle {
    display: block;
  }

  .capture-card,
  .verify-card {
    padding: 36px 24px;
  }

  .code-digit {
    width: 42px;
    height: 52px;
    font-size: 1.25rem;
  }

  .pw-table {
    font-size: 0.78rem;
  }

  .pw-table th,
  .pw-table td {
    padding: 10px 12px;
  }

  .pw-contact-form .pw-form-row {
    grid-template-columns: 1fr;
  }

  .pw-stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .pw-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pw-tab {
    white-space: nowrap;
    padding: 12px 16px;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .pw-hero h1 {
    font-size: 1.65rem;
  }

  .pw-section-title {
    font-size: 1.4rem;
  }

  .pw-stats-row {
    grid-template-columns: 1fr;
  }

  .code-input-group {
    gap: 6px;
  }

  .code-digit {
    width: 38px;
    height: 48px;
    font-size: 1.1rem;
  }

  .pw-cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .pw-cookie-actions {
    flex-direction: column;
    width: 100%;
  }

  .pw-cookie-btn {
    width: 100% !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */

@keyframes goldShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px rgba(201, 168, 76, 0.4); }
  50%      { opacity: 0.6; transform: scale(1.4); box-shadow: 0 0 16px rgba(201, 168, 76, 0.6); }
}

@keyframes dividerSlide {
  0%, 100% { transform: translateX(0); opacity: 1; }
  50%      { transform: translateX(40px); opacity: 0; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(30px, -20px) scale(1.1); }
  50%      { transform: translate(-10px, -40px) scale(0.95); }
  75%      { transform: translate(-30px, -10px) scale(1.05); }
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes borderGlow {
  0%, 100% { border-color: rgba(201, 168, 76, 0.15); }
  50%      { border-color: rgba(201, 168, 76, 0.35); }
}

/* Scroll-reveal with stagger */
.pw-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.pw-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.pw-fade-in-delay-1 { transition-delay: 0.12s; }
.pw-fade-in-delay-2 { transition-delay: 0.24s; }
.pw-fade-in-delay-3 { transition-delay: 0.36s; }
.pw-fade-in-delay-4 { transition-delay: 0.48s; }

/* Floating decorative orbs */
.pw-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  z-index: 0;
}

.pw-orb-gold {
  background: rgba(201, 168, 76, 0.08);
  animation: orbFloat 12s ease-in-out infinite;
}

.pw-orb-blue {
  background: rgba(59, 130, 246, 0.05);
  animation: orbFloat 15s ease-in-out infinite reverse;
}

/* Animated stat counters */
.pw-stat-value {
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pw-card-icon svg {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pw-card:hover .pw-card-icon svg {
  transform: scale(1.15) rotate(-3deg);
}

/* Animated CTA band gradient */
.pw-cta-band {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1) 0%, rgba(201, 168, 76, 0.03) 30%, rgba(59, 130, 246, 0.03) 70%, rgba(201, 168, 76, 0.07) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.pw-cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.pw-cta-band::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

/* Improved section label with line */
.pw-section-label {
  position: relative;
  padding-left: 20px;
}

.pw-section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 2px;
  background: var(--pw-gold);
}

/* ═══════════════════════════════════════════════════════════════
   REGISTRATION MULTI-STEP FORM
   ═══════════════════════════════════════════════════════════════ */

.register-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 40px 20px;
}

.register-card {
  width: 100%;
  max-width: 540px;
  background: linear-gradient(160deg, rgba(20, 20, 45, 0.65) 0%, rgba(10, 10, 24, 0.7) 100%);
  backdrop-filter: blur(30px) saturate(1.3);
  -webkit-backdrop-filter: blur(30px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--pw-radius-lg);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 100px rgba(201, 168, 76, 0.06),
    0 24px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: borderGlow 4s ease-in-out infinite;
}

.register-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 45%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
  pointer-events: none;
}

.register-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pw-gold), transparent);
  opacity: 0.5;
}

.register-header {
  text-align: center;
  margin-bottom: 32px;
}

.register-header h2 {
  font-size: 1.5rem;
  color: var(--pw-text);
  margin-bottom: 6px;
}

.register-header p {
  font-size: 0.88rem;
  color: var(--pw-text-secondary);
}

/* Step Indicator */
.pw-steps-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  position: relative;
}

.pw-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  flex: 1;
}

.pw-step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--pw-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pw-text-muted);
  background: var(--pw-bg-dark);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.pw-step-dot.active .pw-step-circle {
  border-color: var(--pw-gold);
  color: var(--pw-gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.08);
}

.pw-step-dot.completed .pw-step-circle {
  border-color: var(--pw-gold);
  background: var(--pw-gold);
  color: #0a0a0f;
}

.pw-step-label {
  font-size: 0.65rem;
  color: var(--pw-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
  transition: color 0.3s ease;
}

.pw-step-dot.active .pw-step-label,
.pw-step-dot.completed .pw-step-label {
  color: var(--pw-gold);
}

.pw-step-line {
  flex: 1;
  height: 2px;
  background: var(--pw-border);
  margin: 0 -4px;
  align-self: flex-start;
  margin-top: 17px;
  transition: background 0.4s ease;
  position: relative;
  z-index: 0;
}

.pw-step-line.completed {
  background: var(--pw-gold);
}

/* Step Content Panels */
.pw-step-panel {
  display: none;
  animation: fadeInUp 0.4s ease-out;
}

.pw-step-panel.active {
  display: block;
}

.pw-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pw-form-group select.pw-form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239a9ab0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.pw-form-hint {
  font-size: 0.72rem;
  color: var(--pw-text-muted);
  margin-top: 6px;
}

.pw-btn-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.pw-btn-row .pw-btn {
  flex: 1;
}

.pw-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--pw-text-secondary);
  border: 1px solid var(--pw-border);
}

.pw-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--pw-text);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Confirmation step */
.pw-confirm-summary {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--pw-border);
  border-radius: var(--pw-radius);
  padding: 24px;
  margin-bottom: 24px;
}

.pw-confirm-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.88rem;
}

.pw-confirm-row:last-child {
  border-bottom: none;
}

.pw-confirm-label {
  color: var(--pw-text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pw-confirm-value {
  color: var(--pw-text);
  font-weight: 500;
}

/* Email sent / success step */
.pw-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 2px solid var(--pw-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: pulse 2s ease-in-out infinite;
}

.pw-success-icon svg {
  width: 32px;
  height: 32px;
  color: var(--pw-gold);
}

.pw-success-text {
  text-align: center;
}

.pw-success-text h3 {
  font-size: 1.3rem;
  color: var(--pw-text);
  margin-bottom: 12px;
}

.pw-success-text p {
  color: var(--pw-text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

.pw-success-email {
  color: var(--pw-gold) !important;
  font-weight: 600;
  font-size: 1rem !important;
}

/* Password strength indicator */
.pw-password-strength {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.pw-strength-bar {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: var(--pw-border);
  transition: background 0.3s ease;
}

.pw-strength-bar.weak { background: #ef4444; }
.pw-strength-bar.medium { background: #f59e0b; }
.pw-strength-bar.strong { background: #22c55e; }

/* ═══════════════════════════════════════════════════════════════
   INCOME CALCULATOR
   ═══════════════════════════════════════════════════════════════ */

.pw-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.pw-calc-card {
  background: linear-gradient(160deg, rgba(16, 16, 36, 0.65) 0%, rgba(8, 8, 20, 0.6) 100%);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--pw-radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--pw-transition);
}

/* Glass shine */
.pw-calc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -30%;
  width: 160%;
  height: 45%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
  pointer-events: none;
}

/* Gold edge highlight */
.pw-calc-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.pw-calc-card:hover {
  border-color: rgba(201, 168, 76, 0.15);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(201, 168, 76, 0.04);
}

.pw-calc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.pw-calc-badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.pw-calc-badge.model-a {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2) 0%, rgba(201, 168, 76, 0.08) 100%);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--pw-gold);
}

.pw-calc-badge.model-b {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(99, 102, 241, 0.08) 100%);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: #a5b4fc;
}

.pw-calc-header h3 {
  font-size: 1.1rem;
  color: var(--pw-text);
  font-family: var(--pw-font-body);
  font-weight: 600;
}

.pw-calc-header p {
  font-size: 0.75rem;
  color: var(--pw-text-muted);
  margin-top: 2px;
}

/* Slider inputs */
.pw-slider-group {
  margin-bottom: 20px;
}

.pw-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.pw-slider-label span {
  font-size: 0.75rem;
  color: var(--pw-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.pw-slider-value {
  font-size: 0.88rem;
  color: var(--pw-gold-light);
  font-family: var(--pw-font-mono);
  font-weight: 600;
  background: rgba(201, 168, 76, 0.08);
  padding: 2px 10px;
  border-radius: 6px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  min-width: 80px;
  text-align: center;
}

/* Custom range slider */
.pw-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  position: relative;
}

.pw-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pw-gold-light), var(--pw-gold));
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  box-shadow:
    0 2px 8px rgba(201, 168, 76, 0.3),
    0 0 20px rgba(201, 168, 76, 0.15);
  transition: box-shadow 0.2s ease;
}

.pw-range::-webkit-slider-thumb:hover {
  box-shadow:
    0 2px 12px rgba(201, 168, 76, 0.5),
    0 0 30px rgba(201, 168, 76, 0.25);
}

.pw-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pw-gold-light), var(--pw-gold));
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.3);
}

/* Select dropdown in calculator */
.pw-calc-select {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--pw-text);
  font-family: var(--pw-font-body);
  font-size: 0.85rem;
  outline: none;
  cursor: pointer;
  transition: var(--pw-transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239a9ab0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.pw-calc-select:focus {
  border-color: var(--pw-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

/* Results panel */
.pw-calc-results {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--pw-radius);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.pw-calc-results::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.pw-calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 0.82rem;
}

.pw-calc-result-row:last-child {
  border-bottom: none;
}

.pw-calc-result-row .label {
  color: var(--pw-text-muted);
}

.pw-calc-result-row .value {
  color: var(--pw-text);
  font-family: var(--pw-font-mono);
  font-weight: 500;
}

.pw-calc-result-row.total {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: none;
}

.pw-calc-result-row.total .label {
  font-size: 0.88rem;
  color: var(--pw-text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pw-calc-result-row.total .value {
  font-size: 1.2rem;
  color: var(--pw-gold-light);
  font-weight: 700;
}

/* Animated earnings bar */
.pw-earnings-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  margin-top: 4px;
  overflow: hidden;
}

.pw-earnings-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 0;
}

.pw-earnings-fill.gold {
  background: linear-gradient(90deg, var(--pw-gold-dim), var(--pw-gold-light));
}

.pw-earnings-fill.blue {
  background: linear-gradient(90deg, #6366f1, #a5b4fc);
}

/* Disclaimer */
.pw-calc-disclaimer {
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--pw-radius);
  text-align: center;
}

.pw-calc-disclaimer p {
  font-size: 0.75rem;
  color: var(--pw-text-muted);
  line-height: 1.6;
}

.pw-calc-disclaimer strong {
  color: var(--pw-text-secondary);
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Responsive calculator */
@media (max-width: 900px) {
  .pw-calc-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ═══════════════════════════════════════════════════════════════ */

.pw-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(160deg, rgba(15, 15, 26, 0.98) 0%, rgba(6, 6, 16, 0.99) 100%);
  border-top: 1px solid var(--pw-gold-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  padding: 24px;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.pw-cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.pw-cookie-text {
  flex: 1;
}

.pw-cookie-text h4 {
  font-family: var(--pw-font-body);
  font-size: 0.9rem;
  color: var(--pw-gold);
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.pw-cookie-text p {
  font-size: 0.8rem;
  color: var(--pw-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.pw-cookie-links {
  margin-top: 8px !important;
}

.pw-cookie-link {
  color: var(--pw-gold);
  text-decoration: none;
  font-size: 0.78rem;
  transition: var(--pw-transition);
}

.pw-cookie-link:hover {
  color: var(--pw-gold-light);
  text-decoration: underline;
}

.pw-cookie-links span {
  color: var(--pw-text-muted);
  margin: 0 6px;
}

.pw-cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.pw-cookie-btn {
  width: auto !important;
  padding: 12px 22px !important;
  font-size: 0.75rem !important;
  white-space: nowrap;
}
