/* ============================================================
 * House of Stimms — Design System
 * Accent: HoS Red #E8001A (used sparingly)
 * ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ── Variables ── */
:root {
  --bg:           #090b14;
  --bg-card:      #0f1120;
  --bg-card-alt:  #13162a;
  --accent:       #E8001A;
  --accent-dim:   rgba(232,0,26,0.12);
  --accent-glow:  rgba(232,0,26,0.25);
  --white:        #ffffff;
  --gray:         rgba(255,255,255,0.55);
  --gray-dim:     rgba(255,255,255,0.28);
  --border:       rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.15);
  --green:        #22c55e;
  --green-dim:    rgba(34,197,94,0.12);

  --font:       'Inter', system-ui, -apple-system, sans-serif;
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --max:        860px;
  --max-wide:   1080px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: opacity 0.15s; }
a:hover { opacity: 0.85; }

/* ── Typography ── */
h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 3vw, 1.65rem); font-weight: 700; line-height: 1.25; }
h4 { font-size: 1.05rem; font-weight: 700; line-height: 1.3; }
p { line-height: 1.65; }
p + p { margin-top: 0.9rem; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--wide { max-width: var(--max-wide); }

section { padding: 5rem 0; }
section.tight { padding: 3rem 0; }

/* ── Section Label ── */
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.eyebrow--muted {
  color: var(--gray);
}

/* ── Disclosure ── */
.disclosure {
  font-size: 0.78rem;
  color: var(--gray-dim);
  text-align: center;
  margin-top: 0.75rem;
}

/* ── Nav ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(9,11,20,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.875rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.nav-logo img { width: 28px; height: 28px; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--white); opacity: 1; }
.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  transition: background 0.15s, transform 0.1s !important;
  white-space: nowrap;
}
.nav-cta:hover { background: #c5001a !important; opacity: 1 !important; }
.nav-cta:active { transform: scale(0.97); }
@media (max-width: 680px) { .nav-links { display: none; } }

/* ── Hero ── */
.hero {
  text-align: center;
  padding: 4rem 0 3rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-hover);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
}
.hero-image-card {
  margin: 0 auto 2.5rem;
  max-width: 600px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-hover);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}
.hero-image-card img {
  width: 100%;
  display: block;
}
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 span { color: var(--accent); }
.hero-sub {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1.75rem;
  min-height: 48px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, opacity 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: #c5001a; opacity: 1; }
.btn-ghost {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  border: 1px solid var(--border-hover);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); opacity: 1; }
.btn-lg { font-size: 1.05rem; padding: 0.95rem 2.25rem; min-height: 54px; }
.btn-xl { font-size: 1.1rem; padding: 1.05rem 2.5rem; min-height: 58px; }
.btn-block { width: 100%; }
.btn-white { background: var(--white); color: #111; }
.btn-white:hover { background: #f0f0f0; opacity: 1; }

/* ── Stats Bar ── */
.stats-bar {
  display: flex;
  align-items: stretch;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 2.5rem auto 0;
  max-width: 760px;
}
.stat-item {
  flex: 1;
  padding: 1.25rem 1rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.02em;
  display: block;
}
@media (max-width: 540px) {
  .stats-bar { flex-wrap: wrap; }
  .stat-item { min-width: 50%; border-bottom: 1px solid var(--border); }
  .stat-item:last-child, .stat-item:nth-last-child(2) { border-bottom: none; }
}

/* ── Feature Split (2-col) ── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) { .feature-split { grid-template-columns: 1fr; gap: 2.5rem; } }

.feature-split-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-hover);
  box-shadow: 0 16px 60px rgba(0,0,0,0.5);
}
.feature-split-image img { width: 100%; }

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.5;
}
.checklist li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05em;
}

/* ── Feature Grid ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 3rem;
}
@media (max-width: 768px) { .feature-grid { grid-template-columns: 1fr; } }
@media (min-width: 540px) and (max-width: 768px) { .feature-grid { grid-template-columns: 1fr 1fr; } }

.feature-card {
  background: var(--bg-card);
  padding: 1.75rem 1.5rem;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--bg-card-alt); }

.feature-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.feature-card h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* ── Win Slips ── */
.win-grid {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 2.5rem;
}
@media (max-width: 640px) { .win-grid { grid-template-columns: 1fr 1fr; } }

.win-slip {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
}
.win-slip img {
  width: 100%;
  display: block;
  transition: transform 0.3s;
}
.win-slip:hover img { transform: scale(1.04); }
.win-slip-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem 0.875rem 0.75rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  font-size: 1rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.01em;
}

/* ── Interstitial banner ── */
.interstitial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.interstitial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(232,0,26,0.08), transparent);
  pointer-events: none;
}

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (max-width: 768px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.review-card:hover { border-color: var(--border-hover); }
.review-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.875rem;
}
.review-text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-card-alt);
  border: 1px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.review-name { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.review-meta { font-size: 0.72rem; color: var(--gray-dim); }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  align-items: start;
}
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; } }

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
}
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg-card-alt), var(--bg-card));
}
.price-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 0 0 var(--radius) var(--radius);
  white-space: nowrap;
}
.save-badge {
  display: inline-block;
  background: var(--green-dim);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.price-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-dim);
  margin-bottom: 0.6rem;
}
.price-amount {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.price-amount sup { font-size: 1.2rem; vertical-align: super; }
.price-per { font-size: 0.78rem; color: var(--gray); margin-top: 0.25rem; margin-bottom: 0.75rem; }
.price-divider { border: none; border-top: 1px solid var(--border); margin: 1.25rem 0; }
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.price-features li {
  font-size: 0.875rem;
  color: var(--gray);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}
.price-features li.no { color: rgba(255,255,255,0.25); }
.price-features li.no::before { content: "✗"; color: rgba(255,255,255,0.2); flex-shrink: 0; }
.price-features li:not(.no)::before { content: "✓"; color: var(--green); flex-shrink: 0; }

/* ── FAQ ── */
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 0;
  text-align: left;
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.15s;
}
.faq-q:hover { color: rgba(255,255,255,0.75); }
.faq-q .icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bg-card-alt);
  border: 1px solid var(--border-hover);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: background 0.15s, transform 0.2s;
}
.faq-q[aria-expanded="true"] .icon { background: var(--accent-dim); transform: rotate(45deg); }
.faq-a { padding: 0 0 1.2rem; color: var(--gray); font-size: 0.9rem; line-height: 1.7; display: none; }
.faq-a.open { display: block; }
.faq-a a { color: var(--accent); }

/* ── Final CTA ── */
.final-cta {
  text-align: center;
  padding: 5rem 0 4rem;
}
.final-cta h2 span { color: var(--accent); }
.final-cta p { color: var(--gray); font-size: 1.05rem; max-width: 480px; margin: 1rem auto 2rem; }
.cta-perks {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.cta-perks span {
  font-size: 0.8rem;
  color: var(--gray-dim);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.cta-perks span::before { content: "✓"; color: var(--green); }

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  color: var(--gray-dim);
  font-size: 0.82rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer-brand-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.6rem;
}
.footer-brand-name img { width: 22px; height: 22px; object-fit: contain; }
.footer-desc { font-size: 0.82rem; color: var(--gray-dim); line-height: 1.6; max-width: 260px; }
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1rem;
}
.footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links-list a { color: var(--gray-dim); font-size: 0.85rem; transition: color 0.15s; }
.footer-links-list a:hover { color: var(--white); opacity: 1; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--gray-dim);
}
.footer-bottom a { color: var(--gray-dim); }
.footer-bottom a:hover { color: var(--gray); opacity: 1; }

/* ── Utility ── */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-gray { color: var(--gray); }
.text-green { color: var(--green); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
