
:root {
  --ink: #0d1614;
  --ink-2: #15211e;
  --paper: #f4f2e8;
  --paper-2: #e8e5d8;
  --lime: #c8ff44;
  --lime-dark: #a8de2c;
  --white: #fff;
  --muted: #aab5b0;
  --border: rgba(255,255,255,.12);
  --shadow: 0 24px 80px rgba(0,0,0,.18);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; }
.shell { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.affiliate-bar {
  background: var(--lime);
  color: #121a17;
  font-size: 12px;
  padding: 8px 0;
}
.affiliate-bar a { font-weight: 700; margin-left: 6px; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13, 22, 20, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap { min-height: 76px; display:flex; align-items:center; justify-content:space-between; gap:30px; }
.brand { display:flex; align-items:center; gap:12px; color:#fff; text-decoration:none; font-weight:800; letter-spacing:-.03em; }
.brand em { color: var(--lime); font-style: normal; }
.brand-mark {
  width: 36px; height: 36px; display:grid; place-items:center;
  background: var(--lime); color: var(--ink); border-radius: 10px;
  font-family: Oswald, sans-serif; font-weight:700;
}
.nav-links { display:flex; align-items:center; gap:26px; }
.nav-links a { color:#e9eeeb; text-decoration:none; font-size:14px; font-weight:600; }
.nav-links a:hover { color: var(--lime); }
.nav-links .nav-cta {
  background: var(--lime); color: var(--ink); padding:11px 16px; border-radius:999px;
}
.menu-button { display:none; border:0; background:none; color:white; font-size:26px; }
.hero {
  background:
    radial-gradient(circle at 75% 30%, rgba(200,255,68,.14), transparent 28%),
    linear-gradient(135deg, #0d1614 0%, #15211e 100%);
  color:white; overflow:hidden;
}
.hero-grid { min-height: 650px; display:grid; grid-template-columns: 1.1fr .9fr; align-items:center; gap:70px; padding:80px 0; }
.eyebrow { color:#5a695f; text-transform:uppercase; letter-spacing:.14em; font-weight:800; font-size:12px; margin-bottom:12px; }
.hero .eyebrow, .final-cta .eyebrow { color: var(--lime); }
.hero h1, .section h2, .final-cta h2 {
  font-family: Oswald, Impact, sans-serif; text-transform:uppercase; line-height:.98; letter-spacing:-.025em; margin:0;
}
.hero h1 { font-size: clamp(52px, 7vw, 94px); }
.hero h1 span { color: var(--lime); }
.hero-lede { color:#c9d2cd; font-size:18px; max-width:650px; margin:26px 0 30px; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; }
.button {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  min-height:50px; padding:0 22px; border-radius:10px; border:1px solid transparent;
  text-decoration:none; font-weight:800; font-size:14px; cursor:pointer; font-family:inherit;
}
.button.primary { background: var(--lime); color:var(--ink); }
.button.primary:hover { background:var(--lime-dark); transform:translateY(-1px); }
.button.secondary { color:white; border-color:rgba(255,255,255,.28); background:transparent; }
.button.light { background:white; color:var(--ink); }
.trust-row { display:flex; gap:34px; margin-top:46px; padding-top:24px; border-top:1px solid var(--border); }
.trust-row div { display:grid; gap:2px; }
.trust-row b { color:var(--lime); font-family:Oswald,sans-serif; font-size:20px; }
.trust-row span { color:#98a59f; font-size:12px; }
.hero-card {
  background:rgba(255,255,255,.055); border:1px solid rgba(255,255,255,.14);
  border-radius:28px; padding:28px; box-shadow:var(--shadow); transform:rotate(1.5deg);
}
.hero-card-top { display:flex; justify-content:space-between; color:#8e9b95; font-size:11px; font-weight:800; letter-spacing:.13em; }
.live-dot { color:var(--lime); }
.bat-visual { height:240px; position:relative; display:flex; align-items:center; justify-content:center; transform:rotate(-18deg); }
.bat-barrel { width:260px; height:42px; border-radius:28px 8px 8px 28px; background:linear-gradient(180deg,#e7ebe8,#7b8882); box-shadow:inset 0 1px rgba(255,255,255,.7); }
.bat-handle { width:105px; height:18px; background:linear-gradient(180deg,#dce1de,#66736d); margin-left:-4px; border-radius:4px; }
.bat-knob { width:24px; height:34px; border-radius:6px 9px 9px 6px; background:#98a39e; margin-left:-3px; }
.fit-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.fit-grid div { background:rgba(255,255,255,.055); padding:14px; border-radius:12px; }
.fit-grid span { color:#8d9994; font-size:11px; display:block; }
.fit-grid strong { display:block; margin-top:3px; font-size:13px; }
.ticker { background:var(--lime); overflow:hidden; white-space:nowrap; border-top:1px solid #a5d72a; border-bottom:1px solid #a5d72a; }
.ticker-track { display:inline-flex; align-items:center; gap:22px; min-width:max-content; padding:12px 0; animation:scroll 24s linear infinite; font-family:Oswald,sans-serif; font-weight:700; }
.ticker i { font-size:9px; }
@keyframes scroll { to { transform:translateX(-50%); } }
.section { padding:100px 0; }
.section-heading { display:flex; justify-content:space-between; align-items:end; gap:40px; margin-bottom:44px; }
.section-heading h2 { font-size:clamp(38px,5vw,64px); }
.section-heading > p { max-width:460px; color:#65716b; margin:0; }
.category-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.category-card {
  position:relative; min-height:330px; background:#fff; border:1px solid rgba(13,22,20,.09);
  border-radius:18px; padding:24px; display:flex; flex-direction:column;
  transition:.2s ease;
}
.category-card:hover { transform:translateY(-5px); box-shadow:0 18px 40px rgba(0,0,0,.09); }
.card-no { position:absolute; top:18px; right:18px; color:#a7afaa; font-family:Oswald,sans-serif; font-size:12px; }
.category-icon {
  width:76px; height:76px; border-radius:50%; background:var(--ink); color:var(--lime);
  display:grid; place-items:center; font-family:Oswald,sans-serif; font-size:18px; font-weight:700; margin-bottom:34px;
}
.category-card h3, .pick-card h3, .step h3, .guide-cta h3 { margin:0 0 10px; font-size:22px; letter-spacing:-.03em; }
.category-card p, .pick-card p { color:#65716b; font-size:14px; }
.text-link { margin-top:auto; font-weight:800; font-size:14px; text-decoration:none; }
.text-link:hover { text-decoration:underline; }
.guide-section { background:var(--ink); color:white; }
.guide-section .eyebrow { color:var(--lime); }
.guide-section .section-heading > p { color:#a9b5af; }
.steps { display:grid; gap:1px; border:1px solid var(--border); border-radius:18px; overflow:hidden; }
.step { display:grid; grid-template-columns:100px 1fr; gap:24px; padding:30px; background:var(--ink-2); }
.step-number { width:48px; height:48px; display:grid; place-items:center; border-radius:12px; background:var(--lime); color:var(--ink); font-family:Oswald,sans-serif; font-size:22px; font-weight:700; }
.step p { margin:0; color:#aab5b0; }
.guide-cta { margin-top:18px; background:linear-gradient(100deg,#1e2e29,#19241f); border:1px solid var(--border); border-radius:18px; padding:28px; display:flex; align-items:center; justify-content:space-between; gap:24px; }
.mini-label { color:var(--lime); font-size:11px; text-transform:uppercase; letter-spacing:.13em; font-weight:800; }
.guide-cta h3 { margin-top:5px; }
.pick-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.pick-card { min-height:290px; padding:28px; border-radius:18px; background:#fff; border:1px solid rgba(13,22,20,.09); display:flex; flex-direction:column; }
.pick-card.featured { background:var(--lime); }
.pick-tag { display:inline-flex; width:max-content; padding:7px 9px; border-radius:999px; background:#eef0e8; font-size:10px; font-weight:800; letter-spacing:.12em; margin-bottom:48px; }
.pick-card.featured .pick-tag { background:rgba(13,22,20,.1); }
.pick-card.featured p { color:#3d493f; }
.fit-quiz { padding-top:30px; }
.quiz-box { background:#dfe5d8; border-radius:26px; padding:44px; display:grid; grid-template-columns:.8fr 1.2fr; gap:50px; align-items:center; }
.quiz-box h2 { font-size:50px; }
.quiz-box p { color:#566158; }
.quiz-form { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.quiz-form label { display:grid; gap:7px; font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.quiz-form select { width:100%; padding:15px 14px; border:1px solid #bec8b9; background:#f8f9f5; border-radius:10px; font:inherit; }
.quiz-form button { grid-column:1 / -1; }
.quiz-result { grid-column:1 / -1; min-height:24px; font-size:14px; font-weight:700; }
.quiz-result a { color:inherit; }
.faq-shell { max-width:900px; }
.faq-list { border-top:1px solid #cbd0c6; }
details { border-bottom:1px solid #cbd0c6; padding:18px 0; }
summary { cursor:pointer; list-style:none; font-weight:800; font-size:18px; display:flex; justify-content:space-between; }
summary::-webkit-details-marker { display:none; }
summary::after { content:"+"; font-size:24px; }
details[open] summary::after { content:"−"; }
details p { color:#65716b; max-width:760px; }
.final-cta { background:var(--lime); padding:54px 0; }
.final-cta .eyebrow { color:#405119; }
.final-cta-inner { display:flex; justify-content:space-between; gap:30px; align-items:center; }
.final-cta h2 { font-size:clamp(38px,5vw,64px); }
.site-footer { background:#08100e; color:#b9c4bf; padding:64px 0 28px; }
.footer-grid { display:grid; grid-template-columns:1.4fr .7fr .7fr 1.2fr; gap:42px; }
.footer-brand { margin-bottom:14px; }
.site-footer h4 { color:white; font-size:13px; margin:0 0 14px; }
.site-footer a:not(.brand) { display:block; color:#b9c4bf; text-decoration:none; font-size:13px; margin:8px 0; }
.site-footer p { font-size:13px; margin:0; }
.copyright { border-top:1px solid rgba(255,255,255,.1); margin-top:50px; padding-top:22px; display:flex; justify-content:space-between; gap:20px; font-size:11px; color:#71817a; }

@media (max-width: 900px) {
  .menu-button { display:block; }
  .nav-links { display:none; position:absolute; top:76px; left:20px; right:20px; padding:20px; border-radius:14px; background:#13201d; flex-direction:column; align-items:stretch; box-shadow:var(--shadow); }
  .nav-links.open { display:flex; }
  .hero-grid { grid-template-columns:1fr; gap:40px; min-height:auto; }
  .hero-card { max-width:650px; }
  .category-grid { grid-template-columns:1fr 1fr; }
  .pick-grid { grid-template-columns:1fr; }
  .quiz-box { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 620px) {
  .shell { width:min(100% - 26px, 1160px); }
  .hero-grid { padding:64px 0; }
  .hero h1 { font-size:54px; }
  .trust-row { gap:16px; flex-wrap:wrap; }
  .category-grid { grid-template-columns:1fr; }
  .section { padding:72px 0; }
  .section-heading { display:block; }
  .section-heading > p { margin-top:18px; }
  .step { grid-template-columns:60px 1fr; padding:22px 18px; }
  .guide-cta, .final-cta-inner { align-items:flex-start; flex-direction:column; }
  .quiz-box { padding:28px 20px; border-radius:18px; }
  .quiz-box h2 { font-size:40px; }
  .quiz-form { grid-template-columns:1fr; }
  .quiz-form button, .quiz-result { grid-column:auto; }
  .footer-grid { grid-template-columns:1fr; }
  .copyright { flex-direction:column; }
}


.creative-section {
  background: #ece9dd;
  border-top: 1px solid rgba(13,22,20,.08);
  border-bottom: 1px solid rgba(13,22,20,.08);
}
.creative-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.creative-card {
  min-height: 180px;
  background: #fff;
  border: 1px solid rgba(13,22,20,.08);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.creative-slot {
  width: 100%;
  display: grid;
  place-items: center;
}
.creative-slot img,
.creative-slot iframe,
.creative-slot a,
.creative-slot div {
  max-width: 100%;
}
.creative-slot img {
  height: auto !important;
}
.creative-note {
  margin: 18px 0 0;
  color: #65716b;
  font-size: 12px;
}
@media (max-width: 760px) {
  .creative-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------
   Mobile layout hardening
   Prevent wide grid/flex children from forcing horizontal scroll.
   --------------------------------------------------------- */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

.hero-grid,
.hero-copy,
.hero-card,
.fit-grid,
.fit-grid > div,
.section-heading > *,
.quiz-box > *,
.footer-grid > * {
  min-width: 0;
}

.hero-card {
  width: 100%;
  max-width: 100%;
}

.bat-visual {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.fit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fit-grid strong,
.fit-grid span {
  overflow-wrap: anywhere;
}

@media (max-width: 620px) {
  .hero-grid {
    width: 100%;
    padding-left: 13px;
    padding-right: 13px;
  }

  .hero-card {
    transform: none;
    padding: 20px;
    border-radius: 20px;
    overflow: hidden;
  }

  .hero-card-top {
    gap: 12px;
  }

  .bat-visual {
    height: 190px;
    transform: rotate(-18deg) scale(.78);
    transform-origin: center;
  }

  .fit-grid div {
    padding: 12px;
  }

  .fit-grid strong {
    font-size: 12px;
    line-height: 1.35;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 48px;
  }

  .hero-card {
    padding: 18px;
  }

  .bat-visual {
    height: 175px;
    transform: rotate(-18deg) scale(.72);
  }

  .fit-grid {
    gap: 10px;
  }

  .fit-grid div {
    padding: 11px;
  }
}


/* Meet the people behind BatVault */
.about-section {
  background: #fff;
  border-top: 1px solid rgba(13,22,20,.08);
  border-bottom: 1px solid rgba(13,22,20,.08);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 56px;
  align-items: center;
}
.about-photo-wrap {
  position: relative;
  min-width: 0;
}
.about-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(13,22,20,.14);
}
.about-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  max-width: calc(100% - 40px);
  background: var(--lime);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.about-copy { min-width: 0; }
.about-copy h2 {
  font-family: Oswald, Impact, sans-serif;
  text-transform: uppercase;
  line-height: .98;
  letter-spacing: -.025em;
  font-size: clamp(42px, 5vw, 68px);
  margin: 0 0 24px;
}
.about-copy p {
  color: #65716b;
  font-size: 16px;
  margin: 0 0 16px;
}
.about-copy .text-link {
  display: inline-block;
  margin-top: 10px;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .about-photo-wrap { max-width: 720px; }
}

@media (max-width: 620px) {
  .about-photo {
    border-radius: 20px;
    aspect-ratio: 4 / 3;
  }
  .about-badge {
    position: static;
    display: inline-block;
    max-width: 100%;
    margin-top: 12px;
    border-radius: 10px;
    line-height: 1.35;
  }
  .about-copy h2 { font-size: 44px; }
}
