:root {
  --bg: #080b12;
  --bg-soft: #0c111c;
  --panel: rgba(17, 24, 39, .72);
  --panel-strong: rgba(15, 23, 42, .92);
  --line: rgba(226, 232, 240, .13);
  --line-bright: rgba(34, 211, 238, .28);
  --text: #f8fafc;
  --soft: #d7deea;
  --muted: #9aa7bd;
  --faint: #6f7c92;
  --cyan: #22d3ee;
  --blue: #60a5fa;
  --violet: #8b5cf6;
  --green: #34d399;
  --gold: #d6a85d;
  --font: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --head: "Space Grotesk", Inter, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --content-max: 1180px;
  --page-gutter: 48px;
  --section-y: clamp(48px, 5vw, 68px);
  --card-radius: 8px;
  --control-radius: 999px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}
body {
  margin: 0;
  color: var(--text);
  font-family: var(--font);
  background:
    radial-gradient(circle at 16% 0%, rgba(34, 211, 238, .16), transparent 30rem),
    radial-gradient(circle at 88% 4%, rgba(139, 92, 246, .14), transparent 28rem),
    linear-gradient(180deg, var(--bg), var(--bg-soft) 46%, #070a10);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(226, 232, 240, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 232, 240, .032) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}
a { color: inherit; text-decoration: none; }

.card:focus-visible, .link-card:focus-visible, .research-card:focus-visible, .experience-card:focus-visible,
a:focus-visible, button:focus-visible {
  outline: 3px solid rgba(34, 211, 238, .72);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: var(--control-radius);
  padding: 10px 14px;
  background: var(--cyan);
  color: #061018;
  font-weight: 900;
}
.skip-link:focus { transform: translateY(0); }
.wrap { width: min(var(--content-max), calc(100% - var(--page-gutter))); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 11, 18, .76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 900 14px/1 var(--head);
  letter-spacing: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-bright);
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(34, 211, 238, .08);
  font: 900 12px/1 var(--mono);
}
.nav-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.is-active {
  color: var(--cyan);
}
.nav-cta {
  border: 1px solid var(--line-bright);
  border-radius: 999px;
  padding: 10px 15px;
  background: rgba(34, 211, 238, .08);
  color: #e0faff;
  font-weight: 800;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.nav-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(34, 211, 238, .5);
  background: rgba(34, 211, 238, .13);
}
.menu-button { display: none; }

.hero {
  min-height: min(660px, calc(100vh - 66px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
  padding: 42px 0 34px;
}
.hero-copy { max-width: 850px; }
.hero-kicker { margin-bottom: 14px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font: 800 11px/1.4 var(--mono);
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0 0 18px;
  font-family: var(--head);
  font-size: clamp(42px, 5.1vw, 62px);
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: balance;
}
h2 {
  margin: 0;
  font-family: var(--head);
  font-size: clamp(32px, 3.3vw, 44px);
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}
.accent {
  background: linear-gradient(90deg, #fff, var(--cyan) 45%, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead, .sub {
  max-width: 760px;
  margin: 0;
  color: var(--soft);
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.58;
}
.sub { color: var(--muted); font-size: 16px; line-height: 1.62; }
.stacked-copy { display: grid; gap: 16px; }
.stacked-copy p {
  margin: 0;
  color: var(--soft);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.68;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 17px;
  background: rgba(255, 255, 255, .045);
  font-weight: 900;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(226, 232, 240, .26);
}
.btn.primary {
  border: 0;
  color: #061018;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 18px 60px rgba(34, 211, 238, .18);
}
.btn.subtle {
  border-color: rgba(214, 168, 93, .34);
  color: #fff2d2;
  background: rgba(214, 168, 93, .08);
}

.hero-portrait {
  align-self: stretch;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  gap: 12px;
  min-width: 0;
}
.portrait-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .2);
  border-radius: var(--card-radius);
  background:
    radial-gradient(circle at 28% 0%, rgba(34, 211, 238, .18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 24px 80px rgba(0, 0, 0, .24);
}
.portrait-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(8, 11, 18, .52));
}
.portrait-shell img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}
.portrait-card {
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: var(--card-radius);
  padding: 16px;
  background: rgba(255, 255, 255, .045);
}
.portrait-label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font: 800 11px/1 var(--mono);
  letter-spacing: 0;
  text-transform: uppercase;
}
.portrait-card strong {
  display: block;
  font-family: var(--head);
  font-size: 20px;
  line-height: 1.16;
}
.portrait-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.portrait-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.portrait-facts span {
  color: #dffaff;
}

.section {
  scroll-margin-top: 72px;
  padding: var(--section-y) 0;
}
.section + .section {
  padding-top: clamp(44px, 4.8vw, 64px);
}
.section-head {
  display: grid;
  grid-template-columns: minmax(410px, .9fr) minmax(0, 1.1fr);
  grid-template-rows: auto auto;
  column-gap: 42px;
  row-gap: 12px;
  align-items: start;
  margin-bottom: 24px;
}
/* Flatten inner wrapper so eyebrow + h2 become direct grid items in col 1 */
.section-head > div:first-child {
  display: contents;
}
/* Eyebrow: col 1, row 1 - zero margin since row-gap handles spacing */
.section-head .eyebrow {
  margin-bottom: 0;
  grid-column: 1;
  grid-row: 1;
}
/* h2: col 1, row 2 */
.section-head h2 {
  max-width: 620px;
  grid-column: 1;
  grid-row: 2;
}
/* Right column (sub or stacked-copy): col 2, row 2 - aligns with h2, not eyebrow */
.section-head > *:not(div:first-child) {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.card {
  min-height: 205px;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025));
  transition: transform .28s cubic-bezier(.16, 1, .3, 1), border-color .28s ease, box-shadow .28s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(148, 163, 184, .28);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .2), 0 0 0 1px rgba(34, 211, 238, .08);
}
.num {
  color: var(--gold);
  font: 900 12px var(--mono);
  letter-spacing: 0;
}
.card h3 {
  margin: 22px 0 10px;
  font-family: var(--head);
  font-size: 21px;
  letter-spacing: 0;
}
.card p {
  margin: 0;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.58;
}

.experience-timeline {
  position: relative;
  display: grid;
  gap: 14px;
}
.experience-timeline::before {
  content: "";
  position: absolute;
  inset: 18px auto 18px 24px;
  width: 1px;
  background: linear-gradient(180deg, rgba(34, 211, 238, .08), rgba(34, 211, 238, .45), rgba(34, 211, 238, .08));
}
.experience-card {
  position: relative;
  display: grid;
  grid-template-columns: 176px 1fr;
  gap: 22px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: var(--card-radius);
  padding: 22px 22px 22px 64px;
  background:
    radial-gradient(circle at 10% 0%, rgba(34, 211, 238, .13), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, .058), rgba(255, 255, 255, .024));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07);
  transition: border-color .28s ease, box-shadow .28s ease;
}
.experience-card:hover {
  border-color: rgba(148, 163, 184, .28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 16px 50px rgba(0, 0, 0, .15);
}
.experience-card::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 31px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  background: #08111f;
  box-shadow: 0 0 0 7px rgba(34, 211, 238, .08);
}
.experience-rail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  padding-left: 0;
}
.date-range {
  width: max-content;
  border: 1px solid rgba(34, 211, 238, .28);
  border-radius: var(--control-radius);
  padding: 8px 11px;
  background: rgba(34, 211, 238, .08);
  color: #dffaff;
  font: 900 12px/1 var(--mono);
  letter-spacing: 0;
}
.company-label {
  color: var(--cyan);
  font: 900 13px/1.2 var(--mono);
  letter-spacing: 0;
  text-transform: uppercase;
}
.experience-content {
  min-width: 0;
}
.experience-content b {
  display: block;
  color: var(--text);
  font-family: var(--head);
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.12;
  letter-spacing: 0;
}
.experience-domain {
  display: block;
  margin-top: 7px;
  color: #eef6ff;
  font-size: 17px;
  line-height: 1.45;
}
.experience-content p {
  margin: 16px 0 0;
  max-width: 820px;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.64;
}
.focus-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 16px;
}
.focus-strip span, .portrait-facts span {
  border: 1px solid rgba(34, 211, 238, .18);
  border-radius: var(--control-radius);
  padding: 7px 9px;
  background: rgba(34, 211, 238, .055);
  font: 800 11px/1 var(--mono);
}
.focus-strip span {
  border: 1px solid rgba(34, 211, 238, .18);
  border-radius: var(--control-radius);
  padding: 7px 9px;
  color: #c8f7ff;
  background: rgba(34, 211, 238, .055);
  font: 800 11px/1.15 var(--mono);
}
.experience-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.58;
}
.experience-content li::marker { color: var(--cyan); }
.research-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  grid-auto-rows: 1fr;
  align-items: stretch;
}
#research .section-head {
  margin-bottom: 22px;
}
.research-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: var(--card-radius);
  padding: 16px;
  background:
    radial-gradient(circle at 18% 0%, rgba(34, 211, 238, .13), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .024));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07);
  transition: transform .28s cubic-bezier(.16, 1, .3, 1), border-color .28s ease, box-shadow .28s ease;
}
.research-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, .3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 20px 60px rgba(0, 0, 0, .18);
}
.research-card h3 {
  margin: 12px 0 10px;
  color: var(--text);
  font-family: var(--head);
  font-size: clamp(16px, 1.22vw, 17px);
  line-height: 1.18;
  letter-spacing: 0;
}
.research-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}
.research-link {
  width: max-content;
  margin-top: auto;
  padding-top: 12px;
  color: var(--cyan);
  font: 900 12px/1.2 var(--mono);
  letter-spacing: 0;
  text-transform: uppercase;
}
.research-link::after {
  content: " ↗";
}
.link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.link-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 196px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: var(--card-radius);
  padding: 20px;
  background:
    radial-gradient(circle at 20% 0%, rgba(34, 211, 238, .18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .026));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 22px 70px rgba(0, 0, 0, .18);
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.link-card::after {
  content: "↗";
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(34, 211, 238, .26);
  border-radius: var(--control-radius);
  color: var(--cyan);
  background: rgba(6, 16, 24, .58);
  font-weight: 900;
  transition: transform .18s ease, background .18s ease;
}
.link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, .46);
  background:
    radial-gradient(circle at 20% 0%, rgba(34, 211, 238, .24), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .034));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 30px 90px rgba(34, 211, 238, .09);
}
.link-card:hover::after {
  transform: translate(3px, -3px);
  background: rgba(34, 211, 238, .12);
}
.link-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(34, 211, 238, .32);
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(34, 211, 238, .08);
  font: 900 13px/1 var(--mono);
  letter-spacing: 0;
  text-transform: uppercase;
}
.link-content {
  display: block;
}
.link-card b {
  display: block;
  font-family: var(--head);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
}
.link-content > span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.link-tag {
  align-self: flex-start;
  justify-self: start;
  margin-top: auto;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: var(--control-radius);
  padding: 7px 10px;
  color: var(--soft);
  background: rgba(255, 255, 255, .045);
  font: 800 11px/1 var(--mono);
  letter-spacing: 0;
  text-transform: uppercase;
}
.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 24px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Entrance animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fade-up {
  opacity: 0;
  transform: translateY(24px);
}
.fade-up.is-visible {
  animation: fadeUp .7s cubic-bezier(.16, 1, .3, 1) forwards;
}

/* Hero toolkit strip */
.hero-metrics {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: var(--card-radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 211, 238, .08), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.hero-metrics::-webkit-scrollbar { display: none; }
.hero-stack-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 0 17px;
  flex-shrink: 0;
}
.hero-stack-item:first-child { padding-left: 0; }
.hero-stack-item:last-child  { padding-right: 0; }
.hero-stack-name {
  font: 900 20px/1 var(--head);
  color: var(--text);
  letter-spacing: 0;
  white-space: nowrap;
}
.hero-stack-label {
  font: 500 10px/1.3 var(--mono);
  color: var(--muted);
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-stack-divider {
  width: 1px;
  min-width: 1px;
  height: 36px;
  background: rgba(148, 163, 184, .2);
  flex-shrink: 0;
}

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

@media (max-width: 1100px) {
  .link-grid { grid-template-columns: repeat(2, 1fr); }
  .link-card { min-height: 178px; }
}

@media (max-width: 960px) {
  .section-head {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .section-head, 
  .section-head .eyebrow { margin-bottom: 12px; }
  .section-head > *:not(div:first-child) { grid-column: 1; grid-row: auto; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 44px 0 36px;
  }
  .hero-portrait {
    max-width: 520px;
  }
  .section { padding: 54px 0; }
  .section + .section { padding-top: 48px; }
  .section-head { gap: 16px; }
  .experience-timeline::before { left: 18px; }
  .experience-card { grid-template-columns: 1fr; }
  .experience-card::before {
    left: 12px;
    top: 32px;
  }
  .experience-card {
    padding-left: 44px;
  }
  .experience-rail {
    gap: 10px;
    padding-left: 0;
  }
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .research-grid { grid-template-columns: 1fr; }
  .nav { min-height: 64px; }
  .menu-button {
    display: inline-flex;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 12px;
    background: rgba(255, 255, 255, .045);
    color: var(--text);
    font: 800 13px/1 var(--font);
  }
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    display: none;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--card-radius);
    padding: 10px;
    background: rgba(8, 11, 18, .96);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .38);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a {
    border-radius: var(--card-radius);
    padding: 14px;
  }
  .nav-links a:hover { background: rgba(255, 255, 255, .055); }
  .nav-cta { display: none; }
  .cards { grid-template-columns: 1fr; }
  .link-grid { grid-template-columns: 1fr; }
  .link-card { min-height: 0; }
}

@media (max-width: 560px) {
  :root { --page-gutter: 28px; }
  .brand span:last-child { display: none; }
  h1 {
    font-size: clamp(38px, 11.5vw, 50px);
    line-height: 1.06;
  }
  .hero {
    padding-top: 36px;
  }
  .hero-lead {
    font-size: 16px;
    line-height: 1.54;
  }
  .actions .btn { width: 100%; }
  .hero-metrics {
    flex-wrap: wrap;
    padding: 16px;
  }
  .portrait-shell img {
    min-height: 300px;
  }
  .hero-stack-item {
    padding: 8px 14px;
    align-items: center;
  }
  .hero-stack-divider {
    display: none;
  }
  
}

@media print {
  body {
    background: #fff;
    color: #111;
  }
  body::before {
    display: none;
  }
  .site-header, .footer, .skip-link, .actions, .nav-cta, .menu-button {
    display: none;
  }
  .hero {
    min-height: auto;
    padding: 20px 0;
  }
  .hero-metrics {
    border-color: #ddd;
    background: #f8f8f8;
    backdrop-filter: none;
  }
  .accent {
    background: none;
    color: #111;
    -webkit-text-fill-color: #111;
  }
  .card, .experience-card, .research-card, .link-card,
  .eyebrow, .num, .company-label, .date-range {
    color: #333;
    background: none;
    border-color: #ccc;
  }
  .hero-metric-number, 
  .hero-metric-label, 
  .hero-metric-divider, 
  a { color: #111; }
  .research-link { color: #0066cc; }
  .experience-timeline::before { background: #ccc; }
  .experience-card::before { border-color: #333; background: #fff; box-shadow: none; }
  
  .focus-strip span, .link-tag { background: #f0f0f0; border-color: #ccc; color: #333; }
  
}
