/* ═══════════════════════════════════════════════════
   Creator Website Builder — Claim Page Styles
   ═══════════════════════════════════════════════════ */

/* ─── Hero ─── */
.claim-hero {
  position: relative;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  overflow: hidden;
}

.claim-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0b0c10 0%, #1a1c24 50%, #0d0e12 100%);
  z-index: 0;
}

.claim-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 40%, rgba(255, 0, 51, 0.22) 0%, transparent 55%),
    radial-gradient(circle at 75% 30%, rgba(138, 43, 226, 0.16) 0%, transparent 45%),
    radial-gradient(circle at 50% 85%, rgba(255, 77, 77, 0.14) 0%, transparent 50%);
}

.claim-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1150px;
  margin: 0 auto;
}

.claim-hero h1 {
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.claim-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0 auto 2.5rem;
  max-width: 900px;
}

/* Explore Style Search Box Wrapper */
.search-box-wrapper {
  max-width: 760px;
  margin: 0 auto;
}

.search-box {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 6px 8px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.15);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-box:focus-within {
  border-color: #7c3aed;
  box-shadow: 0 12px 40px rgba(124,58,237,0.3);
}

.search-input-icon {
  padding-left: 1.25rem;
  color: #ef4444;
  font-size: 1.1rem;
}

.search-box input {
  flex: 1;
  padding: 0.9rem 1rem;
  border: none !important;
  font-size: 1.05rem;
  background: transparent;
  color: #0f172a;
  outline: none;
  font-family: 'Inter', sans-serif;
  box-shadow: none !important;
}

.search-box input::placeholder {
  color: #64748b;
}

.search-box .paste-btn {
  position: static !important;
  top: auto !important;
  bottom: auto !important;
  right: auto !important;
  padding: 0.65rem 1rem;
  border: 1px solid #cbd5e1;
  background: #f1f5f9;
  color: #1e293b;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-right: 0.5rem;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
  transform: none !important;
}

.search-box .paste-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.search-btn {
  padding: 0.75rem 1.75rem;
  border: none;
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  transition: opacity 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.search-btn:hover {
  opacity: 0.95;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

/* Badges Row */
.badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.supports-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* Popular Demos Chips */
.demos-section {
  margin-top: 2rem;
  text-align: center;
}

.demos-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
  display: block;
}

.demos-grid {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  max-width: 850px;
  margin: 0 auto;
}

.demo-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.55rem 0.95rem;
  font-size: 0.85rem;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.demo-chip:hover {
  border-color: #a78bfa;
  background: rgba(167, 139, 250, 0.12);
}

.demo-chip code {
  font-family: monospace;
  font-size: 0.8rem;
  color: #a78bfa;
  background: rgba(167, 139, 250, 0.15);
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  font-weight: 600;
}

/* ─── Main Wizard ─── */
.claim-main {
  max-width: 850px;
  margin: 2rem auto 3rem;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

/* Wizard Steps */
.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
}

/* Step Card */
.step-card {
  background: rgba(30, 30, 50, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-number.success {
  background: linear-gradient(135deg, #059669, #34d399);
}

.step-info h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.25rem;
}

.step-info p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ─── Input Group ─── */
.claim-input-group {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.claim-input-wrapper {
  display: flex;
  width: 100%;
  max-width: 650px;
  position: relative;
  margin: 0 auto;
}

.claim-input-icon {
  display: none;
}

.claim-input-wrapper input {
  flex: 1;
  width: 100%;
  padding: 1rem 1.5rem;
  padding-right: 215px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: #ffffff;
  color: #0f172a;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.claim-input-wrapper input:focus {
  border-color: #ffffff;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

.claim-input-wrapper input::placeholder {
  color: #64748b;
}

.claim-paste-btn {
  position: absolute;
  right: 155px; /* Adjust for right button width */
  top: 6px;
  bottom: 6px;
  padding: 0 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #f1f5f9;
  color: #1e293b;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s;
  transform: none;
}

.claim-paste-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.claim-inline-lookup-btn {
  position: absolute;
  right: 6px;
  top: 6px;
  bottom: 6px;
  padding: 0 1.5rem;
  border: none;
  border-radius: 8px;
  background: #1877F2;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.claim-inline-lookup-btn:hover {
  background: #1565C0;
  box-shadow: 0 6px 18px rgba(24, 119, 242, 0.6);
  transform: none;
}

/* Buttons */
.claim-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap;
}

.claim-primary-btn:hover {
  transform: none;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

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

.claim-primary-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.claim-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.claim-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.claim-hint {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.claim-hint code {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ─── Channel Preview ─── */
.channel-preview {
  margin-top: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.channel-preview.hidden {
  display: none;
}

.preview-banner {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: rgba(120, 80, 255, 0.2);
}

.preview-body {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
}

.preview-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  margin-top: -32px;
  background: #1e1e32;
  object-fit: cover;
}

.preview-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.15rem;
}

.preview-handle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 0.3rem;
}

.preview-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.preview-stats i {
  margin-right: 0.25rem;
}

.claim-continue-btn {
  width: 100%;
  justify-content: center;
  margin: 0;
  border-radius: 0 0 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem;
  background: linear-gradient(135deg, #059669, #10b981);
}

.claim-continue-btn:hover {
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

/* ─── Error & Loading ─── */
.claim-error {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 10px;
  color: #fca5a5;
  font-size: 0.88rem;
}

.claim-error.hidden {
  display: none;
}

.claim-loading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.claim-loading.hidden {
  display: none;
}

.spinner {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: #a78bfa;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* ─── Verification Step ─── */
.verify-instructions {
  margin-bottom: 1.5rem;
}

.verify-token-box {
  margin-bottom: 1.5rem;
}

.verify-token-box label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

.token-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(120, 80, 255, 0.08);
  border: 1px dashed rgba(120, 80, 255, 0.4);
  border-radius: 12px;
  padding: 0.85rem 1rem;
}

.token-display code {
  flex: 1;
  font-size: 1.2rem;
  font-weight: 700;
  color: #c4b5fd;
  letter-spacing: 0.05em;
  font-family: 'Inter', monospace;
}

.copy-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.copy-btn:hover {
  background: rgba(120, 80, 255, 0.2);
  color: #c4b5fd;
}

/* Verify Steps */
.verify-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.verify-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.verify-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.verify-step strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.verify-step p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.4;
}

.verify-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 10px;
  font-size: 0.82rem;
  color: rgba(147, 197, 253, 0.8);
  margin-bottom: 0.75rem;
}

.verify-timer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}

.verify-timer strong {
  color: #fbbf24;
  font-family: 'Inter', monospace;
}

.verify-actions {
  display: flex;
  gap: 0.75rem;
}

/* ─── Progress Step 3 ─── */
.progress-section {
  margin-bottom: 1.5rem;
}

.progress-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.3s, border-color 0.3s;
}

.progress-step.done {
  background: rgba(5, 150, 105, 0.08);
  border-color: rgba(5, 150, 105, 0.2);
}

.progress-step.done .progress-step-icon {
  color: #34d399;
}

.progress-step.in-progress {
  background: rgba(120, 80, 255, 0.06);
  border-color: rgba(120, 80, 255, 0.15);
}

.progress-step.in-progress .progress-step-icon {
  color: #a78bfa;
}

.progress-step-icon {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.2);
  width: 24px;
  text-align: center;
}

.progress-step-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.progress-step.done .progress-step-label {
  color: #a7f3d0;
}

/* Progress Bar */
.progress-bar-container {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.progress-bar-container.hidden {
  display: none;
}

.progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #7c3aed, #a78bfa, #c084fc);
  border-radius: 100px;
  transition: width 0.5s ease;
  position: relative;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.progress-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Site Live Card */
.site-live-card {
  text-align: center;
  padding: 2rem;
  background: rgba(5, 150, 105, 0.06);
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: 16px;
  margin-top: 1.5rem;
}

.site-live-card.hidden {
  display: none;
}

.site-live-icon {
  font-size: 2.5rem;
  color: #34d399;
  margin-bottom: 0.75rem;
}

.site-live-card h3 {
  font-size: 1.2rem;
  color: #fff;
  margin: 0 0 0.75rem;
}

.live-badge {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  background: linear-gradient(135deg, #059669, #34d399);
  color: #fff;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

.site-url {
  display: block;
  font-size: 1rem;
  color: #a78bfa;
  text-decoration: none;
  margin-bottom: 1.25rem;
  word-break: break-all;
}

.site-url:hover {
  text-decoration: underline;
}

.site-live-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.site-live-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* ─── Info Sections ─── */
.claim-info-section {
  max-width: 900px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.claim-info-section h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.info-card {
  background: rgba(30, 30, 50, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.info-card:hover {
  transform: none;
  border-color: rgba(120, 80, 255, 0.2);
}

.info-icon {
  font-size: 1.8rem;
  color: #a78bfa;
  margin-bottom: 1rem;
}

.info-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.5rem;
}

.info-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin: 0;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.feature-item {
  background: rgba(30, 30, 50, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.2s, border-color 0.2s;
}

.feature-item:hover {
  transform: none;
  border-color: rgba(120, 80, 255, 0.2);
}

.feature-item i {
  font-size: 1.5rem;
  color: #a78bfa;
  margin-bottom: 0.75rem;
}

.feature-item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.4rem;
}

.feature-item p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  margin: 0;
}

/* ─── FAQ ─── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: rgba(30, 30, 50, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  text-align: left;
}

.faq-question i {
  color: rgba(255, 255, 255, 0.3);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.25rem 1rem;
}

.faq-answer p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
}

.faq-answer code {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.82rem;
  color: #c4b5fd;
}

/* ─── Toast ─── */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transform: translateX(120%);
  transition: transform 0.3s ease;
  backdrop-filter: blur(16px);
}

.toast.show {
  transform: translateX(0);
}

.toast-success {
  background: rgba(5, 150, 105, 0.2);
  border: 1px solid rgba(5, 150, 105, 0.3);
  color: #a7f3d0;
}

.toast-error {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

/* ─── Responsive ─── */
@media (max-width: 640px) {
  .claim-hero h1,
  .claim-subtitle {
    white-space: normal;
  }

  .claim-hero {
    padding: 4.5rem 1.25rem 9.5rem;
  }

  .claim-main {
    margin: -6rem auto 2rem;
    padding: 0 1rem;
  }

  .step-card {
    padding: 1.5rem 1.25rem;
  }

  .claim-input-group {
    flex-direction: column;
  }

  .claim-input-wrapper {
    width: 100%;
  }

  @media (max-width: 520px) {
    .claim-input-wrapper input {
      padding-right: 3rem;
    }
    .claim-paste-btn {
      right: 0.6rem;
    }
    .claim-inline-lookup-btn {
      position: static;
      width: 100%;
      margin-top: 0.5rem;
      padding: 0.85rem;
    }
  }

  .verify-actions {
    flex-direction: column-reverse;
  }

  .verify-actions .claim-secondary-btn,
  .verify-actions .claim-primary-btn {
    width: 100%;
    justify-content: center;
  }

  .site-live-actions {
    flex-direction: column;
  }

  .site-live-actions a,
  .site-live-actions button {
    width: 100%;
    justify-content: center;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .claim-features-row {
    gap: 0.75rem;
  }

  .toast-container {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
  }
}

/* ═══════════════════════════════════════════════════
   Light Theme Overrides ([data-theme="light"])
   ═══════════════════════════════════════════════════ */

[data-theme="light"] .step-card {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .step-info h2 {
  color: #0f172a;
}

[data-theme="light"] .step-info p {
  color: #64748b;
}

[data-theme="light"] .claim-input-wrapper input {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #0f172a;
}

[data-theme="light"] .claim-input-wrapper input::placeholder {
  color: #94a3b8;
}

[data-theme="light"] .claim-paste-btn {
  color: #64748b;
}

[data-theme="light"] .claim-paste-btn:hover {
  color: #7c3aed;
}

[data-theme="light"] .claim-secondary-btn {
  background: #f1f5f9;
  color: #334155;
  border-color: #cbd5e1;
}

[data-theme="light"] .claim-secondary-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
  border-color: #94a3b8;
}

[data-theme="light"] .claim-hint {
  color: #64748b;
}

[data-theme="light"] .claim-hint code {
  background: #e2e8f0;
  color: #334155;
}

[data-theme="light"] .channel-preview {
  background: #f8fafc;
  border-color: #e2e8f0;
}

[data-theme="light"] .preview-avatar {
  background: #ffffff;
  border-color: #e2e8f0;
}

[data-theme="light"] .preview-info h3 {
  color: #0f172a;
}

[data-theme="light"] .preview-handle {
  color: #64748b;
}

[data-theme="light"] .preview-stats {
  color: #64748b;
}

[data-theme="light"] .verify-token-box label {
  color: #64748b;
}

[data-theme="light"] .token-display {
  background: rgba(124, 58, 237, 0.05);
  border-color: rgba(124, 58, 237, 0.3);
}

[data-theme="light"] .token-display code {
  color: #6d28d9;
}

[data-theme="light"] .copy-btn {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #334155;
}

[data-theme="light"] .copy-btn:hover {
  background: rgba(124, 58, 237, 0.1);
  color: #6d28d9;
}

[data-theme="light"] .verify-step-num {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #475569;
}

[data-theme="light"] .verify-step strong {
  color: #0f172a;
}

[data-theme="light"] .verify-step p {
  color: #64748b;
}

[data-theme="light"] .verify-note {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1e40af;
}

[data-theme="light"] .verify-timer {
  color: #64748b;
}

[data-theme="light"] .progress-step {
  background: #f8fafc;
  border-color: #e2e8f0;
}

[data-theme="light"] .progress-step-label {
  color: #334155;
}

[data-theme="light"] .progress-step-icon {
  color: #94a3b8;
}

[data-theme="light"] .progress-bar-container {
  background: #f8fafc;
  border-color: #e2e8f0;
}

[data-theme="light"] .progress-bar {
  background: #e2e8f0;
}

[data-theme="light"] .progress-stats {
  color: #64748b;
}

[data-theme="light"] .site-live-card {
  background: #ecfdf5;
  border-color: #a7f3d0;
}

[data-theme="light"] .site-live-card h3 {
  color: #065f46;
}

[data-theme="light"] .site-url {
  color: #6d28d9;
}

[data-theme="light"] .site-live-note {
  color: #047857;
}

[data-theme="light"] .claim-info-section h2 {
  color: #0f172a;
}

[data-theme="light"] .info-card {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .info-card h3 {
  color: #0f172a;
}

[data-theme="light"] .info-card p {
  color: #64748b;
}

[data-theme="light"] .feature-item {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .feature-item h3 {
  color: #0f172a;
}

[data-theme="light"] .feature-item p {
  color: #64748b;
}

[data-theme="light"] .faq-item {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .faq-question {
  color: #0f172a;
}

[data-theme="light"] .faq-question i {
  color: #64748b;
}

[data-theme="light"] .faq-answer p {
  color: #475569;
}

[data-theme="light"] .faq-answer code {
  background: #f1f5f9;
  color: #6d28d9;
}

/* ─── Google Sign-in ─── */
.google-signin-prompt {
  margin-top: 2rem;
  text-align: center;
}

.signin-divider {
  position: relative;
  margin-bottom: 1.25rem;
}

.signin-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--glass-border, rgba(255,255,255,0.1));
}

.signin-divider span {
  position: relative;
  background: var(--bg-card, #1e1e2e);
  padding: 0 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary, #94a3b8);
}

.google-signin-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  background: #ffffff;
  color: #3c4043 !important;
  border: 1px solid #dadce0;
  border-radius: 24px;
  font-family: 'Roboto', 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.google-signin-btn:hover {
  background: #f8f9fa;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transform: translateY(-1px);
}

.google-signin-btn svg {
  flex-shrink: 0;
}

[data-theme="light"] .signin-divider span {
  background: #ffffff;
}

/* ─── Value Promise Bar ─── */
.promise-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 0, 80, 0.08);
  border: 1px solid rgba(255, 0, 80, 0.2);
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary, #fff);
  margin-top: 1.25rem;
  max-width: 680px;
  line-height: 1.4;
}
.promise-badge i {
  color: #FF0050;
  font-size: 1rem;
}

/* ─── Richer Preview Card ─── */
.preview-header-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.preview-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  padding: 0.2rem 0.55rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.preview-stats-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.6rem;
  flex-wrap: wrap;
}
.preview-stats-row span {
  font-size: 0.88rem;
  color: var(--text-secondary, #94a3b8);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.preview-stats-row strong {
  color: var(--text-primary, #fff);
}

.preview-import-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.85rem;
}
.preview-import-tags .tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background: rgba(124, 58, 237, 0.15);
  color: #a78bfa;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.preview-import-tags .tag i {
  color: #34d399;
}

/* ─── Website Content Breakdown Box ─── */
.website-breakdown-box {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: var(--bg-card-secondary, rgba(0, 0, 0, 0.25));
  border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.08));
  border-radius: 14px;
  text-align: left;
}
.breakdown-header {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary, #fff);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.breakdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1rem;
}
.breakdown-item {
  font-size: 0.88rem;
  color: var(--text-secondary, #cbd5e1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.breakdown-item i {
  color: #10b981;
  font-size: 0.95rem;
}
.breakdown-item strong {
  color: var(--text-primary, #fff);
}
.breakdown-footer {
  margin-top: 1.25rem;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--glass-border, rgba(255, 255, 255, 0.12));
  font-size: 0.9rem;
  color: var(--text-muted, #94a3b8);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.breakdown-footer strong {
  color: #a78bfa;
}

/* ─── Sample Creator Websites Section ─── */
.sample-websites-section {
  max-width: 1100px;
  margin: 4rem auto 2rem;
  padding: 0 1.5rem;
}
.sample-websites-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.sample-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.sample-card {
  background: var(--bg-card, #1e1e2e);
  border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.08));
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.sample-card:hover {
  transform: none;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.3);
  border-color: rgba(124, 58, 237, 0.4);
}
.sample-banner {
  height: 90px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.sample-cat-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  color: #fff;
}
.sample-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sample-avatar-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: -35px;
  margin-bottom: 0.75rem;
}
.sample-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid var(--bg-card, #1e1e2e);
  object-fit: cover;
  background: #333;
}
.sample-names {
  margin-top: 25px;
}
.sample-names h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-primary, #fff);
}
.sample-names span {
  font-size: 0.82rem;
  color: var(--text-secondary, #94a3b8);
}
.sample-desc {
  font-size: 0.88rem;
  color: var(--text-secondary, #94a3b8);
  line-height: 1.5;
  margin: 0.75rem 0 1.25rem;
  flex: 1;
}
.sample-cta {
  font-size: 0.88rem;
  font-weight: 700;
  color: #a78bfa;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.sample-card:hover .sample-cta {
  gap: 0.65rem;
}

[data-theme="light"] .promise-badge {
  color: #111111;
  background: rgba(255, 0, 80, 0.06);
}
[data-theme="light"] .website-breakdown-box {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .breakdown-item {
  color: #475569;
}
[data-theme="light"] .breakdown-item strong {
  color: #0f172a;
}
[data-theme="light"] .sample-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .sample-avatar {
  border-color: #ffffff;
}
[data-theme="light"] .sample-names h3 {
  color: #0f172a;
}

@media (max-width: 768px) {
  .breakdown-grid { grid-template-columns: 1fr; }
  .sample-grid { grid-template-columns: 1fr; }
}

/* ─── Onboarding Confirmation Modal ─── */
.claim-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 1;
  transition: opacity 0.25s ease;
  overflow-y: auto;
}

.claim-modal-overlay.hidden {
  display: none !important;
}

.claim-modal-card {
  position: relative;
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  background: rgba(22, 22, 35, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalScaleUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalScaleUp {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.claim-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
}

.claim-modal-close:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.claim-modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal-title-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #10B981;
  margin-bottom: 0.5rem;
}

.claim-modal-header h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.75rem 0;
}

.modal-step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
}

.step-item {
  position: relative;
  transition: color 0.3s;
}

.step-item.active {
  color: #10B981;
}

.step-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
}

[data-theme="light"] .step-divider {
  background-color: rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .step-item.active {
  color: #7000FF;
}

.hover-arrow {
  display: inline-block;
  transition: transform 0.2s ease-in-out;
}

.claim-continue-btn:hover .hover-arrow {
  transform: translateX(5px);
}

.modal-url-hero-card {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(112, 0, 255, 0.08) 100%);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 16px;
  text-align: center;
}

.url-card-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.url-card-val {
  font-size: 1.25rem;
  font-weight: 700;
  color: #10B981;
  font-family: 'JetBrains Mono', monospace, sans-serif;
  letter-spacing: -0.01em;
}

.claim-modal-actions-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.modal-reassurance-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.modal-reassurance-row i {
  color: #10B981;
  font-size: 0.75rem;
}

.modal-reassurance-row .dot-sep {
  color: rgba(255, 255, 255, 0.25);
}

.modal-time-estimate {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.claim-modal-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 1rem;
  margin-top: 0.25rem;
}

.claim-modal-cancel {
  padding: 0.85rem 1.5rem;
  background: transparent;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.claim-modal-cancel:hover {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
}

/* Light Theme Modal Overrides */
[data-theme="light"] .claim-modal-card {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .claim-modal-close {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #64748b;
}

[data-theme="light"] .claim-modal-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

[data-theme="light"] .claim-modal-header h2 {
  color: #0f172a;
}

[data-theme="light"] .preview-info h3 {
  color: #0f172a;
}

[data-theme="light"] .preview-handle {
  color: #64748b;
}

[data-theme="light"] .preview-stats-row {
  color: #334155;
}

[data-theme="light"] .preview-import-tags .tag {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #6d28d9;
}

[data-theme="light"] .modal-url-hero-card {
  background: #f0fdf4;
  border-color: #a7f3d0;
}

[data-theme="light"] .url-card-label {
  color: #475569;
}

[data-theme="light"] .url-card-val {
  color: #059669;
}

[data-theme="light"] .website-breakdown-box {
  background: #f8fafc;
  border-color: #e2e8f0;
}

[data-theme="light"] .breakdown-header {
  color: #0f172a;
}

[data-theme="light"] .breakdown-item {
  color: #334155;
}

[data-theme="light"] .breakdown-item strong {
  color: #0f172a;
}

[data-theme="light"] .modal-reassurance-row {
  color: #334155;
}

[data-theme="light"] .modal-reassurance-row .dot-sep {
  color: #cbd5e1;
}

[data-theme="light"] .modal-time-estimate {
  color: #475569;
}

[data-theme="light"] .claim-modal-cancel {
  background: transparent;
  border-color: transparent;
  color: #64748b;
}

[data-theme="light"] .claim-modal-cancel:hover {
  background: #f1f5f9;
  color: #0f172a;
}

/* ─── Mobile Responsiveness for Modal ─── */
@media (max-width: 600px) {
  .preview-banner {
    height: 120px !important;
  }
  .breakdown-grid {
    grid-template-columns: 1fr !important;
  }
  .claim-modal-actions {
    flex-direction: column-reverse;
    gap: 1rem;
    width: 100%;
  }
  .claim-modal-actions button {
    width: 100%;
  }
  .modal-url-hero-card {
    width: 100%;
    box-sizing: border-box;
  }
}

.expiry-timer-card { background: rgba(255, 255, 255, 0.05); padding: 12px 16px; border-radius: 8px; font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 15px; }
[data-theme="light"] .expiry-timer-card { background: rgba(0, 0, 0, 0.05); color: rgba(0, 0, 0, 0.7); }

.verify-step { display: flex; align-items: flex-start; gap: 0.75rem; background: rgba(255, 255, 255, 0.03); padding: 12px; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.05); margin-bottom: 12px; }
[data-theme="light"] .verify-step { background: rgba(0, 0, 0, 0.02); border: 1px solid rgba(0, 0, 0, 0.05); }
