:root {
    /* palette lifted from the live blueharboursolutions.com stylesheet */
    --navy:        #0C1B35;
    --navy-2:      #0F2143;
    --navy-deep:   #050D1C;
    --gold:        #F0B429;   /* primary accent */
    --gold-hover:  #D99E1E;
    --gold-ink:    #9A7D2E;   /* gold as TEXT on light grounds, contrast-safe */
    --gold-soft:   #FFE8A3;   /* tint only, never the primary accent */
    --gold-tint:   #FBF3DC;
    --grey-light:  #C9CCD3;
    --slate:       #2C2F36;
    --surface:     #F4F6F9;

    --ground:      #FFFFFF;
    --ground-alt:  var(--surface);
    --ink:         var(--slate);
    --ink-strong:  var(--navy);
    --ink-muted:   #55585F;
    --rule:        #E7EBF0;
    --card:        #FFFFFF;
    --callout:     var(--gold-tint);
    --callout-rule:#EADAA8;
    --accent-ink:  var(--gold-ink);  /* gold text that sits on a light ground */

    --display: "Source Serif 4", Georgia, "Iowan Old Style", Palatino, serif;
    --sans: Inter, system-ui, -apple-system, "Helvetica Neue", Helvetica, Arial, sans-serif;

    --wrap: 1140px;
    --measure: 62ch;
  }

  @media (prefers-color-scheme: dark) {
    :root {
      --ground:      #0A1426;
      --ground-alt:  #0E1B31;
      --ink:         #C6CDDA;
      --ink-strong:  #F1F4F9;
      --ink-muted:   #8A94A8;
      --rule:        #1E2C46;
      --card:        #101E37;
      --callout:     #16233F;
      --callout-rule:#3A4468;
      --accent-ink:  var(--gold);
    }
  }
  :root[data-theme="dark"] {
    --ground:      #0A1426;
    --ground-alt:  #0E1B31;
    --ink:         #C6CDDA;
    --ink-strong:  #F1F4F9;
    --ink-muted:   #8A94A8;
    --rule:        #1E2C46;
    --card:        #101E37;
    --callout:     #16233F;
    --callout-rule:#3A4468;
    --accent-ink:  var(--gold);
  }
  :root[data-theme="light"] {
    --ground:      #FFFFFF;
    --ground-alt:  #F4F6F9;
    --ink:         #2C2F36;
    --ink-strong:  #0C1B35;
    --ink-muted:   #55585F;
    --rule:        #E7EBF0;
    --card:        #FFFFFF;
    --callout:     #FBF3DC;
    --callout-rule:#EADAA8;
    --accent-ink:  var(--gold-ink);
  }

  * { box-sizing: border-box; }

  body {
    margin: 0;
    background: var(--ground);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
  }

  .wrap {
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: 32px;
  }

  h1, h2, h3 {
    font-family: var(--display);
    font-weight: 400;
    color: var(--ink-strong);
    text-wrap: balance;
    margin: 0;
  }

  .eyebrow {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin: 0;
  }

  /* ---------- review chrome (mockup only, not part of the site) ---------- */
  .review-bar {
    background: repeating-linear-gradient(135deg, #1A2440, #1A2440 12px, #16203A 12px, #16203A 24px);
    color: var(--grey-light);
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 10px 32px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  .review-bar strong { color: var(--gold); font-weight: 600; }

  /* ---------- nav ---------- */
  .nav {
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-block: 20px;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
    color: #fff;
    text-decoration: none;
    font-family: var(--display);
    font-size: 19px;
    letter-spacing: 0.01em;
  }
  .brand:hover { color: #fff; }
  .mark {
    height: 34px; width: auto;
    flex: none;
    display: block;
  }
  .nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0; padding: 0;
  }
  .nav-links a {
    color: var(--grey-light);
    text-decoration: none;
    font-size: 15px;
  }
  .nav-links a:hover, .nav-links a:focus-visible { color: var(--gold); }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 10px;
    border: 1px solid transparent;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--navy);
  }
  .btn-primary:hover { background: var(--gold-hover); }
  .btn-ghost {
    color: #fff;
    border-color: rgba(255,255,255,0.28);
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

  a:focus-visible, button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
  }

  /* ---------- hero ---------- */
  .hero {
    background: var(--navy);
    color: var(--grey-light);
    position: relative;
    overflow: hidden;
  }
  /* lighthouse beam, the only decorative motif, per brand rules */
  .hero::after {
    content: "";
    position: absolute;
    top: -20%; right: -10%;
    width: 620px; height: 620px;
    background:
      conic-gradient(from 200deg at 70% 30%,
        rgba(255,232,163,0.10) 0deg,
        rgba(255,232,163,0.00) 34deg,
        rgba(255,232,163,0.00) 320deg,
        rgba(255,232,163,0.07) 360deg);
    pointer-events: none;
  }
  .hero-inner {
    padding-block: 104px 88px;
    position: relative;
    z-index: 1;
    max-width: 780px;
  }
  .hero .eyebrow { color: var(--gold); margin-bottom: 26px; }
  .hero h1 {
    color: #fff;
    font-size: clamp(38px, 5.2vw, 61px);
    line-height: 1.08;
    letter-spacing: -0.015em;
    max-width: 16ch;
  }
  .hero p {
    font-size: 19px;
    line-height: 1.62;
    max-width: 60ch;
    margin: 28px 0 0;
  }
  .hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 40px;
  }
  .hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 48px;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .hero-facts div {
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid rgba(255,255,255,0.12);
  }
  .hero-facts div:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
  .hero-facts dt {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(201,204,211,0.65);
    margin-bottom: 5px;
  }
  .hero-facts dd {
    margin: 0;
    font-family: var(--display);
    font-size: 22px;
    color: #fff;
    font-variant-numeric: tabular-nums;
  }

  /* ---------- generic section ---------- */
  .band { padding-block: 96px; }
  .band-alt { background: var(--ground-alt); }
  .band-navy {
    background: var(--navy);
    color: var(--grey-light);
  }
  .band-navy h2, .band-navy h3 { color: #fff; }
  .band-navy .eyebrow { color: var(--gold); }

  .section-head { max-width: var(--measure); margin-bottom: 52px; }
  .section-head .eyebrow { margin-bottom: 16px; }
  .section-head h2 {
    font-size: clamp(30px, 3.4vw, 41px);
    line-height: 1.16;
    letter-spacing: -0.012em;
  }
  .section-head p {
    margin: 20px 0 0;
    font-size: 18px;
  }

  /* ---------- problem ---------- */
  .problem-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 72px;
    align-items: start;
  }
  .questions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    list-style: none;
    margin: 0; padding: 0;
  }
  .questions li {
    border: 1px solid var(--rule);
    border-radius: 999px;
    padding: 7px 15px;
    font-size: 14.5px;
    color: var(--ink-muted);
    background: var(--card);
  }
  .verdict {
    font-family: var(--display);
    font-size: 27px;
    line-height: 1.35;
    color: var(--ink-strong);
    border-left: 3px solid var(--gold);
    padding-left: 24px;
    margin: 0;
  }
  .verdict em { font-style: italic; }

  /* ---------- triggers ---------- */
  .triggers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .trigger {
    border-top: 2px solid var(--rule);
    padding-top: 22px;
  }
  .trigger:hover { border-top-color: var(--gold); }
  .trigger h3 {
    font-size: 21px;
    line-height: 1.28;
    margin-bottom: 10px;
  }
  .trigger p {
    margin: 0;
    font-size: 15.5px;
    color: var(--ink-muted);
  }

  .anchor-block {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 72px;
    padding-top: 56px;
    border-top: 1px solid var(--rule);
  }
  .anchor-figure {
    background: var(--callout);
    border: 1px solid var(--callout-rule);
    border-radius: 14px;
    padding: 36px 34px;
  }
  .anchor-math {
    font-family: var(--display);
    font-size: 27px;
    line-height: 1.35;
    color: var(--ink-strong);
    margin: 0;
  }
  .anchor-math strong {
    font-weight: 400;
    font-size: 40px;
    color: var(--ink-strong);
    font-variant-numeric: tabular-nums;
  }

  /* ---------- guarantee ---------- */
  .guarantee {
    margin-top: 28px;
    padding: 26px 30px;
    border: 1px solid var(--callout-rule);
    border-left: 3px solid var(--gold);
    border-radius: 10px;
    background: var(--card);
  }
  .guarantee h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .guarantee p { margin: 0; color: var(--ink-muted); font-size: 16px; }

  .founding {
    margin-top: 20px;
    font-size: 15px;
    color: var(--ink-muted);
  }
  .founding strong { color: var(--ink-strong); font-weight: 600; }

  /* ---------- pillars ---------- */
  .pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
  }
  .pillar {
    background: var(--card);
    padding: 40px;
  }
  .pillar h3 {
    font-size: 25px;
    margin-bottom: 12px;
  }
  .pillar p { margin: 0; color: var(--ink-muted); }
  .pillar .tick {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 22px;
  }

  /* ---------- receive (numbered, the Brief genuinely has five parts) ---------- */
  .receive { display: grid; gap: 0; }
  .receive li {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 28px;
    padding-block: 28px;
    border-top: 1px solid var(--rule);
    align-items: baseline;
  }
  .receive li:last-child { border-bottom: 1px solid var(--rule); }
  .receive .num {
    font-family: var(--display);
    font-size: 30px;
    color: var(--accent-ink);
    font-variant-numeric: tabular-nums;
  }
  .receive h3 { font-size: 22px; margin-bottom: 7px; }
  .receive p { margin: 0; color: var(--ink-muted); max-width: 64ch; }
  ol.receive { list-style: none; margin: 0; padding: 0; }

  /* ---------- process (a true sequence) ---------- */
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    counter-reset: step;
  }
  .step {
    padding-top: 22px;
    border-top: 2px solid rgba(255,255,255,0.18);
  }
  .step:first-child { border-top-color: var(--gold); }
  .step .when {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
  }
  .step h3 { font-size: 21px; margin-bottom: 9px; }
  .step p { margin: 0; font-size: 15.5px; color: rgba(201,204,211,0.82); }

  /* ---------- engagement callout ---------- */
  .engagement {
    background: var(--callout);
    border: 1px solid var(--callout-rule);
    border-radius: 14px;
    padding: 48px 52px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
  }
  .engagement h2 { font-size: 33px; margin-bottom: 14px; }
  .engagement p { margin: 0; max-width: 52ch; color: var(--ink); }
  .price {
    text-align: right;
    flex: none;
  }
  .price .figure {
    font-family: var(--display);
    font-size: 52px;
    line-height: 1;
    color: var(--ink-strong);
    font-variant-numeric: tabular-nums;
  }
  .price .unit {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-top: 10px;
  }

  /* ---------- exclusions ---------- */
  .excl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
  }
  .excl-list {
    list-style: none;
    margin: 0; padding: 0;
  }
  .excl-list li {
    padding: 18px 0 18px 26px;
    position: relative;
    font-size: 16px;
    color: rgba(201,204,211,0.82);
    break-inside: avoid;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .excl-list li strong {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 3px;
  }
  .excl-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 27px;
    width: 12px; height: 1px;
    background: var(--gold);
  }
  .map-line {
    font-family: var(--display);
    font-size: 29px;
    color: #fff;
    margin: 34px 0 0;
    line-height: 1.35;
  }

  /* ---------- disclosure ---------- */
  .disclosure {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    border-radius: 2px;
  }
  .rule-card {
    background: var(--card);
    padding: 36px;
  }
  .rule-card .n {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
    display: block;
    margin-bottom: 16px;
  }
  .rule-card h3 { font-size: 21px; margin-bottom: 11px; }
  .rule-card p { margin: 0; font-size: 15.5px; color: var(--ink-muted); }
  .rule-card.owned {
    background: var(--callout);
  }
  .badge {
    display: inline-block;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--navy);
    color: var(--gold);
    padding: 5px 10px;
    border-radius: 4px;
    margin-bottom: 16px;
  }
  .signature {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--rule);
    font-family: var(--display);
    font-size: 20px;
    font-style: italic;
    color: var(--ink-strong);
    max-width: var(--measure);
  }
  .signature span {
    display: block;
    font-family: var(--sans);
    font-style: normal;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-top: 14px;
  }

  /* ---------- ladder ---------- */
  .ladder {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .rung {
    border: 1px solid var(--rule);
    border-radius: 10px;
    padding: 30px 26px;
    background: var(--card);
  }
  .rung.now {
    border-color: var(--navy);
    border-width: 2px;
  }
  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .rung.now { border-color: var(--gold); }
  }
  :root[data-theme="dark"] .rung.now { border-color: var(--gold); }
  .rung .stage {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
    display: block;
    margin-bottom: 12px;
  }
  .rung.now .stage { color: var(--ink-strong); font-weight: 700; }
  .rung h3 { font-size: 20px; margin-bottom: 8px; }
  .rung p { margin: 0; font-size: 15px; color: var(--ink-muted); }

  /* ---------- founder ---------- */
  .founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 72px;
    align-items: start;
  }
  .cred-group + .cred-group { margin-top: 34px; }
  .cred-group > .eyebrow { margin-bottom: 14px; }
  .cred {
    list-style: none;
    margin: 0; padding: 0;
    display: grid;
    gap: 0;
  }
  .cred li {
    padding: 15px 0 15px 18px;
    border-top: 1px solid var(--rule);
    border-left: 2px solid transparent;
  }
  .cred li:last-child { border-bottom: 1px solid var(--rule); }
  .cred .org {
    display: block;
    color: var(--ink-strong);
    font-weight: 600;
    font-size: 16.5px;
    line-height: 1.35;
  }
  .cred .role {
    display: block;
    color: var(--ink-muted);
    font-size: 15px;
    line-height: 1.45;
    margin-top: 3px;
  }
  .cred li.current { border-left-color: var(--gold); }
  .cred .note {
    display: inline-block;
    margin-top: 6px;
    font-size: 13.5px;
    color: var(--accent-ink);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
  }
  .cred .note:hover { color: var(--ink-strong); }
  .founder-quote {
    font-family: var(--display);
    font-size: 24px;
    line-height: 1.45;
    color: var(--ink-strong);
  }

  /* ---------- wildecho, deliberately its OWN world, not a BHS card ---------- */
  .band-wild {
    background: #030A05;
    background-image:
      radial-gradient(ellipse at 15% 30%, rgba(10,40,15,.9) 0%, transparent 55%),
      radial-gradient(ellipse at 85% 5%, rgba(5,28,10,.75) 0%, transparent 50%);
    color: #E2F5E8;
    padding-block: 88px;
  }
  .band-wild .eyebrow { color: rgba(134,239,172,.7); }
  .wild-inner { text-align: center; }
  .frog {
    width: 84px; height: 84px;
    filter: drop-shadow(0 0 22px rgba(74,222,128,.4));
  }
  .band-wild .eyebrow { color: rgba(134,239,172,.55); margin-bottom: 30px; }
  .wild-name {
    font-family: var(--display);
    font-size: clamp(42px, 6vw, 62px);
    line-height: 1.05;
    margin: 16px 0 6px;
    background: linear-gradient(135deg, #86EFAC, #4ADE80, #A7F3D0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #4ADE80;
  }
  .wild-hook {
    font-family: var(--display);
    font-style: italic;
    color: #A7F3D0;
    font-size: clamp(19px, 3vw, 26px);
    margin: 4px 0 14px;
  }
  .band-wild p.body {
    color: rgba(134,239,172,.72);
    max-width: 54ch;
    margin: 12px auto 0;
    font-size: 17px;
  }
  .wild-feats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 48px auto 0;
    text-align: left;
  }
  .we-pill {
    display: inline-block;
    font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
    color: #86EFAC;
    background: rgba(74,222,128,.08);
    border: 1px solid rgba(74,222,128,.24);
    border-radius: 50px;
    padding: 6px 16px;
  }
  .btn-wild {
    display: inline-flex; align-items: center; gap: 9px;
    background: linear-gradient(135deg, #166534, #15803D);
    border: 1px solid #4ADE80;
    color: #DCFCE7;
    font-weight: 500; font-size: 15px;
    padding: 13px 26px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 28px;
  }
  .btn-wild:hover { border-color: #86EFAC; color: #fff; }
  .btn-wild:focus-visible { outline: 2px solid #4ADE80; outline-offset: 3px; }
  .wild-feats { display: grid; gap: 12px; }
  .wild-feat {
    background: rgba(10,30,14,.6);
    border: 1px solid rgba(74,222,128,.14);
    border-radius: 16px;
    padding: 20px 22px;
  }
  .wild-feat h4 {
    margin: 0 0 5px;
    font-family: var(--sans);
    font-size: 16px; font-weight: 600;
    color: #F0FDF4;
  }
  .wild-feat p { margin: 0; font-size: 14.5px; color: rgba(134,239,172,.62); }

  /* ---------- final cta ---------- */
  .final { text-align: left; }
  .final h2 {
    font-size: clamp(32px, 3.8vw, 45px);
    line-height: 1.15;
    max-width: 18ch;
  }
  .final p { margin: 22px 0 0; max-width: 54ch; font-size: 18px; }

  /* ---------- footer ---------- */
  .footer {
    background: var(--navy-deep);
    color: rgba(201,204,211,0.7);
    padding-block: 64px 40px;
    font-size: 15px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 48px;
  }
  .footer h4 {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin: 0 0 18px;
  }
  .footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
  .footer a { color: rgba(201,204,211,0.75); text-decoration: none; }
  .footer a:hover { color: var(--gold); }
  .footer .brand { color: #fff; margin-bottom: 18px; }
  .footer address { font-style: normal; line-height: 1.7; }
  .colophon {
    margin-top: 56px;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13.5px;
    color: rgba(201,204,211,0.5);
  }

  @media (max-width: 900px) {
    .problem-grid, .excl-grid, .founder-grid, .anchor-block { grid-template-columns: 1fr; gap: 44px; }
    .pillars, .disclosure { grid-template-columns: 1fr; }
    .steps, .ladder, .triggers, .wild-feats { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .engagement, .we-card { grid-template-columns: 1fr; gap: 32px; }
    .price { text-align: left; }
    .nav-links { display: none; }
    .band { padding-block: 68px; }
  }
  @media (max-width: 560px) {
    .steps, .ladder, .footer-grid, .triggers, .wild-feats { grid-template-columns: 1fr; }
    .hero-facts div { border-right: 0; margin-right: 0; padding-right: 0; width: 100%; margin-bottom: 16px; }
    .wrap { padding-inline: 22px; }
  }

  @media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
  }
