:root{
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --muted2: #64748b;
  --border: rgba(15,23,42,0.10);
  --border2: rgba(15,23,42,0.03);
  --tint: rgba(15,23,42,0.035);

  --brand: #111827;
  --primary: #073c55;
  --primaryText: #ffffff;

  --radius: 18px;
  --radius2: 14px;
  --container: 1160px;

  --shadow: 0 10px 24px rgba(15,23,42,0.08);
  --textHover: #444;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

html{
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
}

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; color: #1099d8; }
a:hover{ color: #6bcefc; }
code{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace; }

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

.small-disclaimer {
    padding-top: 22px;
    font-size: 12px;
}

/* Header */
header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 22px 0;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:18px;
}
.brand img{
  width: 220px;
  height:auto;
}
nav ul{
  list-style:none;
  display:flex;
  gap:18px;
  padding:0;
  margin:0;
}
nav a{
  font-size:14px;
  color:var(--muted);
  padding:10px 10px;
  border-radius:12px;
}
nav a:hover{
  background: var(--tint);
  color: var(--text);
}
.nav-cta{
  display:flex;
  align-items:center;
  gap:10px;
}
.hamburger{
  display:none;
  border:1px solid var(--border2);
  background:#fff;
  padding:10px 12px;
  border-radius:12px;
  cursor:pointer;
  font-size:18px;
  line-height:1;
}

.mobile{
  display:none;
  padding:10px 0 16px 0;
}
.mobile a{
  display:block;
  padding:12px 12px;
  border-radius:12px;
  color:var(--muted);
}
.mobile a:hover{ background: var(--tint); color: var(--text); }
.mobile.open{ display:block; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:11px 14px;
  border-radius:999px;
  color:var(--text);
  font-weight:600;
  font-size:14px;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-1px); border-color: var(--border); color: var(--textHover); }
.btn.primary{
  color: rgba(0,0,0,0.7);
  border: none;
  outline: none;
  background: linear-gradient(90deg, rgba(254, 170, 38, 1) 0%, rgba(254, 225, 38, 1) 100%);
}
.btn.primary:hover{ transform: translateY(-1px); }
.btn.small{ padding:10px 12px; font-size:13px; }

/* Section rhythm */
section{ padding: 25px 0; }
.policy-page section { padding: 30px; }
@media (max-width: 760px){ section{ padding: 35px 0; } }

.section-title{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom: 26px;
  text-align: center;
}
.section-title > div{
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}
.section-title h2{
  margin:0;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing:-0.02em;
}
.section-title p{
  margin:8px 0 0 0;
  color: var(--muted);
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

/* Hero */
.home .hero { padding: 20px 0; }
.hero{ padding: 50px 0; }

.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero h1{
  margin:0;
  font-size: clamp(32px, 4.6vw, 32px);
  line-height:1.3;
  letter-spacing:-0.03em;
  padding-top: 10px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top: 26px;
}

.hero-actions .btn {
    margin: 0 3px;
}

.hero-actions .btn:first-child {
    margin-left: 0;
}

.hero-actions .btn:last-child {
    margin-right: 0;
}

.hero-proof{ margin-top: 14px; }

#hero-descrip{
  font-size: 14px;
  padding: 15px 0 0 0;
  color: rgba(0, 0, 0, 0.5);
  font-weight: normal;
}

.stripe-badge{ font-size: 12px; color: var(--muted2); }

/* Quick facts */
.hero-card{
  border:1px solid var(--border2);
  border-radius: var(--radius);
  background:#fff;
  padding:16px;
}
.qf-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-bottom:12px;
  border-bottom:1px solid var(--border2);
  margin-bottom:12px;
}
.pill{
  font-size:12px;
  font-weight:700;
  padding:6px 10px;
  border-radius:999px;
  background: var(--tint);
  border:1px solid var(--border2);
  color: var(--text);
}
.qf-body{ display:grid; gap:10px; }
.stat{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
  color: var(--muted);
  font-size:14px;
}
.stat b{ color: var(--text); font-weight:700; }

#homeKicker{ margin: 20px 0; }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pack-card{
  border:1px solid var(--border2);
  border-radius: var(--radius);
  background:#fff;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition: transform .18s ease, border-color .18s ease;
}
.pack-card:hover{
  transform: translateY(-3px);
  border-color: rgba(15,23,42,0.14);
}

.pack-card .btn, .hero .btn {
    font-size: 15px;
}

.thumb{
  background: var(--tint);
  border-bottom:1px solid var(--border2);
}
.thumb img{
  width:100%;
  height:auto;
}

.card-body{
  padding: 16px 16px 18px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.card-body h3{
  margin:0;
  font-size:16px;
  letter-spacing:-0.01em;
}
.desc{
  margin:0;
  color: var(--muted);
  font-size:14px;
}
.tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.tag{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border2);
  background:#fff;
  color: var(--muted);
}
.card-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 4px;
}

/* Active nav */
header nav a.current{
  color: #1198d7;
  font-weight: 800;
  background: var(--tint);
}
header nav.mobile a.current::after{ display:none; }

/* =========================================================
   CHECKOUT MICRO — padded container, no conflicts
   ========================================================= */
.checkout-micro{ width: 100%; padding: 0; }
.checkout-micro-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 10px 22px;
  border: 1px solid var(--border2);
  border-radius: 16px;
  background: #fff;
}
.checkout-micro-left{ display:flex; align-items:center; gap: 12px; }
.checkout-dot{ width:10px; height:10px; border-radius:999px; background: var(--primary); }
.checkout-sub{ display:block; color: var(--muted); font-size:13px; margin-top:2px; }
.checkout-micro-right{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
}
.checkout-chip{
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--border2);
  background:#fff;
  color: var(--muted);
  white-space:nowrap;
}

/* Compare */
#compare{ padding-top: 0px; }
.compare-wrap{
  overflow-x:auto;
  -webkit-overflow-scrolling: touch;
  border:1px solid var(--border2);
  border-radius: var(--radius);
  background:#fff;
}
.compare-wrap:focus{
  outline: 2px solid rgba(15,23,42,0.12);
  outline-offset: 2px;
}

/* Bands */
.band{ background: var(--tint); }
.band-inner{
  border-radius: var(--radius);
  border:1px solid rgba(15,23,42,0.06);
  background: rgba(255,255,255,0.75);
  padding: 26px;
}

/* Feature grid */
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.feature{
  border: 1px solid rgba(15,23,42,0.06);
  background: rgba(255,255,255,0.85);
  border-radius: var(--radius2);
  padding: 16px;
}
.feature h3{
  margin:0 0 6px 0;
  font-size:15px;
  letter-spacing:-0.01em;
}
.feature p{
  margin:0;
  color: var(--muted);
  font-size:14px;
}

/* FAQ */
.faq{ display:grid; gap:10px; }
details{
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.88);
  border-radius: var(--radius2);
  padding: 12px 14px;
}
summary{
  cursor:pointer;
  font-weight:700;
  color: var(--text);
  list-style:none;
}
summary::-webkit-details-marker{ display:none; }
details p{
  margin:10px 0 0 0;
  color: var(--muted);
  font-size:14px;
}

/* Final CTA */
.final-cta{ padding: 60px; }

.final-cta-card{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 56px;
  border-radius: 20px;
  border: 1px solid rgba(15,23,42,0.10);

  background: linear-gradient(
    135deg,
    var(--primary, #2563eb) 0%,
    #1d4ed8 55%,
    #0b2a6f 100%
  );

  color: #fff;
  box-shadow: 0 24px 50px rgba(0,0,0,.14);
  text-align: left;
}

.final-cta-card .hero-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.18);
  margin-bottom:12px;
}

.final-cta-card .pill{
  background: rgba(255,255,255,.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}

.final-cta-card .lead{
  font-size: 13px;
  opacity: .92;
  max-width: 720px;
  color:#fff;
  padding: 10px 0;
}

.final-cta-card .btn{
  background: rgba(255,255,255,.16);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}
.final-cta-card .btn:hover{ background: rgba(255,255,255,.22); }
.final-cta-card .btn.primary{
  background: #ffd84d;
  color: #0b1b3a;
  border: none;
}
.final-cta-card .btn.primary:hover{ filter: brightness(0.98); }

/* Footer */
footer{ padding: 34px 0; background: #fff; }
.foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
  color: var(--muted);
}
.foot small{ color: var(--muted); }

/* =========================================================
   HOME HERO THUMBNAIL — EXACT 328px + CENTERED IMAGE (NO CROP)
   ========================================================= */
body.home .hero .hero-visual{
  width: 100% !important;
  max-width: 760px !important;
  margin-left: auto !important;
}

body.home .hero .hero-frame{
  box-sizing: border-box !important;
  display: grid !important;
  grid-template-rows: 44px 1fr !important;

  width: 100% !important;
  height: 328px !important;

  padding: 0 !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  border: 1px solid var(--border2) !important;
}

body.home .hero .hero-frame img{
  width:100% !important;
  height:100% !important;
  display:block !important;
  object-fit: contain !important;          /* shows whole image */
  object-position: center center !important;
}

/* =========================================================
   PACK PAGES: HERO CARD (Pack details) — formatted + clean
   ========================================================= */
body .hero-card[aria-label="Pack quick facts"]{
  padding: 0;
  overflow: hidden;
}
body .hero-card[aria-label="Pack quick facts"] .hero-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border2);
  background: rgba(15,23,42,0.02);
}
body .hero-card[aria-label="Pack quick facts"] .hero-card-body{
  padding: 14px 16px;
  display:grid;
  gap:10px;
}

/* =========================================================
   PACK PAGES: PREVIEW CARDS — EXACTLY what you asked
   - card radius: all 4 corners
   - image: flush to top
   - image radius: top-left/top-right only
   - no cropping (contain) with consistent height
   ========================================================= */
#previews .card{
  border: 1px solid var(--border2);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
}

/* Remove forced height */
#previews .card .thumb{
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
}

#previews .card .thumb img{
  display: block;
  width: 100%;
  height: auto;                 /* 🔥 KEY FIX */
  object-fit: contain;          /* keeps full template visible */
  border-radius: 18px 18px 0 0; /* rounded top only */
}

#previews .card .card-body{
  padding: 16px 16px 18px;
}
/* HARD RESET: stop the thumb area from clipping the image */
#previews .card{ overflow: hidden; } /* keep for rounded corners */

#previews .card .thumb{
  background-size: contain !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;

  height: auto !important;
  aspect-ratio: auto !important;
  overflow: visible !important;
}

/* Make sure the image is not being constrained */
#previews .card .thumb img{
  width: 100% !important;
  height: auto !important;        /* IMPORTANT */
  max-height: none !important;
  object-fit: contain !important; /* fine either way */
  object-position: center top !important;
  display: block !important;
  border-radius: 18px 18px 0 0 !important;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
}

@media (max-width: 860px){
  nav{ display:none; }
  .hamburger{ display:inline-flex; }
}
@media (min-width: 859px){
  nav.mobile, nav.mobile.open { display:none; }
}

@media (max-width: 960px){
  .hero{ text-align: center; }
  .hero-actions{ justify-content: center; align-items: center; }
}

@media (max-width: 900px){
  #included .grid-2{
    grid-template-columns: 1fr;
    gap: 12px;
  }
  #included .grid-2 .feature{
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  #how .grid-2{
    grid-template-columns: 1fr !important;
    gap: 18px;
  }
  #how .feature{
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
}

@media (max-width: 768px){
  header{ padding: 10px 0; }
  .hero-actions{ padding: 9px 0 20px 0; }

  .checkout-micro-inner{
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding: 16px 16px;
  }
  .checkout-micro-right{ justify-content:flex-start; }

  .brand img{ width: 180px; }
  body{ font-size: 15px; }
  p{ font-size: 0.95rem; line-height: 1.6; }

  /* Final CTA mobile widen */
  #final-cta .container{
    max-width: none !important;
    width: 100% !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  #final-cta .final-cta-card{
    width: 100% !important;
    margin: 0 auto !important;
    padding: 26px 22px !important;
  }
}

/* ===========================================
   PACK HERO: "Pack details" card spacing fix
   =========================================== */

.hero-card[aria-label="Pack quick facts"]{
  padding: 0 !important;                 /* keep outer shell tight */
  overflow: hidden;
  border-radius: var(--radius);
  background:#fff;
}

/* Header row padding */
.hero-card[aria-label="Pack quick facts"] .hero-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;

  padding: 16px 18px !important;         /* ✅ more breathing room */
  border-bottom: 1px solid var(--border2);
  background: rgba(15,23,42,0.02);
}

/* Body padding */
.hero-card[aria-label="Pack quick facts"] .hero-card-body{
  padding: 16px 18px 18px !important;    /* ✅ body padding restored */
  display:grid;
  gap:12px;
}

/* Make stats line up nicely */
.hero-card[aria-label="Pack quick facts"] .hero-card-body .stat{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  font-size:14px;
}

.hero-card[aria-label="Pack quick facts"] .hero-card-body .stat span{
  color: var(--muted);
}

.hero-card[aria-label="Pack quick facts"] .hero-card-body .stat b{
  color: var(--text);
  font-weight: 800;
}
/* ======================================
   PACK PAGE BREADCRUMBS TWEAK
   ====================================== */

.crumbs{
  margin-top: 18px;        /* space above breadcrumbs */
  padding-top: 6px;        /* subtle breathing room */
  
  font-size: 13px;         /* smaller text */
  color: var(--muted);
  line-height: 1.4;
}

.crumbs a{
  color: var(--muted);
  font-weight: 500;
}

.crumbs a:hover{
  color: var(--text);
}

.crumbs span{
  color: var(--text);
  font-weight: 600;
}

.blog-wrap {
    padding-top: 25px;
}

#teaser {
 padding-top: 40px !important;
}

@media (max-width: 480px) {
    #teaser {
        padding-top: 0 !important;
    }
}

#teaser .card-actions {
  margin: 0 auto !important;
}

#teaser .card-body {
    text-align: center;
}

#teaser .btn {
    margin: 0 1px !important;
}

.bluetext {
    color: #1198d7;
}