/* =========================================================
   TrailShare — Direzione Bussola (audace)
   Home redesign: hero full-bleed con traccia GPS animata,
   alternanza dark/cream, ritmo editoriale.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@1,400;1,500&display=swap');

.bs {
  /* palette sunset (selezionata dal design canvas) */
  --bs-primary:        #D9512C;
  --bs-primary-dark:   #A33715;
  --bs-primary-light:  #F08F6E;
  --bs-forest:         #2A4D3A;
  --bs-forest-dark:    #173322;

  --bs-bg:             #FAF9F7;
  --bs-surface:        #FFFFFF;
  --bs-ink:            #1B1814;
  --bs-ink-2:          #5A5651;
  --bs-ink-3:          #8A857F;
  --bs-line:           rgba(27,24,20,0.08);

  --bs-dark:           #141008;
  --bs-dark-2:         #1F1A12;
  --bs-dark-3:         #0F0C08;

  --bs-success:        #4CAF50;
  --bs-warn:           #FFA726;
  --bs-danger:         #E53935;

  --bs-radius-md:      14px;
  --bs-radius-lg:      20px;
  --bs-radius-xl:      28px;
  --bs-radius-pill:    999px;

  --bs-ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --bs-ease-out:       cubic-bezier(0.0, 0, 0.2, 1);

  --bs-display:        'Outfit', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --bs-body:           'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --bs-serif:          'Fraunces', 'DM Sans', Georgia, serif;

  background: var(--bs-bg);
  color: var(--bs-ink);
  font-family: var(--bs-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.bs *,
.bs *::before,
.bs *::after { box-sizing: border-box; }

.bs a { color: inherit; text-decoration: none; }

.bs .num { font-variant-numeric: tabular-nums; }

/* Topo background pattern (curve di livello stilizzate) */
.bs-topo {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(ellipse 800px 600px at 30% 40%, rgba(27,24,20,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 70% 70%, rgba(27,24,20,0.03) 0%, transparent 60%);
  opacity: 1;
}

.bs-topo--dark {
  background-image:
    radial-gradient(ellipse 800px 600px at 30% 40%, rgba(255,245,230,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 70% 70%, rgba(255,245,230,0.03) 0%, transparent 60%);
}

/* ---------- Reveal on scroll ---------- */
.bs [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--bs-ease), transform .8s var(--bs-ease);
}
.bs [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ---------- Keyframes ---------- */
@keyframes bs-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes bs-fadein-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bs-pulse {
  0%, 100% { transform: scale(1); opacity: .8; }
  50%      { transform: scale(1.6); opacity: .15; }
}
@keyframes bs-pin-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76,175,80,.6); }
  50%      { box-shadow: 0 0 0 10px rgba(76,175,80,0); }
}

/* =========================================================
   HEADER (sticky dark glass)
   ========================================================= */
.bs-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20,16,8,0.65);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #F4F2EE;
}

.bs-header__inner {
  max-width: 1240px;
  margin: 0 auto;
  height: 72px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.bs-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--bs-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.4px;
  color: #fff;
}
.bs-header__logo img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.bs-header__nav {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
  margin-left: 12px;
}
.bs-header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(244,242,238,0.65);
  transition: color .2s var(--bs-ease);
}
.bs-header__nav a:hover { color: #fff; }

.bs-header__spacer { flex: 1; }

.bs-header__login {
  font-size: 14px;
  font-weight: 500;
  color: rgba(244,242,238,0.65);
  transition: color .2s var(--bs-ease);
}
.bs-header__login:hover { color: #fff; }

.bs-header__cta {
  height: 42px;
  padding: 0 22px;
  border-radius: var(--bs-radius-pill);
  background: var(--bs-primary);
  color: #fff;
  font-family: var(--bs-display);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 6px 18px rgba(217,81,44,0.4);
  transition: transform .15s var(--bs-ease), box-shadow .2s var(--bs-ease);
}
.bs-header__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(217,81,44,0.5);
}

.bs-hamburger { display: none; background: none; border: none; padding: 8px; cursor: pointer; color: #fff; }
.bs-hamburger span { display: block; width: 22px; height: 2px; background: #fff; margin: 4px 0; border-radius: 2px; transition: transform .25s var(--bs-ease), opacity .25s var(--bs-ease); }
.bs-hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.bs-hamburger.is-open span:nth-child(2) { opacity: 0; }
.bs-hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.bs-header__mobile {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.bs-header__mobile a {
  padding: 12px 0;
  color: rgba(244,242,238,0.85);
  font-family: var(--bs-display);
  font-weight: 500;
}
.bs-header.is-open .bs-header__mobile { display: flex; }

/* =========================================================
   HERO (full-bleed dark + animated GPS trace)
   ========================================================= */
.bs-hero {
  position: relative;
  background: var(--bs-dark);
  color: #F4F2EE;
  overflow: hidden;
  min-height: 880px;
}

.bs-hero__atmosphere {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(217,81,44,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(42,77,58,0.22) 0%, transparent 50%);
  pointer-events: none;
}

.bs-hero__svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.bs-hero__svg .bs-trace {
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
  animation: bs-draw 4s var(--bs-ease) .3s forwards;
}
.bs-hero__svg .bs-waypoint {
  opacity: 0;
  animation: bs-fadein-up .6s var(--bs-ease) both;
}

.bs-hero__inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 110px 32px 90px;
}

.bs-hero__overline {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--bs-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,242,238,0.65);
}
.bs-hero__overline .bs-dot { color: var(--bs-primary); animation: bs-fadein-up .8s var(--bs-ease) both; }
.bs-hero__overline .bs-divider { width: 32px; height: 1px; background: rgba(244,242,238,0.2); }

.bs-hero__title {
  margin: 28px 0 0;
  font-family: var(--bs-display);
  font-size: clamp(72px, 12vw, 168px);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -0.05em;
  max-width: 1100px;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.4) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.bs-hero__title-accent {
  background: linear-gradient(180deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-style: italic;
  font-family: var(--bs-serif);
  font-weight: 500;
}

.bs-hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 56px;
  gap: 60px;
  flex-wrap: wrap;
}

.bs-hero__lede {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(244,242,238,0.78);
  max-width: 460px;
  margin: 0;
}
.bs-hero__lede .bs-accent { color: var(--bs-primary); }

.bs-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.bs-hero__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.bs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: none;
  cursor: pointer;
  font-family: var(--bs-display);
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s var(--bs-ease), box-shadow .2s var(--bs-ease), background .2s var(--bs-ease), border-color .2s var(--bs-ease);
}
.bs-btn:active { transform: scale(0.97); opacity: 0.9; }

.bs-btn--primary {
  height: 56px;
  padding: 0 26px;
  border-radius: var(--bs-radius-pill);
  background: var(--bs-primary);
  color: #fff;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(217,81,44,0.4);
}
.bs-btn--primary:hover {
  background: var(--bs-primary-dark);
  box-shadow: 0 12px 32px rgba(217,81,44,0.5);
}

.bs-btn--ghost-dark {
  height: 56px;
  padding: 0 22px;
  border-radius: var(--bs-radius-pill);
  background: transparent;
  color: #fff;
  border: 1px solid rgba(244,242,238,0.25);
  font-size: 14px;
  font-weight: 500;
}
.bs-btn--ghost-dark:hover {
  border-color: rgba(244,242,238,0.5);
  background: rgba(255,255,255,0.04);
}

.bs-btn--ghost-light {
  height: 48px;
  padding: 0 22px;
  border-radius: var(--bs-radius-pill);
  background: transparent;
  color: var(--bs-ink);
  border: 1px solid var(--bs-line);
  font-size: 14px;
  font-weight: 500;
}
.bs-btn--ghost-light:hover {
  border-color: rgba(27,24,20,0.25);
  background: rgba(27,24,20,0.03);
}

.bs-hero__store {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.bs-hero__store img {
  height: 50px;
  width: auto;
  display: block;
}

.bs-hero__microcopy {
  font-size: 12px;
  color: rgba(244,242,238,0.5);
}

/* Cruscotto live strip */
.bs-cruscotto {
  background: rgba(0,0,0,0.5);
  border-top: 1px solid rgba(244,242,238,0.08);
}
.bs-cruscotto__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 32px;
  display: grid;
  grid-template-columns: auto repeat(4, 1fr) auto;
  gap: 36px;
  align-items: center;
}
.bs-cruscotto__label {
  font-family: var(--bs-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,242,238,0.5);
}
.bs-stat__l {
  font-family: var(--bs-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(244,242,238,0.5);
}
.bs-stat__v {
  font-family: var(--bs-display);
  font-size: 28px;
  font-weight: 700;
  color: #F4F2EE;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
}
.bs-stat__sub {
  font-size: 11px;
  color: rgba(244,242,238,0.45);
  margin-top: 2px;
}
.bs-cruscotto__live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(244,242,238,0.5);
  font-family: var(--bs-display);
}
.bs-cruscotto__live .bs-pin {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: var(--bs-success);
  animation: bs-pin-pulse 2s infinite;
}

/* =========================================================
   MANIFESTO
   ========================================================= */
.bs-manifesto {
  padding: 140px 32px;
  background: var(--bs-bg);
}
.bs-manifesto__inner {
  max-width: 1240px;
  margin: 0 auto;
}
.bs-manifesto__quote {
  font-family: var(--bs-serif);
  font-style: italic;
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.02em;
  max-width: 1080px;
  color: var(--bs-ink);
}
.bs-manifesto__quote .bs-quote-mark { color: var(--bs-primary); }
.bs-manifesto__quote .bs-quote-soft { color: var(--bs-ink-3); }
.bs-manifesto__quote .bs-quote-strong {
  color: var(--bs-forest);
  font-style: normal;
  font-family: var(--bs-display);
  font-weight: 700;
}
.bs-manifesto__sig {
  margin-top: 32px;
  font-size: 14px;
  color: var(--bs-ink-3);
  font-family: var(--bs-display);
  letter-spacing: 0.04em;
}

/* =========================================================
   FEATURE BLOCKS (alternati)
   ========================================================= */
.bs-feature {
  position: relative;
  padding: 120px 32px;
  background: var(--bs-bg);
  color: var(--bs-ink);
  overflow: hidden;
}
.bs-feature--dark {
  background: var(--bs-dark);
  color: #F4F2EE;
}
.bs-feature__inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.bs-feature--flip .bs-feature__copy { order: 2; }
.bs-feature--flip .bs-feature__visual { order: 1; }

.bs-feature__kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--bs-display);
}
.bs-feature__idx {
  font-size: 14px;
  font-weight: 700;
  color: var(--bs-primary);
  letter-spacing: 0.18em;
  font-variant-numeric: tabular-nums;
}
.bs-feature__divider {
  width: 40px;
  height: 1px;
  background: var(--bs-line);
}
.bs-feature--dark .bs-feature__divider {
  background: rgba(255,255,255,0.12);
}
.bs-feature__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bs-ink-2);
}
.bs-feature--dark .bs-feature__label {
  color: rgba(244,242,238,0.7);
}

.bs-feature__title {
  margin: 20px 0 0;
  font-family: var(--bs-display);
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 700;
}
.bs-feature__title-accent {
  display: block;
  font-family: var(--bs-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--bs-primary);
}

.bs-feature__body {
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--bs-ink-2);
  max-width: 520px;
}
.bs-feature--dark .bs-feature__body {
  color: rgba(244,242,238,0.7);
}

.bs-feature__bullets {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 520px;
}
.bs-feature__bullets li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: var(--bs-ink-2);
}
.bs-feature--dark .bs-feature__bullets li {
  color: rgba(244,242,238,0.7);
}
.bs-feature__bullets svg {
  flex-shrink: 0;
  stroke: var(--bs-primary);
}

/* Visual phone mockup */
.bs-feature__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bs-phone {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 19.5;
  background: #0F0C08;
  border-radius: 38px;
  padding: 10px;
  box-shadow: 0 30px 80px rgba(20,16,8,0.35), 0 0 0 1px rgba(0,0,0,0.1);
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform .6s var(--bs-ease);
}
.bs-feature--flip .bs-phone {
  transform: perspective(1200px) rotateY(6deg) rotateX(2deg);
}
.bs-phone:hover {
  transform: perspective(1200px) rotateY(0) rotateX(0);
}
.bs-phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
}
.bs-phone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Decorative backdrop behind phone */
.bs-feature__backdrop {
  position: absolute;
  inset: -8% -12%;
  border-radius: var(--bs-radius-xl);
  background: linear-gradient(135deg, #d8e6cf 0%, #c4d8b6 50%, #f0e9d6 100%);
  z-index: -1;
  opacity: 0.5;
}
.bs-feature--dark .bs-feature__backdrop {
  background: linear-gradient(135deg, rgba(217,81,44,0.18) 0%, rgba(42,77,58,0.22) 100%);
  opacity: 0.7;
}

/* =========================================================
   LIFELINE TIMELINE (interactive)
   ========================================================= */
.bs-lifeline {
  position: relative;
  background: var(--bs-dark);
  color: #F4F2EE;
  padding: 140px 32px;
  overflow: hidden;
}
.bs-lifeline__inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}
.bs-lifeline__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}
.bs-lifeline__title {
  font-family: var(--bs-display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin: 0;
  max-width: 760px;
}
.bs-lifeline__title-accent {
  display: block;
  font-family: var(--bs-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--bs-primary);
}
.bs-lifeline__lede {
  font-size: 17px;
  color: rgba(244,242,238,0.7);
  line-height: 1.55;
  max-width: 360px;
  margin: 0;
}

.bs-tl {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--bs-radius-xl);
  padding: 48px 36px;
}
.bs-tl__track {
  position: relative;
  height: 100px;
}
.bs-tl__rail {
  position: absolute;
  top: 28px;
  left: 4%;
  right: 4%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.10);
}
.bs-tl__progress {
  position: absolute;
  top: 28px;
  left: 4%;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--bs-success) 0%, var(--bs-warn) 50%, var(--bs-danger) 100%);
  transition: width .5s var(--bs-ease);
  width: 0;
}
.bs-tl__steps {
  position: absolute;
  inset: 0;
  display: grid;
}
.bs-tl__step {
  background: transparent;
  border: none;
  padding: 0 8px;
  text-align: center;
  cursor: pointer;
  color: inherit;
  font-family: var(--bs-display);
}
.bs-tl__dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  margin: 0 auto;
  background: rgba(255,255,255,0.08);
  border: 4px solid transparent;
  transition: all .3s var(--bs-ease);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.bs-tl__step[data-tone="ok"].is-passed .bs-tl__dot { background: var(--bs-success); }
.bs-tl__step[data-tone="warn"].is-passed .bs-tl__dot { background: var(--bs-warn); }
.bs-tl__step[data-tone="alert"].is-passed .bs-tl__dot { background: var(--bs-danger); }
.bs-tl__step.is-active .bs-tl__dot {
  border-color: #fff;
}
.bs-tl__step[data-tone="ok"].is-active .bs-tl__dot { box-shadow: 0 0 0 8px rgba(76,175,80,0.2); }
.bs-tl__step[data-tone="warn"].is-active .bs-tl__dot { box-shadow: 0 0 0 8px rgba(255,167,38,0.2); }
.bs-tl__step[data-tone="alert"].is-active .bs-tl__dot { box-shadow: 0 0 0 8px rgba(229,57,53,0.2); }

.bs-tl__t {
  margin-top: 18px;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  font-variant-numeric: tabular-nums;
}
.bs-tl__step.is-active .bs-tl__t { color: #fff; }

.bs-tl__lbl {
  font-size: 12px;
  margin-top: 4px;
  color: rgba(255,255,255,0.4);
  font-family: var(--bs-body);
}
.bs-tl__step.is-active .bs-tl__lbl { color: rgba(255,255,255,0.85); }

.bs-tl__detail {
  margin-top: 40px;
  padding: 36px;
  border-radius: var(--bs-radius-lg);
  background: rgba(0,0,0,0.35);
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: center;
}
.bs-tl__detail-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--bs-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.bs-tl__detail-tag .bs-pin-static {
  width: 7px; height: 7px;
  border-radius: 4px;
}
.bs-tl__detail h3 {
  font-family: var(--bs-display);
  font-size: 36px;
  margin: 10px 0 0;
  color: #fff;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.bs-tl__detail p {
  margin: 14px 0 0;
  font-size: 17px;
  color: rgba(244,242,238,0.78);
  line-height: 1.5;
}
.bs-tl__phone {
  height: 200px;
  border-radius: 14px;
  padding: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}
.bs-tl__phone-label {
  font-family: var(--bs-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,242,238,0.5);
}
.bs-tl__phone-card {
  margin-top: 14px;
  padding: 14px;
  border-radius: 10px;
}
.bs-tl__phone-card-title {
  font-weight: 700;
  font-size: 14px;
  font-family: var(--bs-display);
  text-transform: uppercase;
}
.bs-tl__phone-card-body {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(244,242,238,0.85);
}
.bs-lifeline__disclaimer {
  margin: 28px 0 0;
  font-size: 12px;
  color: rgba(244,242,238,0.4);
  max-width: 720px;
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.bs-cta {
  position: relative;
  background: var(--bs-dark);
  color: #F4F2EE;
  padding: 120px 32px;
  overflow: hidden;
}
.bs-cta__halo {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(217,81,44,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.bs-cta__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.bs-cta__title {
  font-family: var(--bs-display);
  font-size: clamp(64px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 700;
  margin: 0;
}
.bs-cta__title-accent {
  display: block;
  font-family: var(--bs-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--bs-primary);
}
.bs-cta__buttons {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.bs-cta__buttons .bs-btn--primary {
  height: 64px;
  padding: 0 36px;
  font-size: 17px;
  box-shadow: 0 12px 36px rgba(217,81,44,0.5);
}
.bs-cta__buttons .bs-btn--ghost-dark {
  height: 64px;
  padding: 0 30px;
  font-size: 16px;
}
.bs-cta__store {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.bs-cta__store img {
  height: 54px;
  width: auto;
  display: block;
}
.bs-cta__microcopy {
  margin-top: 28px;
  font-size: 13px;
  color: rgba(244,242,238,0.5);
}

/* =========================================================
   FOOTER (dark)
   ========================================================= */
.bs-footer {
  background: var(--bs-dark-3);
  color: rgba(244,242,238,0.6);
  padding: 64px 32px 36px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.bs-footer__inner {
  max-width: 1240px;
  margin: 0 auto;
}
.bs-footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 36px;
}
.bs-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--bs-display);
  font-weight: 800;
  font-size: 22px;
  color: #fff;
}
.bs-footer__brand img {
  width: 30px; height: 30px;
  object-fit: contain;
}
.bs-footer__tagline {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.55;
  max-width: 320px;
}
.bs-footer__col-title {
  font-family: var(--bs-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.bs-footer__links {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.bs-footer__links a {
  font-size: 13.5px;
  color: rgba(244,242,238,0.6);
  transition: color .2s var(--bs-ease);
}
.bs-footer__links a:hover { color: #fff; }
.bs-footer__bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 16px;
}
.bs-footer__social {
  display: flex;
  gap: 14px;
}
.bs-footer__social a {
  color: rgba(244,242,238,0.6);
  transition: color .2s var(--bs-ease);
}
.bs-footer__social a:hover { color: #fff; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .bs-header__nav { display: none; }
  .bs-header__login { display: none; }
  .bs-hamburger { display: block; }

  .bs-feature__inner { grid-template-columns: 1fr; gap: 56px; }
  .bs-feature--flip .bs-feature__copy { order: 1; }
  .bs-feature--flip .bs-feature__visual { order: 2; }
  .bs-feature__bullets { grid-template-columns: 1fr; }

  .bs-cruscotto__inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .bs-cruscotto__label, .bs-cruscotto__live { grid-column: 1 / -1; }

  .bs-tl__detail { grid-template-columns: 1fr; }
  .bs-tl__detail .bs-tl__phone { display: none; }

  .bs-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .bs-hero { min-height: 720px; }
  .bs-hero__inner { padding: 80px 20px 64px; }
  .bs-hero__title { font-size: clamp(56px, 14vw, 80px); }
  .bs-hero__bottom { flex-direction: column; align-items: stretch; gap: 32px; }
  .bs-hero__actions { align-items: stretch; }
  .bs-hero__buttons { justify-content: stretch; }
  .bs-hero__buttons .bs-btn { width: 100%; }
  .bs-hero__store { justify-content: flex-start; }

  .bs-cruscotto__inner { padding: 20px; }

  .bs-manifesto, .bs-feature, .bs-lifeline, .bs-cta { padding: 80px 20px; }
  .bs-feature__inner { gap: 40px; }
  .bs-phone { max-width: 260px; }

  .bs-tl { padding: 28px 16px; }
  .bs-tl__dot { width: 40px; height: 40px; font-size: 13px; border-width: 3px; }
  .bs-tl__rail, .bs-tl__progress { top: 20px; }
  .bs-tl__t { font-size: 11px; margin-top: 12px; }
  .bs-tl__lbl { font-size: 10px; }

  .bs-cta__buttons { flex-direction: column; align-items: stretch; }

  .bs-footer__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   PAGE-SPECIFIC: status banner, pricing, usecases, demo,
   case-study, form, ea-promo, seed-banner.
   Riusabili tra business.html e pro.html.
   ========================================================= */

/* Status banner (top, sopra header) */
.bs-status-banner {
  background: linear-gradient(90deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%);
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  font-size: 13px;
  font-family: var(--bs-display);
  font-weight: 500;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.bs-status-banner__dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: bs-pin-pulse 2s infinite;
}
.bs-status-banner a {
  text-decoration: underline;
  font-weight: 700;
}
.bs-status-banner a:hover { opacity: 0.85; }

/* Hero compatto per pagine secondarie (smaller min-height) */
.bs-hero--compact {
  min-height: 640px;
}
.bs-hero--compact .bs-hero__inner {
  padding: 80px 32px 80px;
}
.bs-hero--compact .bs-hero__title {
  font-size: clamp(56px, 9vw, 120px);
}

/* Section title editoriale (riusabile) */
.bs-section {
  position: relative;
  padding: 120px 32px;
  background: var(--bs-bg);
  overflow: hidden;
}
.bs-section--dark {
  background: var(--bs-dark);
  color: #F4F2EE;
}
.bs-section__inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}
.bs-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.bs-section__title {
  font-family: var(--bs-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin: 0;
  max-width: 760px;
}
.bs-section__title-accent {
  display: block;
  font-family: var(--bs-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--bs-primary);
}
.bs-section__lede {
  font-size: 17px;
  color: var(--bs-ink-2);
  line-height: 1.55;
  max-width: 420px;
  margin: 0;
}
.bs-section--dark .bs-section__lede { color: rgba(244,242,238,0.7); }

/* Use cases grid (4 mini cards) */
.bs-usecases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.bs-usecase {
  background: var(--bs-surface);
  border: 1px solid var(--bs-line);
  border-radius: var(--bs-radius-lg);
  padding: 28px 24px;
  transition: transform .2s var(--bs-ease), box-shadow .2s var(--bs-ease), border-color .2s var(--bs-ease);
}
.bs-usecase:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(20,16,8,0.08);
  border-color: rgba(217,81,44,0.3);
}
.bs-usecase__emoji {
  font-size: 28px;
  margin-bottom: 12px;
}
.bs-usecase h4 {
  font-family: var(--bs-display);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--bs-ink);
}
.bs-usecase p {
  font-size: 14px;
  color: var(--bs-ink-2);
  line-height: 1.55;
  margin: 0;
}

/* Demo "Come funziona" — numbered grid */
.bs-demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: bs-demo;
}
.bs-demo-step {
  background: var(--bs-surface);
  border: 1px solid var(--bs-line);
  border-radius: var(--bs-radius-lg);
  padding: 32px 28px;
  position: relative;
}
.bs-demo-step__num {
  font-family: var(--bs-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--bs-primary);
  letter-spacing: 0.18em;
  font-variant-numeric: tabular-nums;
}
.bs-demo-step h4 {
  font-family: var(--bs-display);
  font-size: 22px;
  font-weight: 700;
  margin: 12px 0 12px;
  color: var(--bs-ink);
  line-height: 1.2;
}
.bs-demo-step p {
  font-size: 15px;
  color: var(--bs-ink-2);
  line-height: 1.55;
  margin: 0 0 16px;
}
.bs-demo-step ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bs-demo-step ul li {
  font-size: 13px;
  color: var(--bs-ink-2);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}
.bs-demo-step ul li::before {
  content: '·';
  color: var(--bs-primary);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}

.bs-demo-cta {
  margin-top: 56px;
  padding: 48px;
  border-radius: var(--bs-radius-xl);
  background: var(--bs-dark);
  color: #F4F2EE;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bs-demo-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(217,81,44,0.25) 0%, transparent 60%);
}
.bs-demo-cta > * { position: relative; }
.bs-demo-cta h3 {
  font-family: var(--bs-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.bs-demo-cta p {
  font-size: 16px;
  color: rgba(244,242,238,0.7);
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.55;
}

/* Case study — testimonial card with topo backdrop */
.bs-case-study {
  background: var(--bs-surface);
  border: 1px solid var(--bs-line);
  border-radius: var(--bs-radius-xl);
  padding: 56px 56px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.bs-case-study::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 100% 0%, rgba(217,81,44,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.bs-case-study__quote {
  font-family: var(--bs-serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.5;
  color: var(--bs-ink);
  margin: 0 0 32px;
  position: relative;
}
.bs-case-study__quote::before {
  content: '"';
  font-family: var(--bs-serif);
  color: var(--bs-primary);
  font-size: 64px;
  font-style: italic;
  line-height: 1;
  margin-right: 6px;
  vertical-align: -10px;
}
.bs-case-study__author {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.bs-case-study__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%);
  color: #fff;
  font-family: var(--bs-display);
  font-weight: 700;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bs-case-study__name {
  font-family: var(--bs-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--bs-ink);
}
.bs-case-study__role {
  font-size: 13px;
  color: var(--bs-ink-2);
  margin-top: 2px;
}

/* Seed banner — programma design partner */
.bs-seed {
  background: linear-gradient(135deg, rgba(217,81,44,0.08) 0%, rgba(42,77,58,0.05) 100%);
  border: 1px solid rgba(217,81,44,0.2);
  border-radius: var(--bs-radius-xl);
  padding: 48px 48px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.bs-seed::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 500px 300px at 100% 100%, rgba(217,81,44,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.bs-seed__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bs-primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--bs-radius-pill);
  font-family: var(--bs-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.bs-seed h3 {
  font-family: var(--bs-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 16px 0 12px;
  color: var(--bs-ink);
}
.bs-seed > p {
  font-size: 16px;
  color: var(--bs-ink-2);
  line-height: 1.55;
  max-width: 720px;
  margin: 0 0 24px;
}
.bs-seed__perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0 32px;
  max-width: 720px;
}
.bs-seed__perk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--bs-ink);
  line-height: 1.45;
}
.bs-seed__perk::before {
  content: '✓';
  color: var(--bs-primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* Pricing grid */
.bs-pricing-note {
  text-align: center;
  font-family: var(--bs-display);
  font-size: 14px;
  color: var(--bs-ink-3);
  margin: 0 0 32px;
  letter-spacing: 0.02em;
}
.bs-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.bs-tier {
  background: var(--bs-surface);
  border: 1px solid var(--bs-line);
  border-radius: var(--bs-radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform .2s var(--bs-ease), box-shadow .2s var(--bs-ease);
}
.bs-tier:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(20,16,8,0.08);
}
.bs-tier--featured {
  background: var(--bs-dark);
  color: #F4F2EE;
  border-color: transparent;
  position: relative;
  box-shadow: 0 24px 60px rgba(217,81,44,0.25);
}
.bs-tier__ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bs-primary);
  color: #fff;
  padding: 6px 16px;
  border-radius: var(--bs-radius-pill);
  font-family: var(--bs-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.bs-tier__name {
  font-family: var(--bs-display);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
  color: inherit;
}
.bs-tier__sub {
  font-size: 13px;
  color: var(--bs-ink-2);
  margin: 0 0 20px;
  line-height: 1.45;
}
.bs-tier--featured .bs-tier__sub { color: rgba(244,242,238,0.6); }
.bs-tier__price {
  font-family: var(--bs-display);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.bs-tier__price small {
  font-size: 16px;
  font-weight: 500;
  color: var(--bs-ink-2);
}
.bs-tier--featured .bs-tier__price small { color: rgba(244,242,238,0.6); }
.bs-tier__yearly {
  font-size: 13px;
  color: var(--bs-ink-2);
  margin: 8px 0 24px;
}
.bs-tier--featured .bs-tier__yearly { color: rgba(244,242,238,0.65); }
.bs-tier__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bs-tier__features li {
  font-size: 14px;
  color: var(--bs-ink);
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.bs-tier--featured .bs-tier__features li { color: #F4F2EE; }
.bs-tier__features li::before {
  content: '✓';
  color: var(--bs-primary);
  font-weight: 700;
  flex-shrink: 0;
}
.bs-tier__features li.muted {
  color: var(--bs-ink-3);
}
.bs-tier--featured .bs-tier__features li.muted { color: rgba(244,242,238,0.4); }
.bs-tier__features li.muted::before {
  content: '○';
  color: var(--bs-ink-3);
}

/* Early adopter promo */
.bs-ea-promo {
  margin-top: 40px;
  background: var(--bs-surface);
  border: 1px dashed rgba(217,81,44,0.4);
  border-radius: var(--bs-radius-lg);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.bs-ea-promo__star {
  font-size: 32px;
  flex-shrink: 0;
}
.bs-ea-promo h4 {
  font-family: var(--bs-display);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--bs-ink);
}
.bs-ea-promo p {
  font-size: 14px;
  color: var(--bs-ink-2);
  line-height: 1.55;
  margin: 0;
}

/* Form */
.bs-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bs-surface);
  border: 1px solid var(--bs-line);
  border-radius: var(--bs-radius-xl);
  padding: 48px;
}
.bs-form label {
  display: block;
  font-family: var(--bs-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bs-ink-2);
  margin: 18px 0 8px;
}
.bs-form label:first-child { margin-top: 0; }
.bs-form input[type="text"],
.bs-form input[type="email"],
.bs-form select,
.bs-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bs-bg);
  border: 1px solid var(--bs-line);
  border-radius: var(--bs-radius-md);
  font-family: var(--bs-body);
  font-size: 15px;
  color: var(--bs-ink);
  transition: border-color .2s var(--bs-ease), background .2s var(--bs-ease);
  box-sizing: border-box;
}
.bs-form input:focus,
.bs-form select:focus,
.bs-form textarea:focus {
  outline: none;
  border-color: var(--bs-primary);
  background: var(--bs-surface);
}
.bs-form textarea {
  min-height: 120px;
  resize: vertical;
  font-family: var(--bs-body);
}
.bs-form__submit {
  margin-top: 28px;
  width: 100%;
  height: 56px;
  border-radius: var(--bs-radius-pill);
  background: var(--bs-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--bs-display);
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(217,81,44,0.4);
  transition: transform .15s var(--bs-ease), box-shadow .2s var(--bs-ease), background .2s var(--bs-ease);
}
.bs-form__submit:hover {
  background: var(--bs-primary-dark);
  box-shadow: 0 12px 32px rgba(217,81,44,0.5);
}
.bs-form__submit:active { transform: scale(0.97); }
.bs-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.bs-form__feedback {
  margin-top: 20px;
  padding: 16px;
  border-radius: var(--bs-radius-md);
  display: none;
  font-size: 14px;
  line-height: 1.45;
}
.bs-form__feedback--ok    { display: block; background: rgba(76,175,80,0.12); color: #1B5E20; border: 1px solid rgba(76,175,80,0.3); }
.bs-form__feedback--err   { display: block; background: rgba(229,57,53,0.12); color: #B71C1C; border: 1px solid rgba(229,57,53,0.3); }
.bs-form__feedback--warn  { display: block; background: rgba(255,167,38,0.15); color: #6E4A00; border: 1px solid rgba(255,167,38,0.4); }

.bs-form-direct {
  text-align: center;
  margin-top: 24px;
  color: var(--bs-ink-2);
  font-size: 14px;
}
.bs-form-direct a { color: var(--bs-primary); font-weight: 600; }

/* FAQ accordion */
.bs-faq {
  max-width: 760px;
  margin: 0 auto;
}
.bs-faq__item {
  border-bottom: 1px solid var(--bs-line);
  padding: 0;
}
.bs-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 48px 24px 0;
  font-family: var(--bs-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--bs-ink);
  position: relative;
  transition: color .2s var(--bs-ease);
}
.bs-faq__item summary::-webkit-details-marker { display: none; }
.bs-faq__item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 300;
  color: var(--bs-primary);
  transition: transform .25s var(--bs-ease);
}
.bs-faq__item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.bs-faq__item summary:hover { color: var(--bs-primary); }
.bs-faq__body {
  padding: 0 48px 24px 0;
  font-size: 15.5px;
  color: var(--bs-ink-2);
  line-height: 1.6;
  margin: 0;
}
.bs-faq__body a { color: var(--bs-primary); font-weight: 600; }

/* Pro pricing — 2 columns */
.bs-pricing-grid--two {
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
}

/* Legal pages — wrapped in a "paper" card for breathing room */
.bs-legal {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bs-surface);
  border: 1px solid var(--bs-line);
  border-radius: var(--bs-radius-xl);
  padding: 72px 80px;
  box-shadow: 0 20px 60px rgba(20,16,8,0.06);
}
.bs-legal__title {
  font-family: var(--bs-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--bs-ink);
}
.bs-legal__date {
  color: var(--bs-ink-3);
  font-size: 14px;
  margin: 12px 0 40px;
  font-family: var(--bs-display);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bs-line);
}
.bs-legal__content h2 {
  font-family: var(--bs-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 40px 0 12px;
  color: var(--bs-ink);
}
.bs-legal__content h3 {
  font-family: var(--bs-display);
  font-size: 18px;
  font-weight: 600;
  margin: 24px 0 8px;
  color: var(--bs-ink);
}
.bs-legal__content p,
.bs-legal__content ul,
.bs-legal__content ol {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--bs-ink-2);
  margin: 0 0 14px;
}
.bs-legal__content ul,
.bs-legal__content ol {
  padding-left: 24px;
}
.bs-legal__content li { margin: 4px 0; }
.bs-legal__content a { color: var(--bs-primary); font-weight: 600; text-decoration: underline; }
.bs-legal__content strong { color: var(--bs-ink); font-weight: 600; }

/* FAQ category chips */
.bs-faq-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 48px;
}
.bs-faq-cat {
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--bs-line);
  border-radius: var(--bs-radius-pill);
  font-family: var(--bs-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--bs-ink-2);
  cursor: pointer;
  transition: all .2s var(--bs-ease);
}
.bs-faq-cat:hover { border-color: var(--bs-primary); color: var(--bs-ink); }
.bs-faq-cat.is-active {
  background: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #fff;
}

/* Hidden state for filtered FAQ items */
.bs-faq__item.is-hidden { display: none; }

/* Responsive overrides */
@media (max-width: 960px) {
  .bs-usecases { grid-template-columns: repeat(2, 1fr); }
  .bs-demo-grid { grid-template-columns: 1fr 1fr; }
  .bs-pricing-grid { grid-template-columns: 1fr; gap: 32px; }
  .bs-pricing-grid--two { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .bs-tier--featured { order: -1; }
  .bs-section__head { gap: 32px; }
  .bs-case-study { padding: 40px 32px; }
}

@media (max-width: 720px) {
  .bs-section { padding: 80px 20px; }
  .bs-usecases { grid-template-columns: 1fr; }
  .bs-demo-grid { grid-template-columns: 1fr; }
  .bs-seed { padding: 32px 24px; }
  .bs-seed__perks { grid-template-columns: 1fr; }
  .bs-form-wrap { padding: 28px 20px; }
  .bs-ea-promo { flex-direction: column; padding: 24px; }
  .bs-demo-cta { padding: 32px 24px; }
  .bs-legal { padding: 40px 28px; border-radius: var(--bs-radius-lg); }
}
