:root {
  --bg: #050505;
  --bg-elev: #0a0a0a;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-hover: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.15);
  --text: #f1f5f9;
  --muted: #94a3b8;
  --accent: #facc15;
  --accent-2: #facc15;
  --accent-glow: rgba(250, 204, 21, 0.35);
  --danger: #ef4444;
  --warning: #f59e0b;
  --success: #22c55e;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  --font: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 15%, rgba(250, 204, 21, 0.10) 0%, transparent 35%),
    radial-gradient(circle at 85% 25%, rgba(250, 204, 21, 0.07) 0%, transparent 30%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
  pointer-events: none;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(11, 13, 16, 0.8);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: -0.5px;
}

.brand svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--text);
}

.user-dropdown {
  position: relative;
}

.user-dropdown:hover .user-dropdown-menu,
.user-dropdown:focus-within .user-dropdown-menu {
  display: block;
}

.user-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 8px 0;
  z-index: 200;
}

.user-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 20px;
  width: 10px;
  height: 10px;
  background: var(--bg-elev);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: rotate(45deg);
}

.user-dropdown-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 0.9rem;
  color: var(--text);
}

.user-dropdown-menu a:hover {
  background: var(--surface);
  text-decoration: none;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 900;
  margin: 0 0 16px;
  line-height: 1.1;
  letter-spacing: -1.5px;
  background: linear-gradient(90deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 36px;
}

.search-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 720px;
  gap: 8px;
  padding: 0 16px;
}

.search-form .search-input-wrap {
  display: flex;
  width: 100%;
  max-width: 600px;
  gap: 8px;
}

.search-input {
  flex: 1 1 280px;
  padding: 16px 20px;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent), #d4b300);
  color: #050505;
  box-shadow: 0 6px 20px rgba(250, 204, 21, 0.3);
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(250, 204, 21, 0.4);
}

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

.btn-secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--text);
  box-shadow: none;
}

.btn-secondary:hover {
  background: rgba(250, 204, 21, 0.08);
}

.hero-links {
  margin-top: 18px;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: background 0.2s, transform 0.2s;
}

.feature-card:hover {
  background: var(--surface-hover);
  transform: translateY(-3px);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--text);
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.section-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin: 0 0 14px;
}

.section-title svg {
  width: 18px;
  height: 18px;
  vertical-align: -3px;
  margin-right: 8px;
  color: var(--accent);
}

.risk-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.risk-low {
  background: rgba(34, 197, 94, 0.12);
  color: var(--success);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.risk-medium {
  background: rgba(245, 158, 11, 0.12);
  color: var(--warning);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.risk-high {
  background: rgba(239, 68, 68, 0.12);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.risk-unknown {
  background: rgba(148, 163, 184, 0.12);
  color: var(--muted);
  border: 1px solid var(--border);
}

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

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
  word-break: break-all;
}

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

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

.summary-card h4 {
  margin: 0 0 10px;
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: capitalize;
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.account-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: transform 0.15s, border-color 0.15s;
}

.account-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.account-card h4 {
  margin: 0 0 4px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.account-card .domain {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.account-field {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.account-field:last-child {
  border-bottom: none;
}

.account-field .label {
  color: var(--muted);
  flex-shrink: 0;
}

.account-field .value {
  text-align: right;
  word-break: break-all;
  color: var(--text);
}

.account-field a {
  color: var(--accent-2);
}

.view-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  margin-bottom: 14px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent), #d4b300);
  color: #050505;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.view-profile-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(250, 204, 21, 0.3);
}

.breach-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.breach-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.18);
  color: var(--text);
  font-size: 0.95rem;
}

.breach-item .date {
  color: var(--muted);
  font-size: 0.8rem;
}

.timeline {
  position: relative;
  padding-left: 22px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--border);
  border-radius: 2px;
}

.timeline-entry {
  position: relative;
  margin-bottom: 14px;
}

.timeline-entry::before {
  content: "";
  position: absolute;
  left: -21px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg-elev);
}

.timeline-entry .date {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timeline-entry .text {
  color: var(--text);
  font-size: 0.95rem;
}

.loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  gap: 18px;
  color: var(--muted);
}

.spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.error-card {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: var(--danger);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
}

.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--muted);
}

.meta-bar {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.demo-banner {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: var(--warning);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.search-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.search-toolbar .search-input {
  flex: 1 1 260px;
  padding: 12px 18px;
}

.search-toolbar .btn {
  padding: 12px 22px;
}

.toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.toggle-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 80px;
  padding: 32px 24px 24px;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  font-size: 1.1rem;
}

.footer-brand:hover {
  text-decoration: none;
  color: var(--accent);
}

.footer-brand svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

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

.footer-copy {
  text-align: center;
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--muted);
  opacity: 0.8;
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

.profile-pictures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 18px;
}

.profile-picture {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}

.profile-picture:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.profile-picture img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-elev);
}

.profile-picture.avatar img {
  border: 2px solid var(--accent);
}

.profile-picture span {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  word-break: break-all;
}

.stealer-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.stealer-row {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr 0.9fr;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  align-items: center;
}

.stealer-header {
  background: rgba(250, 204, 21, 0.08);
  border-color: rgba(250, 204, 21, 0.2);
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}

.stealer-origin {
  color: var(--accent);
  font-weight: 600;
}

/* Dashboard sellpoint cards */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.dashboard-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.dashboard-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
  opacity: 0.8;
}

.dashboard-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.dashboard-header svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
  stroke-width: 2.5px;
}

.dashboard-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dashboard-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.dashboard-label {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.dashboard-sub {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.dashboard-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.dashboard-icons img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--surface);
  padding: 3px;
  object-fit: cover;
}

.dashboard-breakdown {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.dashboard-breakdown span {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
  color: var(--muted);
}

/* Standalone info boxes */
.standalone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.standalone-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  transition: border-color 0.2s, transform 0.2s;
}

.standalone-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.standalone-title {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.standalone-count {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.standalone-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.standalone-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.85rem;
  word-break: break-word;
}

.standalone-label {
  display: block;
  color: var(--accent);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

/* Auth pages */
.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 75vh;
  padding: 40px 20px;
}

.auth-card {
  width: 100%;
  max-width: 380px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.auth-header {
  text-align: center;
  margin-bottom: 24px;
}

.auth-header h1 {
  margin: 0 0 6px;
  font-size: 1.5rem;
  font-weight: 800;
}

.auth-header p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-form label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: -8px;
}

.auth-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.auth-btn {
  width: 100%;
  padding: 12px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 4px;
}

.google-btn {
  width: 100%;
  padding: 12px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  background: #ffffff;
  color: #1f2937;
  box-shadow: none;
  border: 1px solid var(--border);
}

.google-btn:hover {
  background: #f3f4f6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.google-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.auth-switch {
  text-align: center;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.user-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  cursor: pointer;
}

.user-pill:hover {
  border-color: var(--accent);
}

.user-pill::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
}

/* Flash messages */
.flash-messages {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.flash {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.9rem;
}

.flash-error {
  border-color: var(--danger);
  color: #fecaca;
  background: rgba(239, 68, 68, 0.1);
}

.flash-success {
  border-color: var(--success);
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.1);
}

.profile-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}

.profile-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.profile-value {
  font-size: 1rem;
  color: var(--text);
  word-break: break-all;
}

.profile-uuid {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.9rem;
}

.profile-section {
  margin-top: 24px;
}

.profile-section h3 {
  font-size: 1.1rem;
  margin: 0 0 14px;
}

.profile-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.profile-input-wrap:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.profile-input-wrap svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
  flex-shrink: 0;
}

.profile-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 0;
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
}

.profile-input::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.profile-uid {
  font-weight: 700;
  color: var(--accent);
}

/* Redacted / preview */
.redacted-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid rgba(250, 204, 21, 0.3);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 24px;
  color: var(--text);
}

.redacted-banner svg {
  flex-shrink: 0;
  color: var(--accent);
}

.redacted-banner p {
  margin: 0;
  font-size: 0.95rem;
}

.redacted-banner a {
  font-weight: 700;
}

.redacted-value {
  color: var(--muted);
  font-style: italic;
}

.redacted-blur {
  filter: blur(6px);
  user-select: none;
  pointer-events: none;
  transition: filter 0.15s ease;
}

.legal-hero {
  text-align: center;
  padding: 48px 20px 32px;
}

.legal-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin: 0 0 10px;
  background: linear-gradient(90deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-hero p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
}

.legal-card h2 {
  font-size: 1.1rem;
  margin: 0 0 10px;
  color: var(--text);
}

.legal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Search page hero */
.search-hero {
  text-align: center;
  padding: 48px 20px 36px;
  background:
    radial-gradient(circle at 50% 30%, rgba(250, 204, 21, 0.08) 0%, transparent 45%);
}

.search-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin: 0 0 10px;
  background: linear-gradient(90deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.search-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 20px;
}

.search-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.search-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

.search-toolbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 48px 20px;
  }

  .search-form {
    flex-direction: column;
  }

  .search-input,
  .btn {
    width: 100%;
  }

  .search-input-wrap {
    flex-direction: column;
  }

  .search-input-wrap .btn,
  .search-form .btn {
    width: 100%;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

.pricing-section {
  margin-top: 60px;
  padding: 0 20px;
}

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

.pricing-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 900;
  margin: 0 0 8px;
}

.pricing-header p {
  color: var(--muted);
  margin: 0 0 22px;
}

.billing-toggle {
  display: inline-flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
}

.billing-toggle button {
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.billing-toggle button.active,
.billing-toggle button:hover {
  background: var(--accent);
  color: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 640px;
  margin: 0 auto;
  align-items: start;
}

.lifetime-section {
  margin-top: 64px;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.lifetime-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 900;
  margin: 0 0 8px;
}

.lifetime-section > p {
  color: var(--muted);
  margin: 0 0 24px;
}

.lifetime-card {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
}

.pricing-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-popular {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 999px;
}

.pricing-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0;
}

.pricing-desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.pricing-price {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--text);
  margin: 4px 0;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
}

.pricing-yearly-note {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin: -8px 0 0;
}

.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing-features li {
  position: relative;
  padding-left: 22px;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 6px;
  height: 10px;
  border: solid var(--accent);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* Search type tabs, examples, and username result tables */
.search-type-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
}

.search-type-tab {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 18px;
  transition: all 0.2s;
}

.search-type-tab:hover {
  border-color: var(--accent);
  color: var(--text);
}

.search-type-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #050505;
}

.search-input-wrap {
  display: flex;
  width: 100%;
  max-width: 600px;
  gap: 8px;
}

.search-input-wrap .search-input {
  flex: 1 1 auto;
  min-width: 0;
}

.hero .search-form {
  margin: 0 auto;
}

.search-toolbar .search-form {
  width: 100%;
}

.search-examples {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 6px;
}

.search-examples-label {
  font-weight: 600;
}

.search-example {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--accent);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 4px 12px;
  transition: all 0.2s;
}

.search-example:hover {
  background: var(--surface-hover);
  border-color: var(--accent);
}

.username-accounts-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 0.95rem;
}

.username-accounts-table th,
.username-accounts-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.username-accounts-table th {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.username-accounts-table td {
  color: var(--text);
  vertical-align: middle;
}

.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.status-found {
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
}

.status-not-found {
  background: rgba(148, 163, 184, 0.15);
  color: var(--muted);
}

.status-unknown {
  background: rgba(245, 158, 11, 0.15);
  color: var(--warning);
}

.status-listed {
  background: rgba(239, 68, 68, 0.15);
  color: var(--danger);
}

.status-clean {
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
}

.account-card.status-listed {
  border-left: 4px solid var(--danger);
}

.account-card.status-clean {
  border-left: 4px solid var(--success);
}
