/* ================================================================
   BiteSizeLaunch v3 — Open Skies brand system
   Source: brand/kit/10-Design-Tokens/brand.css + BRAND_GUIDE.txt
   ================================================================ */

/* ---- Fonts ---- */
@font-face {
  font-family: 'Grandstander';
  src: url('../assets/fonts/grandstander-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../assets/fonts/dmsans-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../assets/fonts/dmsans-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---- Design tokens ---- */
:root {
  --bsl-cobalt:    #2458F3;
  --bsl-tangerine: #FF7A30;
  --bsl-ink:       #102344;
  --bsl-ivory:     #FFF7EB;
  --bsl-mist:      #D9E5EE;
  --bsl-paperblue: #A9C9DF;
  --bsl-sky:       #A9D8FF;
  --bsl-peach:     #F5D9C4;
  --bsl-slate:     #405773;
  --bsl-radius:    24px;
  --bsl-display:   'Grandstander', sans-serif;
  --bsl-body:      'DM Sans', system-ui, sans-serif;
}

/* ---- 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(--bsl-ivory);
  color: var(--bsl-ink);
  font-family: var(--bsl-body);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--bsl-cobalt); text-decoration: underline; }
a:hover { opacity: .85; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }

section { padding: 4rem 0; }
@media (min-width: 768px) { section { padding: 5.5rem 0; } }

/* ---- Typography ---- */
.display {
  font-family: var(--bsl-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.25rem, 6vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
.label-cap {
  font-family: var(--bsl-body);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bsl-slate);
}
.body-lg { font-size: 1.125rem; line-height: 1.6; }
.body-sm { font-size: .875rem; line-height: 1.55; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--bsl-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  padding: .75em 1.75em;
  border-radius: var(--bsl-radius);
  text-decoration: none;
  cursor: pointer;
  border: 2.5px solid transparent;
  transition: opacity .15s, transform .1s;
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }

.btn-primary {
  background: var(--bsl-cobalt);
  color: var(--bsl-ivory);
  border-color: var(--bsl-cobalt);
}
.btn-primary:hover { opacity: .88; color: var(--bsl-ivory); }

.btn-ghost {
  background: transparent;
  color: var(--bsl-ink);
  border-color: var(--bsl-ink);
}
.btn-ghost:hover { background: rgba(16,35,68,.07); }

.btn-tangerine {
  background: var(--bsl-tangerine);
  color: var(--bsl-ink);
  border-color: var(--bsl-tangerine);
}
.btn-tangerine:hover { opacity: .88; color: var(--bsl-ink); }

.btn-ivory {
  background: var(--bsl-ivory);
  color: var(--bsl-ink);
  border-color: var(--bsl-ivory);
}
.btn-ivory:hover { opacity: .88; color: var(--bsl-ink); }

.btn-ghost-ivory {
  background: transparent;
  color: var(--bsl-ivory);
  border-color: rgba(255,247,235,.5);
}
.btn-ghost-ivory:hover { background: rgba(255,247,235,.1); color: var(--bsl-ivory); }

/* Ghost button for hero dark background */
.btn-ghost-hero {
  background: transparent;
  color: var(--bsl-ivory);
  border-color: rgba(255,247,235,.55);
}
.btn-ghost-hero:hover { background: rgba(255,247,235,.12); color: var(--bsl-ivory); }

.btn-lg { font-size: 1.1rem; padding: .9em 2em; }
.btn-block { display: flex; width: 100%; }

/* ---- Badges / labels ---- */
.badge {
  display: inline-block;
  font-family: var(--bsl-body);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .28em .75em;
  border-radius: 100px;
  line-height: 1.4;
}
.badge-ink     { background: var(--bsl-ink);    color: var(--bsl-ivory); }
.badge-cobalt  { background: var(--bsl-cobalt); color: var(--bsl-ivory); }
.badge-mist    { background: var(--bsl-mist);   color: var(--bsl-ink); }
.badge-peach   { background: var(--bsl-peach);  color: var(--bsl-ink); }
.badge-tangerine { background: var(--bsl-tangerine); color: var(--bsl-ink); }
.badge-outline-ivory {
  background: transparent;
  border: 1.5px solid rgba(255,247,235,.5);
  color: var(--bsl-ivory);
}

/* ---- Preview pill ---- */
.preview-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--bsl-body);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .05em;
  background: transparent;
  color: var(--bsl-ivory);
  border: 1px solid rgba(255,247,235,.35);
  border-radius: 100px;
  padding: .3em .9em;
}
.preview-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--bsl-tangerine);
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   HEADER — transparent over hero; ivory on scroll
   ---------------------------------------------------------------- */
.site-header {
  background: transparent;
  border-bottom: 1px solid rgba(255,247,235,.08);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background .25s, border-color .25s, box-shadow .2s;
}
.site-header.is-scrolled {
  background: var(--bsl-ivory);
  border-bottom-color: rgba(16,35,68,.1);
  box-shadow: 0 2px 20px rgba(16,35,68,.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 68px;
}

/* Logo swap: ivory over dark hero, ink after scroll */
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-link img { height: 36px; width: auto; }
.site-header .logo-dark  { display: none; }
.site-header .logo-light { display: block; }
.site-header.is-scrolled .logo-light { display: none; }
.site-header.is-scrolled .logo-dark  { display: block; }

.header-nav {
  display: none;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 600px) {
  .header-nav { display: flex; }
}
.header-nav a.nav-link {
  font-weight: 600;
  font-size: .9rem;
  color: rgba(255,247,235,.9);
  text-decoration: none;
}
.site-header.is-scrolled .header-nav a.nav-link { color: var(--bsl-ink); }
.header-nav a.nav-link:hover { opacity: .8; }

/* Compact sticky CTA (hidden until scrolled) */
.header-cta-compact {
  display: none;
  font-size: .85rem;
  padding: .55em 1.25em;
}
.site-header.is-scrolled .header-cta-compact { display: inline-flex; }
.site-header.is-scrolled .header-nav .nav-cta { display: none; }

/* ----------------------------------------------------------------
   HERO — full-bleed photo / video / clouds / Ken Burns
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0;
}
@media (min-width: 768px) {
  .hero { min-height: 92vh; }
}

/* (a) Photo background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform-origin: center;
}

/* (a) Ken Burns — scale 1.0→1.06 over 30s, alternate */
@media (prefers-reduced-motion: no-preference) {
  .hero-bg-img {
    animation: hero-kenburns 30s ease-in-out infinite alternate;
  }
}
@keyframes hero-kenburns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.06); }
}

/* (b) Video overlay */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1;
}
.hero-bg-video.is-playing { opacity: 1; }

/* (c) Paper cloud layers */
.hero-clouds {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-cloud { position: absolute; }
.hero-cloud--1 { bottom: 72px; left: -40px; }
.hero-cloud--2 { bottom: 60px; left: 30%; }
.hero-cloud--3 { bottom: 56px; right: -20px; }
.hero-cloud--4 { top: 20px; right: 60px; }

@media (prefers-reduced-motion: no-preference) {
  .hero-cloud--1 { animation: cloud-drift-1 62s ease-in-out infinite alternate; }
  .hero-cloud--2 { animation: cloud-drift-2 47s ease-in-out infinite alternate; }
  .hero-cloud--3 { animation: cloud-drift-3 78s ease-in-out infinite alternate; }
  .hero-cloud--4 { animation: cloud-drift-4 55s ease-in-out infinite alternate; }
}
@keyframes cloud-drift-1 {
  0%   { transform: translateX(0); }
  100% { transform: translateX(12px); }
}
@keyframes cloud-drift-2 {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(-8px, 6px); }
}
@keyframes cloud-drift-3 {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-10px); }
}
@keyframes cloud-drift-4 {
  0%   { transform: translateY(0); }
  100% { transform: translateY(8px); }
}

/* (d) Gradient scrim — darkest at bottom where text sits
   Worst-case contrast check: ivory #FFF7EB (L≈0.93) on ink at 88% opacity over
   any photo pixel. Even against pure-white photo: effective BG L ≈ 0.136 → ratio ≈ 5.3:1 ✓
   Against typical mid-toned photo: ratio > 8:1 ✓ */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    to top,
    rgba(16,35,68,.88)  0%,
    rgba(16,35,68,.65) 15%,
    rgba(16,35,68,.28) 42%,
    rgba(16,35,68,.06) 65%,
    transparent        80%
  );
}

/* (e) Sun disc — top-right, partially off-canvas */
.hero-sun-disc {
  position: absolute;
  top: -16px;
  right: 6%;
  z-index: 2;
  width: 160px;
  height: 160px;
  pointer-events: none;
}
@media (min-width: 768px) {
  .hero-sun-disc { width: 200px; height: 200px; top: -24px; right: 10%; }
  .hero-sun-disc svg { width: 200px; height: 200px; }
}

/* Hero content block */
.hero-content {
  position: relative;
  z-index: 5;
}
.hero-content .container {
  padding-top: 8rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .hero-content .container {
    padding-top: 6rem;
    padding-bottom: 4rem;
    max-width: 800px;
  }
}

.hero-eyebrow {
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,247,235,.8);
  margin-bottom: 1rem;
}
.hero-h1 {
  font-family: var(--bsl-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 7vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--bsl-ivory);
  margin-bottom: 1.25rem;
}
.hero-support {
  font-size: 1.1rem;
  line-height: 1.55;
  color: rgba(255,247,235,.88);
  margin-bottom: 1.75rem;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.hero-photo-note {
  font-size: .72rem;
  color: rgba(255,247,235,.45);
  font-style: italic;
}

/* Bottom wave transition */
.hero-wave {
  position: relative;
  z-index: 6;
  line-height: 0;
  margin-top: -1px;
}
.hero-wave svg {
  display: block;
  width: 100%;
  height: 72px;
}

/* Caption under photos elsewhere on page */
.photo-caption {
  font-size: .72rem;
  color: var(--bsl-slate);
  text-align: center;
  margin-top: .5rem;
  font-style: italic;
}

/* ----------------------------------------------------------------
   WHO IT'S FOR
   ---------------------------------------------------------------- */
.who-section {
  background: var(--bsl-mist);
  padding: 3.5rem 0;
}
@media (min-width: 768px) { .who-section { padding: 5rem 0; } }

.age-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (min-width: 600px) {
  .age-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .age-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.age-card {
  background: var(--bsl-ivory);
  border-radius: var(--bsl-radius);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
}
.age-card--primary  { background: var(--bsl-ink); color: var(--bsl-ivory); }
.age-card--secondary { background: var(--bsl-paperblue); color: var(--bsl-ink); }
.age-card--quiet    { background: var(--bsl-ivory); border: 2px solid var(--bsl-mist); color: var(--bsl-slate); }

.age-card__label {
  font-family: var(--bsl-display);
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 1.1;
  margin-bottom: .75rem;
}
.age-card--primary .age-card__label   { color: var(--bsl-ivory); }
.age-card--secondary .age-card__label { color: var(--bsl-ink); }
.age-card--quiet .age-card__label     { color: var(--bsl-slate); }

.age-card__desc {
  font-size: .9rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.age-card--primary .age-card__desc { color: var(--bsl-mist); }

.age-card__role {
  font-size: .8rem;
  line-height: 1.55;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.age-card--secondary .age-card__role { border-top-color: rgba(16,35,68,.15); }
.age-card--quiet .age-card__role     { border-top-color: var(--bsl-mist); }
.age-card__role strong { display: block; margin-bottom: .2em; }

.age-card__cloud {
  position: absolute;
  bottom: -16px; right: -24px;
  width: 130px;
  opacity: .18;
  pointer-events: none;
}

/* ----------------------------------------------------------------
   BLUEPRINTS
   ---------------------------------------------------------------- */
.blueprints-section { background: var(--bsl-ivory); }
.blueprints-header {
  margin-bottom: 3rem;
  max-width: 640px;
}
.blueprints-header h2 {
  font-family: var(--bsl-display);
  font-weight: 800;
  line-height: 1.1;
  margin: .75rem 0 1rem;
}
.blueprints-header p { color: var(--bsl-slate); font-size: 1.05rem; }

/* Two bp-groups side by side on desktop: [2 cards] [1 card] */
.blueprints-groups-row { }
@media (min-width: 900px) {
  .blueprints-groups-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
  }
  .blueprints-groups-row .bp-group + .bp-group { margin-top: 0; }
}

.bp-group-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.bp-group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--bsl-mist);
}
.bp-group + .bp-group { margin-top: 3.5rem; }

.blueprint-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .blueprint-grid { grid-template-columns: 1fr 1fr; }
}
/* Single card in the teens group stays full-width on mobile, natural on desktop */
@media (min-width: 900px) {
  .bp-group:last-child .blueprint-grid { grid-template-columns: 1fr; }
}

.blueprint-card {
  background: var(--bsl-ivory);
  border: 2px solid var(--bsl-mist);
  border-radius: var(--bsl-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}
.blueprint-card:hover { box-shadow: 0 8px 32px rgba(16,35,68,.1); }

.bp-card__top {
  background: var(--bsl-mist);
  padding: 1.75rem 1.75rem 1.25rem;
  position: relative;
  overflow: hidden;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.bp-card__icon { width: 72px; height: 72px; margin-bottom: .75rem; flex-shrink: 0; }
.bp-card__top-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.bp-card__name {
  font-family: var(--bsl-display);
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.1;
  color: var(--bsl-ink);
}
.bp-card__body {
  padding: 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.bp-card__tagline { font-size: .95rem; line-height: 1.5; color: var(--bsl-ink); }
.bp-detail { font-size: .82rem; color: var(--bsl-slate); line-height: 1.55; }
.bp-detail strong { color: var(--bsl-ink); font-weight: 600; }

.bp-card__footer {
  padding: 1.25rem 1.75rem 1.5rem;
  border-top: 1px solid var(--bsl-mist);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.bp-price {
  font-family: var(--bsl-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--bsl-ink);
  line-height: 1;
}
.bp-price-note {
  font-size: .72rem;
  color: var(--bsl-slate);
  font-weight: 400;
  font-family: var(--bsl-body);
  margin-top: .2em;
}

.bp-coming-note {
  font-size: .82rem;
  color: var(--bsl-slate);
  margin-top: 1rem;
  line-height: 1.5;
}
.bp-coming-note a { color: var(--bsl-cobalt); }

/* ----------------------------------------------------------------
   HOW IT WORKS
   ---------------------------------------------------------------- */
.how-section {
  background: var(--bsl-sky);
  overflow: hidden;
  position: relative;
}

.steps-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: .5rem;
}
@media (min-width: 900px) {
  .steps-strip { grid-template-columns: repeat(7, 1fr); overflow: visible; }
}

.step-item {
  background: var(--bsl-ivory);
  border-radius: 18px;
  padding: 1.5rem 1.25rem;
  min-width: 148px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.step-number {
  font-family: var(--bsl-display);
  font-weight: 800;
  font-size: .75rem;
  color: var(--bsl-cobalt);
  letter-spacing: .08em;
}
.step-icon { width: 36px; height: 36px; flex-shrink: 0; }
.step-title { font-family: var(--bsl-body); font-weight: 700; font-size: .9rem; color: var(--bsl-ink); line-height: 1.3; }
.step-desc  { font-size: .78rem; color: var(--bsl-slate); line-height: 1.5; }

.peek-panel {
  margin-top: 3rem;
  background: var(--bsl-ivory);
  border-radius: var(--bsl-radius);
  padding: 2rem;
  border-left: 4px solid var(--bsl-cobalt);
}
.peek-label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--bsl-cobalt); margin-bottom: .75rem; }
.peek-title { font-family: var(--bsl-display); font-weight: 800; font-size: 1.1rem; color: var(--bsl-ink); margin-bottom: .75rem; }
.peek-quote { font-size: .95rem; line-height: 1.65; color: var(--bsl-ink); font-style: italic; }
.peek-source { font-size: .78rem; color: var(--bsl-slate); margin-top: .75rem; }

/* ----------------------------------------------------------------
   OFFERS — cobalt field
   ---------------------------------------------------------------- */
.offers-section {
  background: var(--bsl-cobalt);
  color: var(--bsl-ivory);
  position: relative;
  overflow: hidden;
}
.offers-section .label-cap { color: var(--bsl-ivory); }
.offers-section h2 {
  font-family: var(--bsl-display);
  font-weight: 800;
  color: var(--bsl-ivory);
  line-height: 1.1;
  margin: .75rem 0 .5rem;
}
.offers-section .section-intro { color: var(--bsl-ivory); font-size: 1.05rem; }

.offers-spark { position: absolute; width: 80px; height: 80px; opacity: .25; pointer-events: none; }
.spark-1 { top: 40px; right: 80px; }
.spark-2 { bottom: 60px; left: 40px; transform: rotate(45deg); }

.offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: start;
}
@media (min-width: 640px) {
  .offers-grid { grid-template-columns: 1fr 1fr; }
}

.offer-card {
  border-radius: var(--bsl-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.offer-card--single { background: var(--bsl-ivory); color: var(--bsl-ink); }
.offer-card--bundle { background: var(--bsl-ink); color: var(--bsl-ivory); border: 2px solid rgba(255,247,235,.2); }

.offer-card__head {
  padding: 1.75rem 1.75rem 1.25rem;
  border-bottom: 1px solid rgba(16,35,68,.08);
}
.offer-card--bundle .offer-card__head { border-bottom-color: rgba(255,247,235,.12); }

.offer-price-big {
  font-family: var(--bsl-display);
  font-weight: 800;
  font-size: 2.75rem;
  line-height: 1;
  margin: .75rem 0 .25rem;
}
.offer-card--single .offer-price-big { color: var(--bsl-ink); }
.offer-card--bundle .offer-price-big { color: var(--bsl-tangerine); }
.offer-price-note { font-size: .8rem; color: var(--bsl-slate); line-height: 1.4; }
.offer-card--bundle .offer-price-note { color: rgba(255,247,235,.6); }

.offer-card__body { padding: 1.5rem 1.75rem; flex: 1; }
.offer-includes {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin: 1rem 0 1.25rem;
}
.offer-includes li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  line-height: 1.5;
}
.offer-includes li::before {
  content: '';
  width: 18px; height: 18px;
  flex-shrink: 0;
  background: var(--bsl-cobalt);
  border-radius: 50%;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M4 9 l4 4 6-7' stroke='%23FFF7EB' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.offer-card--bundle .offer-includes li::before {
  background-color: var(--bsl-tangerine);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M4 9 l4 4 6-7' stroke='%23102344' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.offer-card__footer { padding: 1.25rem 1.75rem 1.75rem; }
.offer-legal { font-size: .75rem; color: var(--bsl-slate); line-height: 1.55; margin-top: .75rem; }
.offer-card--bundle .offer-legal { color: rgba(255,247,235,.55); }
.offer-legal a { color: inherit; }

/* ----------------------------------------------------------------
   FREE GUIDE
   ---------------------------------------------------------------- */
.guide-section { background: var(--bsl-peach); }
.guide-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) {
  .guide-inner { grid-template-columns: 1fr 1fr; }
}
.guide-text h2 {
  font-family: var(--bsl-display);
  font-weight: 800;
  line-height: 1.1;
  margin: .75rem 0 1rem;
  color: var(--bsl-ink);
}
.guide-text p { color: var(--bsl-slate); }
.guide-bullets {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin: 1.25rem 0;
}
.guide-bullets li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--bsl-ink);
  line-height: 1.5;
}
.guide-bullets li::before {
  content: '→';
  color: var(--bsl-cobalt);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.5;
}

.guide-form-card { background: var(--bsl-ivory); border-radius: var(--bsl-radius); padding: 2rem; }
.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-weight: 600; font-size: .875rem; margin-bottom: .35em; color: var(--bsl-ink); }
.form-field input {
  width: 100%;
  padding: .7em 1em;
  border: 2px solid var(--bsl-mist);
  border-radius: 12px;
  font-family: var(--bsl-body);
  font-size: 1rem;
  background: #fff;
  color: var(--bsl-ink);
  transition: border-color .15s;
  -webkit-appearance: none;
}
.form-field input:focus { outline: none; border-color: var(--bsl-cobalt); }
.form-confirm {
  display: none;
  padding: 1.25rem;
  background: var(--bsl-mist);
  border-radius: 12px;
  font-size: .95rem;
  line-height: 1.55;
  color: var(--bsl-ink);
  margin-top: 1rem;
}

/* ----------------------------------------------------------------
   BITESIZECOMMUNITY — afterglow (ink/navy section)
   ---------------------------------------------------------------- */
.alchemy-section {
  background: var(--bsl-ink);
  color: var(--bsl-ivory);
  position: relative;
  overflow: hidden;
}
.alchemy-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .alchemy-inner { grid-template-columns: 3fr 2fr; }
}
.alchemy-section h2 {
  font-family: var(--bsl-display);
  font-weight: 800;
  color: var(--bsl-ivory);
  line-height: 1.1;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin: .75rem 0 1rem;
}
.alchemy-section p { color: rgba(255,247,235,.8); line-height: 1.6; }
.alchemy-section p + p { margin-top: .75rem; }
.alchemy-prices {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin: 1.25rem 0;
}
.alchemy-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: .9rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,247,235,.1);
  gap: 1rem;
}
.alchemy-price-row:last-child { border-bottom: none; }
.alchemy-price-row .tier { color: rgba(255,247,235,.7); font-weight: 600; }
.alchemy-price-row .amount {
  color: var(--bsl-tangerine);
  font-family: var(--bsl-display);
  font-weight: 800;
  font-size: 1rem;
  white-space: nowrap;
}

.alchemy-cloud {
  position: absolute;
  bottom: -20px; right: -60px;
  width: 280px;
  opacity: .07;
  pointer-events: none;
}

/* ----------------------------------------------------------------
   FAQ
   ---------------------------------------------------------------- */
.faq-section { background: var(--bsl-ivory); }
.faq-section h2 {
  font-family: var(--bsl-display);
  font-weight: 800;
  line-height: 1.1;
  margin: .75rem 0 2rem;
}
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--bsl-mist); }
.faq-item:first-child { border-top: 1px solid var(--bsl-mist); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: var(--bsl-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--bsl-ink);
  user-select: none;
  -webkit-user-select: none;
}
.faq-chevron {
  flex-shrink: 0;
  width: 20px; height: 20px;
  transition: transform .2s;
  color: var(--bsl-cobalt);
}
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 0 1.25rem;
  font-size: .95rem;
  color: var(--bsl-slate);
  line-height: 1.65;
}
.faq-a a { color: var(--bsl-cobalt); }
.faq-item.is-open .faq-a { display: block; }

/* ----------------------------------------------------------------
   SUPPORT / TERMS
   ---------------------------------------------------------------- */
.terms-section { background: var(--bsl-mist); padding: 3rem 0; }
.terms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .terms-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.terms-block h3 {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--bsl-ink);
  margin-bottom: .6rem;
}
.terms-block p { font-size: .875rem; color: var(--bsl-slate); line-height: 1.6; }
.terms-block a { color: var(--bsl-ink); }

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background: var(--bsl-ink);
  color: rgba(255,247,235,.8);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-logo { margin-bottom: 1rem; }
.footer-logo img { height: 48px; width: auto; }
.footer-brand-desc {
  font-size: .82rem;
  line-height: 1.6;
  color: rgba(255,247,235,.55);
  max-width: 220px;
}
.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,247,235,.5);
  margin-bottom: .75rem;
}
.footer-col ul li { margin-bottom: .4rem; }
.footer-col a {
  font-size: .875rem;
  color: rgba(255,247,235,.75);
  text-decoration: none;
}
.footer-col a:hover { color: var(--bsl-ivory); }

.footer-bottom {
  border-top: 1px solid rgba(255,247,235,.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 2rem;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--bsl-ivory);
  line-height: 1.6;
}
.footer-bottom a { color: rgba(255,247,235,.55); text-decoration: none; }

/* ----------------------------------------------------------------
   SHARED DECORATIVE
   ---------------------------------------------------------------- */
.cloud-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: var(--bsl-ivory);
}
.cloud-divider--from-mist   { background: var(--bsl-mist); }
.cloud-divider--from-sky    { background: var(--bsl-sky); }
.cloud-divider--from-cobalt { background: var(--bsl-cobalt); }
.cloud-divider--from-ink    { background: var(--bsl-ink); }
.cloud-divider--from-peach  { background: var(--bsl-peach); }
.cloud-divider svg { display: block; width: 100%; }

/* ----------------------------------------------------------------
   UTILITIES
   ---------------------------------------------------------------- */
.mt-sm  { margin-top: .5rem; }
.mt-md  { margin-top: 1rem; }
.mt-lg  { margin-top: 2rem; }
.mb-sm  { margin-bottom: .5rem; }
.mb-md  { margin-bottom: 1rem; }
.mb-lg  { margin-bottom: 2rem; }
.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
