:root {
  --ink: #101820;
  --ink-soft: #1b2832;
  --paper: #f6f1e7;
  --paper-deep: #e9e0d0;
  --white: #ffffff;
  --blue: #087ac1;
  --blue-dark: #07598d;
  --yellow: #ffd338;
  --red: #d92f24;
  --green: #31b277;
  --muted: #5f6870;
  --line: rgba(16, 24, 32, .16);
  --shadow: 0 26px 70px rgba(16, 24, 32, .16);
  --radius: 18px;
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "Atkinson Hyperlegible", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 400 18px/1.55 var(--body);
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.sr-only, .skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  z-index: 1000;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 14px;
  clip: auto;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 700;
}
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding-block: 110px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font: 800 15px/1 var(--display);
  letter-spacing: .13em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(64px, 8vw, 112px); }
h2 { margin-bottom: 24px; font-size: clamp(46px, 5vw, 72px); }
h3 { margin-bottom: 12px; font-size: 32px; }
p { margin-bottom: 1em; }
.lede { font-size: clamp(21px, 2vw, 27px); line-height: 1.42; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 2px solid var(--ink);
  border-radius: 7px;
  box-shadow: 4px 4px 0 var(--ink);
  text-decoration: none;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.button:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.button:focus-visible, a:focus-visible, input:focus-visible, button:focus-visible, textarea:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.button-primary { color: var(--ink); background: var(--yellow); }
.button-secondary { color: var(--ink); background: var(--white); }
.button-small { min-height: 42px; padding: 9px 15px; box-shadow: 3px 3px 0 var(--ink); font-size: 16px; }
.button-large { min-height: 60px; padding-inline: 28px; font-size: 20px; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
  color: var(--white);
  background: rgba(16, 24, 32, .97);
  backdrop-filter: blur(12px);
}
.nav { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--white); text-decoration: none; }
.brand img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; }
.brand span, .brand strong, .brand small { display: block; }
.brand strong { font: 800 24px/.9 var(--display); letter-spacing: .01em; text-transform: uppercase; }
.brand small { margin-top: 5px; color: #b8c3cb; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: 26px; }
.nav-menu > a:not(.button) { color: #e4eaee; text-decoration: none; font-weight: 700; }
.nav-menu > a:not(.button):hover { color: var(--yellow); }
.nav-toggle { display: none; width: 48px; height: 44px; padding: 10px; border: 1px solid rgba(255,255,255,.24); border-radius: 6px; background: transparent; }
.nav-toggle i { display: block; height: 2px; margin: 5px 0; background: var(--white); }
.site-header .button { border-color: var(--yellow); box-shadow: 3px 3px 0 var(--blue); }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(16,24,32,.99) 0 48%, rgba(16,24,32,.85) 70%, rgba(16,24,32,.96) 100%),
    repeating-linear-gradient(0deg, transparent 0 5px, rgba(255,255,255,.025) 5px 6px),
    var(--ink);
}
.hero::after {
  position: absolute;
  right: -90px;
  bottom: -250px;
  width: 650px;
  height: 650px;
  border: 90px solid rgba(8,122,193,.17);
  border-radius: 50%;
  content: "";
}
.hero-grid { display: grid; min-height: 750px; grid-template-columns: .83fr 1.17fr; align-items: center; gap: 46px; padding-block: 70px 90px; }
.hero-copy { position: relative; z-index: 2; }
.status-line { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 28px; color: #d8e2e7; font-size: 15px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(49,178,119,.17); }
.hero h1 { max-width: 660px; margin-bottom: 26px; }
.hero h1 span { display: block; color: var(--yellow); }
.hero .lede { max-width: 640px; color: #d0dbe1; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 33px; }
.alpha-note { max-width: 600px; margin: 28px 0 0; color: #aebcc5; font-size: 16px; }
.alpha-note strong { color: var(--white); }
.hero-media { position: relative; z-index: 2; min-width: 0; padding: 30px 0 110px 35px; }
.broadcast-frame { overflow: hidden; border: 8px solid #27343d; border-radius: 15px; background: #05080a; box-shadow: 18px 22px 0 rgba(0,0,0,.28), 0 40px 100px rgba(0,0,0,.38); transform: rotate(1.2deg); }
.broadcast-frame img { width: 100%; aspect-ratio: 1.96; object-fit: cover; }
.frame-top, .screen-label { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 9px 14px; color: #b9c5cb; background: #111a20; font: 700 12px/1 var(--body); letter-spacing: .1em; text-transform: uppercase; }
.frame-top span:last-child { color: var(--green); }
.hero-butler { position: absolute; z-index: 3; bottom: -20px; left: -75px; width: 305px; filter: drop-shadow(10px 18px 18px rgba(0,0,0,.42)); transform: rotate(-4deg); }

.signal-strip { border-block: 1px solid #c39b00; color: var(--ink); background: var(--yellow); }
.signal-flow { display: flex; min-height: 84px; align-items: center; justify-content: center; gap: 22px; font: 700 25px/1 var(--display); text-transform: uppercase; }
.signal-flow strong { font-size: 31px; }
.signal-flow i { width: 52px; height: 3px; position: relative; background: var(--ink); }
.signal-flow i::after { position: absolute; top: -5px; right: -1px; border-width: 6px 0 6px 9px; border-style: solid; border-color: transparent transparent transparent var(--ink); content: ""; }

.section-light { background: #fffdf8; }
.section-heading { max-width: 900px; margin-bottom: 50px; }
.section-heading > p:not(.eyebrow), .split-heading > p { max-width: 760px; color: var(--muted); font-size: 21px; }
.split-heading { display: grid; max-width: none; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 70px; }
.split-heading > p { margin-bottom: 28px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 2px solid var(--ink); }
.process-grid article { min-height: 310px; padding: 36px 34px; border-right: 1px solid var(--line); }
.process-grid article:last-child { border-right: 0; }
.process-number { display: block; margin-bottom: 60px; color: var(--red); font: 800 52px/1 var(--display); }
.process-grid p { color: var(--muted); }

.map-section { overflow: hidden; background: var(--paper-deep); }
.visual-grid { display: grid; grid-template-columns: .68fr 1.32fr; align-items: center; gap: 58px; }
.visual-copy p:not(.eyebrow) { color: var(--muted); font-size: 20px; }
.plain-checks { padding: 0; list-style: none; }
.plain-checks li { position: relative; margin: 15px 0; padding-left: 30px; font-weight: 700; }
.plain-checks li::before { position: absolute; left: 0; color: var(--red); content: "■"; font-size: 13px; }
.product-screen { overflow: hidden; margin: 0; border: 7px solid var(--ink); border-radius: 11px; background: var(--ink); box-shadow: var(--shadow); }
.product-screen img { width: 100%; }
.screen-label strong { color: var(--yellow); }
.map-screen { transform: rotate(1deg); }

.kodi-section { color: var(--white); background: var(--blue-dark); }
.kodi-section .eyebrow { color: var(--yellow); }
.kodi-section .section-heading > p:not(.eyebrow) { color: #d3e7f2; }
.kodi-grid { display: grid; grid-template-columns: 1.28fr .72fr; gap: 24px; align-items: start; }
.kodi-main { transform: rotate(-.6deg); }
.kodi-side { margin-top: 120px; transform: rotate(1.2deg); }
.kodi-main img { aspect-ratio: 1.96; object-fit: cover; }
.kodi-side img { aspect-ratio: 1.75; object-fit: cover; }

.care-section { color: var(--white); background: var(--ink); }
.care-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 70px; }
.care-section .eyebrow { color: var(--yellow); }
.care-copy p:not(.eyebrow) { color: #c4d0d7; font-size: 21px; }
.care-screen { transform: rotate(-1deg); }
.alpha-box { display: grid; gap: 3px; margin-top: 28px; padding: 18px 20px; border-left: 5px solid var(--yellow); color: var(--ink); background: var(--white); }
.alpha-box span { color: var(--muted); font-size: 16px; }

.use-section { background: var(--white); }
.use-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: end; gap: 80px; }
.use-layout p:last-child { margin-bottom: 20px; color: var(--muted); font-size: 24px; }

.install-cta { padding-block: 65px; color: var(--ink); background: var(--yellow); }
.install-cta-grid { display: grid; grid-template-columns: 165px 1fr auto; align-items: center; gap: 35px; }
.install-cta img { width: 165px; filter: drop-shadow(5px 8px 0 rgba(16,24,32,.18)); }
.install-cta h2 { margin-bottom: 14px; }
.install-cta p:not(.eyebrow) { max-width: 700px; margin-bottom: 0; }
.install-cta .eyebrow { color: var(--blue-dark); }
.install-cta .button-primary { background: var(--white); }

.footer { padding-block: 55px 25px; color: #d4dde2; background: #081016; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .8fr 1.1fr; gap: 50px; padding-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 15px; }
.footer-brand img { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { color: var(--white); font-family: var(--display); font-size: 25px; line-height: 1; text-transform: uppercase; }
.footer-brand span { margin-top: 7px; color: #91a3ad; font-size: 15px; }
.footer-links { display: grid; align-content: start; gap: 9px; }
.footer-links a, .support-mini a, .legal-line a { color: var(--white); font-weight: 700; }
.support-mini { display: grid; gap: 7px; }
.support-mini span { color: #91a3ad; font-size: 15px; }
.support-mini a { width: fit-content; color: var(--yellow); }
.legal-line { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); font-size: 14px; }
.legal-line p { max-width: 930px; margin: 0; color: #91a3ad; }
.legal-line a { flex: none; }
.compact-footer { padding-top: 30px; }

/* Installer */
.installer-hero { color: var(--white); background: var(--ink); }
.installer-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; padding-block: 80px; }
.installer-hero h1 { margin-bottom: 20px; }
.installer-hero .lede { max-width: 800px; margin-bottom: 0; color: #c7d3da; }
.installer-safety { display: flex; align-items: flex-start; gap: 16px; padding: 22px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); }
.installer-safety strong, .installer-safety span { display: block; }
.installer-safety span { color: #b7c5cd; font-size: 15px; }
.lock-icon { display: grid !important; width: 26px; height: 26px; flex: none; place-items: center; border-radius: 50%; color: var(--green) !important; border: 2px solid var(--green); font-size: 10px !important; }
.installer-section { background: #fffdf8; }
.installer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr); align-items: start; gap: 28px; }
.builder { display: grid; min-width: 0; gap: 22px; }
fieldset { min-width: 0; margin: 0; padding: 28px; border: 2px solid var(--ink); border-radius: 8px; background: var(--white); box-shadow: 5px 5px 0 var(--paper-deep); }
legend { padding: 0 10px 0 0; font: 800 31px/1 var(--display); text-transform: uppercase; }
legend span { display: inline-grid; width: 35px; height: 35px; margin-right: 9px; place-items: center; color: var(--white); background: var(--red); font-size: 22px; }
.fieldset-intro { margin: 0 0 20px; color: var(--muted); }
.option-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.option-grid label, .guided-option { display: flex; gap: 12px; align-items: flex-start; padding: 15px; border: 1px solid var(--line); background: #f8f6f0; cursor: pointer; }
.option-grid label:has(input:checked), .guided-option:has(input:checked) { border-color: var(--blue); box-shadow: inset 4px 0 0 var(--blue); background: #edf7fc; }
.option-grid input, .guided-option input, .scan-option input, .country-pill input { width: 18px; height: 18px; margin-top: 4px; accent-color: var(--blue); }
.option-grid strong, .option-grid small, .guided-option strong, .guided-option small { display: block; }
.option-grid small, .guided-option small { margin-top: 3px; color: var(--muted); line-height: 1.35; }
.country-tools { display: flex; gap: 11px; margin-bottom: 15px; }
.country-tools input { min-width: 0; flex: 1; padding: 12px 14px; border: 2px solid var(--ink); border-radius: 5px; background: var(--white); }
.text-button { padding: 4px 5px; border: 0; color: var(--blue-dark); background: transparent; font-weight: 700; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.scan-option { display: flex; gap: 9px; margin: 8px 0 16px; font-weight: 700; }
.country-grid { display: grid; max-height: 390px; grid-template-columns: repeat(3, 1fr); gap: 7px; overflow: auto; padding: 4px 8px 4px 2px; }
.country-pill { display: flex; gap: 8px; align-items: center; padding: 9px 10px; border: 1px solid var(--line); background: var(--white); cursor: pointer; font-size: 15px; }
.country-pill:has(input:checked) { border-color: var(--blue); background: #edf7fc; }
.country-pill[hidden] { display: none; }
.country-flag { font-size: 19px; }
.selection-summary { margin: 13px 0 0; color: var(--muted); font-size: 15px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.command-panel { position: sticky; top: 106px; min-width: 0; padding: 30px; border: 7px solid #27343d; border-radius: 8px; color: var(--white); background: #071218; box-shadow: var(--shadow); }
.command-kicker { color: var(--yellow); font: 800 14px/1 var(--display); letter-spacing: .12em; text-transform: uppercase; }
.command-panel h2, .command-panel h3 { margin: 13px 0 16px; font-size: 42px; }
.command-panel p { color: #b9c8cf; }
.command-panel code { color: var(--white); }
.command-panel pre { overflow: auto; padding: 16px; border: 1px solid #31424c; color: #d9f6e9; background: #020709; white-space: pre-wrap; word-break: break-word; font: 14px/1.5 Consolas, monospace; }
.security-note { display: grid; gap: 4px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.16); font-size: 15px; }
.security-note span { color: #9fb0b8; }
.instructions-section { color: var(--white); background: var(--blue-dark); }
.instructions { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; }
.instructions .eyebrow { color: var(--yellow); }
.instructions > div > p:last-child { color: #d0e2ec; }
.instructions ol { margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.instructions li { position: relative; min-height: 72px; padding: 3px 0 26px 70px; border-left: 2px solid rgba(255,255,255,.28); counter-increment: steps; }
.instructions li::before { position: absolute; top: 0; left: -25px; display: grid; width: 48px; height: 48px; place-items: center; color: var(--ink); background: var(--yellow); content: counter(steps); font: 800 25px/1 var(--display); }
.installer-support { padding-block: 70px; background: var(--paper-deep); }
.installer-support-grid { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 45px; }
.installer-support h2 { margin-bottom: 0; font-size: 45px; }
.installer-support p { margin-bottom: 0; color: var(--muted); }
.installer-support a { padding: 13px 16px; border: 2px solid var(--ink); background: var(--yellow); box-shadow: 4px 4px 0 var(--ink); font-weight: 700; text-decoration: none; }

dialog { width: min(780px, calc(100% - 28px)); padding: 0; border: 0; border-radius: 8px; box-shadow: 0 35px 100px rgba(0,0,0,.4); }
dialog::backdrop { background: rgba(5,12,17,.8); backdrop-filter: blur(4px); }
.dialog-card { padding: 34px; color: var(--ink); background: #fffdf8; }
.dialog-card h2 { margin: 12px 0 15px; font-size: 54px; }
.dialog-card textarea { width: 100%; margin: 12px 0 20px; padding: 16px; border: 2px solid var(--ink); border-radius: 4px; resize: vertical; background: #eef3f4; font: 14px/1.5 Consolas, monospace; }
.dialog-actions { justify-content: flex-end; }

/* Credits */
.credits-hero { padding-block: 85px; color: var(--white); background: var(--ink); }
.credits-hero h1 { margin-bottom: 20px; }
.credits-hero .lede { max-width: 800px; margin-bottom: 0; color: #c7d3da; }
.credits-section { background: #fffdf8; }
.credits-output { max-width: 960px; padding: 45px; border: 2px solid var(--ink); background: var(--white); box-shadow: 8px 8px 0 var(--paper-deep); }
.credits-output > h1:first-child { display: none; }
.credits-output h1 { font-size: 54px; }
.credits-output h2 { margin: 55px 0 22px; padding-bottom: 10px; border-bottom: 3px solid var(--ink); font-size: 46px; }
.credits-output h3 { margin-top: 38px; font-size: 34px; }
.credits-output p, .credits-output li { color: #36434b; }
.credits-output code { padding: 2px 5px; color: var(--ink); background: var(--paper-deep); }
.credits-output a { color: var(--blue-dark); overflow-wrap: anywhere; }

@media (max-width: 1000px) {
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-top: 75px; }
  .hero-copy { max-width: 780px; }
  .hero-media { max-width: 850px; margin-inline: auto; padding-left: 80px; }
  .hero-butler { left: -20px; }
  .split-heading, .visual-grid, .care-grid, .use-layout, .installer-hero-grid, .instructions { grid-template-columns: 1fr; gap: 35px; }
  .signal-flow { flex-wrap: wrap; padding-block: 20px; }
  .kodi-grid { grid-template-columns: 1fr; }
  .kodi-side { width: 72%; margin: 0 0 0 auto; }
  .install-cta-grid { grid-template-columns: 135px 1fr; }
  .install-cta .button { grid-column: 2; justify-self: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .support-mini { grid-column: 1 / -1; }
  .installer-grid { grid-template-columns: 1fr; }
  .command-panel { position: static; }
  .installer-support-grid { grid-template-columns: 1fr 1fr; }
  .installer-support-grid a { grid-column: 2; justify-self: start; }
}

@media (max-width: 760px) {
  body { font-size: 17px; }
  .shell { width: min(100% - 26px, 1180px); }
  .section { padding-block: 76px; }
  h1 { font-size: clamp(50px, 15vw, 68px); }
  h2 { font-size: clamp(42px, 13vw, 58px); }
  .nav { min-height: 68px; }
  .brand img { width: 48px; height: 48px; }
  .brand strong { font-size: 20px; }
  .brand small { display: none; }
  .nav-toggle { display: block; }
  .nav-menu { position: absolute; top: 68px; right: 0; left: 0; display: none; align-items: stretch; gap: 0; padding: 12px 14px 18px; border-bottom: 1px solid rgba(255,255,255,.15); background: var(--ink); }
  .nav-menu.is-open { display: grid; }
  .nav-menu > a { padding: 12px; }
  .nav-menu .button { margin-top: 8px; }
  .hero-grid { padding-block: 55px 65px; }
  .hero-media { padding: 10px 0 80px 35px; }
  .hero-butler { bottom: -10px; left: -28px; width: 205px; }
  .broadcast-frame { border-width: 5px; box-shadow: 10px 13px 0 rgba(0,0,0,.25); }
  .frame-top { font-size: 9px; }
  .signal-flow { gap: 10px; font-size: 18px; }
  .signal-flow strong { width: 100%; text-align: center; font-size: 26px; }
  .signal-flow i { width: 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-grid article:last-child { border-bottom: 0; }
  .process-number { margin-bottom: 24px; }
  .kodi-side { width: 100%; }
  .install-cta-grid { grid-template-columns: 1fr; text-align: center; }
  .install-cta img { margin-inline: auto; }
  .install-cta .button { grid-column: auto; justify-self: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .support-mini { grid-column: auto; }
  .legal-line { flex-direction: column; gap: 18px; }
  .option-grid, .country-grid { grid-template-columns: 1fr 1fr; }
  .country-tools { flex-wrap: wrap; }
  .country-tools input { flex-basis: 100%; }
  .installer-support-grid { grid-template-columns: 1fr; }
  .installer-support-grid a { grid-column: auto; justify-self: start; }
  .credits-output { padding: 25px 20px; }
}

@media (max-width: 500px) {
  .hero-actions, .button-row { flex-direction: column; align-items: stretch; }
  .hero-actions .button, .button-row .button { width: 100%; }
  .option-grid, .country-grid { grid-template-columns: 1fr; }
  fieldset { padding: 21px 17px; }
  legend { font-size: 26px; }
  .dialog-card { padding: 25px 19px; }
}

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

@media print {
  .site-header, .installer-hero, .builder, .installer-support, .footer, dialog { display: none !important; }
  body { background: #fff; }
  .installer-section, .instructions-section { padding: 20px 0; color: #000; background: #fff; }
  .installer-grid, .instructions { display: block; }
  .command-panel { display: block; position: static; color: #000; background: #fff; border: 1px solid #000; box-shadow: none; }
  .command-panel p, .security-note span { color: #000; }
  .instructions li { border-color: #999; }
}
