/* BruCru Consulting — alt design exploration
   Base palette from the locked logo work, extended with red and yellow
   (matching the round-four pulse mark / compass mark accents exactly).
   References: jaredrhod.com (terminal windows, numbered path list),
   hackthebox.com (dual hero CTAs, trust bar), dreamhost.com (stat-comparison
   bars, checklist callouts). */

@font-face {
  font-family: 'JBM Display';
  src: url('../fonts/JetBrainsMono-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'JBM Display';
  src: url('../fonts/JetBrainsMono-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #050605;
  --bg-raised: #090B09;
  --card-bg: #0C0F0C;
  --border: #1C241F;
  --green: #2EFF6A;
  --green-dim: #1F9E4C;
  --purple: #7D3CFF;
  --yellow: #FFDE59;
  --red: #FF4D5E;
  --text: #E7EDE9;
  --text-dim: #9AA79E;
  --mono: Consolas, 'Courier New', monospace;
  --display: 'JBM Display', var(--mono);
}

* { box-sizing: border-box; }

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.btn-outline:focus-visible,
.path-row-link:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  line-height: 1.6;
}

/* ---------- Retro-CRT screen texture: faint scanlines + edge vignette ---------- */
/* Static, no animation — deliberately not tied to prefers-reduced-motion. */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 500;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0px,
    rgba(0, 0, 0, 0) 2px,
    rgba(0, 0, 0, 0.15) 3px
  );
  mix-blend-mode: multiply;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 501;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.35) 100%);
}

a { color: var(--green); }

.wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.draft-banner {
  background: #2A1414;
  color: var(--yellow);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 6px 10px;
  border-bottom: 1px solid var(--red);
}

/* ---------- Terminal nav bar ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg-raised);
  border-bottom: 1px solid var(--border);
}

.nav-bar {
  max-width: 900px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand img { height: 28px; width: 28px; }

.nav-path { color: var(--text-dim); font-size: 14px; }
.nav-path .green { color: var(--green); }
.nav-path .purple { color: var(--purple); }

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li { display: flex; align-items: center; gap: 6px; }
.nav-links a { color: var(--green); text-decoration: none; }
.nav-links a:hover { color: var(--purple); }
.idx { color: var(--yellow); }

.nav-icon {
  width: 14px;
  height: 14px;
  color: var(--yellow);
  flex-shrink: 0;
}

/* ---------- Terminal window shell (jaredrhod-style) ---------- */

.term-window {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 10px 28px rgba(0, 0, 0, 0.6);
}

/* This instance lets the coming-soon starburst sit outside the card
   entirely — no descendant here has an opaque background near the
   bottom corners, so dropping overflow:hidden doesn't need a clip
   wrapper; the titlebar just needs its own top corners rounded since
   the window itself no longer clips it to shape. */
.term-window--paths {
  position: relative;
  overflow: visible;
}

.term-window--paths .term-titlebar {
  border-radius: 10px 10px 0 0;
}

.term-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: linear-gradient(to bottom, #14180F, var(--card-bg));
  border-bottom: 1px solid var(--border);
}

.term-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.5), 0 0 4px currentColor;
}
.term-dot.red { background: var(--red); color: var(--red); }
.term-dot.yellow { background: var(--yellow); color: var(--yellow); }
.term-dot.green { background: var(--green); color: var(--green); }

.term-titlebar-label {
  margin-left: 8px;
  font-size: 12px;
  color: var(--text-dim);
}

.term-body { padding: 28px 32px; }

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

.hero { padding: 48px 0 40px 0; text-align: center; }

.hero-window .term-body { text-align: center; }

.prompt-line {
  color: var(--green-dim);
  font-size: 14px;
  margin-bottom: 18px;
  text-shadow: 0 0 6px rgba(46, 255, 106, 0.35);
}

/* Only one of the hero's two carets is ever shown at once — the other
   gets this class the instant typing moves on, so there's never a
   moment with two blinking cursors on screen. Uses visibility, not
   display, so the hidden caret still reserves its layout space —
   otherwise the headline (which has no other content before it starts
   typing) collapses to zero height and the whole card visibly resizes. */
.caret-hidden { visibility: hidden !important; }

.prompt-line .cursor {
  display: inline-block;
  width: 9px;
  height: 16px;
  background: var(--green);
  vertical-align: middle;
  margin-left: 4px;
  box-shadow: 0 0 6px rgba(46, 255, 106, 0.7);
  animation: blink 1.1s steps(1) infinite;
}

@keyframes blink { 50% { opacity: 0; } }

h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 46px;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0 0 18px 0;
  color: #fff;
}
h1 .hl { color: var(--green); text-shadow: 0 0 16px rgba(46, 255, 106, 0.45); }

.type-caret {
  display: inline-block;
  width: 0.42em;
  height: 0.85em;
  background: var(--green);
  vertical-align: -0.08em;
  margin-left: 2px;
  box-shadow: 0 0 8px rgba(46, 255, 106, 0.7);
  animation: blink 1s steps(1) infinite;
}

.subhead {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto 30px auto;
}

.hero-ctas { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: 15px;
  font-weight: bold;
  color: var(--bg);
  background: var(--green);
  border: none;
  padding: 14px 26px;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover { background: #58ff8b; }

.btn-outline {
  display: inline-block;
  font-family: var(--mono);
  font-size: 15px;
  color: var(--yellow);
  background: transparent;
  border: 1px solid var(--yellow);
  padding: 13px 25px;
  border-radius: 4px;
  text-decoration: none;
}

.btn-outline:hover { background: rgba(255,222,89,0.12); }

/* ---------- Trust bar (hackthebox-style) ---------- */

.trust-bar {
  margin-top: 32px;
  position: relative;
  min-height: 20px;
  font-size: 13px;
  color: var(--text-dim);
}

.trust-bar-intro {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  animation: intro-fade-out 0.4s ease forwards 3.4s;
}

.trust-item { opacity: 0; }
.trust-item.ti-1 { animation: flash-in 0.5s ease forwards 0.2s; }
.trust-item.ti-2 { animation: flash-in 0.5s ease forwards 1s; }
.trust-item.ti-3 { animation: flash-in 0.5s ease forwards 1.8s; }
.trust-item.ti-4 { animation: flash-in 0.5s ease forwards 2.6s; }

@keyframes flash-in {
  0% { opacity: 0; }
  45% { opacity: 1; }
  65% { opacity: 0.25; }
  100% { opacity: 1; }
}

@keyframes intro-fade-out {
  to { opacity: 0; visibility: hidden; }
}

.trust-bar-ticker {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 620px;
  overflow: hidden;
  opacity: 0;
  animation: ticker-fade-in 0.4s ease forwards 3.6s;
}

.trust-bar-track {
  display: inline-flex;
  gap: 24px;
  white-space: nowrap;
  animation: trust-scroll 18s linear infinite;
  animation-delay: 3.6s;
}

@keyframes ticker-fade-in {
  to { opacity: 1; }
}

@keyframes trust-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .trust-bar-ticker, .trust-bar-track { animation: none; opacity: 1; }
  .trust-bar-intro { animation: none; opacity: 1; visibility: visible; }
  .trust-item { opacity: 1; animation: none; }
}

.trust-bar .tick { margin-right: 4px; }
.tick.green { color: var(--green); }
.tick.purple { color: var(--purple); }
.tick.yellow { color: var(--yellow); }
.tick.red { color: var(--red); }

/* ---------- Section shell ---------- */

section { padding: 80px 0; text-align: center; }

.section-label {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}

h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 24px 0;
}

/* ---------- Numbered path list (jaredrhod-style) ---------- */

.path-body { padding: 10px 0; }

.path-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}

.path-row:last-child { border-bottom: none; }

.path-row-link {
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}

.path-row-link:hover { background: rgba(46,255,106,0.06); }

.path-row-tag-anchor { position: relative; }

.path-idx {
  display: inline-flex;
  align-items: center;
  color: var(--yellow);
  padding-top: 2px;
  flex-shrink: 0;
}

.path-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 3px rgba(255, 222, 89, 0.5));
}

.path-copy h3 { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; color: var(--green); font-size: 16px; margin: 0 0 6px 0; }
.path-copy p { color: var(--text-dim); font-size: 14px; margin: 0; }

.tag-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--yellow);
  clip-path: polygon(50.00% 0.00%, 58.28% 19.09%, 75.00% 6.70%, 72.63% 27.37%, 93.30% 25.00%, 80.91% 41.72%, 100.00% 50.00%, 80.91% 58.28%, 93.30% 75.00%, 72.63% 72.63%, 75.00% 93.30%, 58.28% 80.91%, 50.00% 100.00%, 41.72% 80.91%, 25.00% 93.30%, 27.37% 72.63%, 6.70% 75.00%, 19.09% 58.28%, 0.00% 50.00%, 19.09% 41.72%, 6.70% 25.00%, 27.37% 27.37%, 25.00% 6.70%, 41.72% 19.09%);
  animation: tagFlash 1.4s ease-in-out infinite;
}

.tag-new--outside {
  position: absolute;
  top: 50%;
  left: -80px;
  transform: translateY(-50%);
}

.tag-new-text {
  display: block;
  width: 40px;
  font-family: var(--mono);
  font-size: 7.5px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.3px;
  text-align: center;
  text-transform: uppercase;
  color: var(--bg);
}

.tag-new-caret {
  display: inline-block;
  width: 2px;
  height: 7px;
  background: var(--bg);
  margin-left: 1px;
  vertical-align: -1px;
  animation: blink 1s steps(1) infinite;
}

/* Note: this runs on an element that's also positioned with
   transform: translateY(-50%) for vertical centering — an animation's
   transform fully replaces the static one rather than combining with
   it, so translateY(-50%) has to be baked into every keyframe here too. */
@keyframes tagFlash {
  0%, 100% { transform: translateY(-50%) scale(1); filter: drop-shadow(0 0 0 rgba(255, 222, 89, 0)) brightness(1); }
  50% { transform: translateY(-50%) scale(1.08); filter: drop-shadow(0 0 12px rgba(255, 222, 89, 0.85)) brightness(1.35); }
}

/* ---------- Stat comparison bars (dreamhost-style) ---------- */

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 32px;
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.stat-row { margin-bottom: 22px; }
.stat-row:last-child { margin-bottom: 0; }

.stat-label { font-size: 13px; color: var(--text-dim); margin-bottom: 6px; }

.stat-track {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  height: 10px;
  overflow: hidden;
  margin-bottom: 6px;
}

.stat-fill {
  height: 100%;
  border-radius: 4px 0 0 4px;
  width: 0%;
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.stat-fill.green { background: var(--green); }
.stat-fill.yellow { background: var(--yellow); }
.stat-fill.red { background: var(--red); }

.stat-value { font-size: 13px; color: var(--text); }

/* ---------- Why me: checklist grid (dreamhost-style) ---------- */

.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.check-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text);
}

.check-mark { color: var(--green); margin-right: 8px; }

/* ---------- Grade badges (independent scan results) ---------- */

.grade-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 780px;
  margin: 28px auto 0;
}

.grade-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 18px;
  min-width: 168px;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.grade-badge:hover { border-color: var(--green); transform: translateY(-2px); }

.grade-badge .grade-mark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  color: var(--green);
  line-height: 1;
}

.grade-badge .grade-info { text-align: left; }
.grade-badge .grade-source { display: block; font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.04em; }
.grade-badge .grade-label { display: block; font-size: 12.5px; color: var(--text); margin-top: 2px; }

.grade-badge.grade-pending { opacity: 0.6; cursor: default; }
.grade-badge.grade-pending:hover { border-color: var(--border); transform: none; }
.grade-badge.grade-pending .grade-mark { color: var(--text-dim); font-size: 13px; }

.grade-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.grade-detail-mark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 42px;
  color: var(--green);
  line-height: 1;
  flex-shrink: 0;
  min-width: 72px;
  text-align: center;
}

.grade-detail-mark--pending { color: var(--text-dim); font-size: 28px; }

.grade-detail p { color: var(--text-dim); }

.letter .grade-scan-link { margin: 26px auto 0; text-align: center; }
.grade-scan-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card-bg);
  color: var(--text);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 13px;
  transition: border-color .15s, color .15s, transform .15s ease;
}
.grade-scan-link a:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.grade-scan-link a .ext-icon { flex-shrink: 0; }

@media (max-width: 560px) {
  .grade-detail-mark { font-size: 32px; }
}

/* ---------- Letter / intro prose ---------- */

section.letter { padding-top: 32px; padding-bottom: 32px; }
.letter p { max-width: 680px; margin: 0 auto 14px auto; color: var(--text-dim); }
.letter p:not(.grade-scan-link) a:hover { color: var(--purple); }
.letter p:last-child { margin-bottom: 0; }
.letter .callout { color: var(--green); font-weight: bold; }

.lead { max-width: 620px; margin: 0 auto; color: var(--text-dim); }

/* ---------- Opt-in / CTA form (inside a term-window) ---------- */

.form-card { max-width: 520px; margin: 0 auto; text-align: center; }

.form-card label {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  margin: 16px 0 6px 0;
}

.form-card input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--mono);
  font-size: 15px;
  padding: 10px 12px;
  border-radius: 4px;
}

.form-card input:focus { outline: 1px solid var(--green); }

.form-card .btn { margin-top: 22px; width: 100%; text-align: center; }

.radio-row { display: flex; gap: 24px; justify-content: center; margin: 4px 0 0 0; }
.radio-row label { display: flex; align-items: center; gap: 6px; font-size: 15px; color: var(--text); margin: 0; }
.radio-row input { width: auto; }

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.fine-print { font-size: 13px; color: var(--text-dim); margin-top: 14px; }
.fine-print a:hover { color: var(--purple); }

.footer-trust-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
}
.footer-icon-link { position: relative; display: inline-block; }
.footer-icon-link img { display: block; transition: opacity .15s; }
.footer-icon-link .hover-img { position: absolute; top: 0; left: 0; opacity: 0; }
.footer-icon-link:hover .hover-img { opacity: 1; }
.footer-icon-link.icon-privacy img { width: 20px; height: 20px; }
.footer-icon-link.icon-trust img { width: 30px; height: 30px; }
.footer-bible-link { color: var(--yellow); display: inline-flex; transition: color .15s; }
.footer-bible-link:hover { color: var(--purple); }

.footer-home-link { color: var(--yellow); display: inline-flex; transition: color .15s; }
.footer-home-link:hover { color: var(--purple); }

.footer-contact a:hover { color: var(--purple); }

/* ---------- Card (testimonial) ---------- */

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
}

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

footer { padding: 30px 0; }

.footer-bar {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li { display: flex; align-items: center; gap: 6px; }
.footer-links a { color: var(--green); text-decoration: none; }
.footer-links a:hover { color: var(--purple); }

.contact-icon {
  width: 13px;
  height: 13px;
  color: var(--yellow);
  vertical-align: -2px;
  margin-right: 3px;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a { color: var(--green); display: flex; }
.social-links a:hover { color: var(--purple); }

@media (max-width: 600px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  .nav-path { display: none; }
  .term-body { padding: 22px 18px; }
  .path-row-tag-anchor { padding-right: 24px; }
  .tag-new--outside {
    position: static;
    transform: none;
    margin: 10px 0 0 0;
    animation-name: tagFlashMobile;
  }
}

/* Same flash, but without the translateY(-50%) baked in — this one runs
   on the mobile layout above, where the badge is positioned statically
   instead of centered against the row via transform. */
@keyframes tagFlashMobile {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(255, 222, 89, 0)) brightness(1); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 12px rgba(255, 222, 89, 0.85)) brightness(1.35); }
}

/* ---------- Protection badges (trust.html) ---------- */
/* Pure CSS hover, deliberately no JS -- the site's CSP has no
   'unsafe-inline' on script-src, so inline event handlers get silently
   blocked. Real bug caught live 2026-08-09: worked in a local file preview
   (no CSP applies to file:// pages) but failed on the real deployed site. */
.protect-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card-bg);
  color: var(--text);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 13px;
  transition: border-color .15s, color .15s, transform .15s ease;
}
.protect-badge:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  color: var(--green);
}

/* Real vendor marks — added 2026-08-11 as a rough draft/exploration,
   self-hosted static files only, never a live third-party fetch (that
   would leak visitor IPs on load). */
.badge-icon {
  height: 16px;
  width: auto;
  flex-shrink: 0;
  display: block;
}
.badge-icon--wide { height: 20px; }

/* Standalone vendor icon, no pill — Cloudflare/CrowdSec bracketing the
   AbuseIPDB/GreyNoise/VirusTotal pills. Same hover-lift language as
   protect-badge, native title-attribute tooltip like the Bible Gateway
   footer icon rather than a custom tooltip element. */
.vendor-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s ease, filter .15s ease;
}
.vendor-icon-link img { height: 26px; width: auto; max-width: 26px; object-fit: contain; display: block; }
.vendor-icon-link:hover { transform: translateY(-2px); filter: drop-shadow(0 0 6px rgba(46,255,106,0.35)); }
/* CrowdSec's mark is a compact square icon next to Cloudflare's flatter,
   wider crop — sized down on its own so the two read as the same visual
   weight side by side, not just the same numeric box. */
.vendor-icon-link--crowdsec img { height: 16px; max-width: 16px; }

/* Lighthouse/Mozilla marks sitting next to the grade-detail-mark score itself. */
.grade-mark-icon { height: 40px; width: auto; vertical-align: middle; margin-right: 4px; }
.grade-mark-icon--wide { height: 20px; }
