:root {
  --red: #e6162d;
  --red-dark: #c4101f;
  --bg-black: #0a0a0a;
  --bg-card: #151515;
  --bg-card-alt: #1c1414;
  --border-dark: #2a2a2a;
  --text-gray: #9a9a9a;
  --text-light: #e8e8e8;
}

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

body {
  background: var(--bg-black);
  color: var(--text-light);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }

.btn {
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(180deg, #ff2e42, var(--red-dark));
  color: #fff;
}

.btn-small { padding: 10px 20px; font-size: 14px; }
.btn-large { padding: 16px 32px; font-size: 16px; }
.btn-full { width: 100%; padding: 14px; margin-top: 16px; }
.btn-round { width: 44px; height: 44px; border-radius: 50%; padding: 0; font-size: 16px; }

.floating-cta {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(20px);
  z-index: 500;
  box-shadow: 0 8px 24px rgba(230, 22, 45, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* HEADER */
.site-header {
  background: #000;
  border-bottom: 1px solid var(--border-dark);
  padding: 16px 0;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}
.logo-mark { display: flex; gap: 6px; font-size: 22px; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.nav-link { font-size: 15px; font-weight: 600; color: #ddd; display: flex; align-items: center; gap: 4px; }
.caret { font-size: 10px; }

/* HERO */
.hero {
  background: radial-gradient(ellipse at top, #5a0f13 0%, #240707 45%, #0a0a0a 78%);
  padding: 48px 24px 36px;
  text-align: center;
}
.hero-inner { max-width: 780px; margin: 0 auto; }
.hero h1 {
  font-family: "Anton", Impact, "Arial Black", sans-serif;
  font-size: 46px;
  letter-spacing: 0.5px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.avatars-row { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 24px; }
.avatar-stack { display: flex; }
.avatar-img {
  width: 32px; height: 32px; border-radius: 50%;
  background: #444;
  border: 2px solid #0a0a0a;
  margin-left: -10px;
  object-fit: cover;
  display: block;
}
.avatar-img.small { width: 28px; height: 28px; margin-left: 0; }
.avatar-stack .avatar-img:first-child { margin-left: 0; }
.searches-count { font-size: 14px; color: var(--text-gray); font-weight: 600; }

.search-card {
  background: linear-gradient(180deg, #2a0a0d, #1a0608);
  border: 1px solid #4a1418;
  border-radius: 16px;
  padding: 28px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 32px;
}
.search-card h2 { font-size: 20px; margin-bottom: 16px; }
.search-form {
  background: #200a0c;
  border: 1px solid #4a1418;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 6px 6px 6px 16px;
  gap: 10px;
}
.search-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 15px;
  outline: none;
}
.search-icon { color: var(--text-gray); }

.press-strip {
  width: 100%;
  overflow: hidden;
  margin-top: 16px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.press-strip-track {
  display: flex;
  gap: 48px;
  width: max-content;
  color: #666;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  opacity: 0.7;
  animation: press-scroll 25s linear infinite;
}
.press-strip-track span { white-space: nowrap; }
.press-strip:hover .press-strip-track { animation-play-state: paused; }

@keyframes press-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* INSIGHTS */
.insights { padding: 60px 24px; text-align: center; }
.insights h2 { font-size: 30px; margin-bottom: 36px; }
.grad-text {
  background: linear-gradient(90deg, #ff4d5e, #7b7bff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.insight-cards {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.insight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 28px;
  text-align: left;
}
.insight-icon { font-size: 26px; margin-bottom: 14px; }
.insight-card h3 { font-size: 17px; margin-bottom: 10px; }
.insight-card p { font-size: 14px; color: var(--text-gray); }

/* FEATURE GRID */
.feature-grid-section { padding: 0 24px 60px; }
.feature-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 16px;
  position: relative;
}
.feature-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.feature-icon--red { background: #3a1216; }
.feature-icon--orange { background: #3a2a12; }
.feature-icon--blue { background: #12233a; }
.feature-icon--green { background: #123a1e; }
.feature-icon--gray { background: #262626; }
.feature-icon--purple { background: #251a3a; }
.badge-new {
  position: absolute;
  right: 20px;
  background: #1a3a22;
  color: #4ade80;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

/* TWEETS */
.tweets-section { padding: 60px 24px; text-align: center; }
.tweets-section h2 { font-size: 32px; margin-bottom: 40px; font-weight: 800; }
.grad-text-alt {
  background: linear-gradient(90deg, #ff2e42, #b04dff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tweets-row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.tweet-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 18px;
  min-width: 280px;
  text-align: left;
  flex: 1;
}
.tweet-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.tweet-avatar { width: 36px; height: 36px; border-radius: 50%; background: #444; object-fit: cover; display: block; }
.tweet-name { font-weight: 700; font-size: 14px; }
.verified { color: #1d9bf0; font-size: 12px; }
.tweet-handle { display: block; color: var(--text-gray); font-size: 13px; }
.tweet-more { margin-left: auto; color: var(--text-gray); }
.tweet-body { font-size: 14px; margin-bottom: 10px; }
.tweet-meta { color: var(--text-gray); font-size: 12px; margin-bottom: 12px; }
.tweet-footer { display: flex; gap: 16px; color: var(--text-gray); font-size: 13px; }

/* PRESS SECTION */
.press-section { padding: 60px 24px; text-align: center; }
.press-section h2 { font-size: 32px; margin-bottom: 30px; font-weight: 800; }
.grad-text-pink {
  background: linear-gradient(90deg, #ff2e9a, #ff8a2e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.press-video-main {
  max-width: 800px;
  margin: 0 auto 16px;
  position: relative;
}
.video-placeholder {
  background: #1a1a1a;
  border: 1px solid var(--border-dark);
  border-radius: 12px;
}
.video-placeholder--main { width: 100%; aspect-ratio: 16/9; }
.press-video-row {
  max-width: 800px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.video-placeholder--thumb {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid var(--border-dark);
  border-radius: 12px;
}
.video-placeholder--thumb .video-placeholder--main {
  position: absolute;
  inset: 0;
  border: none;
}

.cta-card {
  max-width: 500px;
  margin: 0 auto;
  background: linear-gradient(180deg, #2a0a0d, #1a0608);
  border: 1px solid #4a1418;
  border-radius: 16px;
  padding: 32px;
}
.stars { color: #facc15; font-size: 18px; margin-bottom: 8px; }
.cta-count { color: var(--text-gray); font-size: 14px; margin-bottom: 16px; }
.cta-card h3 { font-size: 26px; margin-bottom: 20px; }

/* HOW IT WORKS */
.how-it-works { padding: 60px 24px; text-align: center; }
.how-it-works h2 { font-size: 30px; margin-bottom: 36px; }
.steps-row {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 24px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border: 1px solid var(--red);
  color: var(--red);
  border-radius: 50%;
  font-size: 12px;
  margin-right: 6px;
}
.step-label { color: var(--text-gray); font-size: 13px; font-weight: 600; }
.step-card h3 { font-size: 19px; margin: 10px 0; }
.step-card p { color: var(--text-gray); font-size: 14px; margin-bottom: 20px; }
.step-mock {
  background: #0f0f0f;
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 16px;
}
.step-mock label { display: block; font-size: 12px; color: var(--text-gray); margin-bottom: 6px; }
.step-mock input {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 14px;
  color: #fff;
}
.result-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--border-dark);
}
.result-row:last-child { border-bottom: none; }
.tag { margin-left: auto; width: 40px; height: 10px; background: #333; border-radius: 4px; }
.tag--active { width: auto; background: transparent; color: var(--red); font-size: 11px; font-weight: 700; }
.timeline-date { color: var(--text-gray); font-size: 12px; margin-bottom: 12px; }
.timeline-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: 13px; }
.timeline-icon { font-size: 16px; }
.timeline-item p { color: var(--text-gray); margin: 0; }

/* FAQ */
.faq-section { padding: 60px 24px; text-align: center; }
.faq-section h2 { font-size: 30px; margin-bottom: 36px; }
.faq-grid {
  max-width: 900px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: left;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 16px 20px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-arrow { color: var(--text-gray); }
.faq-item p { margin-top: 12px; color: var(--text-gray); font-size: 14px; }

/* FOOTER */
.site-footer {
  background: #000;
  padding: 60px 24px 40px;
  text-align: center;
  border-top: 1px solid var(--border-dark);
}
.footer-logo {
  font-family: "Anton", Impact, "Arial Black", sans-serif;
  font-size: 24px;
  color: var(--red);
  margin-bottom: 20px;
}
.social-row { display: flex; justify-content: center; gap: 16px; margin-bottom: 24px; font-size: 20px; }
.social-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.footer-links-row { display: flex; justify-content: center; gap: 10px; font-size: 14px; font-weight: 600; margin-bottom: 40px; }
.dot { color: var(--red); }
.footer-columns {
  max-width: 900px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}
.footer-col h4 { color: #777; font-size: 12px; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col a { display: block; font-weight: 600; font-size: 15px; margin-bottom: 14px; }
.footer-disclaimer { max-width: 600px; margin: 0 auto 30px; color: #666; font-size: 12px; }
.footer-copyright { margin-top: 24px; color: #555; font-size: 12px; }

/* BLOG */
.blog-section { padding: 60px 24px; text-align: center; }
.blog-section h2 { font-size: 30px; margin-bottom: 36px; }
.blog-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.blog-card:hover { border-color: var(--red); transform: translateY(-2px); }
.blog-tag {
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-card h3 { font-size: 16px; }
.blog-card p { color: var(--text-gray); font-size: 13px; }

/* SEARCH WIZARD */
.wizard-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: radial-gradient(ellipse at top, #3a0c10 0%, #150505 45%, #0a0a0a 80%);
  display: none;
  flex-direction: column;
  overflow-y: auto;
}
.wizard-overlay.is-open { display: flex; }

.wizard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 0;
}
.wizard-back {
  background: none;
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.wizard-topbar-spacer { width: 60px; }
.wizard-logo { text-align: center; }
.wizard-logo-icons { font-size: 16px; letter-spacing: 4px; margin-bottom: 2px; }
.wizard-logo-text {
  font-family: "Anton", Impact, sans-serif;
  font-size: 20px;
  color: var(--red);
  letter-spacing: 0.5px;
}

.wizard-progress {
  height: 4px;
  background: #3a1418;
  margin: 16px 24px 0;
  border-radius: 4px;
  overflow: hidden;
}
.wizard-progress-fill {
  height: 100%;
  background: var(--red);
  transition: width 0.3s ease;
}

.wizard-body {
  flex: 1;
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 24px 24px;
}
.wizard-title { font-size: 24px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.wizard-subtitle { color: var(--text-gray); font-size: 14px; margin-bottom: 20px; }
.wizard-subtitle--after { margin-top: 14px; margin-bottom: 0; }

.wizard-input {
  width: 100%;
  background: #241012;
  border: 1px solid #4a1418;
  border-radius: 10px;
  padding: 16px;
  color: #fff;
  font-size: 15px;
  outline: none;
  margin-bottom: 8px;
}
.wizard-input::placeholder { color: #8a7476; }

.wizard-option-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 8px; }
.wizard-option-row {
  width: 100%;
  background: #221417;
  border: 1px solid #3a2224;
  border-radius: 10px;
  padding: 16px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}
.wizard-option-row.is-selected { border-color: var(--red); background: #2e1216; }
.wizard-option-row--icon { gap: 14px; }
.wizard-option-icon { font-size: 22px; }
.wizard-option-text { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.wizard-option-text small { color: var(--text-gray); font-weight: 400; font-size: 12px; }
.wizard-option-indicator {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid #5a4144;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.wizard-option-row.is-selected .wizard-option-indicator { border-color: var(--red); background: var(--red); color: #fff; }
.wizard-option-indicator.checkbox { border-radius: 6px; }

.wizard-insight-box {
  background: #241012;
  border: 1px solid #4a1418;
  border-radius: 10px;
  padding: 14px 16px;
  color: #d8b8bb;
  font-size: 13px;
  margin-top: 12px;
  line-height: 1.5;
}
.wizard-insight-box strong { color: #fff; }

.wizard-location-search { margin-bottom: 14px; }
.wizard-map {
  width: 100%;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
}
.wizard-map--tall { height: 340px; }

.wizard-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: 1px dashed #4a2c2f;
  border-radius: 12px;
  padding: 32px 20px;
  cursor: pointer;
  margin-bottom: 16px;
  color: #fff;
}
.wizard-upload-icon {
  width: 44px; height: 44px;
  background: #2a1518;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 6px;
}
.wizard-upload span { color: var(--text-gray); font-size: 13px; }
.wizard-upload small { color: #6a5254; font-size: 12px; }

.wizard-photo-example {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #1a0e10;
  border: 1px solid #3a2224;
  border-radius: 12px;
  padding: 16px;
}
.wizard-photo-preview {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: #333 center/cover no-repeat;
  border: 2px solid var(--red);
  flex-shrink: 0;
}
.wizard-photo-checklist { list-style: none; font-size: 13px; display: flex; flex-direction: column; gap: 6px; }
.wizard-photo-checklist .good { color: #4ade80; }
.wizard-photo-checklist .bad { color: #f87171; }

.wizard-social-form { display: flex; flex-direction: column; gap: 12px; }
.wizard-social-input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #241012;
  border: 1px solid #4a1418;
  border-radius: 10px;
  padding: 14px 16px;
}
.wizard-social-input input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.wizard-info-icon { font-size: 56px; text-align: center; margin: 24px 0; }

.wizard-search-status { text-align: center; margin-top: 16px; font-weight: 600; }
.wizard-search-progress {
  height: 6px;
  background: #2a1418;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 10px;
}
.wizard-search-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--red);
  transition: width 2.4s linear;
}
.wizard-result-thumbs {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.wizard-result-thumb {
  aspect-ratio: 1;
  border-radius: 10px;
  background: #333 center/cover no-repeat;
  filter: blur(3px) brightness(0.7);
}

.wizard-email-icon {
  width: 56px; height: 56px;
  background: var(--red);
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.wizard-oauth { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.wizard-oauth-btn {
  background: #1a1a1a;
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 14px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.wizard-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-gray);
  font-size: 13px;
  margin-bottom: 16px;
}
.wizard-divider span { flex: 1; height: 1px; background: var(--border-dark); }

.wizard-footer {
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.wizard-next:disabled { opacity: 0.5; cursor: not-allowed; }
.wizard-hint { color: var(--text-gray); font-size: 13px; text-align: center; }
.wizard-error { color: #f87171; font-size: 13px; margin-top: 10px; }
.wizard-skip {
  background: none;
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .insight-cards, .steps-row, .faq-grid, .footer-columns, .blog-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  .main-nav { gap: 14px; }
  .nav-link { font-size: 13px; }
  .press-video-row { grid-template-columns: 1fr; }
}
