/* ==========================================================================
   Black Glove — design tokens
   ========================================================================== */

:root {
  /* --- Surface ---------------------------------------------------------- */
  --c-bg:            #0A0A0B;   /* page */
  --c-surface:       #141416;   /* elevated: cards, table rows, footer */
  --c-surface-sunk:  #0E0E10;   /* recessed: code, spec blocks */

  /* --- Line ------------------------------------------------------------- */
  --c-border:        #232326;   /* the hairline doing all structural work */
  --c-border-strong: #33333A;   /* hover / focus-within on interactive edges */

  /* --- Type ------------------------------------------------------------- */
  --c-text:          #EDEDEA;   /* 16.87:1 on bg */
  --c-muted:         #8A8A8F;   /*  5.76:1 on bg, AA for body */

  /* --- Accent: warm brass, used sparingly -------------------------------- */
  --c-accent:        #C0A062;   /*  7.96:1 on bg */
  --c-accent-line:   rgba(192, 160, 98, 0.42);  /* flagship card border */
  --c-accent-wash:   rgba(192, 160, 98, 0.06);  /* the only fill it ever gets */

  /* --- Families --------------------------------------------------------- */
  --f-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --f-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* --- Type scale ------------------------------------------------------- */
  /* Display: hero only. One per page.                                      */
  --t-display:    clamp(2.5rem, 6vw, 4.5rem);   /* 40 -> 72  */
  --t-h2:         clamp(1.75rem, 3.4vw, 2.5rem);/* 28 -> 40  */
  --t-h3:         1.3125rem;                    /* 21        */
  --t-lead:       1.1875rem;                    /* 19, hero subhead */
  --t-body:       1.0625rem;                    /* 17        */
  --t-small:      0.9375rem;                    /* 15        */
  --t-mono:       0.8125rem;                    /* 13, spec labels */
  --t-mono-sm:    0.6875rem;                    /* 11, eyebrows, badges */
  --t-price:      1.75rem;                      /* 28, mono figures */

  --lh-tight:     1.05;   /* display */
  --lh-heading:   1.15;
  --lh-body:      1.6;

  --ls-display:  -0.02em; /* tight tracking on large headings */
  --ls-heading:  -0.015em;
  --ls-mono:      0.08em; /* spec labels, uppercase */

  /* --- Space: 8px base -------------------------------------------------- */
  --s-1:  0.5rem;   /*  8 */
  --s-2:  1rem;     /* 16 */
  --s-3:  1.5rem;   /* 24 */
  --s-4:  2rem;     /* 32 */
  --s-5:  3rem;     /* 48 */
  --s-6:  4rem;     /* 64 */
  --s-7:  6rem;     /* 96 */

  /* Section rhythm: 72 mobile -> 120 desktop */
  --s-section: clamp(4.5rem, 10vw, 7.5rem);

  /* --- Layout ----------------------------------------------------------- */
  --w-max:     1120px;
  --w-prose:   62ch;     /* FAQ answers, about copy */
  --gutter:    clamp(1.25rem, 5vw, 2.5rem);

  --radius:    2px;      /* near-square. Hardware, not app UI. */

  /* --- Motion ----------------------------------------------------------- */
  --dur:       400ms;
  --ease:      cubic-bezier(0.22, 0.61, 0.36, 1);
}


/* ==========================================================================
   Fonts — self-hosted. No external requests anywhere on this site.
   ========================================================================== */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-600.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter-700.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/ibm-plex-mono-400.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/ibm-plex-mono-500.woff2") format("woff2");
}


/* ==========================================================================
   Reset
   ========================================================================== */

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

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

body,
h1, h2, h3, h4, p,
figure, blockquote,
dl, dd, ul, ol { margin: 0; }

ul, ol { padding: 0; list-style: none; }

img, svg { display: block; max-width: 100%; }

button, input, select, textarea { font: inherit; color: inherit; }

table {
  border-collapse: collapse;
  width: 100%;
}


/* ==========================================================================
   Base
   ========================================================================== */

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-sans);
  font-size: var(--t-body);
  line-height: var(--lh-body);
  font-weight: 400;
  letter-spacing: -0.003em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-weight: 600;
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  text-wrap: balance;
}

h1 {
  font-size: var(--t-display);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-display);
  font-weight: 600;
}

h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); }

p { text-wrap: pretty; }

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

strong { font-weight: 600; }

::selection {
  background: var(--c-accent);
  color: var(--c-bg);
}

/* Visible focus: brass, 2px, everywhere. */
:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: var(--radius);
}


/* ==========================================================================
   Utilities
   ========================================================================== */

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

.mono {
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  font-weight: 400;
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--f-mono);
  font-size: var(--t-mono-sm);
  font-weight: 500;
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--c-muted);
}

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

.prose { max-width: var(--w-prose); }

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

.skip-link {
  position: absolute;
  top: 0;
  left: var(--gutter);
  z-index: 100;
  transform: translateY(-120%);
  padding: var(--s-1) var(--s-2);
  background: var(--c-surface);
  border: 1px solid var(--c-accent);
  border-radius: var(--radius);
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
}

.skip-link:focus {
  transform: translateY(var(--s-1));
}


/* ==========================================================================
   Section rhythm
   ========================================================================== */

.section { padding-block: var(--s-section); }

.section + .section { border-top: 1px solid var(--c-border); }

.section-head {
  margin-bottom: var(--s-6);
  max-width: var(--w-prose);
}

.section-head .eyebrow { display: block; margin-bottom: var(--s-2); }

.section-head p {
  margin-top: var(--s-2);
  color: var(--c-muted);
}


/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  padding: 0.875rem 1.5rem;
  border: 1px solid var(--c-border-strong);
  border-radius: var(--radius);
  background: transparent;
  color: var(--c-text);
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  font-weight: 500;
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color var(--dur) var(--ease),
              background-color var(--dur) var(--ease),
              color var(--dur) var(--ease);
}

/* The one brass CTA. */
.btn--primary {
  border-color: var(--c-accent);
  color: var(--c-accent);
}

.btn--primary:hover {
  background: var(--c-accent-wash);
}

.btn--ghost { color: var(--c-muted); }

.btn--ghost:hover {
  border-color: var(--c-text);
  color: var(--c-text);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}


/* ==========================================================================
   Masthead
   ========================================================================== */

.masthead {
  border-bottom: 1px solid var(--c-border);
}

.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  min-height: 72px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.wordmark__mark {
  width: 10px;
  height: 10px;
  border: 1px solid var(--c-accent);
  border-radius: 50%;
  background: var(--c-accent-wash);
  flex: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}

.nav__links {
  display: none;
  gap: var(--s-4);
}

.nav__link {
  font-family: var(--f-mono);
  font-size: var(--t-mono-sm);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--c-muted);
  transition: color var(--dur) var(--ease);
}

.nav__link:hover,
.nav__link[aria-current="page"] { color: var(--c-text); }

.nav .btn { padding: 0.625rem 1rem; }

@media (min-width: 768px) {
  .nav__links { display: flex; }
}


/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding-top: clamp(3.5rem, 9vw, 7rem);
  padding-bottom: var(--s-section);
}

.hero__inner { max-width: 46rem; }

.hero .eyebrow { display: block; margin-bottom: var(--s-3); }

.hero__lead {
  margin-top: var(--s-3);
  font-size: var(--t-lead);
  color: var(--c-muted);
  max-width: 40rem;
}

.hero .btn-row { margin-top: var(--s-5); }

/* Hairline spec strip under the hero. */
.hero__spec {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-4);
  margin-top: var(--s-6);
  padding-top: var(--s-3);
  border-top: 1px solid var(--c-border);
  color: var(--c-muted);
}

.hero__spec li {
  font-family: var(--f-mono);
  font-size: var(--t-mono-sm);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
}


/* ==========================================================================
   Feature grid — the stack
   ========================================================================== */

.stack-grid {
  display: grid;
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
}

@media (min-width: 640px) {
  .stack-grid { grid-template-columns: repeat(2, 1fr); }
  /* A last card alone on its row spans it, so no empty cell is left showing
     the grid's border-coloured background. */
  .stack-grid > .feature:nth-child(2n + 1):last-child { grid-column: 1 / -1; }
}

@media (min-width: 960px) {
  .stack-grid { grid-template-columns: repeat(3, 1fr); }
  .stack-grid > .feature:nth-child(2n + 1):last-child { grid-column: auto; }
  .stack-grid > .feature:nth-child(3n + 1):last-child { grid-column: 1 / -1; }
  .stack-grid > .feature:nth-child(3n + 2):last-child { grid-column: span 2; }
}

.feature {
  background: var(--c-bg);
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.feature__index {
  font-family: var(--f-mono);
  font-size: var(--t-mono-sm);
  letter-spacing: var(--ls-mono);
  color: var(--c-accent);
}

.feature__icon {
  width: 22px;
  height: 22px;
  color: var(--c-muted);
  transition: color var(--dur) var(--ease);
}

.feature:hover .feature__icon { color: var(--c-accent); }

.feature__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
}

.feature h3 {
  font-size: 1.0625rem;
  font-weight: 600;
}

.feature p {
  font-size: var(--t-small);
  color: var(--c-muted);
  margin: 0;
}


/* ==========================================================================
   Tiers
   ========================================================================== */

.tiers {
  display: grid;
  gap: var(--s-3);
}

@media (min-width: 880px) {
  .tiers {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-4);
  }
}

.tier {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: var(--s-4);
  background: transparent;
}

@media (min-width: 640px) { .tier { padding: var(--s-5); } }

/* Flagship: brass hairline, no fill. */
.tier--flagship { border-color: var(--c-accent-line); }

.tier__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s-2);
}

.tier__name {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: var(--ls-heading);
}

.tier__badge {
  flex: none;
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--c-accent-line);
  border-radius: var(--radius);
  background: var(--c-accent-wash);
  color: var(--c-accent);
  font-family: var(--f-mono);
  font-size: var(--t-mono-sm);
  font-weight: 500;
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  white-space: nowrap;
}

.tier__tagline {
  margin-top: 0.375rem;
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--c-muted);
}

.tier__desc {
  margin-top: var(--s-3);
  font-size: var(--t-small);
  color: var(--c-muted);
}

.tier__list {
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  border-top: 1px solid var(--c-border);
  display: grid;
  gap: 0.75rem;
}

.tier__list li {
  display: grid;
  grid-template-columns: 1rem 1fr;
  gap: var(--s-1);
  align-items: start;
  font-size: var(--t-small);
}

/* Hairline tick, drawn in CSS. No icon font, no image request. */
.tier__list li::before {
  content: "";
  width: 9px;
  height: 5px;
  margin-top: 0.55em;
  border-left: 1.5px solid var(--c-accent);
  border-bottom: 1.5px solid var(--c-accent);
  transform: rotate(-45deg);
}

/* Device table inside the card */
.tier__devices {
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  border-top: 1px solid var(--c-border);
}

.tier__devices-label {
  display: block;
  margin-bottom: var(--s-2);
}

.device {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-2);
  padding-block: var(--s-2);
  border-bottom: 1px solid var(--c-border);
}

.device:last-child { border-bottom: 0; padding-bottom: 0; }

.device__name { font-weight: 500; }

.device__stock {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--f-mono);
  font-size: var(--t-mono-sm);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--c-muted);
}

.device__price {
  font-family: var(--f-mono);
  font-size: var(--t-price);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--c-accent);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.device--out .device__name,
.device--out .device__price { color: var(--c-muted); }

.tier__foot { margin-top: auto; padding-top: var(--s-4); }

.tier__foot .btn { width: 100%; justify-content: center; }


/* ==========================================================================
   Add-ons table
   ========================================================================== */

.addons {
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
}

.addons th,
.addons td {
  text-align: left;
  padding: var(--s-3);
  border-bottom: 1px solid var(--c-border);
  vertical-align: top;
}

.addons thead th {
  font-family: var(--f-mono);
  font-size: var(--t-mono-sm);
  font-weight: 500;
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--c-muted);
}

.addons tbody tr:last-child th,
.addons tbody tr:last-child td { border-bottom: 0; }

.addons__name { font-weight: 500; }

.addons__desc {
  display: block;
  margin-top: 0.375rem;
  font-size: var(--t-small);
  font-weight: 400;
  color: var(--c-muted);
  max-width: 52ch;
}

.addons__price {
  font-family: var(--f-mono);
  font-size: 1.0625rem;
  color: var(--c-accent);
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.addons th[scope="row"] { font-weight: 500; }

@media (max-width: 560px) {
  .addons th,
  .addons td { padding: var(--s-2); }
  .addons thead { display: none; }
}


/* ==========================================================================
   How it works
   ========================================================================== */

.steps {
  display: grid;
  gap: 1px;
  background: var(--c-border);
  border-block: 1px solid var(--c-border);
}

@media (min-width: 720px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step {
  background: var(--c-bg);
  padding: var(--s-4) 0;
}

@media (min-width: 720px) {
  .step { padding: var(--s-4); }
  .step:first-child { padding-left: 0; }
  .step:last-child { padding-right: 0; }
}

.step__num {
  display: block;
  margin-bottom: var(--s-2);
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  letter-spacing: var(--ls-mono);
  color: var(--c-accent);
}

.step h3 {
  font-size: 1.0625rem;
  margin-bottom: var(--s-1);
}

.step p {
  font-size: var(--t-small);
  color: var(--c-muted);
}


/* ==========================================================================
   FAQ — <details>/<summary>, works with JS disabled
   ========================================================================== */

.faq {
  border-top: 1px solid var(--c-border);
  max-width: 68rem;
}

.faq__item { border-bottom: 1px solid var(--c-border); }

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding-block: var(--s-3);
  cursor: pointer;
  list-style: none;
  font-size: 1.0625rem;
  font-weight: 500;
  transition: color var(--dur) var(--ease);
}

.faq__q::-webkit-details-marker { display: none; }

.faq__q:hover { color: var(--c-accent); }

/* Chevron drawn from borders. */
.faq__q::after {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  margin-right: 4px;
  border-right: 1.5px solid var(--c-muted);
  border-bottom: 1.5px solid var(--c-muted);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.faq__item[open] .faq__q::after {
  transform: rotate(225deg) translate(-2px, -2px);
  border-color: var(--c-accent);
}

.faq__a {
  padding-bottom: var(--s-4);
  padding-right: var(--s-4);
  max-width: var(--w-prose);
  color: var(--c-muted);
}


/* ==========================================================================
   Contact
   ========================================================================== */

.contact__channels {
  display: grid;
  gap: var(--s-3);
  margin-top: var(--s-5);
}

@media (min-width: 720px) {
  .contact__channels { grid-template-columns: repeat(2, 1fr); }
}

.channel {
  display: block;
  padding: var(--s-4);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease),
              background-color var(--dur) var(--ease);
}

.channel:hover { border-color: var(--c-border-strong); }

.channel--primary { border-color: var(--c-accent-line); }

.channel--primary:hover { background: var(--c-accent-wash); }

.channel__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  color: var(--c-muted);
}

.channel__handle {
  display: block;
  margin-top: var(--s-2);
  font-family: var(--f-mono);
  font-size: clamp(1.25rem, 3.2vw, 1.75rem);
  letter-spacing: -0.01em;
  word-break: break-word;
}

.channel--primary .channel__handle { color: var(--c-accent); }

.channel__note {
  display: block;
  margin-top: var(--s-2);
  font-size: var(--t-small);
  color: var(--c-muted);
}


/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  border-top: 1px solid var(--c-border);
  background: var(--c-surface);
  padding-block: var(--s-6) var(--s-4);
}

.footer__top {
  display: grid;
  gap: var(--s-5);
}

@media (min-width: 880px) {
  .footer__top { grid-template-columns: 1.4fr 1fr; gap: var(--s-7); }
}

.footer h2 {
  font-size: 1.0625rem;
  margin-bottom: var(--s-2);
}

.footer p {
  font-size: var(--t-small);
  color: var(--c-muted);
  max-width: 56ch;
}

.footer p + p { margin-top: var(--s-2); }

.footer__links {
  display: grid;
  gap: 0.625rem;
  align-content: start;
}

.footer__links a {
  font-family: var(--f-mono);
  font-size: var(--t-mono-sm);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--c-muted);
  transition: color var(--dur) var(--ease);
}

.footer__links a:hover { color: var(--c-text); }

.footer__legal {
  margin-top: var(--s-5);
  padding-top: var(--s-3);
  border-top: 1px solid var(--c-border);
}

.footer__legal p { font-size: var(--t-small); }

.footer__base {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-4);
  justify-content: space-between;
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  border-top: 1px solid var(--c-border);
  font-family: var(--f-mono);
  font-size: var(--t-mono-sm);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--c-muted);
}


/* ==========================================================================
   Error page
   ========================================================================== */

.error {
  display: flex;
  align-items: center;
  min-height: 60vh;
  padding-block: var(--s-7);
}

.error__code {
  display: block;
  margin-bottom: var(--s-3);
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  letter-spacing: var(--ls-mono);
  color: var(--c-accent);
}

.error p {
  margin-top: var(--s-3);
  color: var(--c-muted);
  max-width: var(--w-prose);
}

.error .btn-row { margin-top: var(--s-5); }


/* ==========================================================================
   Motion — fade and rise on scroll.
   The hidden state is applied only when JS is running (.js on <html>), so
   with scripting off every section is simply visible.
   ========================================================================== */

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ==========================================================================
   Print
   ========================================================================== */

@media print {
  body { background: #fff; color: #000; }
  .masthead, .footer__links, .skip-link { display: none; }
  .faq__a { display: block; }
}
