/* ============================================================
   Dedollarize Landing Pages — Shared Style System (v2)
   ------------------------------------------------------------
   Direct-response landing page treatment:
   - Massive Oswald display headlines
   - Chunky gold ribbon CTAs with bevel + arrow
   - Dense layout, less whitespace
   - Dark photographic hero + section backgrounds with solid fallbacks
   - High-contrast type, all-caps display

   Pinned: tailwindcss v4.3.0 + daisyUI v5.5.19 + Oswald/Montserrat
   ============================================================ */

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

:root {
  /* Static brand palette */
  --brand-ink-900:#000000;
  --brand-ink-800:#1b1b1b;
  --brand-ink-700:#3d3d3d;
  --brand-navy-900:#08466a;
  --brand-navy-800:#0a3957;
  --brand-navy-700:#174878;
  --brand-navy-500:#3a7bb3;
  --brand-gold-100:#ffffc5;
  --brand-gold-200:#ffe6a7;
  --brand-gold-300:#f3da9b;
  --brand-gold-400:#e6c34b;
  --brand-gold-500:#c8a52d;
  --brand-gold-600:#bc9921;
  --brand-red-500:#c1272d;
  --brand-red-600:#9b1d22;
  --brand-paper:#ffffff;
  --brand-mute-100:#f5f5f5;
  --brand-mute-200:#e9e9e9;
  --brand-mute-300:#c4c4c4;

  --container:1180px;
  --container-wide:1380px;
  --section-y: clamp(28px, 4vw, 56px);

  --font-display:"Oswald","Anton","Helvetica Neue",system-ui,sans-serif;
  --font-body:"Montserrat","Helvetica Neue",system-ui,sans-serif;
}

/* ============== DaisyUI themes ============== */
[data-theme="dedollarize-light"] {
  color-scheme: light;
  --color-base-100: oklch(100% 0 0);
  --color-base-200: oklch(97.5% 0 0);
  --color-base-300: oklch(93% 0 0);
  --color-base-content: oklch(22% 0.02 60);
  --color-primary: oklch(72.5% 0.13 88);
  --color-primary-content: oklch(0% 0 0);
  --color-secondary: oklch(38% 0.07 252);
  --color-secondary-content: oklch(100% 0 0);
  --color-accent: oklch(93% 0.06 88);
  --color-accent-content: oklch(22% 0.02 60);
  --color-neutral: oklch(20% 0 0);
  --color-neutral-content: oklch(100% 0 0);
  --color-info: oklch(70% 0.13 230);
  --color-success: oklch(68% 0.18 145);
  --color-warning: oklch(75% 0.15 85);
  --color-error: oklch(60% 0.21 27);
  --radius-selector:0.5rem; --radius-field:0.7rem; --radius-box:1rem;
  --size-selector:0.25rem; --size-field:0.25rem;
  --border:1px; --depth:1; --noise:0;
}
[data-theme="dedollarize-dark"] {
  color-scheme: dark;
  --color-base-100: oklch(13% 0.005 60);
  --color-base-200: oklch(17% 0.005 60);
  --color-base-300: oklch(22% 0.008 60);
  --color-base-content: oklch(92% 0.04 85);
  --color-primary: oklch(80% 0.14 88);
  --color-primary-content: oklch(0% 0 0);
  --color-secondary: oklch(58% 0.13 252);
  --color-secondary-content: oklch(100% 0 0);
  --color-accent: oklch(85% 0.07 88);
  --color-accent-content: oklch(15% 0.01 60);
  --color-neutral: oklch(90% 0.04 85);
  --color-neutral-content: oklch(13% 0.005 60);
  --color-info: oklch(72% 0.13 230);
  --color-success: oklch(70% 0.18 145);
  --color-warning: oklch(80% 0.15 85);
  --color-error: oklch(68% 0.21 27);
  --radius-selector:0.5rem; --radius-field:0.7rem; --radius-box:1rem;
  --size-selector:0.25rem; --size-field:0.25rem;
  --border:1px; --depth:1; --noise:0;
}

/* ============== Base ============== */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-base-content);
  background: var(--color-base-100);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
sup { line-height: 1; }

/* Ensure inline images don't escape their containers (Tailwind preflight loaded
   at runtime by the browser CDN can shadow these — keep this rule late). */
.hero-figure img { width: 100%; height: auto; }

.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 0.98;
  text-transform: uppercase;
}

/* MUCH bigger hero scale — matches original's dramatic punch */
.h-eyebrow      { font-size: clamp(38px, 7.5vw, 74px); line-height: 0.98; }
.h-hero-strong  { font-size: clamp(54px,12.5vw,124px); line-height: 0.94; letter-spacing: -0.012em; }
.h-section      { font-size: clamp(34px, 5.6vw, 60px); line-height: 1.02; }
.h-section-sub  { font-size: clamp(28px, 4.6vw, 46px); line-height: 1.05; }

.lede {
  font-weight: 500;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
}

.body-prose p { line-height: 1.55; }
.body-prose strong { font-weight: 700; color: inherit; }

.container-narrow { max-width: var(--container);      margin-inline: auto; padding-inline: 20px; }
.container-wide   { max-width: var(--container-wide); margin-inline: auto; padding-inline: 20px; }

/* ============== Gold ribbon CTA ============== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1a1409;
  background:
    linear-gradient(180deg,
      #fff2b8 0%,
      var(--brand-gold-200) 8%,
      var(--brand-gold-400) 45%,
      var(--brand-gold-500) 100%);
  border: 1px solid var(--brand-gold-600);
  border-radius: 14px;
  padding: 18px 36px;
  min-height: 64px;
  font-size: clamp(18px, 2.4vw, 26px);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.55),
    inset 0 -2px 0 rgba(0,0,0,0.18),
    0 4px 0 var(--brand-gold-600),
    0 14px 30px -8px rgba(200,165,45,0.5);
  transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
  width: 100%;
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
  cursor: pointer;
  position: relative;
}
@media (min-width: 640px) {
  .btn-gold { width: auto; min-width: 340px; padding: 20px 48px; }
}
.btn-gold::after {
  content: "›";
  font-size: 1.6em;
  font-weight: 700;
  line-height: 0.6;
  margin-left: 0.2em;
  position: relative;
  top: -0.05em;
}
.btn-gold:hover  { filter: brightness(1.06); transform: translateY(-1px); }
.btn-gold:active {
  transform: translateY(3px);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.55),
    inset 0 -2px 0 rgba(0,0,0,0.18),
    0 1px 0 var(--brand-gold-600),
    0 4px 14px -6px rgba(200,165,45,0.5);
}
.btn-gold:focus-visible { outline: 3px solid var(--brand-gold-200); outline-offset: 3px; }

/* Smaller secondary ribbon when needed */
.btn-gold.btn-gold--sm {
  min-height: 50px;
  padding: 12px 24px;
  font-size: clamp(15px, 1.6vw, 17px);
}

/* ============== Section primitives ============== */
.section       { padding-block: var(--section-y); }
.section-tight { padding-block: clamp(20px, 3vw, 36px); }

.section-heading {
  text-align: center;
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--brand-navy-700);
  letter-spacing: 0.005em;
  line-height: 0.98;
}
[data-theme="dedollarize-dark"] .section-heading { color: var(--brand-gold-200); }
.section-heading .line-1,
.section-heading .line-2 { display: block; font-weight: 700; }
.section-heading .line-1 { font-size: clamp(28px, 4.5vw, 44px); }
.section-heading .line-2 { font-size: clamp(34px, 6vw, 62px); }

.divider-gold {
  width: 90px; height: 4px;
  background: linear-gradient(to right, var(--brand-gold-400), var(--brand-gold-500));
  border-radius: 999px;
  margin: 14px auto 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 13px;
  color: var(--brand-gold-500);
  padding: 6px 12px;
  border: 1px solid var(--brand-gold-500);
  border-radius: 999px;
  background: rgba(200,165,45,0.08);
}

.cta-note {
  text-align: center;
  font-style: italic;
  margin-top: 12px;
  font-size: 14.5px;
  opacity: 0.85;
}

/* ============== Hero ============== */
.hero {
  position: relative;
  isolation: isolate;
  background-color: var(--brand-navy-800);
  background-image:
    radial-gradient(ellipse at center, rgba(8,57,87,0.25) 0%, rgba(0,0,0,0.85) 70%),
    linear-gradient(180deg, rgba(8,70,106,0.45), rgba(0,0,0,0.75)),
    url("https://secure.dedollarizenews.com/wp-content/uploads/sites/10967/2025/10/Dedollarize_Scumbucks_Draft-1_Assets-02.png");
  background-size: cover, cover, 600px auto;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, repeat;
  color: #fff;
  padding-block: clamp(40px, 6vw, 80px);
  border-bottom: 4px solid var(--brand-gold-500);
}
.hero h1 { color: #fff; }
.hero .hero-payoff { color: var(--brand-gold-200); }
.hero .hero-sub {
  font-weight: 500;
  color: rgba(255,255,255,0.94);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
}

/* Red sticker overlay on hero image (matches original "U.S. DEBT VULNERABILITY" badge) */
.hero-sticker {
  position: absolute;
  top: 12%;
  right: -8px;
  background: linear-gradient(180deg, var(--brand-red-500), var(--brand-red-600));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 16px 8px 14px;
  font-size: clamp(13px, 1.4vw, 17px);
  line-height: 1.1;
  box-shadow: 0 8px 18px -6px rgba(0,0,0,0.5);
  border-left: 4px solid var(--brand-gold-400);
  z-index: 2;
  transform: rotate(2deg);
  max-width: 220px;
}
.hero-sticker::after {
  content: "";
  position: absolute;
  right: 100%; top: 0;
  border: 0 solid transparent;
  border-top-width: 0;
  border-right-width: 0;
}
.hero-figure {
  position: relative;
  border-radius: 14px;
  overflow: visible;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08);
}
.hero-figure img { border-radius: 14px; }

/* WATCH NOW pill on top of the hero thumbnail (matches original) */
.hero-watch {
  position: absolute;
  left: 50%;
  top: 12%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 22px 10px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff2b8 0%, var(--brand-gold-400) 50%, var(--brand-gold-500) 100%);
  color: #1a1409;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(15px, 1.8vw, 19px);
  border: 1px solid var(--brand-gold-600);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.5),
    0 8px 18px -8px rgba(0,0,0,0.55);
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}
.hero-watch::before {
  content: "";
  width: 0; height: 0;
  border-style: solid;
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent #1a1409;
  margin-right: 2px;
}
.hero-watch:hover { filter: brightness(1.06); }

/* ============== Opt-in card ============== */
.optin-card {
  background: var(--brand-ink-800);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
  padding: clamp(22px, 3.4vw, 36px);
}

/* =================================================================
   .bri-* — Brighton-timeline LP layer
   Loaded only on landing_page CPT routes via dnl-lp-assets/lp.css.
   Pixel port of Brighton Enterprises "No Fee for Life IRA" reference.
   ================================================================= */

:root {
  --bri-navy:        #1f2a5a;
  --bri-navy-deep:   #0e1640;
  --bri-gold:        #c89b3a;
  --bri-gold-soft:   #e3b85f;
  --bri-gold-pale:   #f6e8c6;
  --bri-cream:       #fdf4d8;
  --bri-ink:         #1c2238;
  --bri-ink-soft:    #555c75;
  --bri-line:        #e7e1d0;
  --bri-paper:       #ffffff;
  --bri-paper-soft:  #fbf9f3;
}

/* Dark-mode token overrides for the .bri-* layer.
   Triggered by <html data-theme="offerlp-dark">, which the theme-toggle
   script flips. Light navy text becomes cream, paper surfaces become deep
   navy, the cream legal banner becomes a muted gold strip, etc. */
[data-theme="offerlp-dark"] {
  --bri-navy:        #f5d784;   /* section headings render in cream/gold */
  --bri-gold-pale:   #3d3a25;
  --bri-cream:       #2a2050;   /* legal banner background */
  --bri-ink:         #f0eee8;
  --bri-ink-soft:    #b6b8c5;
  --bri-line:        #2b3470;
  --bri-paper:       #15183a;   /* cards, surfaces */
  --bri-paper-soft:  #0c1230;   /* page background */
}
[data-theme="offerlp-dark"] .bri-brandbar { background: var(--bri-paper); }
[data-theme="offerlp-dark"] .bri-brand__name { color: #f5d784; }
[data-theme="offerlp-dark"] .bri-brand__name::after { color: #b6b8c5; }
[data-theme="offerlp-dark"] .bri-brandbar__qual,
[data-theme="offerlp-dark"] .bri-brandbar__country { color: #b6b8c5; }
[data-theme="offerlp-dark"] .bri-legal-banner p { color: var(--bri-ink); }
[data-theme="offerlp-dark"] .bri-legal-banner__bell svg path { stroke: var(--bri-gold-soft); }
[data-theme="offerlp-dark"] .bri-input,
[data-theme="offerlp-dark"] .bri-select {
  background: var(--bri-paper-soft);
  color: var(--bri-ink);
  border-color: var(--bri-line);
}
[data-theme="offerlp-dark"] .bri-checkbox { color: var(--bri-ink-soft); }
[data-theme="offerlp-dark"] .bri-form-card,
[data-theme="offerlp-dark"] .bri-tl-item__card,
[data-theme="offerlp-dark"] .bri-why__card,
[data-theme="offerlp-dark"] .bri-guide__side {
  background: var(--bri-paper);
  border-color: var(--bri-line);
}
[data-theme="offerlp-dark"] .bri-guide__side-h { color: var(--bri-ink); }
[data-theme="offerlp-dark"] .bri-guide__side-sub { color: var(--bri-ink-soft); }
[data-theme="offerlp-dark"] .bri-trust { background: var(--bri-paper); border-color: var(--bri-line); }
[data-theme="offerlp-dark"] .bri-trust__copy strong { color: var(--bri-ink); }
[data-theme="offerlp-dark"] .bri-trust__copy span { color: var(--bri-ink-soft); }

.bri-body {
  font-family: 'Montserrat', system-ui, sans-serif;
  background: var(--bri-paper-soft);
  color: var(--bri-ink);
}

/* ----- Brand bar ----- */
.bri-brandbar {
  background: var(--bri-paper);
  border-bottom: 1px solid var(--bri-line);
}
.bri-brandbar__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 14px 28px;
}
.bri-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.bri-brand__logo { width: 44px; height: 44px; display: block; }
.bri-brand__name {
  font-family: 'Oswald', system-ui, sans-serif;
  font-weight: 700; letter-spacing: 0.12em; font-size: 16px;
  color: var(--bri-navy); text-transform: uppercase; line-height: 1;
}
.bri-brand__name::after {
  content: 'ENTERPRISES'; display: block;
  font-size: 11px; letter-spacing: 0.32em; color: var(--bri-ink-soft);
  margin-top: 2px;
}

/* Image-mode brand lockup (used when brand.logo_url is set) — the
   uploaded image is a horizontal lockup that already includes the
   brand name, so hide the redundant text. */
.bri-brand--image .bri-brand__name { display: none; }
.bri-brand--image .bri-brand__logo--image {
  width: auto;
  height: 44px;
  max-width: 240px;
  object-fit: contain;
}
@media (max-width: 980px) {
  .bri-brand--image .bri-brand__logo--image { height: 36px; max-width: 200px; }
}

/* If brand.name is plain text we still want the lockup; the ::after is hardcoded for Brighton.
   For other brands set --bri-brand-sub via inline style. */
.bri-brandbar__center {
  text-align: center;
  font-family: 'Oswald', system-ui, sans-serif;
  letter-spacing: 0.14em;
  font-size: 14px;
}
.bri-brandbar__offer { color: var(--bri-gold); font-weight: 700; text-transform: uppercase; }
.bri-brandbar__sep   { color: var(--bri-ink-soft); margin: 0 8px; }
.bri-brandbar__qual  { color: var(--bri-ink-soft); text-transform: uppercase; }
.bri-brandbar__flag {
  display: inline-flex; align-items: center; gap: 10px; justify-self: end;
  font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.22em;
  color: var(--bri-ink-soft); text-transform: uppercase;
}
.bri-flag svg { display: block; border: 1px solid rgba(0,0,0,0.1); }

/* ----- Hero ----- */
.bri-hero { padding: 40px 0 50px; background: var(--bri-paper-soft); }
.bri-hero__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  padding: 0 28px;
  align-items: start;
}
.bri-hero__h {
  font-family: 'Oswald', system-ui, sans-serif;
  font-weight: 700; text-transform: uppercase; line-height: 1;
  color: var(--bri-navy);
  font-size: clamp(38px, 4.6vw, 62px);
  letter-spacing: 0.01em;
  margin: 0 0 16px;
}
.bri-hero__h--gold { color: var(--bri-gold); display: block; }
.bri-hero__lede {
  font-size: 19px; line-height: 1.55; color: var(--bri-ink-soft);
  margin-bottom: 22px;
  max-width: 560px;
}

/* Hero video poster */
.bri-video {
  position: relative; border-radius: 8px; overflow: hidden;
  box-shadow: 0 16px 36px rgba(0,0,0,0.18);
  background: #000;
}
.bri-video__poster {
  position: relative; aspect-ratio: 16/9;
  background-size: cover; background-position: center;
  cursor: pointer;
}
.bri-video__poster::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,16,32,0.10) 0%, rgba(8,16,32,0.55) 100%);
}
.bri-video__overlay {
  position: absolute; left: 28px; top: 28px; right: 28px; z-index: 2;
  font-family: 'Oswald', sans-serif; color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.bri-video__title { font-size: 24px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; line-height: 1; }
.bri-video__title--big { font-size: clamp(32px, 3.6vw, 48px); font-weight: 700; letter-spacing: 0.02em; }
.bri-video__subtitle {
  font-size: 14px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bri-gold-soft); margin-top: 6px;
}
.bri-video__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 3;
  background: transparent; border: 0; cursor: pointer;
}
.bri-video__play svg { width: 64px; height: 64px; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }
.bri-video__controls {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  background: rgba(0,0,0,0.7); color: #fff;
  padding: 8px 14px; font-size: 12px;
  display: flex; gap: 10px; align-items: center;
}
.bri-video__iframe { width: 100%; aspect-ratio: 16/9; border: 0; }

/* ----- Form card ----- */
.bri-form-card {
  background: var(--bri-paper);
  border: 1px solid var(--bri-line);
  border-radius: 8px;
  padding: 32px 32px 28px;
  box-shadow: 0 12px 32px rgba(31,42,90,0.08);
  width: 100%;
}
.bri-form-card__h {
  font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase;
  text-align: center;
  font-size: clamp(28px, 2.6vw, 36px);
  color: var(--bri-navy); letter-spacing: 0.02em; line-height: 1.05;
  margin: 0 0 12px;
}
.bri-form-card__h--gold { color: var(--bri-gold); }
.bri-form-card__sub {
  text-align: center; font-size: 16px; color: var(--bri-ink-soft);
  margin-bottom: 24px;
}
.bri-form__row { margin-bottom: 12px; }
.bri-form__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bri-form__row--phone { display: grid; grid-template-columns: 80px 1fr; gap: 8px; }
.bri-input, .bri-select {
  width: 100%;
  padding: 10px 14px;
  font-size: 16px;
  line-height: 1.3;
  border: 1px solid var(--bri-line);
  border-radius: 6px;
  background: #fff;
  color: var(--bri-ink);
  font-family: inherit;
}
.bri-input:focus, .bri-select:focus { outline: none; border-color: var(--bri-gold); }
.bri-select { padding: 10px 8px; text-align: center; }
.bri-checkbox {
  display: grid; grid-template-columns: 18px 1fr; gap: 10px;
  align-items: start;
  font-size: 13px; line-height: 1.55; color: var(--bri-ink-soft);
  margin: 14px 0 18px;
}
.bri-checkbox input { width: 16px; height: 16px; accent-color: var(--bri-gold); margin-top: 2px; }
.bri-cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, var(--bri-gold-soft) 0%, var(--bri-gold) 100%);
  color: #fff; font-family: 'Oswald', sans-serif;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 19px;
  padding: 18px 32px;
  border: 0; border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.10);
  cursor: pointer;
  transition: transform .12s, box-shadow .12s, background .12s;
}
.bri-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 14px rgba(200,155,58,0.36); }
.bri-cta--full { width: 100%; }
.bri-form-msg { margin-top: 12px; font-size: 14px; text-align: center; }
.hidden { display: none; }

.bri-badges {
  list-style: none; padding: 0; margin: 22px 0 0;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px;
  border-top: 1px solid var(--bri-line); padding-top: 18px;
}
.bri-badges li { text-align: center; font-size: 12px; color: var(--bri-ink-soft); }
.bri-badges__icon { display: block; margin: 0 auto 6px; width: 28px; }
.bri-badges__icon svg { width: 28px; height: 28px; }
.bri-badges li strong { display: block; color: var(--bri-ink); font-size: 13px; font-weight: 700; letter-spacing: 0.02em; }
.bri-badges__sub { display: block; margin-top: 2px; }

/* Gold accent inside the badges */
.bri-icon-gold { color: var(--bri-gold); }
.bri-icon-gold-sm { color: var(--bri-gold); }

/* ----- Legal banner ----- */
.bri-legal-banner {
  background: var(--bri-cream);
  border-top: 1px solid var(--bri-gold-pale);
  border-bottom: 1px solid var(--bri-gold-pale);
}
.bri-legal-banner__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 36px 1fr; gap: 16px; align-items: start;
  padding: 16px 28px;
  font-size: 16px; color: var(--bri-navy); line-height: 1.55;
}
.bri-legal-banner__bell svg { width: 28px; height: 28px; }

/* ----- Timeline ----- */
.bri-timeline { padding: 64px 0 40px; background: var(--bri-paper); }
.bri-timeline__inner { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.bri-timeline__h {
  text-align: center;
  font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: clamp(26px, 2.6vw, 36px);
  color: var(--bri-navy);
  margin-bottom: 40px;
  letter-spacing: 0.06em;
}
.bri-timeline__h--label { color: var(--bri-gold); margin-right: 6px; }

/* DaisyUI .timeline.timeline-vertical override layer.
   Rail in gold-pale; round gold-bordered middle marker; brand cards. */
.bri-timeline__list.timeline { max-width: 1100px; margin: 0 auto; }
.bri-timeline__list.timeline hr { background: var(--bri-gold-pale); width: 2px; border: 0; }
.bri-tl-marker {
  display: flex; align-items: center; justify-content: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--bri-paper);
  border: 2px solid var(--bri-gold);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  z-index: 1;
}
.bri-tl-marker__icon { width: 70%; height: 70%; display: flex; align-items: center; justify-content: center; }
.bri-tl-marker__icon img { width: 100%; height: 100%; object-fit: contain; }
.bri-tl-marker__num { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 22px; color: var(--bri-navy); }
.bri-tl-item { max-width: 480px; }
/* DaisyUI .card supplies the structure; brand tokens keep the surface
   colors, tighter padding, and a gentle elevation that lifts on hover. */
.bri-tl-item__card {
  background: var(--bri-paper);
  border: 1px solid var(--bri-line);
  box-shadow: 0 1px 2px rgba(31,42,90,0.04), 0 4px 12px rgba(31,42,90,0.06);
  transition: transform 220ms cubic-bezier(.2,.7,.2,1), box-shadow 220ms ease, border-color 220ms ease;
}
.bri-tl-item__card .card-body { padding: 12px 16px 14px; gap: 4px; }
.bri-tl-item__card:hover {
  transform: translateY(-3px);
  border-color: var(--bri-gold-pale);
  box-shadow: 0 2px 4px rgba(31,42,90,0.06), 0 14px 28px rgba(31,42,90,0.10), 0 0 0 1px rgba(200,155,58,0.08);
}
.bri-tl-item__date {
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--bri-gold);
}
.bri-tl-item__title {
  font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: 22px; color: var(--bri-navy);
  margin: 6px 0 10px; line-height: 1.1;
}
.bri-tl-item__body { font-size: 16px; line-height: 1.55; color: var(--bri-ink-soft); margin: 0; }

@media (max-width: 800px) {
  .bri-tl-marker { width: 56px; height: 56px; }
  .bri-tl-marker__num { font-size: 18px; }
}

/* ----- Why this matters ----- */
.bri-why { background: #f3ecd6; padding: 64px 0; }
.bri-why__inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.bri-why__h {
  text-align: center;
  font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: clamp(26px, 2.6vw, 34px);
  color: var(--bri-navy); margin-bottom: 32px;
  letter-spacing: 0.08em;
}
.bri-why__grid {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
/* DaisyUI .card supplies the structure; brand tokens keep the cream-
   tinted border, tighter padding, gold-tinted shadow, and a hover lift. */
.bri-why__card {
  background: var(--bri-paper);
  border: 1px solid #e5d9b6;
  box-shadow: 0 1px 2px rgba(200,155,58,0.05), 0 6px 16px rgba(31,42,90,0.06);
  transition: transform 220ms cubic-bezier(.2,.7,.2,1), box-shadow 220ms ease, border-color 220ms ease;
}
.bri-why__card .card-body {
  padding: 16px 14px 18px;
  text-align: center;
  align-items: center;
  gap: 6px;
}
.bri-why__card .card-body p { margin: 0; }
.bri-why__card:hover {
  transform: translateY(-4px);
  border-color: var(--bri-gold);
  box-shadow: 0 2px 6px rgba(200,155,58,0.12), 0 18px 34px rgba(31,42,90,0.14), 0 0 0 1px rgba(200,155,58,0.18);
}
.bri-why__icon { display: block; color: var(--bri-gold); margin: 0 auto 12px; width: 56px; height: 56px; }
.bri-why__icon svg { width: 100%; height: 100%; }
.bri-why__card p { font-size: 15px; line-height: 1.55; color: var(--bri-ink-soft); margin: 0; }
@media (max-width: 1000px) { .bri-why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .bri-why__grid { grid-template-columns: 1fr; } }

/* ----- Guide promo ----- */
.bri-guide { background: var(--bri-paper); padding: 56px 0 64px; }
.bri-guide__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 28px;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 0.55fr;
  gap: 36px;
  align-items: center;
}
.bri-guide__cover { position: relative; }
.bri-guide__cover img { max-width: 100%; height: auto; display: block; }

/* Book placeholder mockup — used when guide.cover_url is empty */
.bri-book-placeholder {
  position: relative;
  width: 100%; height: 360px;
}
.bri-book {
  position: absolute;
  width: 200px; height: 280px;
  background: linear-gradient(135deg, var(--bri-navy) 0%, var(--bri-navy-deep) 100%);
  border-radius: 4px 6px 6px 4px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.20);
  color: #fff;
  padding: 22px 18px;
  font-family: 'Oswald', sans-serif;
  overflow: hidden;
}
.bri-book__strip {
  position: absolute; right: -10px; top: -10px;
  width: 140px; height: 30px;
  background: var(--bri-gold);
  transform: rotate(28deg);
}
.bri-book__title { font-size: 16px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bri-gold-soft); }
.bri-book__sub   { font-size: 15px; font-weight: 700; letter-spacing: 0.01em; line-height: 1.15; margin-top: 6px; }
.bri-book--back  { left: 0;   top: 30px; transform: rotate(-6deg); }
.bri-book--front { left: 90px; top: 50px; transform: rotate(4deg); }

.bri-guide__h {
  font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: clamp(32px, 3.0vw, 44px);
  color: var(--bri-navy); margin: 0 0 10px; line-height: 1.05;
}
.bri-guide__h--gold { color: var(--bri-gold); }
.bri-guide__lede { font-size: 17px; color: var(--bri-ink-soft); margin: 0 0 22px; }
.bri-guide__bullets {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px;
}
.bri-guide__bullets li {
  display: grid; grid-template-columns: 24px 1fr; gap: 10px; align-items: start;
  font-size: 17px; color: var(--bri-ink);
}
.bri-guide__check { display: block; }
.bri-guide__check svg { width: 22px; height: 22px; display: block; }
.bri-guide__side {
  background: var(--bri-cream);
  border: 1px solid var(--bri-gold-pale);
  border-radius: 8px;
  padding: 20px 22px;
  text-align: left;
  align-self: stretch;
}
.bri-guide__side-h {
  font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: 20px; color: var(--bri-navy); letter-spacing: 0.06em;
}
.bri-guide__side-sub { font-size: 14px; color: var(--bri-ink-soft); margin: 2px 0 14px; }
.bri-guide__side ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; font-size: 15px; }
.bri-guide__side ul li { display: grid; grid-template-columns: 22px 1fr; gap: 8px; color: var(--bri-ink); align-items: center; }
.bri-guide__side-i { color: var(--bri-gold); font-size: 16px; line-height: 1; }

@media (max-width: 980px) {
  .bri-guide__inner { grid-template-columns: 1fr; }
}

/* ----- Claim CTA ----- */
.bri-claim {
  background: linear-gradient(180deg, var(--bri-navy) 0%, var(--bri-navy-deep) 100%);
  color: #fff;
  padding: 44px 0 40px;
}
.bri-claim__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 28px;
  display: grid;
  /* Mirror .bri-guide__inner column ratios for the first two cols so the
     form below aligns vertically with the checkmark bullets above. The
     third column widens (0.55 → 0.85) to host the TCPA fine-print stack. */
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr) minmax(0, 0.85fr);
  gap: 36px;
  align-items: start;
}
.bri-claim__inner > * { min-width: 0; }
/* Emblem sits on a cream disc so the logo's navy parts (which would
   blend with the navy CTA bg) read against their intended light context. */
.bri-claim__emblem {
  line-height: 0;
  background: #fdf4d8;            /* cream — same as legal banner */
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.35), 0 0 0 3px rgba(200,155,58,0.18);
}
.bri-claim__emblem img {
  width: 80px; height: 80px; display: block; object-fit: contain;
}
.bri-claim__h {
  font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: clamp(26px, 2.4vw, 32px);
  margin: 0; line-height: 1.1; color: #fff;
}
.bri-claim__h--gold { color: var(--bri-gold); }
.bri-claim__sub { font-size: 15px; color: rgba(255,255,255,0.85); margin: 8px 0 0; }
.bri-claim__body { font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.55; margin-top: 12px; }
.bri-claim__body p { margin: 0 0 8px; }
.bri-claim__body p:last-child { margin-bottom: 0; }
.bri-claim__body strong { color: rgba(255,255,255,0.92); font-weight: 500; }
.bri-claim__arrow { color: var(--bri-gold); font-size: 18px; margin-top: 8px; display: inline-block; }
.bri-claim__form { display: grid; gap: 8px; }
.bri-claim__row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.bri-claim__row .bri-input { background: #fff; }
.bri-claim__phone { display: grid; grid-template-columns: 80px 1fr; gap: 4px; }
.bri-checkbox--compact { color: rgba(255,255,255,0.85); font-size: 12px; margin: 6px 0 0; }
.bri-claim__form .bri-checkbox--compact input { accent-color: var(--bri-gold); }
.bri-claim__submit {
  width: 100%;
  margin-top: 6px;
  padding: 16px 24px;
  font-size: 17px;
}
.bri-claim__secure {
  display: grid; grid-template-columns: 24px 1fr; gap: 8px;
  font-size: 11px; color: rgba(255,255,255,0.85);
}
.bri-claim__secure .bri-icon-gold-sm { font-size: 18px; align-self: center; }

@media (max-width: 1100px) {
  .bri-claim__inner { grid-template-columns: 1fr; }
  .bri-claim__submit { width: 100%; }
}

/* ----- Trust strip ----- */
.bri-trust {
  background: var(--bri-paper);
  border-top: 1px solid var(--bri-line);
  border-bottom: 1px solid var(--bri-line);
  padding: 22px 0;
}
.bri-trust__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 28px;
  display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 16px;
}
.bri-trust__item {
  display: grid; grid-template-columns: 40px 1fr; gap: 12px; align-items: center;
}
.bri-trust__icon { width: 36px; height: 36px; color: var(--bri-gold); }
.bri-trust__icon svg { width: 100%; height: 100%; }
.bri-trust__copy strong {
  display: block;
  font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: 16px; color: var(--bri-navy); letter-spacing: 0.06em;
}
.bri-trust__copy span { font-size: 14px; color: var(--bri-ink-soft); }

/* Layout breakpoints */
@media (max-width: 980px) {
  .bri-hero__inner { grid-template-columns: 1fr; }
  .bri-brandbar__inner { grid-template-columns: auto auto; }
  .bri-brandbar__center { grid-column: 1 / -1; text-align: left; }
}


/* ----- Brand footer (below the trust strip) ----- */
.bri-footer {
  background: #f3ecd6;
  padding: 30px 0 36px;
  text-align: center;
}
.bri-footer__inner {
  max-width: 1100px; margin: 0 auto; padding: 0 28px;
  display: flex; flex-direction: row; align-items: center; justify-content: center;
  gap: 22px; flex-wrap: wrap;
}
.bri-footer__brand { display: inline-block; line-height: 0; }
.bri-footer__brand img { height: 36px; width: auto; max-width: 220px; object-fit: contain; }
.bri-footer__brand--emblem img { height: 96px; width: 96px; max-width: 96px; }
.bri-footer__copy { text-align: left; max-width: 720px; }
@media (max-width: 640px) {
  .bri-footer__inner { flex-direction: column; }
  .bri-footer__copy { text-align: center; }
}
.bri-footer__brand-text {
  font-family: 'Oswald', sans-serif; font-weight: 700; letter-spacing: 0.12em;
  font-size: 18px; color: var(--bri-navy); text-transform: uppercase;
}
.bri-footer__copy {
  font-size: 14px; color: var(--bri-ink-soft); line-height: 1.55; margin: 0;
  font-weight: 400;
}
.bri-footer__copy a { color: var(--bri-ink-soft); text-decoration: underline; font-weight: 400; }
.bri-footer__copy a:hover { color: var(--bri-gold); }

[data-theme="offerlp-dark"] .bri-footer { background: var(--bri-paper-soft); border-top-color: var(--bri-line); }
[data-theme="offerlp-dark"] .bri-footer__copy { color: var(--bri-ink-soft); }
[data-theme="offerlp-dark"] .bri-footer__brand img { filter: brightness(0.92) contrast(1.05); }


/* TCPA fine-print used in both forms */
.bri-tcpa {
  font-size: 11px; line-height: 1.55;
  color: var(--bri-ink-soft);
  margin: 0 0 14px;
}
.bri-tcpa, .bri-tcpa * { font-weight: 400 !important; }
.bri-tcpa strong { color: var(--bri-ink); font-weight: 400 !important; }
/* Variant for the dark navy claim CTA */
.bri-tcpa--dark { color: rgba(255,255,255,0.78); }
.bri-tcpa--dark strong { color: rgba(255,255,255,0.92); font-weight: 400 !important; }


/* Right column of the claim CTA: stacks the TCPA fine print above the
   "Your Information is Secure & Private" badge. */
.bri-claim__aside { display: flex; flex-direction: column; gap: 14px; align-self: start; padding-top: 4px; }
.bri-claim__aside .bri-tcpa--dark { margin: 0; }


/* Claim CTA form heading — small label above the inputs */
.bri-claim__form-h {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--bri-gold-soft);
  margin: 0 0 4px;
}

[data-theme="offerlp-dark"] .bri-why { background: #1a1f48; }


/* Thematic icon inside each timeline card — floated so body text wraps */
.bri-tl-item__pic {
  float: left;
  width: 72px; height: 72px;
  margin: 2px 12px 6px 0;
  color: var(--bri-gold);
  display: flex; align-items: center; justify-content: center;
}
.bri-tl-item__pic svg { width: 100%; height: 100%; display: block; }
.bri-tl-item__pic img { width: 100%; height: 100%; object-fit: contain; }
.bri-tl-item__body { overflow: hidden; /* clear float context so wrapping works cleanly */ }
.bri-tl-item__body::after { content: ''; display: block; clear: both; }


/* Briefing LP "What Changed?" grid — bypasses Tailwind which doesn't
   hydrate reliably on this build. */
@media (max-width: 980px) {
  .bri-changed-grid { grid-template-columns: 1fr !important; }
}
.bri-changed-img { display: block; }
