:root {
  --bg-dark: #070a12;
  --bg-card: rgba(14, 20, 36, 0.75);
  --bg-card-hover: rgba(20, 30, 54, 0.85);
  --border: rgba(255, 255, 255, 0.08);
  --border-focus: #00f0ff;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --cyan: #00f0ff;
  --cyan-glow: rgba(0, 240, 255, 0.25);
  --blue: #3b82f6;
  --green: #10b981;
  --amber: #f59e0b;
  --purple: #a855f7;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Background Glow Effects */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.35;
}

.orb-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  left: -100px;
  background: radial-gradient(circle, #00f0ff 0%, #3b82f6 70%, transparent 100%);
}

.orb-2 {
  width: 600px;
  height: 600px;
  top: 20%;
  right: -200px;
  background: radial-gradient(circle, #6366f1 0%, #a855f7 60%, transparent 100%);
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(7, 10, 18, 0.85);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.brand-badge {
  background: linear-gradient(135deg, #00f0ff, #3b82f6);
  color: #050811;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.brand-name {
  color: #fff;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pill-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--cyan);
}

/* Hero */
.hero-section {
  text-align: center;
  padding: 64px 0 40px;
}

.hero-badge {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(0, 240, 255, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(0, 240, 255, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.hero-desc code {
  color: var(--cyan);
  font-family: var(--font-mono);
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Scanner Card */
.scanner-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 40px;
  margin: 20px auto 48px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
  position: relative;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.card-subtitle {
  font-size: 14px;
  color: var(--text-muted);
}

.speed-tag {
  font-size: 11.5px;
  font-weight: 700;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.col-span-2 {
  grid-column: span 2;
}

.input-row {
  display: flex;
  gap: 12px;
}

.flex-1 { flex: 1; }
.flex-2 { flex: 2; }

.input-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.req {
  color: #f43f5e;
}

.input-group input,
.input-group select {
  width: 100%;
  background: rgba(10, 15, 29, 0.85);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--text-main);
  font-family: inherit;
  outline: none;
  transition: all 0.2s;
}

.input-group input:focus,
.input-group select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-glow);
}

.form-action {
  margin-top: 32px;
  text-align: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #00f0ff 0%, #3b82f6 100%);
  color: #040814;
  font-weight: 800;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 10px 25px -5px rgba(0, 240, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -4px rgba(0, 240, 255, 0.6);
}

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

.privacy-note {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 14px;
}

/* Progress Overlay */
.scan-progress-box {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 16px;
  padding: 50px 30px;
  text-align: center;
  margin: 20px auto 48px;
  max-width: 600px;
}

.spinner-ring {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(0, 240, 255, 0.15);
  border-top: 4px solid var(--cyan);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 24px;
}

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

.progress-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.progress-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.step-list {
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.3s;
}

.step-item.active {
  color: var(--cyan);
  font-weight: 600;
}
.step-item.active .step-dot {
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.step-item.done {
  color: var(--green);
}
.step-item.done .step-dot {
  background: var(--green);
}

/* Results Banner */
.results-banner {
  background: linear-gradient(135deg, rgba(14, 24, 48, 0.85), rgba(8, 14, 28, 0.85));
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 36px;
  margin-bottom: 32px;
}

.score-dial-wrap {
  flex-shrink: 0;
}

.score-dial {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  border: 4px solid var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.25);
}

.score-num {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.score-label {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 600;
}

.verified-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.results-headline {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
}

.results-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}
.chip-green { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.chip-amber { background: rgba(245, 158, 11, 0.15); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.3); }
.chip-blue  { background: rgba(59, 130, 246, 0.15); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }

/* Action Grid */
.action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.action-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.card-badge {
  align-self: flex-start;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.card-badge.green { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.card-badge.blue { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.card-badge.purple { background: rgba(168, 85, 247, 0.15); color: #c084fc; }
.card-badge.amber { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }

.card-heading {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-copy {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
}

.status-pill {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 6px;
  text-align: center;
}
.status-pill.green {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.claim-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.claim-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-main);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 8px;
  transition: all 0.2s;
}

.claim-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--cyan);
  color: var(--cyan);
}

.card-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.btn-copy {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border);
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.btn-copy:hover {
  background: var(--cyan);
  color: #040814;
  border-color: var(--cyan);
}

.code-container {
  background: #04060b;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  margin-top: 14px;
  overflow-x: auto;
  max-height: 250px;
}

.code-container pre code {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: #e2e8f0;
  line-height: 1.5;
}

.badge-preview-wrap {
  background: rgba(0, 0, 0, 0.3);
  border: 1px dashed var(--border);
  border-radius: 8px;
  padding: 16px;
  margin-top: 14px;
}

.badge-preview-label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* 7 Layer Pitch Banner */
.pitch-banner {
  background: linear-gradient(135deg, #0d1527 0%, #15203b 100%);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 16px;
  padding: 36px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  box-shadow: 0 15px 35px -10px rgba(0, 240, 255, 0.15);
  margin-bottom: 40px;
}

.pitch-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cyan);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.pitch-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}

.pitch-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.pitch-features {
  display: flex;
  gap: 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: #cbd5e1;
}

.pitch-action {
  flex-shrink: 0;
  text-align: center;
}

.btn-pitch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #040814;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-pitch:hover {
  background: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 240, 255, 0.4);
}

.pitch-call {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 10px;
}

.pitch-call a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
}

.scan-again-wrap {
  text-align: center;
  margin-bottom: 60px;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  font-size: 13px;
  color: var(--text-dim);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-inner a {
  color: var(--text-muted);
  text-decoration: none;
}
.footer-inner a:hover {
  color: var(--cyan);
}

.footer-links {
  display: flex;
  gap: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title { font-size: 30px; }
  .form-grid { grid-template-columns: 1fr; }
  .col-span-2 { grid-column: span 1; }
  .scanner-card { padding: 24px 20px; }
  .results-banner { flex-direction: column; text-align: center; }
  .action-grid { grid-template-columns: 1fr; }
  .claim-links-grid { grid-template-columns: 1fr; }
  .pitch-banner { flex-direction: column; text-align: center; padding: 28px 20px; }
  .pitch-features { flex-direction: column; gap: 6px; }
  .header-right .pill-badge { display: none; }
}
