/* Bright Path brand tokens — Option B "Navy & Gold Standard" (selected 2026-07-23)
   Navy: headlines, buttons, document bands · Gold: accents/kickers only, never large fills
   Parchment: callouts, table stripes · Signal Red: debt & needs-attention numbers only */
:root {
  --slate: #1b2a4a;        /* Navy (primary brand) */
  --slate-dark: #101c33;   /* Midnight (dark sections, footer) */
  --teal: #b58a2e;         /* Gold (accent) */
  --teal-soft: #f5eedd;    /* Parchment (soft backgrounds) */
  --body: #333d4d;
  --muted: #68738a;
  --light: #f5f6f8;
  --line: #e4e6ea;
  --red: #9e2b25;          /* Signal Red */
  --grad: linear-gradient(90deg, #101c33 0%, #1b2a4a 100%);
  --grad-v: linear-gradient(160deg, #1b2a4a 0%, #101c33 100%);
  --shadow: 0 10px 30px rgba(16, 28, 51, .10);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-size: 16px; color: var(--body); background: #fff; line-height: 1.75; }
h1, h2, h3 { font-family: 'DM Serif Display', serif; color: var(--slate-dark); line-height: 1.2; }
h1 { font-size: clamp(34px, 4.6vw, 54px); font-weight: 800; }
h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
.kicker { font-family: 'Inter', sans-serif; color: var(--teal); font-size: 13px; font-weight: 900; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 14px; }
.lead { font-size: 18px; color: var(--muted); }
.btn {
  display: inline-block; background: var(--grad); color: #fff; text-decoration: none;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 900; letter-spacing: 1px;
  padding: 16px 36px; border-radius: 40px; text-transform: uppercase;
  transition: transform .25s, box-shadow .25s; box-shadow: 0 6px 18px rgba(16,28,51,.25);
  border: none; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(16,28,51,.35); }
.btn.ghost { background: transparent; color: var(--slate); box-shadow: none; border: 2px solid var(--slate); }
.btn.ghost:hover { background: var(--slate); color: #fff; }
.btn.light { background: #fff; color: var(--slate); box-shadow: 0 6px 18px rgba(0,0,0,.15); }

/* ---------- Header ---------- */
header.site { background: #fff; position: sticky; top: 0; z-index: 200; box-shadow: 0 2px 14px rgba(36,65,77,.08); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 24px; max-width: 1240px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 48px; height: 48px; border-radius: 50%; background: var(--grad-v); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'DM Serif Display', serif; font-weight: 700; font-size: 18px;
}
.logo-text { font-family: 'DM Serif Display', serif; font-weight: 700; color: var(--slate-dark); font-size: 19px; line-height: 1.15; }
.logo-text small { display: block; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 10px; color: var(--teal); letter-spacing: 2.5px; text-transform: uppercase; }
nav.main { display: flex; align-items: center; gap: 26px; }
nav.main ul { list-style: none; display: flex; gap: 26px; }
nav.main a.navlink { text-decoration: none; color: var(--body); font-weight: 700; font-size: 14px; }
nav.main a.navlink:hover, nav.main a.navlink.active { color: var(--teal); }
.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone { font-weight: 900; color: var(--slate); text-decoration: none; font-size: 14px; white-space: nowrap; }
.header-cta .btn { padding: 12px 26px; font-size: 13px; }
.menu-toggle { display: none; background: none; border: none; font-size: 28px; color: var(--slate); cursor: pointer; }

/* ---------- Interior page hero ---------- */
.page-hero { background: linear-gradient(180deg, var(--light) 0%, #fff 100%); padding: 72px 0 56px; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero .lead { max-width: 680px; }

/* ---------- Home hero ---------- */
.hero { background: linear-gradient(180deg, var(--light) 0%, #fff 100%); padding: 100px 0 70px; }
.hero .container { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }
.hero h1 { margin: 6px 0 22px; }
.hero h1 em { font-style: normal; color: var(--teal); }
.hero p.lead { margin-bottom: 32px; max-width: 540px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-bottom: 34px; }
.cred-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  background: #fff; border: 1px solid var(--line); border-radius: 30px; padding: 7px 16px;
  font-size: 13px; font-weight: 700; color: var(--slate); display: inline-flex; align-items: center; gap: 7px;
}
.chip::before { content: "✓"; color: var(--teal); font-weight: 900; }
.hero-art svg { width: 100%; max-width: 480px; display: block; margin: 0 auto; filter: drop-shadow(0 18px 30px rgba(36,65,77,.12)); }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--slate-dark); padding: 22px 0; }
.trustbar .container { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.trustbar span { color: #fff; font-size: 14px; font-weight: 700; letter-spacing: .5px; display: flex; align-items: center; gap: 9px; }
.trustbar span b { color: var(--teal); font-size: 17px; }

/* ---------- Cards ---------- */
.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.info-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 40px 30px;
  transition: transform .3s, box-shadow .3s;
}
.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.info-card .icon {
  width: 58px; height: 58px; border-radius: 14px; background: var(--teal-soft);
  display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px;
}
.info-card h3 { font-size: 21px; margin-bottom: 12px; }
.info-card p { font-size: 15px; color: var(--muted); }
.tagline { text-align: center; margin-top: 60px; }
.tagline h2 span { color: var(--teal); }

/* ---------- About / founder ---------- */
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: center; }
.about-grid h2 { margin-bottom: 22px; }
.about-grid p { margin-bottom: 18px; font-size: 16px; }
blockquote.pull {
  border-left: 4px solid var(--teal); padding: 4px 0 4px 20px; margin: 24px 0;
  font-family: 'DM Serif Display', serif; font-size: 19px; color: var(--slate); font-style: italic;
}
.founder-card {
  background: #fff; border-radius: 20px; padding: 44px 36px; text-align: center; box-shadow: var(--shadow);
}
.founder-card .avatar {
  width: 150px; height: 150px; border-radius: 50%; background: var(--grad-v); margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-family: 'DM Serif Display', serif; font-size: 48px; font-weight: 700;
  border: 6px solid var(--teal-soft);
}
.founder-card h3 { font-size: 24px; }
.founder-card .role { color: var(--teal); font-weight: 900; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin: 4px 0 18px; }
.badges { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.badge { background: var(--teal-soft); color: var(--slate); font-weight: 900; font-size: 12.5px; padding: 7px 16px; border-radius: 30px; letter-spacing: .5px; }
.photo-note { margin-top: 16px; font-size: 12.5px; color: var(--muted); }

/* ---------- Services ---------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; text-align: left; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 40px 32px;
  display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; position: relative;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card .icon {
  width: 62px; height: 62px; border-radius: 50%; background: var(--grad-v);
  display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 22px;
}
.service-card h3 { font-size: 21px; margin-bottom: 12px; }
.service-card p { font-size: 15px; color: var(--muted); flex: 1; }
.service-card .tag {
  position: absolute; top: 20px; right: 20px; background: var(--teal); color: #fff;
  font-size: 11px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
}
.card-link { font-weight: 900; color: var(--teal); text-decoration: none; font-size: 14px; margin-top: 18px; display: inline-block; }
.card-link:hover { text-decoration: underline; }

/* Service detail rows (services page) */
.service-row {
  display: grid; grid-template-columns: 90px 1fr; gap: 28px; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 44px 40px; margin-bottom: 28px;
}
.service-row .icon {
  width: 74px; height: 74px; border-radius: 50%; background: var(--grad-v);
  display: flex; align-items: center; justify-content: center; font-size: 30px;
}
.service-row h2 { font-size: 26px; margin-bottom: 12px; }
.service-row p { color: var(--muted); margin-bottom: 16px; }
.service-row ul { padding-left: 20px; margin-bottom: 18px; color: var(--body); }
.service-row li { margin-bottom: 8px; font-size: 15px; }
.fit-note { background: var(--teal-soft); border-radius: 10px; padding: 12px 18px; font-size: 14px; color: var(--slate); display: inline-block; }
.fit-note b { color: var(--slate-dark); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; text-align: left; }
.step { background: #fff; border-radius: 16px; padding: 40px 32px; box-shadow: 0 4px 16px rgba(36,65,77,.06); }
.step .num {
  width: 46px; height: 46px; border-radius: 50%; background: var(--grad);
  color: #fff; font-family: 'DM Serif Display', serif; font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--muted); }

/* ---------- Pricing ---------- */
.fee-promise { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 56px; }
.p-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(235px, 1fr)); gap: 24px; text-align: left; }
.p-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 40px 34px;
  display: flex; flex-direction: column; position: relative; transition: transform .3s, box-shadow .3s;
}
.p-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.p-card.featured { border: 2px solid var(--teal); box-shadow: var(--shadow); }
.p-card .plan { font-weight: 900; color: var(--teal); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.p-price { font-family: 'DM Serif Display', serif; font-size: 46px; font-weight: 800; color: var(--slate-dark); line-height: 1; margin-bottom: 4px; }
.p-price small { font-size: 16px; font-weight: 400; color: var(--muted); font-family: 'Inter', sans-serif; }
.p-card p.desc { font-size: 15px; color: var(--muted); margin: 16px 0 26px; flex: 1; }
.p-card .btn { text-align: center; font-size: 13px; padding: 13px 22px; }
.popular-flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: #fff; font-size: 11px; font-weight: 900; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 6px 18px; border-radius: 20px; white-space: nowrap;
}
.compare-note {
  margin: 44px auto 0; max-width: 680px; background: var(--teal-soft); border-radius: 14px;
  padding: 22px 30px; font-size: 15px; color: var(--slate);
}
.compare-note b { color: var(--slate-dark); }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; text-align: left; }
.faq details { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 14px; background: #fff; }
.faq summary {
  cursor: pointer; padding: 18px 24px; font-weight: 900; color: var(--slate-dark);
  font-size: 16px; list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 24px; color: var(--teal); font-size: 22px; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 24px 20px; color: var(--muted); font-size: 15px; }

/* ---------- Quiz ---------- */
.quiz { background: var(--slate-dark); color: #fff; }
.quiz .kicker { color: var(--teal); }
.quiz h1, .quiz h2 { color: #fff; }
.quiz .container { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
.quiz .intro p { color: rgba(255,255,255,.82); margin: 18px 0; font-size: 16px; }
.quiz-box { background: #fff; border-radius: 20px; padding: 40px 36px; color: var(--body); box-shadow: 0 20px 50px rgba(0,0,0,.25); }
.q-item { margin-bottom: 24px; }
.q-item p { font-weight: 900; color: var(--slate-dark); margin-bottom: 10px; font-size: 15px; }
.q-opts { display: flex; gap: 10px; flex-wrap: wrap; }
.q-opts label {
  border: 1.5px solid var(--line); border-radius: 30px; padding: 8px 18px; font-size: 14px;
  cursor: pointer; user-select: none; transition: all .2s;
}
.q-opts input { display: none; }
.q-opts input:checked + span { color: #fff; }
.q-opts label:has(input:checked) { background: var(--grad); border-color: transparent; color: #fff; }
.quiz-result { display: none; margin-top: 26px; background: var(--teal-soft); border-radius: 14px; padding: 24px 26px; }
.quiz-result h3 { font-size: 20px; margin-bottom: 8px; }
.quiz-result p { font-size: 15px; margin-bottom: 16px; }
.quiz-error { display: none; color: #c0392b; font-size: 14px; font-weight: 700; margin-top: 14px; }

/* ---------- Founding ---------- */
.founding { background: var(--grad-v); text-align: center; color: #fff; }
.founding h2 { color: #fff; margin-bottom: 20px; }
.founding p { max-width: 780px; margin: 0 auto 20px; color: rgba(255,255,255,.94); font-size: 16.5px; }
.founding .promise { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 19px; }
.founding .btn { margin-top: 16px; }
.honesty {
  max-width: 720px; margin: 44px auto 0; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  border-radius: 16px; padding: 28px 32px; font-size: 15px; color: rgba(255,255,255,.95); text-align: left;
}
.honesty b { color: #fff; }

/* ---------- Contact / Book ---------- */
.book { background: var(--light); }
.book .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.book h2 { margin-bottom: 20px; }
.book p { margin-bottom: 24px; }
.contact-rows { list-style: none; }
.contact-rows li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; font-size: 15.5px; }
.contact-rows .ci {
  width: 44px; height: 44px; border-radius: 12px; background: var(--teal-soft); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 19px;
}
.contact-rows a { color: var(--slate); font-weight: 900; text-decoration: none; }
.contact-rows a:hover { color: var(--teal); }
.contact-rows small { display: block; color: var(--muted); font-size: 13px; }
.book-card { background: #fff; border-radius: 20px; padding: 44px 40px; box-shadow: var(--shadow); text-align: center; }
.book-card h3 { font-size: 24px; margin-bottom: 12px; }
.book-card p { color: var(--muted); font-size: 15px; }
.book-card .btn { width: 100%; margin: 10px 0; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--slate-dark); text-align: center; padding: 72px 0; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 640px; margin: 0 auto 28px; }

/* ---------- Footer ---------- */
footer.site { background: var(--slate-dark); color: rgba(255,255,255,.82); padding: 76px 0 0; }
.f-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 44px; padding-bottom: 52px; }
footer.site h4 { color: #fff; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 900; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
footer.site ul { list-style: none; }
footer.site li { margin-bottom: 11px; font-size: 14.5px; }
footer.site a { color: rgba(255,255,255,.82); text-decoration: none; }
footer.site a:hover { color: var(--teal); }
.f-brand p { font-size: 14px; line-height: 1.8; margin-top: 16px; }
.f-disclaimer {
  border-top: 1px solid rgba(255,255,255,.14); padding: 26px 0; font-size: 12.5px;
  color: rgba(255,255,255,.55); line-height: 1.7;
}
.f-bottom { border-top: 1px solid rgba(255,255,255,.14); padding: 20px 0; text-align: center; font-size: 13px; color: rgba(255,255,255,.6); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  section { padding: 70px 0; }
  .hero .container, .about-grid, .quiz .container, .book .container { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .cols-3, .steps, .p-grid, .service-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; }
  .f-grid { grid-template-columns: 1fr 1fr; }
  nav.main ul {
    display: none; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; box-shadow: 0 12px 24px rgba(0,0,0,.12);
  }
  nav.main ul.open { display: flex; }
  nav.main li { border-top: 1px solid var(--line); }
  nav.main a.navlink { display: block; padding: 15px 24px; }
  .menu-toggle { display: block; }
  .header-phone { display: none; }
  .trustbar .container { justify-content: center; }
}
@media (max-width: 560px) {
  .f-grid { grid-template-columns: 1fr; }
  .header-cta .btn { padding: 10px 16px; font-size: 12px; }
}

/* ---------- Motion (progressive enhancement; requires bp-motion.js) ---------- */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
html.js .reveal.d1 { transition-delay: .12s; }
html.js .reveal.d2 { transition-delay: .24s; }
html.js .reveal.d3 { transition-delay: .36s; }
/* Hero visual */
.hero-visual { position: relative; max-width: 520px; margin: 0 auto; }
.hero-chart { width: 100%; display: block; filter: drop-shadow(0 18px 34px rgba(16,28,51,.13)); position: relative; z-index: 2; }
.orb { position: absolute; border-radius: 50%; filter: blur(34px); opacity: .5; z-index: 1; pointer-events: none; }
.orb-a { width: 190px; height: 190px; background: #b58a2e; top: -34px; right: -22px; }
.orb-b { width: 170px; height: 170px; background: #1b2a4a; bottom: -30px; left: -26px; opacity: .32; }
.float-card {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px;
  background: #fff; border: 1px solid var(--line); border-radius: 13px;
  padding: 11px 16px; box-shadow: 0 12px 30px rgba(16,28,51,.16);
}
.float-card b { display: block; font-size: 13px; color: var(--slate-dark); font-weight: 800; line-height: 1.25; }
.float-card small { font-size: 11.5px; color: var(--muted); }
.float-card .fc-ic {
  width: 30px; height: 30px; border-radius: 9px; background: var(--teal-soft); color: var(--teal);
  display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 900; flex-shrink: 0;
}
.fc-1 { left: -26px; top: 30%; }
.fc-2 { right: -22px; bottom: 8%; }

@keyframes bpDraw { from { stroke-dashoffset: 760; } to { stroke-dashoffset: 0; } }
@keyframes bpFadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes bpPop { from { opacity: 0; transform: scale(.3); } to { opacity: 1; transform: scale(1); } }
@keyframes bpPulse { 0%, 100% { r: 8; opacity: 1; } 50% { r: 11; opacity: .72; } }
@keyframes bpFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }
@keyframes bpDrift { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-16px, 14px) scale(1.09); } }

html.js .hero-line { stroke-dasharray: 760; animation: bpDraw 1.7s cubic-bezier(.4,.1,.2,1) .25s backwards; }
html.js .hero-area { animation: bpFadeUp 1.1s ease-out 1.3s backwards; }
html.js .hero-dots circle { transform-box: fill-box; transform-origin: center; animation: bpPop .45s cubic-bezier(.2,1.5,.4,1) backwards; }
html.js .hero-dots circle:nth-child(1) { animation-delay: .75s; }
html.js .hero-dots circle:nth-child(2) { animation-delay: .95s; }
html.js .hero-dots circle:nth-child(3) { animation-delay: 1.15s; }
html.js .hero-dots circle:nth-child(4) { animation-delay: 1.35s; }
html.js .hero-pulse { animation: bpPop .5s cubic-bezier(.2,1.5,.4,1) 1.6s backwards, bpPulse 2.8s ease-in-out 2.1s infinite; transform-box: fill-box; transform-origin: center; }
html.js .float-card { animation: bpFadeUp .8s ease-out backwards; }
html.js .fc-1 { animation-delay: 1.9s; }
html.js .fc-2 { animation-delay: 2.2s; }
html.js .hero-visual .fc-1 { animation: bpFadeUp .8s ease-out 1.9s backwards, bpFloat 6s ease-in-out 2.7s infinite; }
html.js .hero-visual .fc-2 { animation: bpFadeUp .8s ease-out 2.2s backwards, bpFloat 7s ease-in-out 3.4s infinite; }
html.js .orb { animation: bpDrift 15s ease-in-out infinite; }
html.js .orb-b { animation-duration: 19s; animation-direction: reverse; }

@media (max-width: 1080px) { .fc-1 { left: -8px; } .fc-2 { right: -6px; } }

/* ---------- Accessibility ---------- */
:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; border-radius: 4px; }
.btn:focus-visible { outline-color: var(--slate); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .btn:hover, .info-card:hover, .service-card:hover, .p-card:hover, .step:hover,
  .tool-card:hover, .post-card:hover, .tpl-card:hover { transform: none !important; }
  html.js .reveal { opacity: 1 !important; transform: none !important; }
  html.js .hero-line, html.js .hero-area, html.js .hero-dots circle,
  html.js .hero-pulse, html.js .float-card, html.js .orb,
  html.js .hero-visual .fc-1, html.js .hero-visual .fc-2 {
    animation: none !important; opacity: 1 !important; stroke-dasharray: none !important; transform: none !important;
  }
}
@media print {
  html.js .reveal { opacity: 1 !important; transform: none !important; }
}
