/* b-34fe0615e0.css */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --maroon: #7B2337; --maroon-light: #9B3349; --maroon-dark: #5A1A29;
  --bbb-blue: #005a78; --bbb-blue-dark: #003c52;
  --brass: #C4935A; --brass-light: #D4AD78;
  --bg: #FAFAFA; --surface: #FFFFFF;
  --text-primary: #271E1F; --text-secondary: #6B7280; --text-tertiary: #9CA3AF;
  --border: #E5E7EB;
  --radius-sm: 8px; --radius-md: 12px; --radius-lg: 16px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
body { font-family: var(--font); background: var(--bg); color: var(--text-primary); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 24px; }
.section-eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--bbb-blue); font-weight: 600; text-align: center; margin-bottom: 12px; }
.section-heading { font-size: clamp(26px, 3.5vw, 40px); font-weight: 700; color: var(--text-primary); text-align: center; margin-bottom: 12px; line-height: 1.2; }
.section-subheading { font-size: 16px; color: var(--text-secondary); text-align: center; max-width: 640px; margin: 0 auto 40px; line-height: 1.65; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius-md); font-size: 15px; font-weight: 600; min-height: 48px; transition: all 200ms ease; }
.btn--maroon { background: var(--maroon); color: white; }
.btn--maroon:hover { background: var(--maroon-light); transform: translateY(-1px); }
.btn--bbb { background: var(--bbb-blue); color: white; }
.btn--bbb:hover { background: var(--bbb-blue-dark); transform: translateY(-1px); }
.btn--ghost { border: 1px solid var(--border); color: var(--text-primary); background: white; }
.btn--ghost:hover { background: #F5F6F7; }
.nav { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.nav__logo img { height: 36px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 24px; font-size: 14px; color: var(--text-secondary); }
.nav__links a:hover { color: var(--text-primary); }
.nav__cta { background: var(--maroon); color: white; padding: 8px 18px; border-radius: var(--radius-sm); font-weight: 600; font-size: 13px; }
@media (max-width: 768px) { .nav__links { display: none; } }

.hero {
  background: linear-gradient(135deg, var(--bbb-blue-dark) 0%, var(--bbb-blue) 100%);
  padding: 80px 24px 64px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.06), transparent 60%);
}
.hero__content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.hero__seal { margin: 0 auto 28px; max-width: 220px; }
.hero__seal img { width: 100%; height: auto; filter: brightness(0) invert(1); opacity: 0.95; }
.hero__rating { font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.7; margin-bottom: 6px; }
.hero__title { font-size: clamp(32px, 5vw, 52px); font-weight: 700; line-height: 1.12; margin-bottom: 14px; }
.hero__subtitle { font-size: 17px; opacity: 0.85; max-width: 560px; margin: 0 auto 28px; line-height: 1.65; }
.hero__ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.facts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; max-width: 920px; margin: 0 auto; }
.fact-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px 24px; }
.fact-card__icon { font-size: 28px; margin-bottom: 12px; color: var(--bbb-blue); }
.fact-card__label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-secondary); font-weight: 600; margin-bottom: 6px; }
.fact-card__value { font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; line-height: 1.3; }
.fact-card__detail { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

.action-strip { background: #F1F5F8; padding: 56px 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.action-strip__inner { max-width: 880px; margin: 0 auto; text-align: center; }
.badges-row { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin: 32px 0 24px; align-items: center; }
.badges-row a:hover { transform: translateY(-2px); transition: transform 200ms ease; }

.what-it-means { background: white; }
.what-it-means__list { max-width: 720px; margin: 0 auto; padding: 0; list-style: none; }
.what-it-means__list li { padding: 18px 0 18px 40px; border-bottom: 1px solid var(--border); position: relative; font-size: 15px; line-height: 1.65; color: var(--text-secondary); }
.what-it-means__list li:last-child { border-bottom: 0; }
.what-it-means__list li::before { content: '✓'; position: absolute; left: 0; top: 18px; width: 26px; height: 26px; border-radius: 50%; background: var(--bbb-blue); color: white; font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.what-it-means__list strong { color: var(--text-primary); }

.faq { background: var(--bg); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { background: white; border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; }
.faq-item.open { border-color: var(--bbb-blue); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; cursor: pointer; width: 100%; font-weight: 600; font-size: 15px; color: var(--text-primary); background: none; border: none; text-align: left; font-family: inherit; }
.faq-toggle { font-size: 22px; color: var(--text-tertiary); transition: transform 0.3s ease; }
.faq-item.open .faq-toggle { transform: rotate(45deg); color: var(--bbb-blue); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; font-size: 14px; color: var(--text-secondary); line-height: 1.7; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 600px; padding: 0 24px 20px; border-top: 1px solid var(--border); }

.cta-block { background: linear-gradient(135deg, var(--maroon), var(--maroon-dark)); padding: 72px 24px; text-align: center; color: white; }
.cta-block__title { font-size: clamp(22px, 3vw, 30px); font-weight: 700; margin-bottom: 10px; }
.cta-block__subtitle { font-size: 15px; opacity: 0.7; margin-bottom: 24px; }

.footer { background: #271E1F; padding: 48px 24px 24px; color: var(--text-secondary); font-size: 13px; }
.footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; max-width: 900px; margin: 0 auto 32px; }
.footer__title { color: white; font-weight: 600; font-size: 14px; margin-bottom: 10px; }
.footer__links { display: flex; flex-direction: column; gap: 6px; }
.footer__bottom { border-top: 1px solid #3a3335; padding-top: 20px; text-align: center; max-width: 900px; margin: 0 auto; }
@media (max-width: 640px) { .footer__grid { grid-template-columns: 1fr; text-align: center; } }

/* kill-legacy-widgets-88a788.css */
/* Defensive kill of legacy floating-mic + chat-widget DOM hooks */
#se-voice-fab,#se-voice-overlay,#se-voice-body,#se-voice-form,#se-voice-err,
#se-voice-style,.se-voice-fab-inner,.se-voice-orb,.se-voice-panel,.se-voice-form,
.se-voice-close,.se-voice-state,.se-voice-hint,.se-voice-sub,
#se-chat,#se-chat-bubble,#se-chat-panel,.se-chat-fab,.se-chat-launcher,
[data-se-voice],[data-se-chat]{display:none!important;visibility:hidden!important;opacity:0!important;pointer-events:none!important;position:absolute!important;width:0!important;height:0!important;overflow:hidden!important;}

/* se-reduced-motion-8cf60a.css */
/* WCAG 2.3.3 — respect prefers-reduced-motion for the persistent
     Dakota card glow, avatar-status ping, hero-play button pulse, and
     any other decorative loops. */
  @media (prefers-reduced-motion: reduce) {
    .dakota-card, .dakota-reopen, .dakota-card__status, .dakota-reopen__dot,
    .hero-sound-overlay__icon, .hero-sound-overlay {
      animation: none !important;
      transition: none !important;
    }
    /* Kill any other keyframe-driven ambience */
    *, *::before, *::after {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
      scroll-behavior: auto !important;
    }
  }

/* se-global-overflow-4c531f.css */
/* Kill horizontal scroll site-wide. Belt-and-suspenders for any
     descendant that misbehaves (quiz transforms, wide iframes,
     inline-styled grids). */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
    overscroll-behavior-x: none;
  }
  /* Prevent any element from causing horizontal overflow */
  body > * { max-width: 100vw; }

  /* Hero video: use dynamic viewport height so iOS Safari's collapsing
     address bar doesn't cause a jump. 100dvh > 100vh where supported;
     fallback stays as 100vh. */
  @supports (height: 100dvh) {
    .hero, section#hero.hero, section#hero.section.hero {
      min-height: 100dvh !important;
    }
  }
  /* Mobile hero: ensure the video actually fills without letterbox
     stripes from the address-bar zone. */
  @media (max-width: 768px) {
    .hero video, .hero #hero-video {
      min-height: 100% !important;
      min-width: 100% !important;
    }
  }

  /* Widen Dakota mobile-defer from ≤480 to ≤768 so it doesn't overlap
     the quiz/hero CTAs on tablets and larger phones either. Card starts
     collapsed as a bubble; user taps to expand. */
  @media (max-width: 768px) {
    body:not([data-dakota-opened]) #dakota-card {
      display: none !important;
    }
    body:not([data-dakota-opened]) #dakota-reopen {
      display: flex !important;
    }
  }
