/* Lifted Holdings — security section.
   Consumes Lifted Design System tokens (/static/ds/styles.css, data-brand="holdings").
   Defines NO :root tokens and NO body rules — the DS owns both. */

/* ---- page shell ---------------------------------------------------------- */
.sec { max-width: 58rem; margin: 0 auto; padding: 2.5rem 1.35rem 4rem; }

.sec .crumbs { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .04em;
  text-transform: uppercase; color: var(--text-faint); margin-bottom: 1.6rem; }
.sec .crumbs a { color: var(--text-muted); }
.sec .crumbs a:hover { color: var(--brand); }

.sec h1 { font-size: clamp(1.9rem, 4.4vw, 2.7rem); line-height: 1.15; letter-spacing: -.02em;
  color: var(--text-strong); margin: 0 0 .75rem; }
.sec h2 { font-size: 1.32rem; letter-spacing: -.01em; color: var(--text-strong);
  margin: 2.8rem 0 .85rem; padding-bottom: .4rem; border-bottom: 1px solid var(--border-default); }
.sec h3 { font-size: 1.05rem; color: var(--text-strong); margin: 1.9rem 0 .5rem; }
.sec p, .sec li { color: var(--text-body); }
.sec .lede { font-size: 1.12rem; line-height: 1.6; color: var(--text-muted); margin-bottom: 2.2rem; }
.sec ul { padding-left: 1.15rem; }
.sec li { margin: .4rem 0; }
.sec strong { color: var(--text-strong); }

.sec code { font-family: var(--font-mono); font-size: .87em; background: var(--surface-sunken);
  border: 1px solid var(--border-subtle); padding: .1em .38em; border-radius: 4px;
  color: var(--text-strong); }
.sec pre { background: var(--surface-sunken); border: 1px solid var(--border-default);
  border-radius: 10px; padding: 1rem 1.15rem; overflow-x: auto;
  font-family: var(--font-mono); font-size: .82rem; line-height: 1.55; color: var(--text-strong); }

/* ---- advisory cards ------------------------------------------------------ */
.sec a.card, .sec .card {
  display: block; background: var(--surface-card);
  border: 1px solid var(--border-default); border-left: 3px solid var(--brand);
  border-radius: 4px 12px 12px 4px; padding: 1.3rem 1.45rem; margin: 1.3rem 0;
  transition: border-color .16s ease, transform .16s ease;
}
.sec a.card { text-decoration: none; }
.sec a.card:hover { border-color: var(--border-strong); border-left-color: var(--brand-bright);
  transform: translateX(2px); }
.sec .card .id { font-family: var(--font-mono); font-size: .69rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-faint); }
.sec .card .title { font-size: 1.05rem; font-weight: 620; color: var(--brand);
  margin: .38rem 0 .45rem; line-height: 1.35; }
.sec a.card:hover .title { color: var(--brand-bright); }
.sec .card .meta { font-size: .88rem; color: var(--text-muted); margin: 0; }

/* ---- callout ------------------------------------------------------------- */
.sec .callout { background: var(--surface-card); border: 1px solid var(--border-default);
  border-left: 3px solid var(--orange); border-radius: 4px 12px 12px 4px;
  padding: 1.2rem 1.35rem; margin: 1.8rem 0; }
.sec .callout .label { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--orange-bright); margin-bottom: .5rem; }
.sec .callout p:last-child { margin-bottom: 0; }

/* ---- tables -------------------------------------------------------------- */
.sec .tablewrap { overflow-x: auto; margin: 1.3rem 0;
  border: 1px solid var(--border-default); border-radius: 10px; }
.sec table { border-collapse: collapse; width: 100%; font-size: .9rem; }
.sec th, .sec td { padding: .6rem .8rem; text-align: left; vertical-align: top;
  border-bottom: 1px solid var(--border-subtle); }
.sec th { background: var(--surface-raised); color: var(--text-strong); font-weight: 620;
  font-size: .78rem; letter-spacing: .03em; text-transform: uppercase; }
.sec tr:last-child td { border-bottom: none; }

/* ---- footer brand line --------------------------------------------------- */
.brandline { font-family: var(--font-mono); font-size: .78rem; }

/* ==========================================================================
   ADVISORY DOCUMENT (.adv)
   The advisory keeps its own typographic scale — it is a technical document —
   but its surfaces are re-pointed at DS tokens so it tracks the theme toggle.
   ========================================================================== */
.adv { max-width: 54rem; margin: 0 auto; padding: 2.5rem 1.35rem 4rem; }
.adv h1, .adv h2, .adv h3, .adv h4, .adv dt, .adv strong { color: var(--text-strong); }
.adv a { color: var(--brand); }
.adv a:hover { color: var(--brand-bright); }

@media (max-width: 640px) {
  .sec, .adv { padding-left: 1.05rem; padding-right: 1.05rem; }
  .sec h1 { font-size: 1.75rem; }
}

/* ==========================================================================
   SITE CHROME — nav + footer.
   Matched to the apex pages (web/site/about) so the security section is
   visually identical to the rest of liftedholdings.com. Tokens only.
   ========================================================================== */
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

body > nav { display: flex; align-items: center; gap: 20px; height: 70px;
  padding: 0 clamp(16px, 4vw, 40px); position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg-page) 82%, transparent);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle); }
body > nav .sp { flex: 1; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display);
  font-weight: 800; font-size: 19px; letter-spacing: -.02em; color: var(--text-strong); }
.brand b { color: var(--brand); font-weight: 800; }
body > nav .links { display: flex; gap: 26px; margin-left: 14px; }
body > nav .links a { font-size: 14.5px; color: var(--text-muted); font-weight: 500; position: relative; }
body > nav .links a:hover { color: var(--text-strong); }
.nav-tel { font-family: var(--font-mono); font-size: 13.5px; color: var(--text-muted); }
.nav-tel:hover { color: var(--brand); }

.btn { position: relative; display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 15px; padding: 11px 20px; border-radius: var(--radius-md);
  cursor: pointer; border: 1px solid var(--border-strong); background: var(--glass-fill);
  color: var(--text-strong); white-space: nowrap;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.btn:hover { border-color: var(--brand); color: var(--brand); }
.btn:active { transform: translateY(1px); }
.btn.primary { background: var(--brand); color: var(--brand-contrast); border-color: transparent; }
.btn.primary:hover { color: var(--brand-contrast); opacity: .92; }

.themetog { display: inline-grid; place-items: center; width: 38px; height: 38px;
  border-radius: var(--radius-md); border: 1px solid var(--border-strong);
  background: transparent; color: var(--text-muted); cursor: pointer; }
.themetog:hover { border-color: var(--brand); color: var(--brand); }
.themetog svg { width: 18px; height: 18px; }
.themetog .sun { display: none; }
[data-theme="light"] .themetog .sun { display: block; }
[data-theme="light"] .themetog .moon { display: none; }
.burger { display: none; background: none; border: none; color: var(--text-strong); cursor: pointer; }

body > footer { border-top: 1px solid var(--border-subtle); padding: 56px 0 46px; margin-top: 4rem; }
body > footer .fgrid { display: grid; grid-template-columns: 1.6fr 1fr 1.1fr 1fr; gap: 30px; margin-bottom: 40px; }
body > footer .fcol h4 { font-size: 13px; color: var(--text-strong); margin: 0 0 14px;
  font-family: var(--font-mono); letter-spacing: .08em; text-transform: uppercase; }
body > footer .fcol a { display: block; color: var(--text-muted); font-size: 14px; margin-bottom: 9px; }
body > footer .fcol a:hover { color: var(--brand); }
body > footer .fcol p { color: var(--text-muted); font-size: 14px; max-width: 300px; margin-top: 14px; }
body > footer .fbar { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  border-top: 1px solid var(--border-subtle); padding-top: 24px;
  color: var(--text-faint); font-size: 12.5px; font-family: var(--font-mono); }
body > footer .fbar a { color: var(--text-faint); }
body > footer .fbar a:hover { color: var(--brand); }

@media (max-width: 980px) {
  body > nav .links, .nav-tel { display: none; }
  .burger { display: inline-block; }
  body > nav .btn.ghost { display: none; }
  body > footer .fgrid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  body > footer .fgrid { grid-template-columns: 1fr; }
}
