/* =========================================================
   FulCharBo.com — production stylesheet
   Static rebuild of the Claude Design prototype. Tokens are
   the FulCharBo design-system tokens (Seahawks Navy + Action
   Green + Wolf Grey); the page/section rules below are ported
   from the prototype, mobile-first with a desktop layer.
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,500;1,600&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,600;1,8..60,400&display=swap');

/* ---------- TOKENS ---------- */
:root {
  /* Brand core */
  --navy: #002244;
  --navy-deep: #001a35;
  --navy-700: #0b2c50;
  --green: #69BE28;
  --green-deep: #58a31f;
  --green-tint: #f3faec;
  --wolf-grey: #A5ACAF;

  /* Neutral ramp */
  --white: #ffffff;
  --paper: #f7f8f9;
  --grey-light: #eef0f2;
  --line: #e2e6ea;
  --ink: #2a2f36;
  --grey: #6b7280;

  /* Semantic aliases */
  --text-strong: var(--navy);
  --text-body: var(--ink);
  --text-muted: var(--grey);
  --text-on-dark: #ffffff;
  --text-accent: var(--green-deep);
  --surface-card: var(--white);

  /* Fonts */
  --font-sans: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Montserrat", system-ui, sans-serif;
  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-card: 0 16px 34px -26px rgba(0,0,0,.30);
  --shadow-panel: 0 24px 50px -30px rgba(0,34,68,.40);

  /* Motion */
  --ease: cubic-bezier(.4,0,.2,1);
  --dur-fast: .18s;
  --hover-lift: translateY(-1px);

  /* Layout */
  --container-max: 1200px;
}

/* ---------- BASE ---------- */
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
.deftop { max-width: 1520px; margin: 0 auto; background: #fff; }

/* shared section scaffold */
.sec { padding: 78px 0; }
.sec.alt { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec.white { background: #fff; }
.sec-wrap { max-width: var(--container-max); margin: 0 auto; padding: 0 32px; }

/* section title block */
.sec-title { text-align: center; margin-bottom: 44px; }
.sec-title .kicker {
  display: inline-block; margin-bottom: 10px;
  font-size: .95rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--green-deep);
}
.sec-title h2 {
  font-weight: 800; font-size: clamp(1.7rem,3.2vw,2.4rem); color: var(--navy);
  letter-spacing: .02em; text-transform: uppercase; margin: 0 0 14px;
}
.sec-title .sub { color: var(--grey); font-size: 1.06rem; max-width: 760px; margin: 0 auto; font-weight: 500; }

/* pill button */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-sans); font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 14px 28px; border-radius: var(--radius-pill); cursor: pointer;
  border: 2px solid transparent; text-decoration: none; white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.btn-green { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover:not(:disabled) { background: var(--green-deep); border-color: var(--green-deep); transform: var(--hover-lift); }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-lg { font-size: 1.02rem; padding: 15px 30px; box-shadow: 0 14px 30px -14px rgba(74,167,90,.7); }
#root button:focus-visible, .btn:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }

/* =========================================================
   NAV
   ========================================================= */
.nav { background: var(--navy); display: flex; align-items: center; flex-wrap: wrap; gap: 14px; padding: 14px 20px; border-bottom: 3px solid var(--green); }
.brandlock { display: flex; flex-direction: column; line-height: 1; margin-right: auto; }
.brandlock .wm { font-weight: 800; font-size: 1.5rem; letter-spacing: -.01em; display: inline; white-space: nowrap; }
.brandlock .wm .ful, .brandlock .wm .bo { color: #fff; }
.brandlock .wm .char { color: var(--green); }
.brandlock .wm .navcheck { width: .56em; height: .56em; border: .075em solid #fff; border-radius: 50%; display: inline-block; position: relative; vertical-align: baseline; overflow: hidden; margin-left: .03em; top: .04em; }
.brandlock .wm .navcheck svg { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: .36em; height: .36em; color: var(--green); stroke-width: 3.6; display: block; }
.brandlock .sub { color: #fff; font-weight: 700; font-size: .66rem; letter-spacing: .2em; margin-top: 4px; }
.navtoggle { display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.12); border: none; border-radius: 8px; width: 42px; height: 42px; color: #fff; cursor: pointer; }
.navtoggle svg { width: 24px; height: 24px; }
.navlinks { display: none; order: 5; width: 100%; flex-direction: column; gap: 0; }
.navlinks.open { display: flex; }
.navlinks a { color: #fff; font-weight: 600; font-size: 1rem; letter-spacing: .03em; padding: 13px 4px; border-top: 1px solid rgba(255,255,255,.12); }
.navlinks a.active { color: var(--green); }
.portal { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff; font-weight: 600; font-size: .82rem; letter-spacing: .05em; padding: 8px 14px; border: 1.5px solid rgba(255,255,255,.32); border-radius: 8px; transition: border-color .15s ease, background .15s ease; }
.portal:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); }
.portal .pic { width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; color: var(--green); }
.portal .pic svg { width: 18px; height: 18px; }

/* =========================================================
   HERO
   ========================================================= */
.hero { display: grid; grid-template-columns: 1fr; gap: 24px; padding: 24px 20px; position: relative; }
.eyebrow { color: var(--green-deep); font-weight: 800; font-size: 1.15rem; letter-spacing: .005em; line-height: 1.25; text-wrap: balance; margin: 0 0 10px; }
.lede { color: var(--navy); font-weight: 600; font-size: 1.05rem; line-height: 1.45; margin: 0 0 8px; }
.defmark { font-family: var(--font-serif); font-weight: 500; font-size: clamp(2.7rem,13vw,4rem); line-height: .9; letter-spacing: -.01em; display: block; white-space: nowrap; margin: 6px 0 0; }
.defmark .ful, .defmark .b { color: var(--navy); }
.defmark .char { color: var(--green); }
.defmark .checko { width: .5em; height: .5em; border: .072em solid var(--navy); border-radius: 50%; display: inline-block; position: relative; vertical-align: baseline; overflow: hidden; margin-left: .03em; top: .03em; }
.defmark .checko svg { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: .34em; height: .34em; color: var(--green); stroke-width: 3.4; display: block; }
.pron { display: flex; align-items: center; gap: 12px; border-bottom: 2px solid var(--navy); padding: 6px 0 10px; margin: 6px 0 0; white-space: nowrap; }
.pron .ph { font-family: var(--font-serif); font-size: 1.3rem; color: var(--navy); white-space: nowrap; }
.pron .pos { font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; color: var(--green-deep); }
.deftitle { font-weight: 800; font-size: 1.25rem; color: var(--navy); margin: 14px 0 8px; }
.defbody { font-size: 1rem; line-height: 1.5; color: var(--ink); margin: 0; }
.seealso { font-style: italic; color: var(--ink); font-size: .96rem; margin: 12px 0 0; }
.seealso b { font-style: normal; font-weight: 700; color: var(--navy); }
.defpanel { position: relative; background: var(--navy); border-radius: 16px; padding: 24px; color: #fff; align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
.defpanel .head { display: flex; align-items: center; gap: 12px; border-bottom: 2px solid var(--green); padding-bottom: 12px; margin-bottom: 16px; }
.defpanel .avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.defpanel .avatar svg { width: 24px; height: 24px; color: #fff; }
.defpanel .head h3 { margin: 0; font-size: 1.2rem; font-weight: 700; letter-spacing: .02em; }
.defpanel p { font-size: 1.05rem; line-height: 1.6; color: #fff; margin: 0; }
.defpanel .g { color: var(--green); font-weight: 600; }

/* cleanup-expert seal, pinned to the navy box corner */
.seal-box { position: absolute; top: 0; right: 0; transform: translate(calc(30% - 10px), calc(-32% + 10px)) rotate(9deg); transform-origin: center; z-index: 6; }
.sealbtn { border: none; background: none; padding: 0; margin: 0; cursor: pointer; line-height: 0; flex-shrink: 0; transition: transform .15s ease; display: block; }
.sealbtn:hover { transform: scale(1.06); }
.sealbtn:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 50%; }
.seal-box .seal-img { width: 96px; height: auto; display: block; filter: drop-shadow(0 7px 14px rgba(8,23,46,.38)); }

/* =========================================================
   PROCESS BAND
   ========================================================= */
.band { display: grid; grid-template-columns: 1fr; gap: 16px; align-items: stretch; padding: 8px 20px 28px; }
.col { border: 1px solid var(--line); border-radius: 14px; padding: 0 0 18px; overflow: hidden; background: #fff; box-shadow: var(--shadow-card); }
.col .ch { background: var(--navy); color: #fff; font-weight: 800; font-size: 1rem; letter-spacing: .02em; text-align: center; padding: 12px 14px; border-radius: 14px 14px 0 0; margin: -1px -1px 0; }
.arrowcell { display: flex; align-items: center; justify-content: center; padding: 0; transform: rotate(90deg); }
.arrowcell svg { width: 38px; height: 38px; color: var(--green); }
.ccsteps { display: flex; justify-content: center; gap: 18px; color: var(--green-deep); font-weight: 800; font-size: 1.05rem; margin: 18px 0 16px; }
.ccsteps .dot { color: var(--green); }
.trio { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; padding: 0 16px; }
.trio .it { text-align: center; }
.trio .ic { width: 48px; height: 48px; margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; }
.trio .ic svg { width: 40px; height: 40px; color: var(--green); stroke-width: 1.8; }
.trio h4 { margin: 0 0 6px; color: var(--navy); font-weight: 800; font-size: .92rem; letter-spacing: .02em; }
.trio p { margin: 0; color: var(--grey); font-size: .78rem; line-height: 1.4; }
.quad { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px 8px; padding: 18px 14px 12px; }
.quad .it { text-align: center; }
.quad .ic svg { width: 34px; height: 34px; color: var(--navy); stroke-width: 1.7; }
.quad h4 { margin: 8px 0 6px; color: var(--navy); font-weight: 800; font-size: .74rem; letter-spacing: .02em; line-height: 1.2; }
.quad p { margin: 0; color: var(--grey); font-size: .72rem; line-height: 1.38; }
.reports { background: var(--grey-light); margin: 6px 14px 0; border-radius: 8px; padding: 10px; text-align: center; }
.reports .rt { color: var(--green-deep); font-weight: 800; font-size: .72rem; letter-spacing: .06em; margin-bottom: 4px; }
.reports .rl { color: var(--navy); font-weight: 600; font-size: .82rem; }
.reports .rl .dot { color: var(--green); }
.svclist { display: flex; flex-direction: column; gap: 11px; padding: 16px 18px 0; }
.svcrow { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; }
.svcrow .ic { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.svcrow .ic svg { width: 26px; height: 26px; color: var(--green); stroke-width: 1.8; }
.svcrow h4 { margin: 0 0 2px; color: var(--navy); font-weight: 800; font-size: .86rem; letter-spacing: .01em; }
.svcrow p { margin: 0; color: var(--grey); font-size: .76rem; line-height: 1.35; }

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 18px 20px; background: var(--paper); border-top: 1px solid var(--line); flex-wrap: wrap; }
.titem { display: flex; align-items: center; gap: 11px; }
.titem .ic { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; color: var(--navy); }
.titem .ic svg { width: 30px; height: 30px; stroke-width: 1.7; }
.titem .tx { font-weight: 700; font-size: .82rem; color: var(--navy); line-height: 1.18; }
.titem.green .ic { color: var(--green); }
.credly { display: flex; align-items: center; gap: 10px; }
.credimg { height: 60px; width: auto; cursor: pointer; transition: transform .15s ease; }
.credimg:hover { transform: scale(1.09); }

/* badge / seal lightbox */
.badge-lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(8,23,46,.86); display: none; align-items: center; justify-content: center; padding: 32px; cursor: zoom-out; }
.badge-lightbox.open { display: flex; }
.badge-lightbox img { max-width: min(90vw,520px); max-height: 88vh; width: auto; height: auto; filter: drop-shadow(0 18px 50px rgba(0,0,0,.45)); animation: badgePop .22s ease; }
.badge-lightbox img.lb-seal { max-width: min(82vw,360px); filter: drop-shadow(0 22px 60px rgba(0,0,0,.5)); }
@keyframes badgePop { from { transform: scale(.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* =========================================================
   CURRENT SITUATION
   ========================================================= */
.cs-intro { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.cs-intro h2 { font-family: var(--font-sans); color: var(--navy); font-weight: 800; text-transform: uppercase; letter-spacing: .02em; font-size: clamp(1.7rem,3.4vw,2.4rem); margin: 0 0 14px; }
.cs-intro p { color: var(--text-muted); font-size: 1.08rem; line-height: 1.55; margin: 0; }
.cs-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 22px; }
.cs-card { background: var(--paper); border: 1px solid var(--line); border-top: 4px solid var(--green); border-radius: 14px; padding: 28px 26px; box-shadow: 0 18px 40px -28px rgba(11,31,59,.45); }
.cs-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.cs-card-head .ic { width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0; background: rgba(74,167,90,.12); color: var(--green-deep); display: flex; align-items: center; justify-content: center; }
.cs-card-head h3 { font-family: var(--font-sans); color: var(--navy); font-weight: 800; font-size: 1.18rem; margin: 0; line-height: 1.25; }
.cs-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.cs-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-size: 1.02rem; line-height: 1.5; }
.cs-list li .di { color: var(--green); font-weight: 800; flex-shrink: 0; transform: translateY(1px); }
.cs-foot { text-align: center; margin-top: 48px; }
.cs-foot p { color: var(--text-muted); font-size: 1.08rem; line-height: 1.55; max-width: 620px; text-wrap: balance; margin: 0 auto 24px; }

/* =========================================================
   TOOL SHELL (quiz + ROI)
   ========================================================= */
.tool-shell { max-width: 780px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow-panel); overflow: hidden; }
.tool-shell .ts-head { background: var(--navy); color: #fff; padding: 26px 32px; text-align: center; }
.tool-shell .ts-head .kicker { font-size: .95rem; font-weight: 800; letter-spacing: .16em; color: var(--green); margin-bottom: 6px; }
.tool-shell .ts-head h3 { margin: 0; font-weight: 800; font-size: 1.7rem; }
.tool-shell .ts-body { padding: 32px; }

/* segmented control */
.seg { display: flex; flex-wrap: wrap; gap: 8px; }
.seg.cols2 { display: grid; grid-template-columns: repeat(2,1fr); }
.seg.cols3 { display: grid; grid-template-columns: repeat(3,1fr); }
.seg button { flex: 1; min-width: 110px; font-family: var(--font-sans); font-weight: 600; font-size: 1rem; padding: 12px 14px; border-radius: var(--radius-sm); cursor: pointer; text-align: center; background: #fff; color: var(--ink); border: 2px solid var(--line); transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease); }
.seg.cols2 button, .seg.cols3 button { flex: none; min-width: 0; }
.seg button.sel { background: var(--green-tint); color: var(--navy); border-color: var(--green); }

/* quiz */
.q-grid { display: grid; gap: 22px; }
.q-item { border-bottom: 1px solid var(--line); padding-bottom: 22px; }
.q-item:last-of-type { border-bottom: none; }
.q-num { font-size: .74rem; font-weight: 800; letter-spacing: .14em; color: var(--grey); margin-bottom: 8px; }
.q-text { font-weight: 700; font-size: 1.12rem; color: var(--navy); margin-bottom: 16px; }
.q-grid .btn-green { width: 100%; }
.hs-result { text-align: center; padding: 20px 8px; }
.hs-result .lbl { font-size: .74rem; font-weight: 800; letter-spacing: .14em; color: var(--grey); margin-bottom: 10px; }
.hs-result .score { font-weight: 900; color: var(--navy); line-height: 1; }
.hs-result .score .big { font-size: 4rem; }
.hs-result .score .out { font-size: 1.2rem; color: var(--grey); margin-left: 2px; }
.hs-result .bar { height: 8px; border-radius: 999px; background: var(--line); max-width: 420px; margin: 18px auto 14px; overflow: hidden; }
.hs-result .bar > span { display: block; height: 100%; border-radius: 999px; transition: width .6s ease; }
.hs-result .rcopy { max-width: 540px; margin: 4px auto 20px; color: var(--grey); font-size: .98rem; line-height: 1.55; }
.hs-result .rcopy b { color: var(--navy); }
.hs-result .startover { background: none; border: none; color: var(--grey); text-decoration: underline; cursor: pointer; font-family: var(--font-sans); font-size: .85rem; margin-top: 12px; }

/* ROI */
.range-field { margin-bottom: 22px; }
.range-field label { display: flex; justify-content: space-between; align-items: baseline; font-family: var(--font-sans); font-weight: 700; color: var(--navy); font-size: .95rem; margin-bottom: 8px; }
.range-field label .val { color: var(--green-deep); }
.range-field input[type=range] { width: 100%; accent-color: var(--green); height: 6px; }
.range-field .helper { font-size: .82rem; color: var(--grey); margin: 8px 0 0; }
.roi-sit { margin-top: 22px; text-align: center; }
.roi-sit .sit-label { font-weight: 700; font-size: .95rem; color: var(--navy); margin-bottom: 10px; }
.roi-sit .sit-helper { color: var(--grey); font-size: .82rem; margin: 8px 0 0; }
.roi-extra { margin-top: 18px; }
.result-tile.highlight { background: var(--navy); padding: 22px; border-radius: var(--radius-md); text-align: center; margin-top: 26px; }
.result-tile.highlight .rt-label { font-size: .78rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.result-tile.highlight .rt-value { font-size: 2.1rem; font-weight: 800; color: #fff; line-height: 1.05; }
.result-tile.highlight .rt-sub { color: var(--green); font-weight: 700; font-size: .95rem; margin-top: 4px; }
.leak { margin-top: 16px; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; position: relative; }
.leak-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 14px 18px; border-bottom: 1px solid var(--line); background: #fff; }
.leak-row:last-child { border-bottom: none; }
.leak-row.strong { background: var(--paper); }
.leak-label { font-weight: 700; font-size: .82rem; color: var(--navy); margin-bottom: 3px; }
.leak-formula { font-size: .82rem; color: var(--grey); }
.leak-val { font-weight: 800; font-size: 1.05rem; color: var(--navy); white-space: nowrap; }
.leak-row.strong .leak-val { color: var(--green-deep); }
.gate { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.55) 0%, #fff 58%); backdrop-filter: blur(3px); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 24px 22px; }
.gate .lockicon { display: inline-flex; width: 44px; height: 44px; border-radius: 12px; background: var(--green-tint); color: var(--green-deep); align-items: center; justify-content: center; margin-bottom: 12px; }
.gate h4 { font-weight: 800; color: var(--navy); font-size: 1.12rem; margin: 0 0 4px; }
.gate p { color: var(--text-muted); font-size: .92rem; line-height: 1.5; max-width: 380px; margin: 0 0 16px; }
.gate form { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; width: 100%; max-width: 420px; }
.gate input { flex: 1 1 200px; min-width: 0; box-sizing: border-box; font-family: var(--font-sans); font-size: .98rem; padding: 12px 14px; border: 2px solid var(--line); border-radius: var(--radius-sm); outline: none; color: var(--ink); }
.gate button { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: #fff; font-family: var(--font-sans); font-weight: 700; font-size: .98rem; border: none; padding: 12px 22px; border-radius: 999px; cursor: pointer; }
.roi-sent { color: var(--green-deep); font-size: .88rem; text-align: center; margin-top: 12px; font-weight: 700; }
.roi-sent svg { vertical-align: -2px; margin-right: 6px; width: 15px; height: 15px; }
.roi-note { color: var(--grey); font-size: .8rem; text-align: center; margin-top: 10px; }
.roi-foot { color: var(--grey); font-size: .82rem; text-align: center; margin-top: 18px; }
.roi-after { text-align: center; margin-top: 44px; }
.roi-after p { color: var(--text-muted); font-size: 1.08rem; line-height: 1.55; max-width: 640px; margin: 0 auto 24px; }

/* =========================================================
   PROCESS STEPS (ladder) + score chips
   ========================================================= */
.steps { max-width: 860px; margin: 0 auto; display: grid; gap: 16px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px 26px; }
.step .n { width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 800; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; }
.step h4 { color: var(--navy); font-weight: 800; font-size: 1.12rem; margin: 0 0 10px; }
.step .chip-wrap { margin: 0 0 10px; }
.step p { color: var(--grey); font-weight: 500; font-size: .96rem; margin: 0; line-height: 1.55; }
.chip { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid var(--line); border-radius: 999px; padding: 4px 12px; background: var(--paper); white-space: nowrap; }
.chip .clbl { font-size: .6rem; font-weight: 800; letter-spacing: .13em; color: var(--navy); }
.chip .cval { font-size: .86rem; font-weight: 800; color: var(--grey); }
.chip .cnote { font-size: .72rem; font-weight: 600; color: var(--grey); }
.chip.red { background: #fef3f2; border-color: #f3c2bb; }
.chip.red .cval { color: #b23b2e; }
.chip.green { background: var(--green-tint); border-color: var(--green); }
.chip.green .cval { color: var(--green-deep); }
.chip.gold { background: #faf2db; border-color: #d8b258; }
.chip.gold .cval { color: #8a6a1e; }
.chip.climb { background: #fff; border-color: var(--green); }
.chip.climb .cval { color: var(--navy); }
.chip.climb .cval .five { color: #c8890a; }
.chip.climb .cval .nine { color: var(--green-deep); }
.steps-cap { color: var(--grey); font-size: .82rem; text-align: center; max-width: 640px; margin: 18px auto 0; line-height: 1.5; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.fcta { background: var(--navy); color: #fff; padding: 78px 0; }
.fcta h2 { color: #fff; font-size: clamp(1.8rem,3.4vw,2.6rem); font-weight: 800; text-align: center; margin: 0 0 12px; }
.fcta .sub { color: rgba(255,255,255,.72); font-size: 1.08rem; text-align: center; max-width: 560px; margin: 0 auto 44px; }
.cta-split { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 920px; margin: 0 auto; }
.cta-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 16px; padding: 32px 30px; display: flex; flex-direction: column; }
.cta-card.light { background: #fff; border: none; }
.cta-card .cic { display: inline-flex; width: 46px; height: 46px; border-radius: 12px; align-items: center; justify-content: center; margin-bottom: 16px; }
.cta-card .cic.greenbg { background: var(--green); color: #fff; }
.cta-card .cic.tintbg { background: var(--green-tint); color: var(--green-deep); }
.cta-card h3 { font-weight: 800; font-size: 1.35rem; margin: 0 0 8px; }
.cta-card.dark h3 { color: #fff; }
.cta-card.light h3 { color: var(--navy); }
.cta-card .ctext { font-size: 1rem; line-height: 1.55; margin: 0 0 22px; }
.cta-card.dark .ctext { color: rgba(255,255,255,.72); }
.cta-card.light .ctext { color: var(--text-muted); margin-bottom: 18px; }
.cta-card .ctext b { color: var(--navy); }
.cta-card .btn-wrap { margin-top: auto; }
.cta-card.light input { width: 100%; box-sizing: border-box; font-family: var(--font-sans); font-size: 1rem; padding: 13px 14px; border: 2px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; outline: none; color: var(--ink); }
.cta-card.light .submit { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: var(--green); color: #fff; font-family: var(--font-sans); font-weight: 700; font-size: 1.02rem; border: none; padding: 14px 20px; border-radius: 999px; cursor: pointer; }
.cta-sent { text-align: center; padding: 16px 4px; }
.cta-sent .sic { display: inline-flex; width: 52px; height: 52px; border-radius: 50%; background: var(--green-tint); color: var(--green-deep); align-items: center; justify-content: center; margin-bottom: 14px; }
.cta-sent h3 { color: var(--navy); font-weight: 800; font-size: 1.25rem; margin: 0 0 8px; }
.cta-sent p { color: var(--text-muted); font-size: .98rem; line-height: 1.55; margin: 0; }
.cta-sent p b { color: var(--navy); }

/* =========================================================
   FOOTER
   ========================================================= */
.footbar { background: var(--navy); text-align: center; color: #fff; }
.footbar .tagrow { font-weight: 600; letter-spacing: .18em; font-size: .95rem; padding: 14px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footbar .g { color: var(--green); }
.footcols { max-width: var(--container-max); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 36px; padding: 40px 24px; text-align: left; }
.footcol h5 { margin: 0 0 14px; font-size: .74rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.footbrand .fname { font-family: var(--font-serif); font-weight: 500; font-size: 1.9rem; line-height: 1; color: #fff; }
.footbrand .fname .b { color: var(--green); }
.footbrand .ftag { margin: 12px 0 16px; font-weight: 600; letter-spacing: .04em; font-size: .95rem; color: #fff; }
.footbrand .ftag .g { color: var(--green); }
.footbrand .fcontact { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footbrand .fcontact li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; line-height: 1.5; color: rgba(255,255,255,.72); }
.footbrand .fcontact li svg { width: 17px; height: 17px; color: var(--green); flex-shrink: 0; margin-top: 1px; }
.footbrand .fcontact a { color: rgba(255,255,255,.72); }
.footbrand .fcontact a:hover { color: var(--green); }
.footnav { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.footnav a { color: rgba(255,255,255,.72); font-size: .9rem; font-weight: 600; padding: 3px 0; }
.footnav a:hover { color: var(--green); }
.footmap iframe { display: block; width: 100%; height: 250px; border: 0; border-radius: var(--radius-md); filter: grayscale(.15); }
.footbar .copyrow { background: var(--navy-deep); color: rgba(255,255,255,.6); font-size: .82rem; font-weight: 500; text-align: center; padding: 16px 24px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footbar .copyrow .social { display: inline-flex; align-items: center; gap: 16px; }
.footbar .copyrow .social a { display: inline-flex; width: 24px; height: 24px; opacity: .92; transition: opacity .15s ease, transform .15s ease; }
.footbar .copyrow .social a:hover { opacity: 1; transform: translateY(-2px); }
.footbar .copyrow .social img { width: 100%; height: 100%; display: block; }

/* =========================================================
   LEGAL PAGES
   ========================================================= */
.lp-head { background: var(--navy); color: #fff; padding: 18px 24px; }
.lp-head .wrap { max-width: 880px; margin: 0 auto; display: flex; align-items: center; gap: 14px; }
.lp-head .fname { font-family: var(--font-serif); font-weight: 500; font-size: 1.6rem; line-height: 1; }
.lp-head .fname .b { color: var(--green); }
.lp-head .back { margin-left: auto; font-size: .86rem; font-weight: 700; letter-spacing: .04em; color: rgba(255,255,255,.8); }
.lp-head .back:hover { color: var(--green); }
.lp-main { max-width: 880px; margin: 0 auto; padding: 56px 24px 80px; }
.lp-main .eyebrow { font-size: .74rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--green-deep); margin: 0 0 10px; }
.lp-main h1 { font-size: clamp(1.9rem,4vw,2.6rem); font-weight: 800; color: var(--navy); margin: 0 0 18px; letter-spacing: -.01em; }
.lp-main .lede { font-size: 1.05rem; line-height: 1.65; color: var(--grey); max-width: 60ch; }
.lp-soon { margin-top: 34px; border: 1px solid var(--line); border-left: 4px solid var(--green); border-radius: var(--radius-md); background: var(--paper); padding: 22px 24px; }
.lp-soon strong { color: var(--navy); }
.lp-soon p { margin: 6px 0 0; color: var(--grey); font-size: .95rem; line-height: 1.6; }
.lp-foot { border-top: 1px solid var(--line); text-align: center; padding: 22px; color: var(--grey); font-size: .82rem; }
.lp-foot a { color: var(--green-deep); font-weight: 600; }

/* =========================================================
   MOBILE HERO POLISH (<1000px)
   Center the title block (headline, tagline, wordmark,
   pronunciation) for a balanced, presentation-friendly look;
   keep the definition body left-aligned for readability.
   ========================================================= */
@media (max-width: 999px) {
  /* Top nav: traditional mobile bar — logo on the left, menu button
     on the right. CLIENT PORTAL moves into the dropdown menu. */
  .nav .portal { display: none; }
  .navlinks .portal-link { color: var(--green); }

  /* Hero: center the title block; keep the definition left-aligned */
  .herocopy { text-align: center; }
  .defmark { margin-left: auto; margin-right: auto; }
  .pron { justify-content: center; }
  /* Definition stays left-aligned and easy to read */
  .deftitle, .defbody, .seealso { text-align: left; }

  /* Trust bar: stack into a clean single column instead of an
     uneven wrap; equal item width keeps icons + text aligned */
  .trust { flex-direction: column; align-items: center; gap: 18px; }
  .titem { width: 100%; max-width: 260px; justify-content: flex-start; }
}

/* =========================================================
   DESKTOP ENHANCEMENT (≥1000px)
   ========================================================= */
@media (min-width: 1000px) {
  .nav { flex-wrap: nowrap; gap: 40px; padding: 16px 40px; }
  .brandlock { margin-right: 0; }
  .brandlock .wm { font-size: 2rem; }
  .brandlock .sub { font-size: .74rem; letter-spacing: .22em; }
  .navtoggle { display: none; }
  .navlinks { display: flex; order: 1; width: auto; flex-direction: row; gap: 34px; margin-left: 24px; }
  .navlinks a { padding: 0 0 4px; border-top: none; }
  .navlinks a.active { color: #fff; border-bottom: 3px solid var(--green); }
  .navlinks .portal-link { display: none; } /* desktop uses the standalone button instead */
  .portal { order: 2; margin-left: auto; font-size: .9rem; padding: 10px 18px; }

  .hero { grid-template-columns: minmax(0,600px) minmax(340px,520px); justify-content: center; gap: 48px; padding: 34px 40px 26px; }
  .eyebrow { font-size: 1.5rem; margin-bottom: 12px; }
  .lede { font-size: 1.18rem; max-width: 46ch; }
  .defmark { font-size: 6.4rem; }
  .pron { gap: 14px; }
  .pron .ph { font-size: 1.6rem; }
  .pron .pos { font-size: 1.4rem; }
  .deftitle { font-size: 1.45rem; margin-top: 16px; }
  .defbody { font-size: 1.04rem; max-width: 52ch; }
  .seealso { font-size: 1.02rem; }
  .defpanel { padding: 30px 34px; border-radius: 18px; }
  .defpanel .head { gap: 14px; padding-bottom: 14px; margin-bottom: 18px; }
  .defpanel .avatar { width: 46px; height: 46px; }
  .defpanel .avatar svg { width: 26px; height: 26px; }
  .defpanel .head h3 { font-size: 1.4rem; }
  .defpanel p { font-size: 1.16rem; line-height: 1.62; }

  .band { grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0; padding: 8px 40px 30px; }
  .arrowcell { transform: none; padding: 0 10px; }
  .arrowcell svg { width: 42px; height: 42px; }
  .col .ch { font-size: 1.06rem; }
  .quad { grid-template-columns: repeat(4,1fr); gap: 4px; padding: 18px 12px 12px; }

  .trust { flex-wrap: nowrap; justify-content: space-between; gap: 30px; padding: 18px 40px; }

  .cta-split { grid-template-columns: 1fr 1fr; gap: 24px; }

  .footbar .tagrow { font-size: 1.15rem; letter-spacing: .32em; padding: 16px; }
  .footcols { grid-template-columns: 1.2fr 1fr 1.1fr; gap: 48px; padding: 52px 40px; }
  .footbar .copyrow { flex-direction: row; justify-content: space-between; padding: 16px 40px; }
}
