:root {
  color-scheme: light;
  --ink:#101823; --ink2:#1b2634; --ink3:#2b3849;
  --paper:#f6f4ef; --paper2:#ffffff;
  --brass:#b8863b; --brass2:#e0b464;
  --verdig:#2f7d6c; --rust:#a4543a;
  --text:#1a222e; --muted:#5c6675; --line:#d9d3c7;
  --gut:20px;
  --maxw:1140px;
}

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

html { -webkit-text-size-adjust:100%; }

body {
  margin:0;
  background:var(--paper);
  color:var(--text);
  font:400 17px/1.68 "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

img { max-width:100%; height:auto; }

/* ---------- the ONE wrapper that owns the mobile gutter ------------------ */
/* padding-left/right only. A `padding` shorthand here is the documented way
   to lose the gutter, because a later shorthand silently resets it. */
.be-wrap {
  width:100%;
  max-width:var(--maxw);
  margin-left:auto;
  margin-right:auto;
  padding-left:var(--gut);
  padding-right:var(--gut);
}

/* ======================= masthead ======================================= */
.be-head {
  background:var(--ink);
  border-bottom:3px solid var(--brass);
  position:sticky; top:0; z-index:50;
}
.be-head__bar {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:16px;
  min-height:66px;
}
/* The logo's "Spin" half is #fff, so it needs a dark plate to stay visible. */
.be-logo {
  display:flex; align-items:center;
  width:150px; flex:0 0 150px;
  padding:6px 0;
}
.be-logo img { display:block; width:150px; height:32px; }

.be-burger {
  display:none;
  width:46px; flex:0 0 46px;
  height:38px;
  align-items:center; justify-content:center;
  gap:5px;
  background:var(--ink2);
  border:1px solid var(--ink3);
  border-radius:6px;
  color:#fff;
  font:600 13px/1 "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  cursor:pointer;
}
.be-burger__bars { display:inline-block; width:15px; height:11px; position:relative; }
.be-burger__bars::before,
.be-burger__bars::after,
.be-burger__bars span {
  content:""; position:absolute; left:0; right:0; height:2px;
  background:var(--brass2); border-radius:2px;
}
.be-burger__bars::before { top:0; }
.be-burger__bars span { top:4.5px; }
.be-burger__bars::after { bottom:0; }

/* margin-left:auto on the NAV is what pushes the CTA to the far right */
.be-nav {
  margin-left:auto;
  display:flex; flex-wrap:wrap; align-items:center;
  gap:4px 18px;
}
.be-nav a {
  color:#d7dde6;
  text-decoration:none;
  font-size:15px;
  padding:8px 2px;
  border-bottom:2px solid transparent;
}
.be-nav a:hover, .be-nav a:focus { color:#fff; border-bottom-color:var(--brass); }
.be-nav a[aria-current="page"] { color:var(--brass2); border-bottom-color:var(--brass2); }

.be-head__cta {
  display:inline-block;
  background:var(--brass);
  color:#12161d;
  font:700 14px/1 "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  text-decoration:none;
  padding:11px 16px;
  border-radius:6px;
  white-space:nowrap;
}
.be-head__cta:hover { background:var(--brass2); }
/* The panel copy of the CTA exists only for the opened burger menu. CSS cannot
   move a node, so there are two, and exactly one is ever visible. */
.be-head__cta--panel { display:none; }

@media (max-width:899px) {
  .be-burger { display:flex; }
  .be-nav { display:none; }
  /* the CTA leaves the row entirely — an unbudgeted child breaks the row sum */
  .be-head__cta { display:none; }
  .be-nav--open {
    display:flex;
    flex:0 0 100%;
    width:100%;
    min-width:100%;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding-bottom:12px;
  }
  .be-nav--open a {
    padding:12px 2px;
    border-bottom:1px solid var(--ink3);
  }
  .be-nav--open .be-head__cta--panel {
    display:block;
    text-align:center;
    margin-top:12px;
  }
}
@media (min-width:900px) {
  .be-nav { display:flex; flex:0 1 auto; width:auto; min-width:0; }
  .be-head__cta { display:inline-block; }
  .be-head__cta--panel { display:none; }
}

/* ======================= hero =========================================== */
.be-hero {
  background:
    radial-gradient(1100px 380px at 18% -12%, #24344a 0%, transparent 62%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink2) 100%);
  color:#eef2f7;
  padding:38px 0 34px;
  border-bottom:1px solid var(--ink3);
}
.be-hero__kicker {
  display:inline-block;
  font:600 12px/1 "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--brass2);
  border:1px solid rgba(224,180,100,.45);
  border-radius:100px;
  padding:7px 13px;
  margin:0 0 16px;
}
.be-hero h1 {
  font:700 clamp(27px,4.4vw,40px)/1.2 Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  margin:0 0 12px;
  color:#fff;
}
.be-hero__lede { margin:0; max-width:64ch; color:#c9d2dd; font-size:17px; }

/* ======================= layout ========================================= */
/* The hero band sits inside <main>, so the top spacing belongs to the body
   wrapper rather than to <main> itself. */
.be-main { padding:0 0 8px; }
.be-body { padding-top:34px; }
.be-main h2 {
  font:700 clamp(21px,2.7vw,28px)/1.28 Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  margin:38px 0 12px;
  padding-top:14px;
  border-top:1px solid var(--line);
  color:var(--ink);
}
.be-main h3 {
  font:700 19px/1.34 Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  margin:26px 0 8px;
  color:var(--ink2);
}
.be-main p { margin:0 0 15px; }
/* The featured-snippet lede, first paragraph after the H1. */
.be-lede {
  font-size:18.5px;
  line-height:1.62;
  color:#2b3547;
  border-left:3px solid var(--brass);
  padding-left:16px;
  margin:0 0 20px;
}
.be-main ul, .be-main ol { margin:0 0 17px; padding-left:22px; }
.be-main li { margin:0 0 8px; }
.be-main a { color:#8a5f1d; text-decoration:underline; text-underline-offset:2px; }
.be-main a:hover { color:var(--rust); }

figure { margin:22px 0; }
figure img {
  display:block; width:90%; height:auto; margin:0 auto;
  border-radius:7px;
  box-shadow:0 2px 14px rgba(16,24,35,.14);
}
figcaption {
  margin-top:9px; text-align:center;
  font-size:14px; color:var(--muted); font-style:italic;
}
@media (max-width:640px) { figure img { width:100%; } }

/* ======================= scorecard (the leaf's signature) =============== */
.be-score {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(168px,1fr));
  gap:12px;
  margin:24px 0 8px;
}
.be-score__tile {
  background:var(--paper2);
  border:1px solid var(--line);
  border-top:3px solid var(--brass);
  border-radius:8px;
  padding:15px 15px 13px;
}
.be-score__label {
  display:block; font:600 12px/1.3 "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  letter-spacing:.09em; text-transform:uppercase; color:var(--muted);
  margin-bottom:7px;
}
.be-score__value {
  display:block; font:700 27px/1 "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace; color:var(--ink);
}
.be-score__value small { font-size:14px; color:var(--muted); font-weight:400; }
.be-score__bar {
  margin-top:10px; height:5px; border-radius:4px;
  background:#e6e1d6; overflow:hidden;
}
.be-score__bar i { display:block; height:100%; background:var(--verdig); }

/* ======================= method callout ================================= */
.be-method {
  background:var(--ink2);
  color:#dde4ec;
  border-radius:10px;
  padding:20px 22px;
  margin:26px 0;
  border-left:4px solid var(--brass);
}
.be-method h3 { color:#fff; margin:0 0 9px; font-size:18px; }
.be-method p { margin:0 0 10px; color:#c3ccd7; font-size:16px; }
.be-method ul { margin:0; padding-left:20px; }
.be-method li { color:#c3ccd7; font-size:15px; }

/* ======================= pros / cons (Phase 0: full blocks) ============= */
.be-verdict {
  display:grid; grid-template-columns:1fr 1fr; gap:14px; margin:24px 0;
}
@media (max-width:700px) { .be-verdict { grid-template-columns:1fr; } }
.be-verdict__box {
  background:var(--paper2); border:1px solid var(--line);
  border-radius:9px; padding:16px 18px;
}
.be-verdict__box h3 { margin:0 0 10px; font-size:17px; }
.be-verdict__box ul { margin:0; padding-left:19px; }
.be-verdict__box li { font-size:15.5px; }
.be-verdict--pro { border-top:3px solid var(--verdig); }
.be-verdict--pro h3 { color:var(--verdig); }
.be-verdict--con { border-top:3px solid var(--rust); }
.be-verdict--con h3 { color:var(--rust); }

/* ======================= callouts ======================================= */
.be-note {
  background:#fdf8ec; border:1px solid #e8d9b4; border-left:4px solid var(--brass);
  border-radius:7px; padding:14px 17px; margin:20px 0;
}
.be-note p { margin:0 0 9px; font-size:16px; }
.be-note p:last-child { margin-bottom:0; }
.be-note strong { color:#7a5a17; }

/* ======================= tables ========================================= */
.be-table__wrap { overflow-x:auto; margin:20px 0; -webkit-overflow-scrolling:touch; }
.be-main table {
  width:100%; border-collapse:collapse; font-size:15.5px;
  background:var(--paper2); min-width:0;
}
.be-main th, .be-main td {
  border:1px solid var(--line); padding:10px 12px; text-align:left;
  vertical-align:top;
}
.be-main th {
  background:var(--ink2); color:#fff; font-weight:600;
  /* must wrap, or the header row alone overflows a 360px viewport */
  white-space:normal;
}
.be-main tbody tr:nth-child(even) { background:#faf8f3; }

/* ======================= step timeline ================================== */
.be-steps { list-style:none; margin:22px 0; padding:0; counter-reset:be-step; }
.be-steps li {
  position:relative; padding:0 0 18px 44px; margin:0;
  border-left:2px solid var(--line); counter-increment:be-step;
}
.be-steps li:last-child { border-left-color:transparent; padding-bottom:0; }
.be-steps li::before {
  content:counter(be-step);
  position:absolute; left:-15px; top:-2px;
  width:28px; height:28px; border-radius:50%;
  background:var(--brass); color:#12161d;
  font:700 14px/28px "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace; text-align:center;
}
.be-steps b { display:block; color:var(--ink); margin-bottom:3px; }

/* ======================= badge row ====================================== */
.be-badges { display:flex; flex-wrap:wrap; gap:9px; margin:18px 0 22px; padding:0; list-style:none; }
.be-badges li {
  margin:0;
  background:var(--paper2); border:1px solid var(--line); border-radius:100px;
  padding:7px 14px; font:600 14px/1.2 "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif; color:var(--ink2);
}
.be-badges li::before { content:"◆"; color:var(--brass); margin-right:7px; font-size:11px; }

/* ======================= widgets ======================================== */
.be-widget {
  background:var(--paper2); border:1px solid var(--line);
  border-radius:10px; padding:18px 20px; margin:24px 0;
}
.be-widget__title {
  font:700 17px/1.3 Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif; margin:0 0 4px; color:var(--ink);
}
.be-widget .note { font-size:14.5px; color:var(--muted); margin:0 0 14px; }
.be-widget label {
  display:block; font:600 13px/1.3 "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  text-transform:uppercase; letter-spacing:.07em; color:var(--muted);
  margin:0 0 5px;
}
.be-widget input[type=number], .be-widget select {
  width:100%; padding:10px 11px; font-size:16px;
  border:1px solid var(--line); border-radius:6px; background:#fff; color:var(--text);
}
.be-field { margin-bottom:13px; }
.be-grid2 { display:grid; grid-template-columns:1fr 1fr; gap:13px; }
@media (max-width:560px) { .be-grid2 { grid-template-columns:1fr; } }
.be-out {
  margin-top:14px; padding:13px 15px; border-radius:7px;
  background:#eef4f2; border:1px solid #cfe0da;
  font:600 16px/1.5 "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif; color:#1d4d43;
}
.be-out b { font-family:"SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace; font-size:19px; }

/* promo-code copy widget */
.be-code {
  display:flex; flex-wrap:wrap; align-items:center; gap:11px; margin-top:6px;
}
.be-code__val {
  font:700 21px/1 "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace; letter-spacing:.11em;
  background:var(--ink); color:var(--brass2);
  padding:13px 19px; border-radius:7px;
}
.be-code__btn {
  background:var(--verdig); color:#fff; border:0; border-radius:7px;
  padding:13px 18px; font:700 14px/1 "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif; cursor:pointer;
}
.be-code__btn:hover { background:#256356; }
.be-code__done { font-size:14px; color:var(--verdig); font-weight:600; }

/* payout comparator bars */
.be-bars { list-style:none; margin:14px 0 0; padding:0; }
.be-bars li { margin:0 0 11px; }
.be-bars__row { display:flex; justify-content:space-between; font-size:14.5px; margin-bottom:4px; }
.be-bars__track { height:9px; border-radius:5px; background:#e6e1d6; overflow:hidden; }
.be-bars__fill { display:block; height:100%; background:linear-gradient(90deg,var(--brass),var(--brass2)); }

/* ======================= CTA ============================================ */
.be-cta { margin:26px 0; text-align:center; }
.be-cta a {
  display:inline-block;
  background:var(--brass); color:#12161d;
  font:700 16px/1 "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif; text-decoration:none;
  padding:15px 30px; border-radius:8px;
  box-shadow:0 2px 0 #8d6526;
}
.be-cta a:hover { background:var(--brass2); }

/* ======================= FAQ ============================================ */
.be-faq { margin:14px 0 8px; border-top:1px solid var(--line); }
.be-faq details { border-bottom:1px solid var(--line); }
.be-faq summary {
  cursor:pointer; padding:15px 34px 15px 0; position:relative;
  font:600 16.5px/1.45 "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif; color:var(--ink); list-style:none;
}
.be-faq summary::-webkit-details-marker { display:none; }
.be-faq summary::after {
  content:"+"; position:absolute; right:6px; top:13px;
  font:400 23px/1 "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace; color:var(--brass);
}
.be-faq details[open] summary::after { content:"−"; }
.be-faq__answer { padding:0 0 15px; }
.be-faq__answer p { margin:0 0 10px; font-size:16px; }

/* ======================= breadcrumb ===================================== */
.be-crumb { font-size:14px; color:var(--muted); padding:14px 0 0; }
.be-crumb a { color:var(--muted); }

/* ======================= footer ========================================= */
.be-foot {
  background:var(--ink); color:#aab4c1; margin-top:44px;
  padding:34px 0 26px; font-size:15px;
}
.be-foot__grid {
  display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:26px;
}
@media (max-width:760px) { .be-foot__grid { grid-template-columns:1fr; } }
.be-foot__logo img { width:146px; height:31px; display:block; margin-bottom:13px; }
.be-foot h2 {
  font:600 13px/1 "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif; letter-spacing:.11em; text-transform:uppercase;
  color:var(--brass2); margin:0 0 12px;
}
.be-foot ul { list-style:none; margin:0; padding:0; }
.be-foot li { margin:0 0 8px; }
.be-foot a { color:#c4ccd6; text-decoration:none; }
.be-foot a:hover { color:#fff; text-decoration:underline; }
.be-foot__rg {
  margin-top:24px; padding-top:18px; border-top:1px solid var(--ink3);
  display:flex; flex-wrap:wrap; gap:13px; align-items:center;
  font-size:14px; color:#9aa5b2;
}
.be-foot__age {
  flex:0 0 auto;
  background:var(--rust); color:#fff; font:700 13px/1 "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  padding:8px 11px; border-radius:50%;
}
.be-foot__legal { margin-top:14px; font-size:13.5px; color:#8792a0; }
.be-foot__legal p { margin:0 0 7px; }

/* ======================= back to top ==================================== */
.be-top {
  position:fixed; right:16px; bottom:16px; z-index:60;
  width:44px; height:44px; border-radius:50%;
  background:var(--ink2); color:var(--brass2);
  border:1px solid var(--ink3);
  font:700 19px/1 "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace; cursor:pointer;
  display:none;
}
.be-top--on { display:block; }

/* ======================= 404 ============================================ */
.be-404 { text-align:center; padding:52px 0; }
.be-404 h1 { font:700 64px/1 "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace; color:var(--brass); margin:0 0 10px; }

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