/* ============================================================
   E-GIRVINAMA — landing.css
   Styles for: Landing Page · Signup · Login · Auth Flows
   ============================================================ */

/* ============================================================
   LANDING PAGE — NAV
   ============================================================ */

.landing-page {
  min-height: 100vh;
  overflow-x: hidden;
}

.landing-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 70px;
  background: rgba(6,11,24,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  animation: slideDown 0.4s var(--ease) both;
}

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

.ln-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ln-brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(59,130,246,0.4);
  flex-shrink: 0;
}

.ln-brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.5px;
}

.ln-brand-tag {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-faint);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: none;
}

@media (min-width: 640px) { .ln-brand-tag { display: block; } }

.ln-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ln-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: var(--radius-btn);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
}

.ln-btn-ghost {
  color: var(--text-soft);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.ln-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--text-white);
}

.ln-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  border: 1px solid transparent;
  box-shadow: 0 4px 16px rgba(59,130,246,0.4);
}
.ln-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59,130,246,0.5);
}


/* ============================================================
   LANDING PAGE — HERO
   ============================================================ */

.landing-hero {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 140px 24px 80px;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.lh-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.25);
  font-size: 0.75rem;
  font-weight: 700;
  color: #93c5fd;
  letter-spacing: 0.3px;
  animation: fadeSlideUp 0.5s 0.1s var(--ease-spring) both;
}

.lh-pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #3b82f6;
  animation: pulseDot 2s ease-in-out infinite;
}

.lh-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--text-white);
  animation: fadeSlideUp 0.5s 0.15s var(--ease-spring) both;
}

.lh-title-accent {
  background: linear-gradient(135deg, #3b82f6 0%, #a78bfa 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lh-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 400;
  animation: fadeSlideUp 0.5s 0.2s var(--ease-spring) both;
}

.lh-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeSlideUp 0.5s 0.25s var(--ease-spring) both;
}

.lh-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-btn);
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(59,130,246,0.45);
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}
.lh-cta-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), transparent);
  pointer-events: none;
}
.lh-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(59,130,246,0.55);
}

.lh-cta-arrow {
  transition: transform var(--t) var(--ease);
}
.lh-cta-primary:hover .lh-cta-arrow { transform: translateX(5px); }

.lh-cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 15px 28px;
  border-radius: var(--radius-btn);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-soft);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--t) var(--ease);
}
.lh-cta-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* Module pills */
.lh-modules-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeSlideUp 0.5s 0.3s var(--ease-spring) both;
}

.lh-module-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: transform var(--t) var(--ease);
}
.lh-module-pill:hover { transform: translateY(-2px); }

.lh-module-pill.gold {
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.3);
  color: #fcd34d;
}
.lh-module-pill.indigo {
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.3);
  color: #a5b4fc;
}
.lh-module-pill.emerald {
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  color: #6ee7b7;
}


/* ============================================================
   PRICING SECTION
   ============================================================ */

.pricing-section {
  position: relative;
  z-index: 10;
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 24px 100px;
}

.ps-header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.ps-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.25);
  font-size: 0.72rem;
  font-weight: 700;
  color: #a5b4fc;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ps-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--indigo);
  animation: pulseDot 2s ease-in-out infinite;
}

.ps-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: -1.5px;
}

.ps-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 420px;
}

.ps-group-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-faint);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-left: 4px;
}

.ps-group-combo {
  margin-top: 52px;
}

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.combo-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
}

/* Single Pricing Card */
.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-card);
  padding: 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  transition: all var(--t) var(--ease);
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
  animation: fadeSlideUp 0.5s var(--ease-spring) both;
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.38);
}

/* Popular badge */
.pc-popular-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 0.68rem;
  font-weight: 800;
  color: #fcd34d;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.35);
  border-radius: 20px;
  padding: 3px 10px;
  letter-spacing: 0.3px;
}

/* Glow blob */
.pc-glow {
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  filter: blur(60px);
  top: -50px; right: -30px;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t-slow) var(--ease);
}
.pc-gold:hover    .pc-glow { background: var(--gold-glow);    opacity: 1; }
.pc-indigo:hover  .pc-glow { background: var(--indigo-glow);  opacity: 1; }
.pc-emerald:hover .pc-glow { background: var(--emerald-glow); opacity: 1; }
.pc-combo1:hover  .pc-glow { background: rgba(139,92,246,0.25); opacity: 1; }
.pc-combo2:hover  .pc-glow { background: rgba(59,130,246,0.3);  opacity: 1; }

/* Top glow line on hover */
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.pricing-card:hover::before { opacity: 1; }
.pc-gold::before     { background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.pc-indigo::before   { background: linear-gradient(90deg, transparent, var(--indigo), transparent); }
.pc-emerald::before  { background: linear-gradient(90deg, transparent, var(--emerald), transparent); }
.pc-combo1::before   { background: linear-gradient(90deg, transparent, #8b5cf6, transparent); }
.pc-combo2::before   { background: linear-gradient(90deg, transparent, var(--accent), transparent); }

/* Card Header */
.pc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.pc-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  border-radius: 14px;
  font-size: 1.5rem;
  flex-shrink: 0;
  position: relative;
}
.pc-icon-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  pointer-events: none;
}

.pc-gold-icon    { background: var(--gold-bg);    box-shadow: 0 6px 20px var(--gold-glow); }
.pc-indigo-icon  { background: var(--indigo-bg);  box-shadow: 0 6px 20px var(--indigo-glow); }
.pc-emerald-icon { background: var(--emerald-bg); box-shadow: 0 6px 20px var(--emerald-glow); }
.pc-combo1-icon  { background: rgba(139,92,246,0.15); box-shadow: 0 6px 20px rgba(139,92,246,0.25); }
.pc-combo2-icon  { background: rgba(59,130,246,0.15); box-shadow: 0 6px 20px rgba(59,130,246,0.3); }

.pc-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
}

.pc-badge-combo {
  background: rgba(139,92,246,0.1);
  border-color: rgba(139,92,246,0.25);
  color: #c4b5fd;
}

/* Card Body */
.pc-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pc-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.4px;
}

.pc-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.pc-features li {
  font-size: 0.78rem;
  color: var(--text-soft);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Card Footer */
.pc-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.pc-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pc-price-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-faint);
}

.pc-price-value {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: -1px;
}

.pc-price-period {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
}

.pc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: var(--radius-btn);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-white);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--t) var(--ease);
}
.pc-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}

.pc-btn-combo {
  background: rgba(139,92,246,0.12);
  border-color: rgba(139,92,246,0.3);
  color: #c4b5fd;
}
.pc-btn-combo:hover {
  background: rgba(139,92,246,0.22);
  border-color: rgba(139,92,246,0.5);
}

.pc-btn-highlight {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(59,130,246,0.4);
}
.pc-btn-highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59,130,246,0.5);
}

.pc-popular .pc-btn-highlight {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  box-shadow: 0 4px 16px rgba(99,102,241,0.4);
}

/* Pricing Note */
.pricing-note {
  margin-top: 48px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-faint);
  line-height: 1.6;
}


/* ============================================================
   LANDING FOOTER
   ============================================================ */

.landing-footer {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.lf-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lf-brand-icon {
  font-size: 1.2rem;
}

.lf-brand-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-white);
}

.lf-copy {
  font-size: 0.75rem;
  color: var(--text-faint);
  text-align: center;
}

.lf-credits {
  font-size: 0.7rem;
  color: var(--text-faint);
  text-align: center;
  opacity: 0.7;
  letter-spacing: 0.2px;
}

.lf-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-faint);
}

.lf-links a {
  color: #93c5fd;
  text-decoration: none;
  font-weight: 600;
}
.lf-links a:hover { text-decoration: underline; }


/* ============================================================
   AUTH PAGES (Signup / Login)
   ============================================================ */

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-wrap {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px;
  gap: 16px;
}

.auth-back {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  align-self: flex-start;
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  transition: color var(--t) var(--ease);
}
.auth-back:hover { color: var(--text-white); }

/* Auth Card */
.auth-card {
  width: 100%;
  max-width: 460px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 40px 36px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 32px 64px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.05) inset;
  animation: fadeSlideUp 0.55s var(--ease-spring) both;
  overflow: hidden;
}

/* Brand */
.auth-brand {
  text-align: center;
  margin-bottom: 28px;
}

.auth-brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(59,130,246,0.4);
  margin-bottom: 14px;
}

.auth-brand-name {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: -0.8px;
  line-height: 1;
}

.auth-brand-tag {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 5px;
  font-weight: 500;
}

/* Steps */
.auth-step {
  display: none;
  animation: fadeSlideUp 0.35s var(--ease-spring) both;
}
.auth-step.active { display: block; }

.auth-step-header {
  margin-bottom: 24px;
}

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  color: var(--text-muted);
  transition: all 0.25s var(--ease);
}
.step-num.active {
  background: rgba(59,130,246,0.2);
  border-color: rgba(59,130,246,0.5);
  color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}
.step-num.done {
  background: rgba(16,185,129,0.2);
  border-color: rgba(16,185,129,0.4);
  color: #34d399;
}

.step-line {
  flex: 1;
  max-width: 48px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
}
.step-line.active-line { background: rgba(16,185,129,0.4); }

.step-label {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* Auth Form */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Eye toggle button */
.eye-toggle {
  position: absolute;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  opacity: 0.6;
  transition: opacity var(--t) var(--ease);
  padding: 0;
  line-height: 1;
}
.eye-toggle:hover { opacity: 1; }

/* Alternate link */
.auth-alt {
  margin-top: 18px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.auth-alt a {
  color: #93c5fd;
  font-weight: 700;
  text-decoration: none;
}
.auth-alt a:hover { text-decoration: underline; }

/* Back step button */
.auth-back-step {
  display: block;
  margin-top: 14px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  width: 100%;
  padding: 6px;
  transition: color var(--t) var(--ease);
}
.auth-back-step:hover { color: var(--text-white); }

/* Auth button */
.auth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  border-radius: var(--radius-btn);
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.1px;
  box-shadow: 0 6px 20px rgba(59,130,246,0.4);
  transition: all var(--t) var(--ease);
  cursor: pointer;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  margin-top: 4px;
}
.auth-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), transparent);
  pointer-events: none;
}
.auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59,130,246,0.5);
}
.auth-btn:active { transform: translateY(0); }
.auth-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.auth-btn-success {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 6px 20px rgba(16,185,129,0.35);
}
.auth-btn-success:hover { box-shadow: 0 10px 30px rgba(16,185,129,0.45); }

.auth-btn-icon { font-size: 1rem; }

/* OTP info box */
.otp-info-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(59,130,246,0.07);
  border: 1px solid rgba(59,130,246,0.18);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 16px;
}

.otp-info-icon { font-size: 1.5rem; }

.otp-sent-to {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.otp-phone {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-white);
  margin: 2px 0 4px;
  font-family: monospace;
}

.otp-demo-note {
  font-size: 0.7rem;
  color: var(--text-faint);
  line-height: 1.4;
}

.otp-demo-note.standalone {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 10px;
  padding: 10px 14px;
  color: #fbbf24;
  font-size: 0.75rem;
  margin-bottom: 16px;
  font-weight: 500;
}

/* OTP field */
.otp-field {
  text-align: center;
  letter-spacing: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  font-family: monospace;
  padding-left: 48px;
}

/* Timer row */
.otp-timer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px;
}

.otp-timer {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  font-family: monospace;
}

.resend-btn {
  background: none;
  border: none;
  color: #93c5fd;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background var(--t) var(--ease);
}
.resend-btn:hover:not(:disabled) { background: rgba(59,130,246,0.1); }
.resend-btn:disabled { color: var(--text-faint); cursor: not-allowed; }

/* Success box */
.success-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 16px 0 20px;
}

.success-icon-wrap {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(16,185,129,0.12);
  border: 2px solid rgba(16,185,129,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 0 0 8px rgba(16,185,129,0.06);
  animation: popIn 0.5s var(--ease-spring) both;
}

@keyframes popIn {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.success-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: -0.4px;
}

.success-sub {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* User ID display */
.user-id-box {
  background: rgba(59,130,246,0.07);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 16px;
}

.uid-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.uid-display-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.uid-value {
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 800;
  color: #93c5fd;
  letter-spacing: 0.5px;
  word-break: break-all;
}

.uid-copy-btn {
  flex-shrink: 0;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 8px;
  color: #93c5fd;
  font-size: 1rem;
  cursor: pointer;
  padding: 5px 10px;
  transition: all var(--t) var(--ease);
}
.uid-copy-btn:hover {
  background: rgba(59,130,246,0.22);
  transform: scale(1.05);
}

.uid-note {
  font-size: 0.72rem;
  color: #fbbf24;
  margin-top: 10px;
  font-weight: 600;
}

/* Forgot Password */
.fp-header {
  text-align: center;
  margin-bottom: 20px;
}
.fp-icon { font-size: 2.2rem; margin-bottom: 10px; }
.fp-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.4px;
}
.fp-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.5;
}
.fp-sub strong { color: var(--text-soft); }

.fp-reset-limit-note {
  font-size: 0.76rem;
  color: #fbbf24;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 10px;
  padding: 10px 14px;
  line-height: 1.5;
  margin-bottom: 16px;
  font-weight: 500;
}

.forgot-pw-row {
  display: flex;
  justify-content: flex-end;
  margin-top: -4px;
}

.forgot-pw-link {
  background: none;
  border: none;
  color: #93c5fd;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 0;
  transition: color var(--t) var(--ease);
}
.forgot-pw-link:hover { color: #bfdbfe; }


/* ============================================================
   HERO — TAGLINE ROW + NEW CTA STYLES
   ============================================================ */

.lh-tagline-row {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin: 0 0 28px;
  flex-wrap: wrap;
}

.lh-tag-item {
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.2px;
}

.lh-tag-dot {
  color: rgba(255,255,255,0.3);
  font-size: 1.2rem;
}

.lh-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(99,102,241,0.35);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.lh-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(99,102,241,0.5);
}

.lh-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
  backdrop-filter: blur(8px);
}
.lh-cta-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.22);
  color: #fff;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */

.features-section {
  padding: 100px 48px;
  position: relative;
  z-index: 1;
}

.fs-header {
  text-align: center;
  margin-bottom: 60px;
}

.fs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 99px;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.25);
  color: #a5b4fc;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.fs-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #6366f1;
  box-shadow: 0 0 6px rgba(99,102,241,0.8);
  animation: pulse 2s ease-in-out infinite;
}

.fs-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text-white, #fff);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.fs-sub {
  font-size: 1.05rem;
  color: var(--text-muted, rgba(255,255,255,0.55));
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.25s var(--ease, ease), border-color 0.25s var(--ease, ease), background 0.25s var(--ease, ease);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(99,102,241,0.05), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99,102,241,0.3);
  background: rgba(99,102,241,0.06);
}

.feature-card:hover::before { opacity: 1; }

.fc-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.fc-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white, #fff);
  margin-bottom: 8px;
}

.fc-desc {
  font-size: 0.875rem;
  color: var(--text-muted, rgba(255,255,255,0.55));
  line-height: 1.5;
}

/* ============================================================
   PRICING — NEW 2-PLAN LAYOUT
   ============================================================ */

.pricing-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 820px;
  margin: 0 auto 32px;
}

.pricing-card-new {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease, ease), border-color 0.25s var(--ease, ease);
}

.pricing-card-new:hover {
  transform: translateY(-4px);
}

/* Annual card */
.pc-annual {
  border-color: rgba(99,102,241,0.2);
}

.pc-annual:hover {
  border-color: rgba(99,102,241,0.45);
}

/* Lifetime / Best Value card */
.pc-lifetime {
  border-color: rgba(245,158,11,0.35);
  background: rgba(245,158,11,0.04);
}

.pc-lifetime:hover {
  border-color: rgba(245,158,11,0.6);
  background: rgba(245,158,11,0.07);
}

.pcn-best-value-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 99px;
  box-shadow: 0 4px 12px rgba(245,158,11,0.4);
}

.pcn-glow {
  position: absolute;
  top: -40px; left: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.pcn-glow-gold {
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
}

.pcn-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.pcn-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.pcn-annual-icon {
  background: linear-gradient(135deg, rgba(99,102,241,0.25), rgba(59,130,246,0.2));
  border: 1px solid rgba(99,102,241,0.3);
}

.pcn-lifetime-icon {
  background: linear-gradient(135deg, rgba(245,158,11,0.25), rgba(239,68,68,0.15));
  border: 1px solid rgba(245,158,11,0.4);
}

.pcn-plan-type {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white, #fff);
}

.pcn-body {
  margin-bottom: 28px;
}

.pcn-price-block {
  margin-bottom: 24px;
}

.pcn-original-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.pcn-original-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

.pcn-original-amount {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
  font-weight: 600;
}

.pcn-discount-badge {
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  color: #34d399;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
}

.pcn-final-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pcn-currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white, #fff);
}

.pcn-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-white, #fff);
  letter-spacing: -2px;
  line-height: 1;
}

.pc-annual .pcn-amount { color: #a5b4fc; }
.pc-lifetime .pcn-amount { color: #fcd34d; }

.pcn-period {
  font-size: 0.85rem;
  color: var(--text-muted, rgba(255,255,255,0.5));
  font-weight: 500;
  margin-left: 4px;
}

.pcn-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pcn-features li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pcn-footer {
  margin-top: auto;
}

.pcn-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  box-shadow: 0 6px 20px rgba(99,102,241,0.3);
  transition: transform 0.2s var(--ease, ease), box-shadow 0.2s var(--ease, ease);
}

.pcn-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(99,102,241,0.45);
}

.pcn-btn-gold {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  box-shadow: 0 6px 20px rgba(245,158,11,0.35);
}

.pcn-btn-gold:hover {
  box-shadow: 0 10px 28px rgba(245,158,11,0.5);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */

.faq-section {
  padding: 100px 48px;
  position: relative;
  z-index: 1;
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 99px;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.25);
  color: #a5b4fc;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.faq-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #6366f1;
  box-shadow: 0 0 6px rgba(99,102,241,0.8);
}

.faq-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text-white, #fff);
  letter-spacing: -0.4px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s var(--ease, ease);
}

.faq-item.open {
  border-color: rgba(99,102,241,0.3);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-white, #fff);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: color 0.2s var(--ease, ease);
}

.faq-q:hover { color: #a5b4fc; }

.faq-arrow {
  font-size: 1.1rem;
  transition: transform 0.25s var(--ease, ease);
  flex-shrink: 0;
  color: rgba(255,255,255,0.4);
}

.faq-item.open .faq-arrow { transform: rotate(180deg); color: #a5b4fc; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.65;
  transition: max-height 0.3s var(--ease, ease), padding 0.3s var(--ease, ease);
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ============================================================
   FOOTER — ENHANCED
   ============================================================ */

.landing-footer {
  text-align: center;
  padding: 56px 48px 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
  position: relative;
  z-index: 1;
}

.lf-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin: 4px 0 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ============================================================
   NAV — SCROLLED STATE
   ============================================================ */

.landing-nav.scrolled {
  background: rgba(6,11,24,0.95);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */

@media (max-width: 960px) {
  .pricing-grid       { grid-template-columns: 1fr 1fr; }
  .pricing-grid-new   { grid-template-columns: 1fr 1fr; }
  .combo-grid         { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .features-section   { padding: 80px 28px; }
  .faq-section        { padding: 80px 28px; }
  .landing-nav        { padding: 0 24px; }
}

@media (max-width: 700px) {
  .pricing-grid       { grid-template-columns: 1fr; }
  .pricing-grid-new   { grid-template-columns: 1fr; }
  .combo-grid         { grid-template-columns: 1fr; }
  .lh-cta-group       { flex-direction: column; width: 100%; }
  .lh-cta-primary,
  .lh-cta-ghost       { width: 100%; justify-content: center; }
  .features-grid      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .auth-card          { padding: 32px 20px; }
  .landing-hero       { padding-top: 110px; }
  .landing-nav        { padding: 0 16px; height: 60px; }
  .features-grid      { grid-template-columns: 1fr; }
  .pricing-card-new   { padding: 28px 22px; }
  .faq-section        { padding: 60px 20px; }
  .features-section   { padding: 60px 20px; }
}


/* ============================================================
   PREMIUM HERO — Two-Column Layout with Creator Section
   ============================================================ */

.landing-hero-wrap {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 60px 80px;
  min-height: 100vh;
  box-sizing: border-box;
}

.hero-content-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeSlideUp 0.5s 0.1s var(--ease-spring) both;
}

/* Trust Badges */
.hero-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0;
}

.htb-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.25s ease;
}
.htb-item:hover { background: rgba(255,255,255,0.06); }
.htb-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.htb-title { font-size: 0.82rem; font-weight: 700; color: var(--text-white); margin-bottom: 2px; }
.htb-desc  { font-size: 0.73rem; color: var(--text-muted); line-height: 1.4; }

/* ============================================================
   CREATOR COLUMN
   ============================================================ */
.hero-creator-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: fadeSlideUp 0.6s 0.25s var(--ease-spring) both;
}

/* Portrait */
.creator-portrait-wrap {
  position: relative;
  width: 280px;
  height: 340px;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.creator-portrait-wrap:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 30px 60px rgba(59,130,246,0.3);
}
.creator-portrait-wrap:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 4px;
}

.creator-portrait-ring {
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  background: linear-gradient(135deg, #3b82f6, #a78bfa, #f59e0b);
  z-index: -1;
  animation: rotateGlow 4s linear infinite;
}
@keyframes rotateGlow {
  0%   { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

.creator-portrait-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px;
  display: block;
  position: relative;
  z-index: 2;
}
.creator-portrait-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #1e2a4a, #0d1b3e);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  z-index: 2;
  position: relative;
}
.creator-portrait-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 60px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.4) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

/* Creator Glass Card */
.creator-card-glass {
  position: relative;
  width: 100%;
  max-width: 280px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(15,25,50,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(100,130,255,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.creator-card-glass:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(59,130,246,0.25), inset 0 1px 0 rgba(255,255,255,0.12);
  border-color: rgba(100,130,255,0.4);
}
.creator-card-glass:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 3px;
}
.ccg-top { margin-bottom: 4px; }
.ccg-created-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.ccg-name {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, #3b82f6 0%, #a78bfa 60%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2px;
}
.ccg-role {
  font-size: 0.78rem;
  color: var(--text-soft);
  font-weight: 500;
  margin-bottom: 8px;
}
.ccg-signature {
  font-family: 'Dancing Script', 'Brush Script MT', cursive;
  font-size: 1.05rem;
  color: rgba(167,139,250,0.8);
  margin-bottom: 12px;
  font-style: italic;
}
.ccg-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 8px;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.25);
  color: #93c5fd;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.ccg-profile-btn:hover {
  background: rgba(59,130,246,0.22);
  border-color: rgba(59,130,246,0.45);
}

/* ============================================================
   CREATOR DRAWER
   ============================================================ */
.creator-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.creator-drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.creator-drawer {
  position: fixed;
  top: 0;
  right: -440px;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: rgba(10,16,38,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid rgba(100,130,255,0.2);
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
  z-index: 9001;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.creator-drawer.open { right: 0; }

.creator-drawer-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 1;
}
.creator-drawer-close:hover {
  background: rgba(255,255,255,0.14);
  color: var(--text-white);
}

.cdr-inner {
  padding: 60px 28px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.cdr-img-wrap {
  position: relative;
  width: 200px; height: 240px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 6px;
}
.cdr-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
  display: block;
}
.cdr-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg,#1e2a4a,#0d1b3e);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}
.cdr-img-glow {
  position: absolute;
  bottom: -15px; left: 50%;
  transform: translateX(-50%);
  width: 140px; height: 40px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.5) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cdr-created-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cdr-name {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
  background: linear-gradient(135deg, #3b82f6 0%, #a78bfa 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cdr-role {
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 600;
}
.cdr-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 340px;
  margin: 4px 0;
}
.cdr-divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100,130,255,0.4), transparent);
  margin: 4px 0;
}
.cdr-stats {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.cdr-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cdr-stat-value { font-size: 1.5rem; }
.cdr-stat-label { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; white-space: nowrap; }
.cdr-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-btn);
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(59,130,246,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}
.cdr-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59,130,246,0.5);
}

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 1100px) {
  .landing-hero-wrap {
    grid-template-columns: 1fr 340px;
    gap: 28px;
    padding: 120px 40px 70px;
  }
  .creator-portrait-wrap { width: 220px; height: 270px; }
  .creator-card-glass { max-width: 220px; }
  .ccg-name { font-size: 1.05rem; }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 768px) {
  .landing-hero-wrap {
    grid-template-columns: 1fr;
    padding: 110px 20px 50px;
    gap: 28px;
    text-align: center;
    align-items: start;
    min-height: auto;
  }
  .hero-content-col { align-items: center; }
  .hero-trust-badges { align-items: flex-start; text-align: left; max-width: 460px; width: 100%; }
  .hero-creator-col {
    flex-direction: row;
    gap: 14px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .creator-portrait-wrap { width: 130px; height: 158px; border-radius: 18px; }
  .creator-portrait-img  { border-radius: 18px; }
  .creator-portrait-ring { border-radius: 20px; }
  .creator-card-glass    { max-width: 210px; padding: 14px 16px; flex: 1; min-width: 170px; }
  .ccg-name { font-size: 0.98rem; }
  .ccg-signature { font-size: 0.88rem; }

  /* Drawer → bottom sheet on mobile */
  .creator-drawer {
    top: auto; right: 0; bottom: -100vh; left: 0;
    max-width: 100%; width: 100%; height: 90vh;
    border-left: none;
    border-top: 1px solid rgba(100,130,255,0.2);
    border-radius: 24px 24px 0 0;
    transition: bottom 0.4s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 -20px 60px rgba(0,0,0,0.5);
  }
  .creator-drawer.open { right: 0; bottom: 0; }
  .cdr-inner { padding: 48px 24px 36px; }
  .cdr-img-wrap { width: 150px; height: 180px; }
  .cdr-name { font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .landing-hero-wrap { padding: 110px 16px 40px; }
  .lh-title { font-size: clamp(2rem, 8vw, 2.8rem); letter-spacing: -1.5px; }
}

@media (pointer: coarse) {
  * {
    touch-action: pan-x pan-y !important;
  }
}

/* ── Payment Plan Box (signup.html Step 3) ─────────────────── */
.pay-plan-box {
  background: linear-gradient(135deg, rgba(245,158,11,0.12) 0%, rgba(99,102,241,0.12) 100%);
  border: 1.5px solid rgba(245,158,11,0.3);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  margin-bottom: 20px;
}
.pay-plan-icon {
  font-size: 2.2rem;
  margin-bottom: 8px;
  display: block;
}
.pay-plan-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #f59e0b;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}
.pay-plan-price {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.pay-plan-note {
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.4;
}

