@charset "utf-8";
/* ==========================================================================
   Block Vault Co — public site
   Aged-parchment / engraved banknote design system.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Surfaces */
  --parch:      #ece1c7;
  --parch-dk:   #e2d5b6;
  --panel:      #f6efdd;
  --panel-2:    #f1e8d1;
  --panel-hi:   #fbf6e9;
  --dark:       #16120d;
  --dark-2:     #221b13;
  --dark-3:     #2f2418;

  /* Ink */
  --ink:        #241c13;
  --ink-2:      #4a3c2b;
  --ink-3:      #6b5a42;
  --ink-4:      #8d7c60;

  /* Brass */
  --gold:       #b28a45;
  --gold-dk:    #8a6a2f;
  --gold-lt:    #d9bd7c;
  --gold-pale:  #e6d3a4;

  /* Rules */
  --rule:       #c9b48a;
  --rule-soft:  #ddcca6;
  --rule-dark:  #3d3123;

  /* Semantic */
  --green:      #3f7a45;
  --green-lt:   #6fbf78;
  --red:        #8c2f24;
  --red-lt:     #d98b7f;
  --amber:      #9a7420;

  /* Plan accents */
  --bronze:     #5c4526;
  --silver:     #55554e;
  --gold-plan:  #7d1f1f;
  --diamond:    #1b3f66;

  /* Type */
  --f-display:  'Playfair Display', 'Times New Roman', serif;
  --f-mark:     'Cinzel', 'Playfair Display', Georgia, serif;
  --f-body:     'Lora', Georgia, 'Times New Roman', serif;
  --f-mono:     'Consolas', 'SF Mono', Menlo, monospace;

  /* Layout */
  --wrap:       1180px;
  --gutter:     22px;
  --radius:     0px;

  --shadow-panel: 0 1px 0 rgba(255, 255, 255, .55) inset, 0 14px 34px -26px rgba(20, 14, 6, .9);
  --shadow-lift:  0 22px 48px -28px rgba(20, 14, 6, .85);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */

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

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

body {
  margin: 0;
  background-color: var(--parch);
  /* Two whisper-fine noise layers give the paper its tooth. */
  background-image:
    radial-gradient(circle at 18% 12%, rgba(255, 253, 244, .55), transparent 42%),
    radial-gradient(circle at 82% 78%, rgba(196, 174, 130, .28), transparent 46%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.055'/%3E%3C/svg%3E");
  background-attachment: fixed, fixed, scroll;
  color: var(--ink);
  font: 400 16px/1.68 var(--f-body);
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; vertical-align: middle; }

a { color: var(--gold-dk); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--ink); }

h1, h2, h3, h4, h5 { font-family: var(--f-display); font-weight: 700; line-height: 1.18; margin: 0 0 .6em; color: var(--ink); }
p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

hr { border: 0; border-top: 1px solid var(--rule-soft); margin: 28px 0; }

::selection { background: var(--gold-pale); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--gold-dk);
  outline-offset: 2px;
}

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

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 999;
  background: var(--dark); color: var(--gold-lt); padding: 10px 18px;
  font: 600 12px/1 var(--f-body); letter-spacing: 2px; text-transform: uppercase;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: 34px 0; }
.section--tight { padding: 20px 0; }
.section--flush { padding-top: 0; }

.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.stack > * + * { margin-top: 14px; }
.center { text-align: center; }
.muted { color: var(--ink-3); }
.small { font-size: 13.5px; }
.nowrap { white-space: nowrap; }

/* --------------------------------------------------------------------------
   4. The framed panel — the core motif
   -------------------------------------------------------------------------- */

.panel {
  position: relative;
  background: var(--panel);
  background-image: linear-gradient(178deg, var(--panel-hi), var(--panel) 34%, var(--panel-2));
  border: 1px solid var(--rule-dark);
  box-shadow: var(--shadow-panel);
  padding: 26px 28px;
  /* As a grid/flex item a panel must be allowed to shrink below its
     min-content width, otherwise wide children (tables, long addresses) push
     the whole page sideways on a phone. Inner scrollers handle the overflow. */
  min-width: 0;
}

/* Inset brass hairline. */
.panel::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--rule);
  pointer-events: none;
}

.panel--flush { padding: 0; }
.panel--plain::before { display: none; }
.panel--dark {
  background: var(--dark);
  background-image: linear-gradient(180deg, var(--dark-3), var(--dark) 38%, #100c08);
  border-color: #000;
  color: var(--parch);
}
.panel--dark::before { border-color: rgba(178, 138, 69, .48); }
.panel--dark h1, .panel--dark h2, .panel--dark h3 { color: var(--gold-lt); }

/* Corner filigree — emitted by bv_corners() */
.corners { position: absolute; inset: 5px; pointer-events: none; color: var(--gold); }
.corners i {
  position: absolute; width: 30px; height: 30px; display: block; opacity: .82;
}
.corners i svg { display: block; width: 100%; height: 100%; }
.corners i:nth-child(1) { left: 0;  top: 0; }
.corners i:nth-child(2) { right: 0; top: 0;    transform: scaleX(-1); }
.corners i:nth-child(3) { left: 0;  bottom: 0; transform: scaleY(-1); }
.corners i:nth-child(4) { right: 0; bottom: 0; transform: scale(-1); }
.panel--dark .corners { color: var(--gold-dk); }

/* --------------------------------------------------------------------------
   5. Ornamental headings & rules
   -------------------------------------------------------------------------- */

.eyebrow {
  display: flex; align-items: center; justify-content: flex-start; gap: 10px;
  font: 600 10.5px/1.4 var(--f-body); letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--ink-3); margin: 0 0 16px;
}
.eyebrow::before, .eyebrow::after {
  content: ""; height: 1px; width: 22px; flex: none; background: var(--gold); opacity: .75;
}
.eyebrow--center { justify-content: center; }

.sec-head { text-align: center; margin: 0 0 26px; }
.sec-head__title {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  font-family: var(--f-display); font-weight: 700; font-size: clamp(21px, 2.4vw, 29px);
  letter-spacing: 2.6px; text-transform: uppercase; margin: 0; color: var(--ink);
}
.sec-head__title::before, .sec-head__title::after {
  content: ""; flex: 0 1 120px; height: 7px;
  background: no-repeat center/100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 7'%3E%3Cpath d='M0 3.5h96M96 .5l8 3-8 3M108 3.5h12' fill='none' stroke='%23b28a45' stroke-width='1.2'/%3E%3C/svg%3E");
}
.sec-head__title::before { transform: scaleX(-1); }
.sec-head__sub { margin: 12px auto 0; max-width: 640px; color: var(--ink-3); font-size: 15.5px; }

.rule-orn {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin: 18px 0; color: var(--gold);
}
.rule-orn::before, .rule-orn::after {
  content: ""; height: 1px; flex: 1; max-width: 220px;
  background: linear-gradient(90deg, transparent, currentColor);
}
.rule-orn::after { background: linear-gradient(90deg, currentColor, transparent); }
.rule-orn span { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--ink-3); }

.diamond { display: inline-block; width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 11px 24px; border: 1px solid transparent; cursor: pointer;
  font: 600 12px/1 var(--f-body); letter-spacing: 2.8px; text-transform: uppercase;
  text-align: center; text-decoration: none; transition: all .2s ease;
  background: var(--dark); color: var(--gold-lt); border-color: var(--dark);
}
.btn:hover { background: var(--dark-3); color: #fff; }
.btn:active { transform: translateY(1px); }

.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--gold-lt); }

.btn--gold { background: var(--gold-dk); border-color: var(--gold-dk); color: #fff6e2; }
.btn--gold:hover { background: var(--gold); color: #fff; }

.btn--ghost { background: transparent; color: var(--gold-lt); border-color: var(--gold); }
.btn--ghost:hover { background: var(--gold); color: var(--dark); }

.btn--danger { background: var(--red); border-color: var(--red); color: #fdeceb; }
.btn--danger:hover { background: #a33a2d; }

.btn--block { width: 100%; }
.btn--sm { padding: 8px 15px; font-size: 10.5px; letter-spacing: 1.8px; }
.btn--lg { padding: 14px 30px; font-size: 12.5px; }
.btn[disabled], .btn.is-disabled { opacity: .5; pointer-events: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* --------------------------------------------------------------------------
   7. Top bar
   -------------------------------------------------------------------------- */

.topbar {
  background: var(--dark);
  border-bottom: 1px solid rgba(178, 138, 69, .35);
  color: var(--parch-dk);
  font-size: 12.5px;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  min-height: 42px; padding-top: 6px; padding-bottom: 6px;
}
.topbar__group { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; color: var(--parch-dk); }
.topbar__item svg { width: 14px; height: 14px; color: var(--gold); flex: none; }
.topbar__item:hover { color: var(--gold-lt); }
.topbar__time { color: var(--ink-4); letter-spacing: .4px; font-variant-numeric: tabular-nums; }
.topbar__time b { color: var(--parch-dk); font-weight: 400; }
.topbar__cta {
  display: inline-flex; align-items: center; padding: 7px 17px;
  border: 1px solid var(--gold); color: var(--gold-lt);
  font: 600 11px/1 var(--f-body); letter-spacing: 2.2px; text-transform: uppercase;
  transition: all .18s ease;
}
.topbar__cta:hover { background: var(--gold); color: var(--dark); }
.topbar__sep { width: 1px; height: 16px; background: rgba(178, 138, 69, .4); }

/* --------------------------------------------------------------------------
   8. Masthead & navigation
   -------------------------------------------------------------------------- */

.masthead { border-bottom: 1px solid var(--rule); background: rgba(246, 239, 221, .38); }
.masthead__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 26px;
  padding-top: 15px; padding-bottom: 15px;
}

.brand { display: inline-flex; align-items: center; gap: 14px; color: var(--ink); }
.brand__mark { width: 54px; height: 54px; color: var(--gold-dk); flex: none; }
.brand__mark svg { display: block; width: 100%; height: 100%; }
.brand__text { display: block; }
.brand__name {
  display: block; font: 700 clamp(20px, 2.2vw, 26px)/1 var(--f-mark);
  letter-spacing: 4.5px; text-transform: uppercase; color: var(--ink);
}
.brand__est {
  display: flex; align-items: center; gap: 7px; margin-top: 6px;
  font: 400 9.5px/1 var(--f-body); letter-spacing: 2.6px; text-transform: uppercase; color: var(--ink-4);
}
.brand__est::before, .brand__est::after { content: ""; height: 1px; flex: 1; background: var(--rule); }

.nav { display: flex; align-items: center; gap: 26px; }
.nav__link {
  position: relative; padding: 6px 0; color: var(--ink-2);
  font: 600 12.5px/1 var(--f-body); letter-spacing: 1.9px; text-transform: uppercase;
  white-space: nowrap;
}
.nav__link:hover { color: var(--ink); }
.nav__link.is-active { color: var(--ink); }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 50%; bottom: -3px; width: 26px; height: 5px;
  transform: translateX(-50%);
  background: no-repeat center/100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 5'%3E%3Cpath d='M0 2.5h8M18 2.5h8M13 0l2.4 2.5L13 5l-2.4-2.5z' fill='%23b28a45' stroke='%23b28a45' stroke-width='.8'/%3E%3C/svg%3E");
}

.nav-toggle {
  display: none; width: 42px; height: 38px; padding: 0;
  background: transparent; border: 1px solid var(--rule); color: var(--ink); cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: currentColor; margin: 3.5px auto; transition: .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   9. Hero
   -------------------------------------------------------------------------- */

.hero { margin-top: 14px; }
.hero__inner {
  display: grid; grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center; gap: 24px;
  padding: 38px 40px 32px;
}
.hero__title {
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(27px, 3.5vw, 45px); line-height: 1.06;
  letter-spacing: .4px; text-transform: uppercase; margin: 0 0 10px;
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
}
/* Each line is its own block and must never break mid-phrase. */
.hero__title span { display: block; white-space: nowrap; }
.hero__rule {
  width: 190px; height: 9px; margin: 20px 0 20px;
  background: no-repeat left center/100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 190 9'%3E%3Cpath d='M14 4.5h176M14 4.5 22 1M14 4.5 22 8M0 4.5h10' fill='none' stroke='%23b28a45' stroke-width='1.3'/%3E%3C/svg%3E");
}
.hero__text { max-width: 36ch; color: var(--ink-2); font-size: 15px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 30px; }
.hero__badge { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; color: var(--ink-2); white-space: nowrap; }
.hero__badge svg { width: 22px; height: 22px; color: var(--gold-dk); flex: none; }
.hero__art { position: relative; }
.hero__art svg { display: block; width: 100%; height: auto; }

/* -------------------------------------------------------------------------
   10. Statistics bar
   ------------------------------------------------------------------------- */

.statbar { margin-top: 18px; }
.statbar__inner {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 20px 10px;
}
.stat { display: flex; align-items: center; gap: 14px; justify-content: center; padding: 4px 12px; position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(178, 138, 69, .55), transparent);
}
.stat__icon { width: 34px; height: 34px; color: var(--gold); flex: none; }
.stat__icon svg { display: block; width: 100%; height: 100%; }
.stat__body { min-width: 0; }
.stat__value {
  display: block; font-family: var(--f-display); font-weight: 700;
  font-size: clamp(17px, 1.85vw, 24px); line-height: 1.15; color: var(--gold-lt);
  letter-spacing: .3px; font-variant-numeric: tabular-nums; white-space: nowrap;
}
.stat__label {
  display: block; margin-top: 3px; font-size: 10.5px; letter-spacing: 1.9px;
  text-transform: uppercase; color: #9a8768;
}

/* -------------------------------------------------------------------------
   11. How it works
   ------------------------------------------------------------------------- */

.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; position: relative; }
.step { position: relative; text-align: center; padding: 4px 16px; }
/* Dotted connector between steps */
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 26px; left: calc(50% + 34px); right: calc(-50% + 34px);
  border-top: 1px dashed var(--rule); opacity: .9;
}
.step__num {
  position: relative; z-index: 1;
  display: grid; place-items: center; width: 34px; height: 34px; margin: 0 auto 16px;
  border-radius: 50%; background: var(--dark); color: var(--gold-lt);
  font: 700 14px/1 var(--f-display);
  box-shadow: 0 0 0 4px var(--panel);
}
/* Must be block: an inline span ignores width, and the SVG's 100% would then
   resolve against the whole column. */
.step__icon { display: block; width: 62px; height: 62px; margin: 0 auto 14px; color: var(--ink-2); }
.step__icon svg { display: block; width: 100%; height: 100%; }
.step__title {
  font: 700 14px/1 var(--f-display); letter-spacing: 2.4px; text-transform: uppercase;
  margin: 0 0 9px; color: var(--ink);
}
.step__text { font-size: 13.5px; color: var(--ink-3); margin: 0; max-width: 21ch; margin-inline: auto; }

/* -------------------------------------------------------------------------
   12. Investment plans
   ------------------------------------------------------------------------- */

.plans { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; align-items: stretch; }

.plan {
  position: relative; display: flex; flex-direction: column;
  padding: 26px 22px 22px;
}
.plan--featured {
  background-image: linear-gradient(178deg, #fdf7e6, #f4e9cd 42%, #efe2c0);
  box-shadow: var(--shadow-lift);
  z-index: 1;
}
.plan__badge {
  position: absolute; top: -1px; left: 50%; transform: translate(-50%, -50%);
  padding: 6px 18px; background: var(--gold-plan); color: #f7e3c8;
  font: 600 10px/1 var(--f-body); letter-spacing: 2.4px; text-transform: uppercase;
  border: 1px solid rgba(0, 0, 0, .28); white-space: nowrap;
}
.plan__name {
  text-align: center; margin: 4px 0 12px;
  font: 700 16px/1 var(--f-display); letter-spacing: 2.6px; text-transform: uppercase; color: var(--ink);
}
.plan__rate { text-align: center; line-height: 1; margin: 0 0 4px; }
.plan__rate b {
  font: 900 clamp(38px, 4.4vw, 52px)/1 var(--f-display); color: var(--ink);
  letter-spacing: -1px;
}
.plan__rate i { font: 700 20px/1 var(--f-display); font-style: normal; color: var(--ink); }
.plan__term {
  text-align: center; margin: 0 0 18px;
  font: 400 10.5px/1 var(--f-body); letter-spacing: 2.4px; text-transform: uppercase; color: var(--ink-3);
}
.plan__specs { list-style: none; margin: 0 0 20px; padding: 0; border-top: 1px solid var(--rule-soft); }
.plan__specs li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  padding: 9px 2px; border-bottom: 1px solid var(--rule-soft);
  font-size: 12.5px; color: var(--ink-2);
}
.plan__specs li span:last-child { font-weight: 700; color: var(--ink); white-space: nowrap; }
.plan__specs li.is-single { justify-content: flex-start; }
.plan__cta { margin-top: auto; }
.plan__cta .btn { border-color: rgba(0, 0, 0, .3); }

/* -------------------------------------------------------------------------
   13. Why choose us
   ------------------------------------------------------------------------- */

.why__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .82fr); gap: 24px; align-items: center; }
/* Variants used on the homepage and contact page. Declared here rather than
   inline so the mobile media query can still collapse them — an inline
   grid-template-columns would outrank the stylesheet and force overflow. */
.why__inner--tight { grid-template-columns: minmax(0, 1fr) minmax(0, .72fr); gap: 18px; }
.why__inner--aside { grid-template-columns: minmax(0, 1fr) minmax(0, .78fr); align-items: start; }
.why__list { list-style: none; margin: 0; padding: 0; }
.why__item { display: flex; gap: 15px; padding: 13px 0; }
.why__item + .why__item { border-top: 1px solid var(--rule-soft); }
.why__icon { width: 34px; height: 34px; flex: none; color: var(--gold-dk); margin-top: 2px; }
.why__icon svg { display: block; width: 100%; height: 100%; }
.why__title {
  margin: 0 0 5px; font: 700 13px/1.2 var(--f-display);
  letter-spacing: 2px; text-transform: uppercase; color: var(--ink);
}
.why__text { margin: 0; font-size: 13.5px; color: var(--ink-3); }
.why__art { color: var(--ink-2); }
.why__art svg { display: block; width: 100%; }

/* -------------------------------------------------------------------------
   14. Live investment ticker
   ------------------------------------------------------------------------- */

.ticker { display: flex; flex-direction: column; padding: 0; }
.ticker__head {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 22px 14px; border-bottom: 1px solid rgba(178, 138, 69, .34);
}
.ticker__title {
  margin: 0; font: 700 14px/1 var(--f-display); letter-spacing: 2.6px;
  text-transform: uppercase; color: var(--gold-lt);
}
.ticker__all {
  font: 600 11px/1 var(--f-body); letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid currentColor; padding-bottom: 2px;
}
.ticker__all:hover { color: var(--gold-lt); }
.ticker__table { width: 100%; border-collapse: collapse; }
.ticker__table th {
  padding: 10px 22px; text-align: left;
  font: 400 10px/1 var(--f-body); letter-spacing: 2.2px; text-transform: uppercase;
  color: #857250; font-weight: 400;
}
.ticker__table th:nth-child(3), .ticker__table th:nth-child(4) { text-align: right; }
.ticker__table td {
  padding: 11px 22px; border-top: 1px solid rgba(178, 138, 69, .17);
  font-size: 13.5px; color: var(--parch-dk); vertical-align: middle;
}
.ticker__table tbody tr { transition: background .3s ease; }
.ticker__table tbody tr.is-new { background: rgba(178, 138, 69, .13); }
.ticker__who { display: flex; align-items: center; gap: 11px; }
.ticker__avatar {
  width: 30px; height: 30px; border-radius: 50%; flex: none; overflow: hidden;
  border: 1px solid rgba(178, 138, 69, .5); background: #2a2118;
}
.ticker__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ticker__name { white-space: nowrap; }
.ticker__plan {
  display: inline-block; padding: 4px 11px; border-radius: 2px;
  font: 600 10.5px/1 var(--f-body); letter-spacing: .8px; color: #f3e6cd;
  border: 1px solid rgba(255, 255, 255, .16); white-space: nowrap;
}
.ticker__amount { text-align: right; color: var(--green-lt); font-weight: 700; white-space: nowrap; font-variant-numeric: tabular-nums; }
.ticker__ago { text-align: right; color: #8d7c60; font-size: 12.5px; white-space: nowrap; }
.ticker__note {
  padding: 10px 22px 14px; font-size: 11px; color: #7a6a4f; border-top: 1px solid rgba(178, 138, 69, .17);
}

/* -------------------------------------------------------------------------
   15. Footer
   ------------------------------------------------------------------------- */

.footer {
  margin-top: 34px; background: var(--dark);
  background-image: linear-gradient(180deg, var(--dark-2), #100c08);
  border-top: 3px solid var(--gold-dk); color: #a1907a;
}
.footer__inner {
  display: grid; grid-template-columns: 1.5fr minmax(0, 1fr) minmax(0, 1fr) 1.15fr 1.5fr; gap: 30px;
  padding: 40px 0 34px;
}
.footer__brand .brand__name { color: var(--gold-lt); font-size: 21px; }
.footer__brand .brand__mark { color: var(--gold-dk); width: 46px; height: 46px; }
.footer__brand .brand__est { color: #7a6a4f; }
.footer__brand .brand__est::before, .footer__brand .brand__est::after { background: rgba(178, 138, 69, .35); }
.footer__about { margin: 18px 0 0; font-size: 13.5px; line-height: 1.7; color: #97866f; }
.footer__title {
  margin: 0 0 16px; font: 700 12px/1 var(--f-display); letter-spacing: 2.6px;
  text-transform: uppercase; color: var(--gold-lt);
}
.footer__list { list-style: none; margin: 0; padding: 0; }
.footer__list li { margin-bottom: 9px; }
.footer__list a, .footer__list span { color: #a1907a; font-size: 13.5px; }
.footer__list a:hover { color: var(--gold-lt); }
.footer__socials { display: flex; gap: 10px; margin-top: 20px; }
.footer__social {
  display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(178, 138, 69, .5); color: var(--gold); transition: all .18s ease;
}
.footer__social svg { width: 14px; height: 14px; }
.footer__social:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.footer__form { display: flex; margin-top: 14px; }
.footer__form input {
  flex: 1; min-width: 0; padding: 11px 13px; border: 1px solid rgba(178, 138, 69, .5); border-right: 0;
  background: rgba(255, 255, 255, .05); color: var(--parch); font: 14px var(--f-body);
}
.footer__form input::placeholder { color: #7a6a4f; }
.footer__form input:focus { outline: none; border-color: var(--gold); background: rgba(255, 255, 255, .09); }
.footer__form button {
  padding: 11px 20px; border: 1px solid var(--gold-dk); background: var(--gold-dk); color: #fff4dd;
  font: 600 11px/1 var(--f-body); letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  transition: background .18s ease;
}
.footer__form button:hover { background: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(178, 138, 69, .28); padding: 16px 0 22px; text-align: center;
}
.footer__copy { margin: 0 0 10px; font-size: 12.5px; color: #7a6a4f; }
.footer__orn { display: flex; align-items: center; justify-content: center; gap: 10px; color: rgba(178, 138, 69, .55); }
.footer__orn::before, .footer__orn::after { content: ""; height: 1px; width: 90px; background: currentColor; }

/* -------------------------------------------------------------------------
   16. Alerts, pills, tables, forms (shared with member area)
   ------------------------------------------------------------------------- */

.alert {
  position: relative; padding: 13px 17px 13px 44px; margin: 0 0 18px;
  border: 1px solid var(--rule); background: var(--panel-hi); font-size: 14.5px; color: var(--ink-2);
}
.alert::before {
  content: "!"; position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
  display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%;
  font: 700 11px/1 var(--f-body); color: #fff; background: var(--gold-dk);
}
.alert--success { border-color: #8fae8b; background: #eef4e9; color: #2c5a2f; }
.alert--success::before { content: "✓"; background: var(--green); }
.alert--error { border-color: var(--red-lt); background: #f9e9e6; color: #7d2a1d; }
.alert--error::before { background: var(--red); }
.alert--warning { border-color: #d9bd7c; background: #f9f1dd; color: #6f5312; }
.alert--info { border-color: #9db4c4; background: #eaf1f6; color: #2c4a5e; }
.alert--info::before { content: "i"; background: #3f6a86; }

.pill {
  display: inline-block; padding: 4px 11px; border: 1px solid currentColor; border-radius: 2px;
  font: 600 10.5px/1.35 var(--f-body); letter-spacing: 1.3px; text-transform: uppercase;
}
.pill--ok { color: var(--green); background: rgba(63, 122, 69, .09); }
.pill--pending { color: var(--amber); background: rgba(154, 116, 32, .1); }
.pill--bad { color: var(--red); background: rgba(140, 47, 36, .08); }
.pill--neutral { color: var(--ink-3); background: rgba(107, 90, 66, .08); }

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th {
  padding: 11px 14px; text-align: left; white-space: nowrap;
  font: 600 10.5px/1 var(--f-body); letter-spacing: 1.9px; text-transform: uppercase;
  color: var(--ink-3); border-bottom: 1px solid var(--rule);
}
.table td { padding: 12px 14px; border-bottom: 1px solid var(--rule-soft); color: var(--ink-2); vertical-align: middle; }
.table tbody tr:hover { background: rgba(178, 138, 69, .07); }
.table .num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.table__empty { padding: 40px 14px; text-align: center; color: var(--ink-4); }

.field { margin: 0 0 15px; }
.field__label {
  display: block; margin: 0 0 7px;
  font: 600 10.5px/1 var(--f-body); letter-spacing: 2px; text-transform: uppercase; color: var(--ink-3);
}
.field__hint { margin: 6px 0 0; font-size: 12.5px; color: var(--ink-4); }
.field__error { margin: 6px 0 0; font-size: 12.5px; color: var(--red); }

.input, .select, .textarea {
  width: 100%; padding: 10px 13px; border: 1px solid var(--rule); background: #fffdf6;
  font: 15px/1.5 var(--f-body); color: var(--ink); transition: border-color .16s ease, box-shadow .16s ease;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--gold-dk); box-shadow: 0 0 0 3px rgba(178, 138, 69, .18);
}
.input[readonly], .input:disabled { background: var(--panel-2); color: var(--ink-3); }
.textarea { min-height: 130px; resize: vertical; }
.select {
  appearance: none; padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%236b5a42' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 11px;
}

.check { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-2); cursor: pointer; }
.check input { width: 17px; height: 17px; margin: 3px 0 0; accent-color: var(--gold-dk); flex: none; }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 20px; }
.form-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.form-grid .field--full { grid-column: 1 / -1; }

.pager { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 22px; }
.pager__btn {
  min-width: 38px; padding: 8px 12px; border: 1px solid var(--rule); background: var(--panel-hi);
  color: var(--ink-2); font-size: 13px; text-align: center;
}
.pager__btn:hover { border-color: var(--gold-dk); color: var(--ink); }
.pager__btn.is-current { background: var(--dark); border-color: var(--dark); color: var(--gold-lt); }

/* Phone / country picker -------------------------------------------------- */

/* Real SVG flags — emoji flags do not render at all on Windows. */
.flag {
  display: inline-block; width: 22px; height: 16px; flex: none;
  object-fit: cover; border: 1px solid rgba(36, 28, 19, .22); border-radius: 1px;
  vertical-align: -3px; background: var(--panel-2);
}

.phone-field { display: grid; grid-template-columns: 132px minmax(0, 1fr); gap: 10px; }
.dial-btn {
  display: flex; align-items: center; justify-content: space-between; gap: 6px;
  width: 100%; padding: 12px 12px; border: 1px solid var(--rule); background: #fffdf6;
  font: 15px var(--f-body); color: var(--ink); cursor: pointer; text-align: left;
}
.dial-btn__flag { display: inline-flex; line-height: 1; }
.dial-btn__code { font-variant-numeric: tabular-nums; }
.dial-btn::after {
  content: ""; width: 9px; height: 6px; flex: none;
  background: no-repeat center/100% 100% url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%236b5a42' stroke-width='1.6'/%3E%3C/svg%3E");
}
.dial-pop {
  position: absolute; z-index: 60; width: min(340px, calc(100vw - 40px));
  background: var(--panel-hi); border: 1px solid var(--rule-dark); box-shadow: var(--shadow-lift);
}
.dial-pop[hidden] { display: none; }
.dial-pop__search { padding: 10px; border-bottom: 1px solid var(--rule-soft); }
.dial-pop__list { max-height: 280px; overflow-y: auto; margin: 0; padding: 0; list-style: none; }
.dial-pop__item {
  display: flex; align-items: center; gap: 10px; width: 100%; padding: 9px 13px;
  background: none; border: 0; text-align: left; cursor: pointer; font: 14px var(--f-body); color: var(--ink);
}
.dial-pop__item:hover, .dial-pop__item.is-active { background: rgba(178, 138, 69, .16); }
.dial-pop__item span:nth-of-type(1) { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dial-pop__item span:nth-of-type(2) { color: var(--ink-3); font-variant-numeric: tabular-nums; }
.dial-pop__empty { padding: 18px; text-align: center; color: var(--ink-4); font-size: 14px; }

/* OTP input --------------------------------------------------------------- */

.otp-input {
  width: 100%; max-width: 320px; margin: 0 auto; padding: 14px;
  font: 700 30px/1 var(--f-mono); letter-spacing: 14px; text-indent: 14px; text-align: center;
  border: 1px solid var(--rule); background: #fffdf6; color: var(--ink);
}
.otp-input:focus { outline: none; border-color: var(--gold-dk); box-shadow: 0 0 0 3px rgba(178, 138, 69, .18); }

/* -------------------------------------------------------------------------
   17. Page furniture
   ------------------------------------------------------------------------- */

.page-head { padding: 34px 0 6px; text-align: center; }
.page-head__title {
  font-family: var(--f-display); font-weight: 900; font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 1px; text-transform: uppercase; margin: 0 0 12px;
}
.page-head__crumbs {
  display: flex; align-items: center; justify-content: center; gap: 9px; flex-wrap: wrap;
  font-size: 12px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--ink-4);
}
.page-head__crumbs a { color: var(--gold-dk); }

.prose { font-size: 16px; line-height: 1.78; color: var(--ink-2); }
.prose h2 { font-size: 24px; margin: 34px 0 12px; }
.prose h3 { font-size: 19px; margin: 28px 0 10px; letter-spacing: .4px; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 1.05em; }
.prose li { margin-bottom: 7px; }
.prose blockquote {
  margin: 22px 0; padding: 14px 20px; border-left: 3px solid var(--gold);
  background: var(--panel-2); color: var(--ink-2);
}
.prose a { text-decoration: underline; text-underline-offset: 2px; }

.card-list { display: grid; gap: 20px; }
.news-card { display: flex; flex-direction: column; height: 100%; }
.news-card__date {
  font: 600 10.5px/1 var(--f-body); letter-spacing: 2px; text-transform: uppercase; color: var(--gold-dk);
  margin-bottom: 10px;
}
.news-card__title { font-size: 19px; margin: 0 0 10px; }
.news-card__title a { color: var(--ink); }
.news-card__title a:hover { color: var(--gold-dk); }
.news-card__text { font-size: 14px; color: var(--ink-3); margin: 0 0 16px; }
.news-card__more { margin-top: auto; font: 600 11px/1 var(--f-body); letter-spacing: 2px; text-transform: uppercase; }

.faq { border-top: 1px solid var(--rule-soft); }
.faq__item { border-bottom: 1px solid var(--rule-soft); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%;
  padding: 17px 4px; background: none; border: 0; cursor: pointer; text-align: left;
  font: 700 15.5px/1.4 var(--f-display); color: var(--ink);
}
.faq__q::after {
  content: ""; width: 13px; height: 13px; flex: none;
  background: no-repeat center/100% 100% url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 13'%3E%3Cpath d='M6.5 0v13M0 6.5h13' stroke='%238a6a2f' stroke-width='1.6'/%3E%3C/svg%3E");
  transition: transform .22s ease;
}
.faq__item.is-open .faq__q::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 13'%3E%3Cpath d='M0 6.5h13' stroke='%238a6a2f' stroke-width='1.6'/%3E%3C/svg%3E");
}
.faq__a { display: none; padding: 0 4px 18px; font-size: 14.5px; color: var(--ink-3); }
.faq__item.is-open .faq__a { display: block; }

.metric-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.metric { padding: 18px 20px; }
.metric__label { font: 600 10px/1 var(--f-body); letter-spacing: 2px; text-transform: uppercase; color: var(--ink-3); }
.metric__value { display: block; margin-top: 9px; font: 700 clamp(20px, 2.3vw, 27px)/1 var(--f-display); color: var(--ink); font-variant-numeric: tabular-nums; }
.metric__foot { margin-top: 7px; font-size: 12px; color: var(--ink-4); }

/* -------------------------------------------------------------------------
   18. Responsive
   ------------------------------------------------------------------------- */

@media (max-width: 1080px) {
  .statbar__inner { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px 0; }
  .stat:nth-child(4)::before { display: none; }
  .footer__inner { grid-template-columns: 1.4fr minmax(0, 1fr) minmax(0, 1fr); gap: 26px; }
  .footer__inner > :nth-child(4), .footer__inner > :nth-child(5) { grid-column: span 1; }
}

@media (max-width: 940px) {
  .nav {
    position: absolute; left: 0; right: 0; top: 100%; z-index: 50;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 22px 18px; background: var(--panel-hi);
    border-bottom: 1px solid var(--rule); box-shadow: var(--shadow-lift);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav__link { padding: 12px 0; border-bottom: 1px solid var(--rule-soft); }
  .nav__link.is-active::after { left: 0; transform: none; }
  .nav-toggle { display: block; }
  .masthead { position: relative; }

  .hero__inner { grid-template-columns: minmax(0, 1fr); padding: 32px 26px; }
  .hero__art { order: -1; max-width: 520px; margin: 0 auto 8px; }
  .hero__text { max-width: none; }

  .plans { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plan--featured { transform: none; }
  .why__inner,
  .why__inner--tight,
  .why__inner--aside { grid-template-columns: minmax(0, 1fr); }
  .why__art { max-width: 420px; margin: 0 auto; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 0; }
  .step:not(:last-child)::after { display: none; }
  .metric-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  body { font-size: 15.5px; }

  /* The two headline lines are held on one line on desktop; on a phone that
     would force the panel wider than the screen, so let them wrap. */
  .hero__title span { white-space: normal; }
  .hero__title { font-size: clamp(26px, 8.4vw, 38px); }

  /* Comfortable tap targets for the small text links. */
  .topbar__item, .footer__list a, .card__link, .ticker__all { padding: 5px 0; display: inline-block; }
  .topbar__item { display: inline-flex; }
  .topbar__inner { flex-direction: column; align-items: stretch; gap: 8px; padding: 9px 0; }
  .topbar__group { justify-content: center; gap: 14px; font-size: 12px; }
  .topbar__sep { display: none; }
  .statbar__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat::before { display: none !important; }
  .stat { justify-content: flex-start; }
  .footer__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .footer__inner > :first-child, .footer__inner > :last-child { grid-column: 1 / -1; }
  .form-grid, .form-grid--3 { grid-template-columns: minmax(0, 1fr); }
  .sec-head__title::before, .sec-head__title::after { flex-basis: 40px; }
  .panel { padding: 22px 18px; }
  .hero__inner { padding: 26px 18px; }
}

@media (max-width: 560px) {
  :root { --gutter: 16px; }
  .plans { grid-template-columns: minmax(0, 1fr); }
  .steps { grid-template-columns: minmax(0, 1fr); }
  .grid--4, .grid--3, .grid--2 { grid-template-columns: minmax(0, 1fr); }
  .metric-row { grid-template-columns: minmax(0, 1fr); }
  .statbar__inner { grid-template-columns: minmax(0, 1fr); }
  .ticker__table th:nth-child(2), .ticker__table td:nth-child(2) { display: none; }
  .footer__inner { grid-template-columns: minmax(0, 1fr); }
  .phone-field { grid-template-columns: 116px minmax(0, 1fr); }
}

/* --------------------------------------------------------------------------
   Maintenance notice
   Standalone page — it must look right without the site shell around it.
   -------------------------------------------------------------------------- */

body.maint {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px var(--gutter);
  background:
    radial-gradient(120% 90% at 50% 0%, #f4ebd6 0%, var(--parch) 46%, var(--parch-dk) 100%);
}

.maint__sheet { width: 100%; max-width: 620px; text-align: center; }

.maint__frame {
  position: relative;
  background: var(--panel);
  background-image: linear-gradient(178deg, var(--panel-hi), var(--panel) 34%, var(--panel-2));
  border: 1px solid var(--rule-dark);
  box-shadow: var(--shadow-panel);
  padding: 40px 34px 34px;
}

/* Block, or the inline SVG box ignores its width and renders at intrinsic size. */
.maint__mark {
  display: block;
  width: 74px; height: 74px;
  margin: 0 auto 16px;
  color: var(--gold-dk);
}
.maint__mark svg { display: block; width: 100%; height: 100%; }

.maint__brand {
  margin: 0;
  font: 700 13px/1 var(--f-display);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--ink-2);
}

.maint__title {
  margin: 4px 0 0;
  font: 700 clamp(24px, 4vw, 33px)/1.18 var(--f-display);
  color: var(--ink);
}

.maint__text {
  margin: 12px auto 0;
  max-width: 46ch;
  color: var(--ink-3);
  font-size: 15.5px;
}

.maint__eta {
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid var(--gold-dk);
  background: #fbf4e2;
  box-shadow: 0 0 0 3px rgba(178, 138, 69, .14);
}
.maint__eta-label {
  display: block;
  font-size: 10.5px; letter-spacing: 2.4px; text-transform: uppercase; color: var(--ink-4);
}
.maint__eta-value {
  display: block;
  margin-top: 5px;
  font: 700 clamp(21px, 3.4vw, 27px)/1.1 var(--f-mono);
  color: var(--ink);
}
.maint__eta-abs {
  display: block;
  margin-top: 4px;
  font-size: 11.5px; color: var(--ink-4);
}

.maint__rule {
  height: 1px;
  margin: 24px 0 18px;
  background: linear-gradient(90deg, transparent, var(--rule), transparent);
}

.maint__help { margin: 0; font-size: 13.5px; color: var(--ink-3); }

.maint__contact {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px;
  margin-top: 16px;
}
.maint__contact a {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; color: var(--ink-2);
}
.maint__contact a:hover { color: var(--gold-dk); }

.maint__socials { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }
.maint__socials a {
  display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(178, 138, 69, .5); color: var(--gold-dk); transition: all .18s ease;
}
.maint__socials a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

@media (max-width: 560px) {
  .maint__frame { padding: 30px 20px 26px; }
}

/* Standing reminder for anyone who bypassed the outage — see bv_maintenance_badge(). */
.maint-flag {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px;
  background: #2b1d0d;
  border-top: 2px solid var(--gold);
  color: #f2e6cc;
  font-size: 13px; line-height: 1.45;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, .28);
}
.maint-flag[hidden] { display: none; }
.maint-flag strong { color: var(--gold-lt); }
.maint-flag__text { flex: 1; min-width: 0; }

.maint-flag__dot {
  flex: none; width: 9px; height: 9px; border-radius: 50%;
  background: #d98b7f; box-shadow: 0 0 0 3px rgba(217, 139, 127, .22);
  animation: maint-pulse 2s ease-in-out infinite;
}
@keyframes maint-pulse { 50% { opacity: .35; } }

.maint-flag__link {
  flex: none;
  padding: 5px 12px;
  border: 1px solid var(--gold); color: var(--gold-lt);
  font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase;
}
.maint-flag__link:hover { background: var(--gold); color: #1a1208; }

.maint-flag__close {
  flex: none;
  width: 26px; height: 26px;
  border: 0; background: none; color: #b9a67f;
  font-size: 19px; line-height: 1; cursor: pointer;
}
.maint-flag__close:hover { color: #fff; }

@media (max-width: 560px) {
  .maint-flag { align-items: flex-start; font-size: 12px; padding: 9px 12px; }
  .maint-flag__dot { margin-top: 5px; }
}

@media print {
  .topbar, .nav, .footer, .btn { display: none !important; }
  body { background: #fff; }
  .panel { box-shadow: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
