/*
 * WheelQueen apex marketing landing page (thewheelqueen.com).
 * STANDALONE — not part of the SPA bundle, so it copies the small subset of
 * --wq-* design tokens it needs from src/index.css (the single source of
 * truth). Keep these in sync if the core palette changes.
 */
:root {
  --wq-color-bg: #1a1a2e;
  --wq-color-surface: #16213e;
  --wq-text-primary: #e0e0e0;
  --wq-text-secondary: #9ba4b5;
  --wq-color-accent: #5aabff;
  --wq-color-accent-hover: #7ab8ff;
  --wq-border: #2a3a5c;
  --wq-font-sans: system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --wq-radius-card: 10px;
  --wq-radius-pill: 9999px;
  --wq-space-4: 12px;
  --wq-space-5: 16px;
  --wq-space-6: 24px;
  --wq-space-7: 32px;
  --wq-space-8: 48px;
}

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

body {
  font-family: var(--wq-font-sans);
  background: var(--wq-color-bg);
  color: var(--wq-text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--wq-space-6);
}

.hero {
  text-align: center;
  padding: calc(var(--wq-space-8) * 2) 0 var(--wq-space-8);
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: -0.02em;
}
.hero .tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--wq-text-secondary);
  max-width: 42ch;
  margin: var(--wq-space-5) auto var(--wq-space-7);
}

.cta {
  display: flex;
  gap: var(--wq-space-5);
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--wq-radius-pill);
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
}
.btn-primary {
  background: var(--wq-color-accent);
  color: #0b1220;
}
.btn-primary:hover {
  background: var(--wq-color-accent-hover);
}
.btn-secondary {
  border: 1px solid var(--wq-border);
  color: var(--wq-text-primary);
}
.btn-secondary:hover {
  border-color: var(--wq-color-accent);
  color: var(--wq-color-accent);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--wq-space-6);
  padding: var(--wq-space-8) 0;
}
.card {
  background: var(--wq-color-surface);
  border: 1px solid var(--wq-border);
  border-radius: var(--wq-radius-card);
  padding: var(--wq-space-6);
}
.card h3 {
  color: var(--wq-color-accent);
  margin-bottom: var(--wq-space-4);
  font-size: 1.15rem;
}
.card p {
  color: var(--wq-text-secondary);
}

.shots {
  display: grid;
  gap: var(--wq-space-6);
  padding-bottom: var(--wq-space-8);
}
.shots img {
  width: 100%;
  height: auto;
  border: 1px solid var(--wq-border);
  border-radius: var(--wq-radius-card);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.55);
}

.invite {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: var(--wq-space-8);
}
.invite h2 {
  font-size: 1.5rem;
  margin-bottom: var(--wq-space-4);
}
.invite > p {
  color: var(--wq-text-secondary);
  margin-bottom: var(--wq-space-6);
}
.invite form {
  display: flex;
  flex-direction: column;
  gap: var(--wq-space-4);
}
.invite input {
  font: inherit;
  padding: 12px 16px;
  background: var(--wq-color-surface);
  color: var(--wq-text-primary);
  border: 1px solid var(--wq-border);
  border-radius: 8px;
}
.invite input::placeholder {
  color: var(--wq-text-secondary);
}
.invite input:focus {
  outline: none;
  border-color: var(--wq-color-accent);
}
.invite button {
  font: inherit;
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  border-radius: var(--wq-radius-pill);
  background: var(--wq-color-accent);
  color: #0b1220;
  cursor: pointer;
  transition: background 0.15s;
}
.invite button:hover {
  background: var(--wq-color-accent-hover);
}
/* Honeypot: off-screen so humans never see or tab to it; bots that fill it are dropped. */
.invite .hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.invite-thanks {
  color: var(--wq-color-accent);
  font-weight: 600;
}

footer {
  border-top: 1px solid var(--wq-border);
  text-align: center;
  padding: var(--wq-space-7) 0;
  color: var(--wq-text-secondary);
  font-size: 0.9rem;
}
footer a {
  color: var(--wq-color-accent);
  text-decoration: none;
}
