/* ==========================================
   Lexar Prints — Helmet Dryer Landing Page
   Colors: Black (#000), Blue (#0099FF), White (#fff)
   ========================================== */

:root {
  --bg: #000000;
  --bg-alt: #0a0a0a;
  --bg-card: #111111;
  --bg-light: #f5f5f5;
  --fg: #ffffff;
  --fg-muted: #999999;
  --fg-dark: #1a1a1a;
  --accent: #0099FF;
  --accent-hover: #0077cc;
  --accent-glow: rgba(0, 153, 255, 0.15);
  --border: #222222;
  --border-light: #e0e0e0;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Archivo Black', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header { margin-bottom: 48px; }
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 12px;
}
.section-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 480px;
}
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border: none;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary {
  background: var(--accent);
  color: #000;
}
.btn-primary:hover {
  background: var(--accent-hover);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-large { padding: 16px 36px; font-size: 1.1rem; }

.badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0,153,255,0.1);
  border: 1px solid rgba(0,153,255,0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-right: 8px;
  margin-bottom: 8px;
}

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.site-header .header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link { display: block; }
.logo-img {
  height: 44px;
  width: auto;
  filter: invert(1);
}
.footer-logo-img {
  filter: invert(1);
}
nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover { color: var(--fg); }
nav a:last-child {
  color: var(--accent);
  font-weight: 700;
}

/* ---- HERO ---- */
.hero {
  padding: 80px 32px 96px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  color: var(--fg);
}
.hero-sub {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-pricing {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.price-block { display: flex; align-items: baseline; gap: 12px; }
.sale-price {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2.5rem;
  color: var(--accent);
}
.was-price {
  font-size: 1.1rem;
  color: var(--fg-muted);
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 0; }

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img {
  width: 100%;
  max-width: 520px;
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(0,153,255,0.15), 0 8px 32px rgba(0,0,0,0.5);
}

/* ---- SECTIONS ---- */
.section-dark {
  background: var(--bg-alt);
  padding: 96px 0;
}
.section-light {
  background: var(--bg-light);
  color: var(--fg-dark);
  padding: 96px 0;
}

/* ---- HOW IT WORKS ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
}
.step-num {
  position: absolute;
  top: -16px;
  left: 24px;
  background: var(--accent);
  color: #000;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.875rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-visual {
  margin-bottom: 20px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
}
.step-visual-icon {
  background: transparent;
}
.step-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
}
.fan-icon {
  width: 80px;
  height: 80px;
  animation: spin 3s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.step-card p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---- SCENT TRAY ---- */
.scent-tray-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.scent-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.scent-text-col h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
  color: var(--fg-dark);
}
.scent-desc {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.scent-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.scent-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  color: var(--fg-dark);
  font-size: 0.95rem;
}
.scent-features svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- COLORS GALLERY ---- */
.colors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.color-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
}
.color-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.color-label {
  padding: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg-muted);
}
.colors-note {
  text-align: center;
  margin-top: 32px;
  color: var(--fg-muted);
  font-size: 0.95rem;
}

/* ---- SPECS + AUDIENCE ---- */
.closing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.specs-col h2, .audience-col h2 {
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: var(--fg-dark);
}
.specs-table { display: flex; flex-direction: column; }
.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}
.spec-key {
  font-weight: 700;
  font-size: 0.875rem;
  color: #666;
  flex-shrink: 0;
}
.spec-val {
  font-size: 0.9rem;
  color: var(--fg-dark);
  text-align: right;
}

.audience-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.audience-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 20px;
}
.audience-icon { font-size: 1.5rem; margin-bottom: 8px; }
.audience-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--fg-dark);
}
.audience-card p {
  color: #666;
  font-size: 0.875rem;
  line-height: 1.6;
}
.team-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--fg-dark);
}
.team-icon { width: 20px; height: 20px; }

/* ---- FOOTER ---- */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 32px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  margin-bottom: 32px;
}
.footer-logo-link { display: block; margin-bottom: 12px; }
.footer-logo-img { height: 40px; width: auto; }
.footer-brand p {
  color: var(--fg-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 360px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: var(--fg-muted);
  font-size: 0.875rem;
}
.footer-links a:hover { color: var(--fg); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.footer-bottom p {
  color: var(--fg-muted);
  font-size: 0.8rem;
}

/* ---- CTA BAR ---- */
.cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 16px 32px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 200;
}
.cta-bar.cta-bar-visible { transform: translateY(0); }
.cta-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cta-bar-price {
  font-size: 1.1rem;
  color: var(--fg-muted);
}
.cta-bar-price strong { color: var(--accent); font-size: 1.3rem; }

/* ---- COLOR SELECTOR ---- */
.color-selector {
  margin-bottom: 20px;
}
.color-selector-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 10px;
}
.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}
.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #444;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  padding: 0;
  background: none;
}
.color-swatch:hover {
  transform: scale(1.15);
}
.color-swatch.selected {
  border-color: #0099FF;
  box-shadow: 0 0 0 3px rgba(0,153,255,0.4);
  transform: scale(1.1);
}
.color-selected-name {
  font-size: 0.85rem;
  font-weight: 600;
  min-height: 20px;
  display: none;
}
.buy-now-btn {
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  .hero-inner,
  .scent-tray-section,
  .closing-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .scent-image-col { order: -1; }
  .colors-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  nav { display: none; }
  .hero { padding: 56px 24px 72px; }
  .container { padding: 0 24px; }
  .section-dark, .section-light { padding: 64px 0; }
  .cta-bar { padding: 12px 24px; }
  .cta-bar-price { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.25rem; }
  .hero-pricing { flex-direction: column; align-items: flex-start; }
  .colors-grid { grid-template-columns: 1fr; }
  .footer-links { flex-direction: row; flex-wrap: wrap; }
}