/* ==========================================================================
   AreaderZ — areaderz.com
   Single stylesheet. No frameworks, no external fonts, no build step.
   Works when opened directly from disk (file://) as well as over HTTPS.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --surface: #ffffff;
  --surface-2: #f2f4f7;
  --text: #16191d;
  --text-muted: #5a6472;
  --heading: #0f1216;
  --border: #e2e6ec;
  --border-strong: #cfd6e0;
  --accent: #1f6feb;
  --accent-soft: #eaf1fe;
  --accent-text: #0b4dc0;
  --ok: #1a7f4b;
  --warn: #8a5a00;
  --warn-soft: #fdf5e3;
  --code-bg: #f2f4f7;
  --shadow: 0 1px 2px rgba(16, 24, 40, .05), 0 8px 24px rgba(16, 24, 40, .06);
  --radius: 14px;
  --radius-sm: 9px;
  --measure: 42rem;
  --wrap: 68rem;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "Noto Sans", sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Monaco, Consolas,
          "Liberation Mono", monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0e1116;
    --bg-soft: #141922;
    --surface: #141922;
    --surface-2: #1b212b;
    --text: #e7ecf3;
    --text-muted: #9aa7b8;
    --heading: #ffffff;
    --border: #262e3a;
    --border-strong: #35404f;
    --accent: #6aa6ff;
    --accent-soft: #16233a;
    --accent-text: #9cc4ff;
    --ok: #5fd39a;
    --warn: #e2b95e;
    --warn-soft: #2a2314;
    --code-bg: #1b212b;
    --shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 10px 30px rgba(0, 0, 0, .35);
  }
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: var(--accent-text); text-underline-offset: 2px; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 { color: var(--heading); line-height: 1.25; margin: 0 0 .5em; }
h1 { font-size: clamp(1.9rem, 5vw, 2.9rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.4rem, 3.2vw, 1.9rem); letter-spacing: -.01em; margin-top: 0; }
h3 { font-size: 1.15rem; }
h4 { font-size: 1rem; }

p { margin: 0 0 1em; }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }

hr { border: 0; border-top: 1px solid var(--border); margin: 2.5rem 0; }

code, kbd, pre { font-family: var(--mono); font-size: .92em; }
code { background: var(--code-bg); padding: .12em .38em; border-radius: 5px; }
kbd {
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-bottom-width: 2px;
  border-radius: 6px;
  padding: .1em .45em;
  font-size: .85em;
}
pre {
  background: var(--code-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  overflow-x: auto;
}
pre code { background: none; padding: 0; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 1.25rem; }
.wrap--narrow { max-width: var(--measure); }
.section { padding: 3.25rem 0; }
.section--tint { background: var(--bg-soft); border-block: 1px solid var(--border); }
.lead { font-size: 1.12rem; color: var(--text-muted); }
.center { text-align: center; }
.muted { color: var(--text-muted); }
.small { font-size: .9rem; }
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #fff; padding: .6rem 1rem; z-index: 100;
}
.skip-link:focus { left: .5rem; top: .5rem; color: #fff; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
@supports not (background: color-mix(in srgb, red 50%, blue)) {
  .site-header { background: var(--bg); }
}
.site-header__inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: 62px; flex-wrap: wrap;
}
.brand {
  display: inline-flex; align-items: center; gap: .6rem;
  text-decoration: none; color: var(--heading); font-weight: 650;
  letter-spacing: -.01em; margin-right: auto;
}
.brand img { width: 30px; height: 30px; border-radius: 8px; display: block; }
.brand span { font-size: 1.02rem; }
.brand small { display: block; font-weight: 400; font-size: .76rem; color: var(--text-muted); }

.site-nav ul {
  list-style: none; display: flex; flex-wrap: wrap; gap: .25rem .35rem;
  margin: 0; padding: 0;
}
.site-nav a {
  display: block; padding: .45rem .7rem; border-radius: 999px;
  text-decoration: none; color: var(--text-muted); font-size: .94rem; font-weight: 500;
}
.site-nav a:hover { background: var(--surface-2); color: var(--heading); }
.site-nav a[aria-current="page"] { background: var(--accent-soft); color: var(--accent-text); }

/* ---------- Hero ---------- */
.hero { padding: 3.5rem 0 3rem; }
.hero__grid {
  display: grid; gap: 2.25rem; grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 860px) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; gap: 3rem; }
}
.hero h1 { margin-bottom: .35rem; }
.hero__sub { font-size: 1.22rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent-text); background: var(--accent-soft);
  border-radius: 999px; padding: .3rem .75rem; margin-bottom: 1rem;
}
.hero__icon { width: 96px; height: 96px; border-radius: 22px; box-shadow: var(--shadow); }

.btn-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }
.btn {
  display: inline-block; padding: .72rem 1.25rem; border-radius: 999px;
  font-weight: 600; text-decoration: none; font-size: .98rem;
  border: 1px solid transparent;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-text); color: #fff; }
.btn--ghost { border-color: var(--border-strong); color: var(--text); background: var(--surface); }
.btn--ghost:hover { background: var(--surface-2); color: var(--heading); }

.pill-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; padding: 0; list-style: none; }
.pill {
  font-size: .84rem; font-weight: 600; color: var(--text-muted);
  border: 1px solid var(--border); border-radius: 999px; padding: .3rem .7rem;
  background: var(--surface);
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 640px) and (max-width: 899px) {
  .grid--3, .grid--4 { grid-template-columns: 1fr 1fr; }
}
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.35rem 1.35rem 1.25rem;
}
.section--tint .card { background: var(--bg); }
.section--future { background: var(--accent-soft); border-block: 1px solid var(--border); }
.section--future .callout { background: var(--bg); }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--text-muted); margin-bottom: 0; font-size: .97rem; }
.card__badge {
  display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--accent-text); background: var(--accent-soft);
  border-radius: 999px; padding: .22rem .6rem; margin-bottom: .7rem;
}
.card__badge--ok { color: var(--ok); background: color-mix(in srgb, var(--ok) 12%, transparent); }
@media (prefers-color-scheme: dark) { .card__badge--ok { background: #12291f; } }
.card--plain { background: none; border: 0; padding: 0; }

/* ---------- Feature list ---------- */
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .85rem; }
@media (min-width: 700px) { .feature-list--2 { grid-template-columns: 1fr 1fr; } }
.feature-list li {
  position: relative; padding-left: 1.9rem; color: var(--text);
}
.feature-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--ok); font-weight: 700;
}
.feature-list strong { color: var(--heading); }

/* ---------- Screenshots ---------- */
.shots { display: grid; gap: 1.5rem; grid-template-columns: 1fr; margin: 0; }
@media (min-width: 760px) { .shots--2 { grid-template-columns: 1fr 1fr; } }
.shot { margin: 0; }
.shot img {
  display: block; width: 100%; height: auto;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface-2);
}
.shot figcaption {
  font-size: .9rem; color: var(--text-muted); margin-top: .6rem; text-align: center;
}
/* ---------- Expandable feature reveals ---------- */
.reveal-list { display: grid; gap: .85rem; margin: 0; }
.reveal {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius);
}
.reveal[open] { background: var(--surface); }
/* Two columns: text column (title above hint) + the +/- indicator, so every box
   gives its title and description the same width instead of sizing each to its
   own content (which left the descriptions starting at different x positions). */
.reveal__summary {
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  align-items: center; column-gap: .85rem; row-gap: .2rem;
  padding: .95rem 1.15rem; cursor: pointer; list-style: none;
  color: var(--heading); font-weight: 600;
}
.reveal__summary::-webkit-details-marker { display: none; }
.reveal__summary::after {
  content: "+"; grid-column: 2; grid-row: 1 / -1; flex: none;
  display: grid; place-items: center; width: 1.6rem; height: 1.6rem;
  border: 1px solid var(--border-strong); border-radius: 999px;
  font-weight: 500; font-size: 1.15rem; line-height: 1; color: var(--text-muted);
}
.reveal[open] > .reveal__summary::after { content: "\2212"; }
.reveal__summary:hover::after { border-color: var(--accent); color: var(--accent); }
.reveal__summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: var(--radius); }
.reveal__title { display: block; grid-column: 1; }
.reveal__hint {
  display: block; grid-column: 1; font-weight: 400; font-size: .9rem;
  color: var(--text-muted); margin-top: .2rem;
}
.reveal__body { padding: 0 1.15rem 1.25rem; }
.reveal__body .shots { margin-top: 0; }
.reveal__body .shot figcaption { text-align: left; }
@media (max-width: 560px) { .reveal__hint { display: none; } }

/* ---------- One screenshot height across the site ---------- */
/* A landscape Mac shot and a portrait iPhone shot land in the same box, so a
   row of two reads as a row and switching platform tabs never re-flows the page.
   `contain` keeps each screenshot's own aspect ratio: nothing is cropped or
   stretched, the phone simply sits centred with space either side.
   Tune the single value below to trade phone size against row height. */
.shot img {
  height: var(--shot-h, 310px);
  width: 100%;
  object-fit: contain;
}
.shot--phone { max-width: none; }
@media (max-width: 760px) { .shot img { height: auto; } }

/* ---------- Lightbox: click a screenshot to see it full size ---------- */
.shot img { cursor: zoom-in; }
dialog.lightbox {
  border: 0; padding: 0; background: transparent;
  width: 100vw; height: 100vh; max-width: none; max-height: none;
}
dialog.lightbox::backdrop { background: rgba(8, 10, 14, .84); }
dialog.lightbox .lightbox__img {
  position: absolute; inset: 0; margin: auto;
  width: auto; height: auto;
  max-width: 96vw; max-height: 92vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .45);
  cursor: zoom-out;
}

/* ---------- Platform tabs (macOS / iPhone) ---------- */
.tabs { margin: 0; }
.tabs__radio {
  position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none;
}
.tabs__list {
  display: flex; flex-wrap: wrap; gap: .35rem;
  border-bottom: 1px solid var(--border-strong);
  margin: 0 0 1.4rem;
}
.tabs__tab {
  cursor: pointer; user-select: none;
  padding: .55rem 1.05rem;
  font-size: .92rem; font-weight: 650; color: var(--text-muted);
  background: var(--surface-2);
  border: 1px solid var(--border-strong); border-bottom: none;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  margin-bottom: -1px;
}
.tabs__tab:hover { color: var(--heading); }
.tabs__panel { display: none; }
.tabs__panel .shots { margin-top: 0; }
.tabs__note { font-size: .88rem; color: var(--text-muted); margin: .85rem 0 0; }
/* panel visibility, driven by the sibling radio inputs (no JavaScript) */
#tab-index-mac:checked ~ .tabs__panel--mac,
#tab-reader-mac:checked ~ .tabs__panel--mac,
#tab-themes-mac:checked ~ .tabs__panel--mac,
#tab-providers-mac:checked ~ .tabs__panel--mac { display: block; }
#tab-index-ios:checked ~ .tabs__panel--ios,
#tab-reader-ios:checked ~ .tabs__panel--ios,
#tab-themes-ios:checked ~ .tabs__panel--ios,
#tab-providers-ios:checked ~ .tabs__panel--ios { display: block; }
#tab-index-mac:checked ~ .tabs__list label[for="tab-index-mac"],
#tab-reader-mac:checked ~ .tabs__list label[for="tab-reader-mac"],
#tab-themes-mac:checked ~ .tabs__list label[for="tab-themes-mac"],
#tab-providers-mac:checked ~ .tabs__list label[for="tab-providers-mac"],
#tab-index-ios:checked ~ .tabs__list label[for="tab-index-ios"],
#tab-reader-ios:checked ~ .tabs__list label[for="tab-reader-ios"],
#tab-themes-ios:checked ~ .tabs__list label[for="tab-themes-ios"],
#tab-providers-ios:checked ~ .tabs__list label[for="tab-providers-ios"] {
  background: var(--bg); color: var(--heading);
  border-color: var(--border-strong); border-bottom-color: var(--bg);
}
.tabs__radio:focus-visible ~ .tabs__list .tabs__tab { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ---------- Graceful degradation while a screenshot file has not been dropped in yet. ---------- */
.shot img[src$=".png"], .shot img[src$=".jpg"], .shot img[src$=".webp"] { min-height: 40px; }
.shot--missing img { display: none; }
.shot--missing::after {
  content: "Screenshot coming soon";
  display: flex; align-items: center; justify-content: center;
  min-height: 120px; padding: 1rem; text-align: center;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  color: var(--text-muted); font-size: .88rem; font-style: italic;
  background: repeating-linear-gradient(45deg, var(--surface-2), var(--surface-2) 12px, transparent 12px, transparent 24px);
}
/* Device-accurate framing so layout does not jump when real shots arrive. */
.shot--phone { max-width: 320px; margin-inline: auto; }

/* ---------- Theme swatches ---------- */
.themes { display: grid; gap: .9rem; grid-template-columns: repeat(2, 1fr); margin: 0; padding: 0; list-style: none; }
@media (min-width: 700px) { .themes { grid-template-columns: repeat(4, 1fr); } }
.theme {
  border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden;
  background: var(--surface);
}
/* Each preview is painted with the palette AND the typeface that theme really uses
   in the reader, so the swatch is a faithful miniature, not a colour chip. */
.theme__preview {
  padding: .7rem .8rem .8rem; min-height: 118px;
  font-size: .84rem; line-height: 1.55;
}
.theme__preview b { display: block; font-size: .95rem; font-weight: 700; margin-bottom: .3rem; letter-spacing: 0; }
.theme__preview p { margin: 0 0 .45rem; }
.theme__preview i { font-style: normal; font-size: .74rem; opacity: .8; display: block; }
.theme__preview--mono { font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", monospace; }
.theme__preview--serif { font-family: ui-serif, "New York", Georgia, "Times New Roman", serif; }
.theme__preview--sans { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; }
.theme__preview--rule b { padding-bottom: .25rem; border-bottom: 1px solid currentColor; }
.theme__preview--indent p { text-indent: 1.2em; }
.theme__name { font-size: .8rem; font-weight: 600; color: var(--text-muted); padding: .45rem .85rem; border-top: 1px solid var(--border); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; list-style: none; margin: 0 0 1.5rem; padding: 0; }
.steps > li {
  counter-increment: step; position: relative;
  padding: 0 0 1.15rem 2.6rem; margin: 0;
}
.steps > li::before {
  content: counter(step);
  position: absolute; left: 0; top: .1rem;
  width: 1.8rem; height: 1.8rem; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-text);
  font-weight: 700; font-size: .92rem;
  display: flex; align-items: center; justify-content: center;
}
.steps > li::after {
  content: ""; position: absolute; left: .9rem; top: 2.05rem; bottom: .1rem;
  width: 1px; background: var(--border);
}
.steps > li:last-child { padding-bottom: 0; }
.steps > li:last-child::after { display: none; }
.steps p { margin-bottom: .35rem; }
.steps p:last-child { margin-bottom: 0; }

/* ---------- Callouts ---------- */
.callout {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface-2);
  padding: 1.05rem 1.2rem; margin: 1.25rem 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout--warn { background: var(--warn-soft); }
.callout--future { background: var(--surface-2); }
.callout__title { font-weight: 700; color: var(--heading); display: block; margin-bottom: .25rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .7rem; }
.faq details {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 0;
}
.faq summary {
  cursor: pointer; padding: .95rem 1.1rem; font-weight: 600; color: var(--heading);
  list-style: none; display: flex; align-items: baseline; gap: .6rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "+"; color: var(--accent); font-weight: 700; flex: 0 0 auto; }
.faq details[open] summary::before { content: "−"; }
.faq details[open] summary { border-bottom: 1px solid var(--border); }
.faq .faq__body { padding: 1rem 1.1rem 1.1rem; }
.faq .faq__body > *:last-child { margin-bottom: 0; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; }
table { border-collapse: collapse; width: 100%; font-size: .95rem; }
th, td { text-align: left; padding: .7rem .8rem; border-bottom: 1px solid var(--border); vertical-align: top; }
th { color: var(--heading); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
tbody tr:last-child td { border-bottom: 0; }

/* ---------- Page header ---------- */
.page-head { padding: 2.75rem 0 1.25rem; border-bottom: 1px solid var(--border); }
.page-head h1 { margin-bottom: .35rem; }
.page-head p { color: var(--text-muted); max-width: var(--measure); margin-bottom: 0; }

/* ---------- Table of contents ---------- */
.toc {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.1rem 1.25rem; margin: 1.75rem 0 0;
}
.toc h2 { font-size: 1rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); }
.toc ol { margin: 0; padding-left: 1.2rem; columns: 1; }
@media (min-width: 700px) { .toc ol { columns: 2; column-gap: 2rem; } }
.toc li { margin-bottom: .3rem; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border); background: var(--bg-soft);
  padding: 2.5rem 0 3rem; font-size: .94rem; color: var(--text-muted);
}
.site-footer__grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer h2 { font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; }
.site-footer a { color: var(--text); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; color: var(--accent-text); }
.site-footer__legal { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--border); font-size: .86rem; }
.site-footer__brand { display: flex; align-items: center; gap: .7rem; margin-bottom: .7rem; }
.site-footer__brand img { width: 40px; height: 40px; border-radius: 10px; }
.site-footer__brand strong { color: var(--heading); display: block; }

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

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

@media print {
  .site-header, .site-footer, .btn-row { display: none; }
  body { font-size: 11pt; }
}

/* ---------- Utilities (keeps markup free of inline styles) ---------- */
.mt-05 { margin-top: .5rem; } .mt-06 { margin-top: .6rem; } .mt-1 { margin-top: 1rem; }
.mt-125 { margin-top: 1.25rem; } .mt-15 { margin-top: 1.5rem; } .mt-175 { margin-top: 1.75rem; }
.mt-2 { margin-top: 2rem; }
.measure { max-width: 42rem; }
.center-content { justify-content: center; }
.no-border-top { border-top: 0; margin-top: 0; }
.plain-list { list-style: none; padding: 0; margin: .5rem 0 0; display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Theme palettes (the reader's real values, painted on each swatch) ---------- */
.theme__preview--system { background: #ffffff; color: #000000; }
.theme__preview--sepia { background: #f4e9d8; color: #5b4636; }
.theme__preview--typewriter { background: #f7f7f7; color: #333333; }
.theme__preview--notation { background: #faf8f4; color: #3a3a3a; }
.theme__preview--solarized { background: #fdf6e3; color: #657b83; }
.theme__preview--charley { background: #fffff8; color: #111111; }
.theme__preview--terminal { background: #000000; color: #00ff00; text-shadow: 0 0 6px rgba(0, 255, 0, .55); }
