/* ============================================================
   Raw Sports Vault — premium dark-gold design system
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --midnight:    #080e1a;
  --navy:        #0d1b2e;
  --navy-light:  #152540;
  --navy-2:      #1c3155;
  --gold:        #f0b429;
  --gold-dim:    #c99a20;
  --gold-soft:   rgba(240, 180, 41, .12);
  --emerald:     #10b981;
  --emerald-dim: #059669;
  --white:       #ffffff;
  --gray-100:    #f0f4f8;
  --gray-200:    #dde4ec;
  --gray-300:    #c8d0db;
  --gray-400:    #a3aebd;
  --gray-500:    #7a8899;
  --gray-700:    #475568;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .35);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, .35);
  --shadow-lg: 0 18px 50px rgba(0, 0, 0, .55);
  --shadow-gold: 0 8px 28px rgba(240, 180, 41, .25);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;

  --max-width: 1200px;

  --ease: cubic-bezier(.2, .8, .25, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--midnight);
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-100);
  background: var(--midnight);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv11", "ss01";
}

a { color: var(--gold); text-decoration: none; transition: color .15s var(--ease); }
a:hover { color: var(--gold-dim); text-decoration: underline; }

img, svg { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  color: var(--white);
  margin: 0 0 .5em;
  line-height: 1.2;
  letter-spacing: -.018em;
  font-weight: 800;
}
h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); letter-spacing: -.025em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); letter-spacing: -.022em; font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -.012em; }
h4 { font-size: 1rem; font-weight: 600; }

p { margin: 0 0 1em; color: var(--gray-200); }

ul { margin: 0 0 1em; padding-left: 1.25em; }
li { margin-bottom: .4em; color: var(--gray-200); }

code {
  font-family: "SF Mono", "Monaco", "Cascadia Mono", Menlo, Consolas, monospace;
  background: var(--navy-light);
  color: var(--gold);
  padding: .12em .4em;
  border-radius: 4px;
  font-size: .9em;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.muted { color: var(--gray-400); }
.small { font-size: .875rem; }

.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

/* Hero eyebrow — pill-shaped badge, larger and more prominent */
.hero .eyebrow {
  font-size: .92rem;
  letter-spacing: .08em;
  padding: 9px 20px;
  margin-bottom: 26px;
  background: rgba(240, 180, 41, .12);
  border: 1px solid rgba(240, 180, 41, .42);
  border-radius: 100px;
  box-shadow: 0 4px 18px rgba(240, 180, 41, .15);
}

/* Hero subtitle — secondary headline directly under h1 */
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 600;
  max-width: 740px;
  margin: -8px auto 30px;
  line-height: 1.55;
  letter-spacing: -.005em;
}

/* Slim baseball-context info bar (used on packages.html) */
.info-banner {
  background: var(--navy-light);
  border-bottom: 1px solid rgba(240, 180, 41, .28);
  color: var(--gold);
  padding: 14px 0;
  text-align: center;
  font-size: .94rem;
  font-weight: 600;
  letter-spacing: .005em;
}
.info-banner .container { padding: 0 24px; }

/* Footer "Currently featuring" line */
.footer-now {
  margin: 10px 0 0;
  color: var(--gold);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.gold-divider {
  display: block;
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 24px;
  border-radius: 2px;
}

/* ---------- NAV (frosted glass) ---------- */
.site-nav {
  position: sticky;
  top: 0;
  background: rgba(13, 27, 46, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  z-index: 100;
  border-bottom: 1px solid rgba(240, 180, 41, .12);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -.012em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand:hover { color: var(--white); text-decoration: none; }
.brand-mark {
  height: 32px;
  min-width: 44px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--midnight);
  border-radius: 7px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .04em;
  box-shadow: 0 2px 10px rgba(240, 180, 41, .35);
}

/* SVG logo in nav (.brand) and footer (.footer-brand) */
.brand img {
  display: block;
  height: 48px;
  width: auto;
  /* slight bottom-shift so optical baseline aligns with the nav text links */
  margin: 0;
}
.footer-brand {
  display: inline-block;
  margin-bottom: 4px;
}
.footer-brand img {
  display: block;
  height: 92px;
  width: auto;
}
.footer-brand:hover { text-decoration: none; opacity: .92; }
@media (max-width: 820px) {
  .brand img { height: 40px; }
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: var(--gray-200);
  font-weight: 500;
  font-size: .95rem;
  transition: color .15s var(--ease);
}
.nav-links a:hover { color: var(--gold); text-decoration: none; }
.nav-links a.active { color: var(--gold); }
.nav-links a.cta {
  background: var(--gold);
  color: var(--midnight);
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  letter-spacing: .01em;
}
.nav-links a.cta:hover {
  background: var(--gold-dim);
  color: var(--midnight);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(13, 27, 46, 0.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 16px;
    border-top: 1px solid var(--navy-light);
    border-bottom: 1px solid rgba(240, 180, 41, .12);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid var(--navy-light);
    width: 100%;
  }
  .nav-links a.cta {
    margin-top: 12px;
    text-align: center;
    border-bottom: 0;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 20% 25%, rgba(240, 180, 41, .12) 0, transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(16, 185, 129, .08) 0, transparent 50%),
    linear-gradient(180deg, var(--midnight) 0%, var(--navy) 100%);
  padding: clamp(80px, 11vw, 140px) 0 clamp(96px, 13vw, 160px);
  text-align: center;
  overflow: hidden;
}
.hero::before {
  /* subtle dot-grid texture */
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .045) 1px, transparent 1.2px);
  background-size: 26px 26px;
  pointer-events: none;
  opacity: .9;
  mask-image: radial-gradient(ellipse at center, #000 50%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 50%, transparent 80%);
}
.hero > * { position: relative; }
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 .accent { color: var(--gold); }
.hero p.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--gray-300);
  max-width: 760px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.005em;
  border-radius: var(--radius-sm);
  border: 0;
  cursor: pointer;
  transition: transform .18s var(--ease),
              background .18s var(--ease),
              box-shadow .18s var(--ease),
              color .18s var(--ease);
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: var(--midnight);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-dim);
  color: var(--midnight);
  box-shadow: 0 12px 36px rgba(240, 180, 41, .42);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .25);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-soft);
}

.btn-emerald {
  background: var(--emerald);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(16, 185, 129, .3);
}
.btn-emerald:hover {
  background: var(--emerald-dim);
  color: var(--white);
  box-shadow: 0 12px 36px rgba(16, 185, 129, .42);
}

.btn-buy {
  background: var(--gold);
  color: var(--midnight);
  padding: 13px 24px;
  box-shadow: var(--shadow-gold);
}
.btn-buy:hover {
  background: var(--gold-dim);
  color: var(--midnight);
}

/* ---------- SECTIONS ---------- */
section {
  padding: clamp(64px, 9vw, 110px) 0;
  position: relative;
}
section h2 {
  text-align: center;
  margin-bottom: 12px;
  color: var(--white);
}
section .section-lead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  color: var(--gray-300);
  font-size: 1.1rem;
}

.section-alt { background: var(--navy); }
.section-deep { background: var(--midnight); }

/* ---------- BUILT FOR (3 tiles) ---------- */
.built-for {
  background: var(--navy);
  padding: clamp(56px, 7vw, 88px) 0;
  border-top: 1px solid rgba(240, 180, 41, .08);
  border-bottom: 1px solid rgba(240, 180, 41, .08);
}
.built-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 760px) {
  .built-grid { grid-template-columns: 1fr; }
}
.built-tile {
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: left;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.built-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 180, 41, .35);
  box-shadow: var(--shadow-md);
}
.built-tile .built-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.built-tile {
  min-height: 220px;
}
.built-tile h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}
.built-tile p { color: var(--gray-300); margin: 0; font-size: .98rem; }

/* ---------- VALUE PROPS ---------- */
.props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 32px;
}
.prop {
  background: var(--navy-light);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, .04);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.prop:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 180, 41, .35);
  box-shadow: var(--shadow-md);
}
.prop-icon {
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 1.2rem;
}
.prop h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--white); }
.prop p { font-size: .94rem; color: var(--gray-300); margin: 0; }

/* ---------- PACKAGE GRID ---------- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.pkg-card {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.pkg-card::before {
  /* gold top accent on hover */
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.pkg-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 180, 41, .35);
  box-shadow: var(--shadow-lg);
}
.pkg-card:hover::before { opacity: 1; }

.pkg-card.featured {
  border: 1.5px solid var(--gold);
  background: linear-gradient(180deg, var(--navy) 0%, #0e2342 100%);
  box-shadow: 0 0 0 1px rgba(240, 180, 41, .25), var(--shadow-md);
}
.pkg-card.featured::after {
  content: "BEST VALUE";
  position: absolute;
  top: 18px; right: -38px;
  background: var(--gold);
  color: var(--midnight);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  padding: 5px 42px;
  transform: rotate(35deg);
  box-shadow: 0 4px 14px rgba(240, 180, 41, .45);
}
.pkg-num {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--gray-400);
  margin-bottom: 10px;
}
.pkg-card.featured .pkg-num { color: var(--gold); }
.pkg-name { font-size: 1.4rem; margin-bottom: 6px; color: var(--white); font-weight: 700; }
.pkg-tagline {
  font-style: italic;
  color: var(--gray-400);
  font-size: .95rem;
  min-height: 2.6em;
  margin-bottom: 18px;
}
.pkg-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.pkg-price span {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-400);
  margin-left: 4px;
  letter-spacing: 0;
}
.pkg-formats { display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 0 18px; }
.pkg-audience {
  font-size: .9rem;
  color: var(--gray-300);
  margin-bottom: 22px;
  flex-grow: 1;
}
.pkg-card .btn-buy { width: 100%; margin-top: auto; }
.pkg-card .pkg-link {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: .85rem;
  color: var(--gray-400);
}
.pkg-card .pkg-link:hover { color: var(--gold); }

/* ---------- FORMAT BADGES ---------- */
.fmt {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 5px 11px;
  border-radius: 100px;
  text-transform: uppercase;
  color: var(--white);
}
.fmt-csv     { background: #3b82f6; }
.fmt-excel   { background: #22c55e; }
.fmt-parquet { background: #8b5cf6; }
.fmt-json    { background: #f97316; }
.fmt-sqlite  { background: #ec4899; }

/* ---------- COMPARISON TABLE ---------- */
.cmp-wrap { overflow-x: auto; margin-top: 32px; }
table.cmp {
  width: 100%;
  border-collapse: collapse;
  background: var(--navy);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--navy-light);
  min-width: 720px;
  color: var(--gray-200);
}
.cmp th, .cmp td {
  padding: 16px 18px;
  text-align: center;
  border-bottom: 1px solid var(--navy-light);
}
.cmp th {
  background: var(--midnight);
  color: var(--white);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .01em;
}
.cmp th:first-child, .cmp td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--gray-200);
}
.cmp tr:last-child td { border-bottom: 0; }
.cmp tr:hover td { background: var(--navy-light); }
.cmp .col-us { background: rgba(240, 180, 41, .08); font-weight: 600; }
.cmp th.col-us { background: var(--gold); color: var(--midnight); }
.yes { color: var(--gold); font-weight: 700; }
.no  { color: var(--gray-500); }

/* ---------- FREE SAMPLE STRIP (full width emerald) ---------- */
.free-strip {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dim) 100%);
  padding: clamp(56px, 7vw, 80px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.free-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .08) 1px, transparent 1.2px);
  background-size: 26px 26px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 60%, transparent 100%);
}
.free-strip > * { position: relative; }
.free-strip .eyebrow { color: rgba(255, 255, 255, .9); }
.free-strip h2 { color: var(--white); margin-bottom: 14px; }
.free-strip p {
  color: rgba(255, 255, 255, .9);
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: 1.08rem;
}
.free-strip .btn-primary {
  background: var(--white);
  color: var(--emerald-dim);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
}
.free-strip .btn-primary:hover { background: var(--gray-100); color: var(--emerald-dim); }
.free-strip .small-note {
  margin: 18px 0 0;
  font-size: .85rem;
  color: rgba(255, 255, 255, .85);
  text-align: center;
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- FOOTER ---------- */
footer.site-footer {
  background: var(--midnight);
  color: var(--gray-400);
  padding: 64px 0 36px;
  font-size: .92rem;
  border-top: 1px solid var(--navy-light);
}
footer.site-footer h4 {
  color: var(--white);
  font-size: .85rem;
  margin-bottom: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}
footer.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}
@media (max-width: 720px) { footer.site-footer .footer-grid { grid-template-columns: 1fr; } }
footer.site-footer ul { list-style: none; padding: 0; }
footer.site-footer li { margin-bottom: 9px; color: var(--gray-400); }
footer.site-footer a { color: var(--gray-300); }
footer.site-footer a:hover { color: var(--gold); text-decoration: none; }
footer.site-footer .disclaimer {
  border-top: 1px solid var(--navy-light);
  padding-top: 28px;
  font-size: .82rem;
  color: var(--gray-500);
  line-height: 1.7;
}
footer.site-footer .copyright {
  margin-top: 16px;
  color: var(--gray-500);
  font-size: .82rem;
}

/* ---------- PAGE HEADER (sub-pages) ---------- */
.page-header {
  position: relative;
  background:
    radial-gradient(circle at 20% 30%, rgba(240, 180, 41, .12) 0, transparent 45%),
    linear-gradient(180deg, var(--midnight) 0%, var(--navy) 100%);
  color: var(--white);
  padding: clamp(64px, 9vw, 96px) 0 clamp(56px, 8vw, 80px);
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--navy-light);
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .04) 1px, transparent 1.2px);
  background-size: 26px 26px;
  pointer-events: none;
}
.page-header > * { position: relative; }
.page-header h1 { color: var(--white); margin-bottom: 14px; }
.page-header p {
  color: var(--gray-300);
  font-size: 1.1rem;
  max-width: 660px;
  margin: 0 auto;
}

/* ---------- PACKAGE DETAIL (packages.html) ---------- */
.pkg-detail {
  background: var(--navy);
  border: 1px solid var(--navy-light);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 48px);
  margin-bottom: 36px;
  scroll-margin-top: 96px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.pkg-detail:hover {
  border-color: rgba(240, 180, 41, .25);
  box-shadow: var(--shadow-md);
}
.pkg-detail.featured {
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 0 1px rgba(240, 180, 41, .15);
}
.pkg-detail-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  border-bottom: 1px solid var(--navy-light);
  padding-bottom: 24px;
  margin-bottom: 28px;
}
.pkg-detail-head h2 { text-align: left; margin-bottom: 8px; color: var(--white); }
.pkg-detail-head .pkg-tagline { margin-bottom: 14px; font-size: 1.05rem; color: var(--gray-300); font-style: italic; }
.pkg-detail-price { flex-shrink: 0; text-align: right; }
.pkg-detail-price .pkg-price { font-size: 2.75rem; }
.pkg-detail-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 44px;
}
@media (max-width: 760px) {
  .pkg-detail-body { grid-template-columns: 1fr; gap: 28px; }
  .pkg-detail-price { text-align: left; }
}
.pkg-detail-body h3 { color: var(--gold); margin: 0 0 14px; font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; }
.pkg-detail-body ul { margin-bottom: 24px; padding-left: 1.2em; }
.pkg-detail-body li { color: var(--gray-200); margin-bottom: .5em; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--navy);
  border: 1px solid var(--navy-light);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 16px;
  transition: border-color .2s var(--ease);
}
.faq-item:hover { border-color: rgba(240, 180, 41, .25); }
.faq-item h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--white);
}
.faq-item p { margin: 0; color: var(--gray-200); }
.faq-item code { background: var(--navy-light); }
.faq-section-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 36px 0 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.faq-section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--navy-light), transparent);
}

/* ---------- ABOUT / CONTENT BLOCKS ---------- */
.content-block {
  max-width: 760px;
  margin: 0 auto;
  background: var(--navy);
  border: 1px solid var(--navy-light);
  border-radius: var(--radius-md);
  padding: clamp(28px, 4vw, 48px);
}
.content-block + .content-block { margin-top: 24px; }
.content-block h2 { text-align: left; margin-bottom: 16px; color: var(--white); }
.content-block h3 { margin-top: 24px; color: var(--gold); font-size: 1rem; text-transform: uppercase; letter-spacing: .04em; }
.content-block ul li { margin-bottom: 8px; color: var(--gray-200); }

.disclaimer-box {
  background: var(--navy-light);
  border-left: 4px solid var(--gold);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  color: var(--gray-200);
  margin: 16px 0;
  font-style: italic;
}

/* ---------- FREE SAMPLE PAGE ---------- */
.free-hero {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dim) 100%);
  color: var(--white);
  padding: clamp(72px, 9vw, 110px) 0 clamp(64px, 8vw, 96px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.free-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .08) 1px, transparent 1.2px);
  background-size: 26px 26px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 60%, transparent 100%);
}
.free-hero > * { position: relative; }
.free-hero .eyebrow { color: rgba(255, 255, 255, .9); }
.free-hero h1 { color: var(--white); margin-bottom: 18px; }
.free-hero p {
  color: rgba(255, 255, 255, .92);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 32px;
}
.free-hero .btn-primary {
  background: var(--white);
  color: var(--emerald-dim);
}
.free-hero .btn-primary:hover { background: var(--gray-100); color: var(--emerald-dim); }
.free-hero .file-size {
  font-size: .85rem;
  color: rgba(255, 255, 255, .85);
  margin-top: 12px;
}

.tease-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 760px) { .tease-grid { grid-template-columns: 1fr; } }
.tease-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--navy-light);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.tease-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tease-card.included { border-left: 4px solid var(--emerald); }
.tease-card.missing { border-left: 4px solid var(--gold); }
.tease-card h3 { margin-bottom: 16px; color: var(--white); }
.tease-card .upsell { margin-top: 22px; }

/* ---------- FOCUS-VISIBLE for keyboard a11y ---------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ============================================================
   MOBILE POLISH — narrow-viewport overrides
   ============================================================ */

/* Tablet/large phone: tighten info banner so it fits one line */
@media (max-width: 720px) {
  .info-banner { font-size: .82rem; padding: 12px 0; }
}

/* Mobile (≤760px): comparison table → stacked feature cards.
   Hides thead, turns each <tr> into a card with the feature name as
   gold title and the 4 column values laid out as a 2×2 grid below it.
   Each value's column header is rendered via a ::before pseudo-element
   that reads the data-label attribute on the <td>. */
@media (max-width: 760px) {
  .cmp-wrap { overflow-x: visible; margin-top: 24px; }
  table.cmp {
    display: block;
    min-width: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }
  .cmp thead { display: none; }
  .cmp tbody { display: block; }
  .cmp tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
    background: var(--navy);
    border: 1px solid var(--navy-light);
    border-radius: var(--radius-md);
    padding: 18px 18px 16px;
    margin-bottom: 12px;
  }
  .cmp tr:hover td,
  .cmp tr:hover { background: inherit; }
  .cmp td {
    display: block;
    padding: 0;
    text-align: left;
    border: 0;
    background: transparent;
    color: var(--gray-200);
    font-size: .92rem;
    font-weight: 500;
  }
  .cmp td:first-child {
    grid-column: 1 / -1;
    color: var(--gold);
    font-size: 1.05rem;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--navy-light);
    margin-bottom: 4px;
  }
  .cmp td:not(:first-child)::before {
    content: attr(data-label);
    display: block;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 3px;
  }
  .cmp td.col-us {
    background: rgba(240, 180, 41, .1);
    border-radius: 6px;
    padding: 8px 10px;
  }
  .cmp td.col-us::before { color: var(--gold); }
  .cmp td.col-us.yes { color: var(--gold); font-weight: 700; }
  .cmp td.no { color: var(--gray-400); }
}

/* Small phones: stack package detail head — price drops below title */
@media (max-width: 600px) {
  .pkg-detail-head {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .pkg-detail-price {
    text-align: left;
    flex-shrink: 1;
  }
  .pkg-detail-price .pkg-price { font-size: 2.2rem; }
  .pkg-detail-price .btn-buy { width: 100%; }
}

/* Small phones: free-sample hero CTA goes full width */
@media (max-width: 600px) {
  .free-hero .btn-primary,
  .free-strip .btn-primary {
    width: 100%;
    max-width: 360px;
  }
}

/* Very small phones: hero actions stack full-width;
   shrink nav logo so the toggle isn't cramped */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-actions .btn { width: 100%; }
  .brand img { height: 36px; }
}
