/* =====================================================================
   BorneoSchematics — design system
   ---------------------------------------------------------------------
   Palette is taken from the Borneo Schematics logo: an orange-to-magenta
   gradient on a light, warm grey. Every text colour here was checked for
   WCAG AA contrast against the surface it sits on — --brand is bright and
   is used only for large text, gradients and fills; --accent is the
   darker sibling used for body-size links and small text.
   ===================================================================== */

:root {
  --bg:        #ece8ec;
  --bg-2:      #f6f3f6;
  --panel:     #ffffff;
  --panel-2:   #faf8fa;

  --text:      #201c22;
  --dim:       #5e5765;

  --brand:     #d6236a;   /* magenta — large text / fills only */
  --brand-2:   #f5793b;   /* orange  — gradient partner        */
  --accent:    #ab1454;   /* AA-safe magenta for links & small text */
  --chrome:    #2f2933;   /* dark header / footer               */

  --line:      rgba(32, 28, 34, .12);
  --line-2:    rgba(32, 28, 34, .07);

  --grad:      linear-gradient(100deg, var(--brand-2), var(--brand));
  --grad-soft: linear-gradient(100deg, rgba(245,121,59,.14), rgba(214,35,106,.14));

  --r:         13px;
  --r-lg:      20px;
  --shadow:    0 1px 2px rgba(32,28,34,.05), 0 8px 26px rgba(32,28,34,.07);
  --shadow-lg: 0 2px 6px rgba(32,28,34,.06), 0 20px 50px rgba(32,28,34,.11);

  --wrap:      1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; }

h1, h2, h3, h4 { line-height: 1.18; margin: 0 0 .55rem; letter-spacing: -.02em; font-weight: 800; }
h1 { font-size: clamp(2rem, 1.3rem + 3vw, 3.4rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.3rem); }
h3 { font-size: 1.12rem; }
p  { margin: 0 0 1rem; }

a { color: inherit; text-decoration: none; }

.muted { color: var(--dim); }

.container { width: min(var(--wrap), 100% - 40px); margin-inline: auto; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--chrome); color: #fff; padding: 12px 18px; border-radius: 0 0 var(--r) 0;
}
.skip:focus { left: 0; }

/* ------------------------------------------------------------------ */
/*  Buttons                                                            */
/* ------------------------------------------------------------------ */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 12px 22px;
  border-radius: var(--r);
  border: 1px solid transparent;
  font-weight: 700; font-size: .95rem;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, color .16s ease;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

.btn-primary {
  background: var(--brand);
  background-image: var(--grad);
  color: #fff;
}
.btn-primary:hover { filter: saturate(1.1) brightness(1.04); }

.btn-ghost {
  background: var(--panel);
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-lg    { padding: 15px 30px; font-size: 1rem; }
.btn-block { width: 100%; }

.chip {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: 5px 12px; border-radius: 999px;
  font-size: .74rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  background: var(--panel-2); border: 1px solid var(--line); color: var(--dim);
}
.chip--one { color: #a03a06; background: rgba(245,121,59,.13); border-color: rgba(245,121,59,.3); }
.chip--two { color: var(--accent); background: rgba(214,35,106,.11); border-color: rgba(214,35,106,.28); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent);
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 1rem;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }

/* ------------------------------------------------------------------ */
/*  Header                                                             */
/* ------------------------------------------------------------------ */

.hdr {
  position: sticky; top: 0; z-index: 90;
  background: var(--chrome);
  transition: box-shadow .2s ease;
}
.hdr.is-stuck { box-shadow: 0 6px 24px rgba(32,28,34,.22); }

.hdr-in { display: flex; align-items: center; gap: 24px; height: 68px; }

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 34px; width: auto; display: block; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }

.nav > a:not(.btn),
.nav-drop-btn {
  padding: 9px 14px;
  border-radius: 10px;
  color: rgba(255,255,255,.86);
  font-size: .93rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: .3rem;
}
.nav > a:not(.btn):hover,
.nav-drop-btn:hover { color: #fff; background: rgba(255,255,255,.09); }

.nav > a.is-here:not(.btn),
.nav-drop-btn.is-here { color: #fff; }
.nav > a.is-here:not(.btn)::after,
.nav-drop-btn.is-here::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; border-radius: 2px; background: var(--brand-2);
}
.nav > a:not(.btn), .nav-drop-btn { position: relative; }

.nav-cta { margin-left: 10px; padding: 10px 20px; }

.nav-drop { position: relative; }
.nav-drop-btn svg { width: 15px; height: 15px; transition: transform .18s ease; }
.nav-drop:hover .nav-drop-btn svg,
.nav-drop:focus-within .nav-drop-btn svg { transform: rotate(180deg); }

/* Invisible bridge so the menu does not close while the pointer
   travels from the button down into the panel. */
.nav-drop::after {
  content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 14px;
}

.nav-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translate(-50%, 8px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 22px;
  min-width: 420px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-drop:hover .nav-menu,
.nav-drop:focus-within .nav-menu,
.nav-menu.is-open {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}

.nav-menu-h {
  display: block; font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--dim);
  padding: 6px 10px 8px;
}
.nav-menu a {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 9px 10px; border-radius: 10px;
  font-size: .92rem; font-weight: 600; color: var(--text);
}
.nav-menu a:hover { background: var(--grad-soft); color: var(--accent); }
.nav-menu a em { font-style: normal; font-weight: 800; color: var(--accent); }

.burger { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; margin: 4px 0; transition: transform .2s ease, opacity .2s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 960px) {
  .burger { display: block; margin-left: auto; }
  .nav {
    position: fixed; inset: 68px 0 auto 0;
    background: var(--chrome);
    flex-direction: column; align-items: stretch; gap: 2px;
    padding: 14px 20px 24px;
    margin: 0;
    display: none;
    max-height: calc(100vh - 68px); overflow-y: auto;
  }
  .nav.is-open { display: flex; }
  .nav-cta { margin: 10px 0 0; }
  .nav-menu {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    min-width: 0; box-shadow: none; display: none; margin: 6px 0 4px;
    grid-template-columns: 1fr;
  }
  .nav-menu.is-open { display: grid; }
  .nav-drop::after { display: none; }
}

/* ------------------------------------------------------------------ */
/*  Sections & panels                                                  */
/* ------------------------------------------------------------------ */

.section { padding: 74px 0; }
.section--tight { padding: 46px 0; }
.section--flush { padding-top: 0; }
.section--alt { background: var(--bg-2); }

.sec-head { max-width: 720px; margin-bottom: 34px; }
.sec-head p { color: var(--dim); font-size: 1.03rem; margin: 0; }

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.crumbs { margin-bottom: 18px; font-size: .86rem; color: var(--dim); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .45rem; margin: 0; padding: 0; }
.crumbs li + li::before { content: '/'; margin-right: .45rem; opacity: .5; }
.crumbs a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ------------------------------------------------------------------ */
/*  Hero                                                               */
/* ------------------------------------------------------------------ */

.hero { position: relative; padding: 76px 0 64px; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: -30% -10% auto -10%; height: 620px;
  background: radial-gradient(60% 60% at 30% 30%, rgba(245,121,59,.20), transparent 70%),
              radial-gradient(50% 50% at 75% 40%, rgba(214,35,106,.20), transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 34px; } }

.hero h1 span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lede { font-size: 1.1rem; color: var(--dim); max-width: 52ch; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 22px; }

.hero-stats { display: flex; flex-wrap: wrap; gap: 28px; padding-top: 20px; border-top: 1px solid var(--line); }
.hero-stats div strong { display: block; font-size: 1.45rem; font-weight: 900; }
.hero-stats div span { font-size: .84rem; color: var(--dim); }

.hero-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  background: var(--panel);
}
.hero-media img { width: 100%; height: auto; display: block; }

/* ------------------------------------------------------------------ */
/*  Product cards                                                      */
/* ------------------------------------------------------------------ */

.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1000px) { .pgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 660px)  { .pgrid { grid-template-columns: 1fr; } }

.pcard {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: rgba(214,35,106,.3); }

.pcard-ribbon {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: var(--grad); color: #fff;
  font-size: .68rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}

.pcard-media { background: var(--panel-2); border-bottom: 1px solid var(--line-2); }
.pcard-media img { width: 100%; height: auto; display: block; }

.pcard-body { padding: 20px; display: flex; flex-direction: column; flex: 1; gap: .2rem; }
.pcard-body > .chip { align-self: flex-start; margin-bottom: .5rem; }
.pcard-body h3 { margin-bottom: .3rem; }
.pcard-body > .muted { font-size: .92rem; flex: 1; }

.pcard-price { display: flex; align-items: baseline; gap: 10px; margin: .7rem 0 1rem; }
.pcard-price strong { font-size: 1.7rem; font-weight: 900; }
.pcard-price span { font-size: .84rem; }

.pcard-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* ------------------------------------------------------------------ */
/*  Product detail page                                                */
/* ------------------------------------------------------------------ */

.split.pdp-split { align-items: stretch; }
.pdp-left { display: flex; flex-direction: column; gap: 14px; }

.panel.pdp-media {
  position: relative; padding: 0; overflow: hidden; flex: 1;
  align-items: center; justify-content: center;
}
.panel.pdp-media img { width: 100%; height: auto; display: block; position: relative; z-index: 1; }

.pdp-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.panel.pdp-buy { justify-content: flex-start; }
.panel.pdp-buy > .chip { align-self: flex-start; }
.panel.pdp-buy > .btn-primary { margin-top: auto; }

.pdp-variant {
  display: block; font-size: .58em; font-weight: 700; color: var(--accent);
  letter-spacing: .02em; margin-top: .2rem;
}

.price-big { font-size: 2.5rem; font-weight: 900; line-height: 1; }

.flist { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.flist--2 { grid-template-columns: 1fr 1fr; gap: .6rem 26px; }
@media (max-width: 700px) { .flist--2 { grid-template-columns: 1fr; } }
.flist li { position: relative; padding-left: 27px; font-size: .95rem; color: var(--dim); }
.flist li::before {
  content: ''; position: absolute; left: 0; top: .45em;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--grad-soft);
  border: 1px solid rgba(214,35,106,.35);
}
.flist li::after {
  content: ''; position: absolute; left: 5px; top: .72em;
  width: 6px; height: 3px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.notice {
  display: flex; gap: 14px; align-items: flex-start;
  border-radius: var(--r-lg); padding: 18px 22px;
  border: 1px solid var(--line);
  background: var(--panel);
  font-size: .95rem; color: var(--dim);
}
.notice b { color: var(--text); }
.notice--warn { background: rgba(245,121,59,.08); border-color: rgba(245,121,59,.3); }
.notice--info { background: rgba(214,35,106,.06); border-color: rgba(214,35,106,.24); }

.table-wrap { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; font-size: .94rem; }
th, td { padding: 13px 20px; text-align: left; border-bottom: 1px solid var(--line-2); }
tr:last-child th, tr:last-child td { border-bottom: 0; }
th[scope="row"] { width: 34%; color: var(--dim); font-weight: 600; }
thead th { background: var(--panel-2); font-weight: 800; }

.steps { display: grid; gap: 14px; counter-reset: s; }
.step {
  position: relative; background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 20px 24px 20px 68px; box-shadow: var(--shadow);
}
.step::before {
  counter-increment: s; content: counter(s);
  position: absolute; left: 22px; top: 20px;
  width: 32px; height: 32px; border-radius: 10px;
  background: var(--grad); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: .95rem;
}
.step h3 { margin-bottom: .25rem; }
.step p { margin: 0; color: var(--dim); font-size: .95rem; }

/* ------------------------------------------------------------------ */
/*  FAQ                                                                */
/* ------------------------------------------------------------------ */

.faq { display: grid; gap: 10px; }
.faq-item { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow); }
.faq-item summary {
  cursor: pointer; padding: 16px 22px; font-weight: 700; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.35rem; color: var(--accent); line-height: 1; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-a { padding: 0 22px 18px; color: var(--dim); font-size: .95rem; }
.faq-a a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ------------------------------------------------------------------ */
/*  Releases                                                           */
/* ------------------------------------------------------------------ */

.rel { display: grid; gap: 16px; }
.rel-item { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px 26px; box-shadow: var(--shadow); }
.rel-item.is-latest { border-color: rgba(214,35,106,.4); }
.rel-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; margin-bottom: .5rem; }
.rel-head h3 { margin: 0; font-size: 1.2rem; }
.rel-date { font-size: .85rem; color: var(--dim); }
.rel-notes { margin: .6rem 0 0; color: var(--dim); font-size: .95rem; }
.rel-mirrors { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1rem; }

kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .84rem; background: var(--panel-2); border: 1px solid var(--line);
  border-radius: 7px; padding: 3px 8px; color: var(--text);
}

/* ------------------------------------------------------------------ */
/*  CTA band                                                           */
/* ------------------------------------------------------------------ */

.cta-band {
  background: var(--chrome);
  background-image: radial-gradient(70% 120% at 15% 0%, rgba(245,121,59,.28), transparent 60%),
                    radial-gradient(60% 110% at 85% 100%, rgba(214,35,106,.32), transparent 60%);
  border-radius: var(--r-lg);
  padding: 46px 40px;
  text-align: center;
  color: #fff;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 56ch; margin-inline: auto; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 22px; }
.cta-band .btn-ghost { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.28); color: #fff; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.18); border-color: #fff; color: #fff; }

/* ------------------------------------------------------------------ */
/*  Footer                                                             */
/* ------------------------------------------------------------------ */

.ftr { background: var(--chrome); color: rgba(255,255,255,.72); padding: 56px 0 26px; margin-top: 20px; }
.ftr-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; }
@media (max-width: 900px) { .ftr-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ftr-grid { grid-template-columns: 1fr; } }

.ftr h3 { color: #fff; font-size: .84rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .9rem; }
.ftr a { display: block; padding: 4px 0; font-size: .92rem; color: rgba(255,255,255,.72); }
.ftr a:hover { color: #fff; }
.ftr-brand img { height: 32px; width: auto; margin-bottom: 1rem; }
.ftr-brand p { font-size: .92rem; max-width: 42ch; }
.ftr-social { display: flex; gap: 16px; }
.ftr-social a { display: inline-block; }

.ftr-bottom {
  margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .85rem;
}
.ftr-bottom p { margin: 0; max-width: 70ch; }
.ftr-region strong { color: #fff; }
.ftr-region a { display: inline; color: #ffb27a; text-decoration: underline; text-underline-offset: 3px; }
.ftr-region a:hover { color: #fff; }

/* ------------------------------------------------------------------ */
/*  WhatsApp widget                                                    */
/* ------------------------------------------------------------------ */

.wa { position: fixed; right: 20px; bottom: 20px; z-index: 95; }
.wa-btn {
  width: 56px; height: 56px; border-radius: 50%; border: 0; cursor: pointer;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 26px rgba(37,211,102,.42);
  transition: transform .18s ease;
}
.wa-btn:hover { transform: scale(1.06); }
.wa-btn svg { width: 28px; height: 28px; }
.wa-card {
  position: absolute; right: 0; bottom: 70px; width: 285px;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 18px;
}
.wa-head { margin-bottom: .7rem; }
.wa-head strong { display: block; }
.wa-head span { font-size: .8rem; color: var(--dim); }
.wa-card p { font-size: .9rem; color: var(--dim); }

/* ------------------------------------------------------------------ */
/*  Blog                                                               */
/* ------------------------------------------------------------------ */

.bgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 950px) { .bgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .bgrid { grid-template-columns: 1fr; } }

.bcard { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.bcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.bcard h3 { margin-bottom: .4rem; }
.bcard p { color: var(--dim); font-size: .93rem; flex: 1; }
.bcard .rel-date { margin-bottom: .6rem; display: block; }

.prose { max-width: 74ch; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose p, .prose li { color: var(--dim); }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li { margin-bottom: .4rem; }

/* ------------------------------------------------------------------ */
/*  Reveal on scroll                                                   */
/* ------------------------------------------------------------------ */

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .pcard, .bcard { transition: none; }
}
