/* =========================================================================
   Curious Orbit — refreshed visual system
   ----------------------------------------------------------------------- */

:root {
  /* Palette */
  --teal: #164e67;
  --teal-deep: #0d3a4f;
  --teal-ink: #0a2837;
  --ink: #11202a;
  --slate: #4a5c66;
  --slate-soft: #7a8a92;
  --rule: #d9d1c0;
  --rule-soft: #e8e2d4;
  --cream: #f6f4ef;
  --cream-deep: #efe9dc;
  --paper: #ffffff;
  --gold: #b8893a;
  --gold-soft: #d9b97a;

  /* Type direction (default = Editorial). Switched by data-type-direction. */
  --font-display: "Newsreader", "Source Serif 4", Georgia, serif;
  --font-body: "Geist", "Söhne", -apple-system, sans-serif;
  --font-mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;
  --display-weight: 400;
  --display-tracking: -0.01em;
  --display-style: normal;

  /* Rhythm */
  --gutter: clamp(20px, 4vw, 56px);
  --shell: 1180px;
  --shell-narrow: 880px;
  --section-pad: clamp(72px, 11vw, 144px);
}

[data-type-direction="operator"] {
  --font-display: "Geist", "Söhne", -apple-system, sans-serif;
  --font-body: "Geist", "Söhne", -apple-system, sans-serif;
  --font-mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;
  --display-weight: 500;
  --display-tracking: -0.025em;
}

/* =========================================================================
   Base
   ----------------------------------------------------------------------- */
* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

html {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  background: var(--cream);
  text-wrap: pretty;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-style: var(--display-style);
  letter-spacing: var(--display-tracking);
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }

::selection { background: var(--teal); color: var(--cream); }

/* =========================================================================
   Layout helpers
   ----------------------------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.shell--narrow {
  max-width: var(--shell-narrow);
}

.section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.section--tight {
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(40px, 6vw, 80px);
}

.section--paper { background: var(--paper); }
.section--ink { background: var(--teal-ink); color: var(--cream); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--cream); }

.hairline {
  height: 1px;
  background: var(--rule);
  border: 0;
  margin: 0;
}
.hairline--soft { background: var(--rule-soft); }
.hairline--cream { background: rgba(246,244,239,0.15); }

/* =========================================================================
   Type scale
   ----------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--teal);
  display: inline-block;
}
.section--ink .eyebrow { color: var(--gold-soft); }
.section--ink .eyebrow::before { background: var(--gold-soft); }

.display-xl {
  font-size: clamp(48px, 7.4vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.display-l {
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.022em;
}

.display-m {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.018em;
}

.display-s {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.012em;
}

.lede {
  font-size: clamp(19px, 1.6vw, 23px);
  line-height: 1.5;
  color: var(--slate);
  max-width: 60ch;
  text-wrap: pretty;
}

.body-prose {
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate);
  max-width: 65ch;
}
.body-prose p + p { margin-top: 1em; }

.caption {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--slate-soft);
  text-transform: uppercase;
}

/* Editorial accent (used for "by design" etc.) */
.accent-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--teal);
}
[data-type-direction="operator"] .accent-italic {
  font-style: normal;
  font-weight: 500;
  color: var(--teal);
}

/* =========================================================================
   Nav
   ----------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--cream) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule-soft);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.nav__brand-mark { width: 28px; height: 28px; display: block; object-fit: contain; }
.nav__brand-word {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: -0.01em;
  font-weight: 500;
  white-space: nowrap;
}
[data-type-direction="operator"] .nav__brand-word {
  font-family: var(--font-body);
  letter-spacing: -0.02em;
}
.nav__brand-word span { color: var(--teal); }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 32px);
  font-size: 14.5px;
  color: var(--slate);
}
.nav__links a {
  text-decoration: none;
  position: relative;
  padding: 6px 2px;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a.is-current { color: var(--ink); }
.nav__links a.is-current::after {
  content: "";
  position: absolute;
  left: 2px; right: 2px; bottom: -1px;
  height: 1px;
  background: var(--teal);
}

.nav__cta {
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease;
}
.nav__cta:hover { background: var(--ink); color: var(--cream); }

@media (max-width: 760px) {
  .nav__links { gap: 14px; }
  .nav__links .nav__link--hide-sm { display: none; }
}

/* =========================================================================
   Buttons
   ----------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--teal); color: var(--cream); }
.btn--primary:hover { background: var(--teal-deep); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--link {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--teal);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.btn--link:hover { transform: none; color: var(--teal-deep); }

.btn .arrow {
  width: 16px; height: 16px;
  transition: transform 200ms ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* =========================================================================
   Hero
   ----------------------------------------------------------------------- */
.hero {
  padding-top: clamp(64px, 9vw, 120px);
  padding-bottom: clamp(48px, 8vw, 96px);
  position: relative;
}

.hero__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(40px, 6vw, 64px);
  gap: 24px;
  flex-wrap: wrap;
}
.hero__meta-right {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--slate-soft);
  text-transform: uppercase;
}

.hero__title {
  max-width: 16ch;
}
.hero__title .name {
  display: block;
  color: var(--teal);
}
.hero__title .descriptor {
  display: block;
}

.hero__lede {
  margin-top: clamp(28px, 3.4vw, 44px);
  max-width: 56ch;
}

.hero__actions {
  margin-top: clamp(32px, 4vw, 48px);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__byline {
  margin-top: clamp(56px, 8vw, 96px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
}
@media (max-width: 720px) {
  .hero__byline { grid-template-columns: 1fr; }
}
.hero__byline-label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--slate-soft);
  padding-top: 6px;
}
.hero__byline-text {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 58ch;
}
.hero__byline-text strong { color: var(--teal); font-weight: 500; }

/* =========================================================================
   Orbit mark (logo + decorative)
   ----------------------------------------------------------------------- */
.orbit-mark {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}
.orbit-mark .planet { fill: currentColor; stroke: none; }
.orbit-mark .satellite { fill: var(--teal); stroke: none; }

/* =========================================================================
   Cards (work, services, posts)
   ----------------------------------------------------------------------- */
.section__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 72px);
}
@media (max-width: 760px) {
  .section__head { grid-template-columns: 1fr; gap: 18px; }
}
.section__head h2 { max-width: 18ch; }

.section__title-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section__head-aside {
  color: var(--slate);
  font-size: 16.5px;
  line-height: 1.55;
  max-width: 44ch;
  justify-self: end;
}
@media (max-width: 760px) { .section__head-aside { justify-self: start; } }

/* Work cards */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.2vw, 40px);
}
@media (max-width: 980px) { .work-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .work-grid { grid-template-columns: 1fr; } }

.work-card {
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  border-radius: 4px;
  padding: clamp(24px, 2.4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 380px;
  transition: border-color 200ms ease, transform 200ms ease;
}
.work-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}
.work-card__sector {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
}
.work-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.18;
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  color: var(--ink);
}
.work-card__body {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--slate);
  flex: 1;
}
.work-card__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-soft);
  padding-top: 18px;
  border-top: 1px solid var(--rule-soft);
}

/* Service list (editorial table) */
.service-table {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.service-row {
  display: grid;
  grid-template-columns: 100px 1.2fr 1.8fr auto;
  gap: clamp(16px, 3vw, 40px);
  align-items: start;
  padding: clamp(28px, 3.4vw, 40px) 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  transition: padding-left 200ms ease;
}
.service-row:hover { padding-left: 12px; }
.service-row:hover .service-row__title { color: var(--teal); }
.service-row__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--slate-soft);
  padding-top: 8px;
}
.service-row__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.12;
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  color: var(--ink);
  transition: color 200ms ease;
}
.service-row__sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-soft);
  margin-top: 8px;
}
.service-row__desc {
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--slate);
}
.service-row__arrow {
  width: 24px;
  height: 24px;
  color: var(--slate-soft);
  align-self: center;
  transition: color 200ms ease, transform 200ms ease;
}
.service-row:hover .service-row__arrow { color: var(--teal); transform: translateX(4px); }

@media (max-width: 780px) {
  .service-row {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "num arrow"
      "title title"
      "desc desc";
  }
  .service-row__num { grid-area: num; }
  .service-row__arrow { grid-area: arrow; justify-self: end; }
  .service-row__title-wrap { grid-area: title; }
  .service-row__desc { grid-area: desc; }
}

/* Featured service callout */
.featured-service {
  background: var(--teal-ink);
  color: var(--cream);
  border-radius: 4px;
  padding: clamp(36px, 4.8vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  position: relative;
  overflow: hidden;
}
@media (max-width: 800px) { .featured-service { grid-template-columns: 1fr; } }
.featured-service h2, .featured-service h3 { color: var(--cream); }
.featured-service .eyebrow { color: var(--gold-soft); }
.featured-service .eyebrow::before { background: var(--gold-soft); }
.featured-service__title { max-width: 18ch; }
.featured-service__body {
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(246,244,239,0.78);
}
.featured-service__meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.featured-service__metric {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(246,244,239,0.12);
}
.featured-service__metric:last-child { border-bottom: 0; }
.featured-service__metric-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.featured-service__metric-value {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.2;
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  color: var(--cream);
}
.featured-service__actions {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.featured-service .btn--ghost {
  color: var(--cream);
  border-color: rgba(246,244,239,0.4);
}
.featured-service .btn--ghost:hover { background: var(--cream); color: var(--teal-ink); }

.featured-service > *:not(.featured-service__mark) { position: relative; z-index: 1; }
.featured-service__mark {
  position: absolute;
  right: clamp(18px, 2.6vw, 36px);
  bottom: clamp(18px, 2.6vw, 36px);
  width: clamp(120px, 18vw, 190px);
  height: auto;
  opacity: 0.72;
  z-index: 0;
  pointer-events: none;
}

/* Writing list */
.writing-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.writing-item {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: clamp(16px, 3vw, 40px);
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  transition: padding-left 200ms ease;
}
.writing-item:hover { padding-left: 8px; }
.writing-item:hover .writing-item__title { color: var(--teal); }
.writing-item__date {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--slate-soft);
  text-transform: uppercase;
}
.writing-item__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.3;
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  color: var(--ink);
  transition: color 200ms ease;
}
.writing-item__cat {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-soft);
}
@media (max-width: 700px) {
  .writing-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* =========================================================================
   Quote block
   ----------------------------------------------------------------------- */
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.25;
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  color: var(--ink);
  max-width: 22ch;
  text-wrap: balance;
}
.pull-quote__attribution {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-soft);
}

/* =========================================================================
   Footer
   ----------------------------------------------------------------------- */
.footer {
  background: var(--cream-deep);
  padding-top: clamp(60px, 8vw, 96px);
  padding-bottom: clamp(40px, 6vw, 60px);
  border-top: 1px solid var(--rule);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  margin-bottom: clamp(48px, 6vw, 72px);
}
@media (max-width: 800px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer__top { grid-template-columns: 1fr; }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 36ch;
}
.footer__brand-mark {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
  margin-bottom: 2px;
  opacity: 0.92;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  font-weight: 500;
}
.footer__brand-tag {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.5;
}
.footer__col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-soft);
  margin-bottom: 18px;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  text-decoration: none;
  color: var(--ink);
  font-size: 14.5px;
}
.footer__col a:hover { color: var(--teal); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  gap: 18px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--slate-soft);
  text-transform: uppercase;
}

/* =========================================================================
   Tweaks panel
   ----------------------------------------------------------------------- */
.tweaks-trigger {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  background: var(--ink);
  color: var(--cream);
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  display: none;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 28px rgba(11,32,42,0.16);
}
.tweaks-trigger.is-active { display: inline-flex; }
.tweaks-trigger:hover { background: var(--teal); }

.tweaks-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 101;
  width: 320px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(11,32,42,0.18);
  padding: 0;
  display: none;
  overflow: hidden;
}
.tweaks-panel.is-open { display: block; }

.tweaks-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--rule-soft);
  background: var(--cream);
}
.tweaks-panel__title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
}
.tweaks-panel__close {
  background: transparent;
  border: 0;
  font-size: 18px;
  line-height: 1;
  color: var(--slate);
  cursor: pointer;
  padding: 4px;
}
.tweaks-panel__close:hover { color: var(--ink); }

.tweaks-panel__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.tweak-group__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-soft);
  margin-bottom: 10px;
}
.tweak-radio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.tweak-radio button {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 12px 14px;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color 160ms ease, background 160ms ease;
}
.tweak-radio button:hover { border-color: var(--slate); }
.tweak-radio button.is-active {
  border-color: var(--teal);
  background: var(--paper);
  box-shadow: inset 0 0 0 1px var(--teal);
}
.tweak-radio__name {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.tweak-radio__sample {
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--teal);
}
.tweak-radio__sample.serif {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
}
.tweak-radio__sample.sans {
  font-family: "Geist", "Söhne", -apple-system, sans-serif;
  font-weight: 500;
}

/* =========================================================================
   Page-specific: Podcast
   ----------------------------------------------------------------------- */
.podcast-hero {
  padding-top: clamp(64px, 9vw, 120px);
  padding-bottom: clamp(48px, 8vw, 96px);
}
.podcast-hosts {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(28px, 3vw, 40px);
}
.podcast-hosts__avatars {
  display: flex;
}
.podcast-hosts__avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cream);
  position: relative;
}
.podcast-hosts__avatar + .podcast-hosts__avatar {
  margin-left: -10px;
}
.podcast-hosts__avatar--alt { background: var(--teal-deep); }
.podcast-hosts__text {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}
.podcast-hosts__text strong { color: var(--ink); font-weight: 500; }

.listen-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(28px, 3vw, 40px);
}
.listen-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-soft);
  margin-right: 4px;
}
.listen-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  text-decoration: none;
  background: var(--paper);
  color: var(--ink);
  font-size: 13.5px;
  transition: border-color 200ms ease, color 200ms ease;
}
.listen-chip:hover { border-color: var(--teal); color: var(--teal); }
.listen-chip svg { width: 14px; height: 14px; }

/* Episode card — feature */
.episode-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(28px, 4vw, 48px);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  align-items: start;
}
@media (max-width: 800px) { .episode-card { grid-template-columns: 1fr; } }
.episode-card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}
.episode-card__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  color: var(--ink);
  margin-top: 14px;
  text-wrap: balance;
}
.episode-card__summary {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--slate);
  margin-top: 18px;
  max-width: 64ch;
}
.episode-card__meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 12px;
}
.episode-meta-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.episode-meta-row:last-child { border-bottom: 0; }
.episode-meta-row__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-soft);
}
.episode-meta-row__value {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.02em;
}

/* Episode list (rest) */
.episode-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.episode-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(28px, 3vw, 40px) 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  align-items: start;
  transition: padding-left 200ms ease;
}
.episode-item:hover { padding-left: 8px; }
.episode-item:hover .episode-item__title { color: var(--teal); }
.episode-item__num {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.episode-item__ep {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  color: var(--teal);
}
.episode-item__date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-soft);
}
.episode-item__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  color: var(--ink);
  transition: color 200ms ease;
  margin-bottom: 12px;
  text-wrap: balance;
}
.episode-item__summary {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--slate);
  max-width: 70ch;
}
.episode-item__duration {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-soft);
  margin-top: 12px;
}
@media (max-width: 600px) {
  .episode-item { grid-template-columns: 1fr; gap: 8px; }
  .episode-item__num { flex-direction: row; align-items: baseline; gap: 12px; }
}

/* =========================================================================
   Page-specific: Writing
   ----------------------------------------------------------------------- */
.writing-featured {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 800px) { .writing-featured { grid-template-columns: 1fr; } }
.writing-featured__meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.writing-featured__date {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-soft);
}
.writing-featured__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  color: var(--ink);
  text-wrap: balance;
  margin: 0;
}
.writing-featured__summary {
  font-size: 17px;
  line-height: 1.6;
  color: var(--slate);
  max-width: 58ch;
}
.writing-featured__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  padding: 6px 12px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--paper);
}

.year-heading {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: baseline;
  gap: clamp(16px, 3vw, 40px);
  padding: 28px 0 14px;
}
.year-heading__year {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}
.year-heading__count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-soft);
}
@media (max-width: 700px) {
  .year-heading { grid-template-columns: 1fr; gap: 4px; }
}

.writing-row {
  display: grid;
  grid-template-columns: 130px 1.6fr 1fr;
  gap: clamp(16px, 3vw, 40px);
  align-items: baseline;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  transition: padding-left 200ms ease;
}
.writing-row:hover { padding-left: 8px; }
.writing-row:hover .writing-row__title { color: var(--teal); }
.writing-row__date {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--slate-soft);
  text-transform: uppercase;
}
.writing-row__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.32;
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  color: var(--ink);
  transition: color 200ms ease;
}
.writing-row__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-self: end;
}
.writing-row__tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-soft);
}
.writing-row__tag + .writing-row__tag::before {
  content: "·";
  margin-right: 6px;
  color: var(--rule);
}
@media (max-width: 700px) {
  .writing-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .writing-row__tags { justify-self: start; }
}

.writing-topic-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(20px, 2.4vw, 28px);
}

/* =========================================================================
   Page-specific: About
   ----------------------------------------------------------------------- */
.about-hero {
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(48px, 6vw, 80px);
}
.about-hero__title { max-width: 18ch; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
}
.about-aside {
  position: sticky;
  top: 96px;
  padding: 24px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--paper);
}
.about-aside dl { margin: 0; }
.about-aside dt {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-soft);
  margin-top: 18px;
}
.about-aside dt:first-of-type { margin-top: 0; }
.about-aside dd {
  margin: 6px 0 0 0;
  font-size: 15.5px;
  color: var(--ink);
}

/* =========================================================================
   Page-specific: Bedrock Sprint
   ----------------------------------------------------------------------- */
.sprint-hero {
  background: var(--teal-ink);
  color: var(--cream);
  padding-top: clamp(72px, 9vw, 128px);
  padding-bottom: clamp(64px, 8vw, 112px);
  position: relative;
  overflow: hidden;
}
.sprint-hero h1, .sprint-hero h2 { color: var(--cream); }
.sprint-hero .eyebrow { color: var(--gold-soft); }
.sprint-hero .eyebrow::before { background: var(--gold-soft); }
.sprint-hero__lede {
  color: rgba(246,244,239,0.78);
  font-size: clamp(19px, 1.6vw, 23px);
  line-height: 1.5;
  max-width: 56ch;
  margin-top: clamp(24px, 3vw, 36px);
}
.sprint-hero__actions {
  margin-top: clamp(32px, 4vw, 44px);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.sprint-hero .btn--ghost { color: var(--cream); border-color: rgba(246,244,239,0.4); }
.sprint-hero .btn--ghost:hover { background: var(--cream); color: var(--teal-ink); }
.sprint-hero .shell > *:not(.sprint-hero__mark) { position: relative; z-index: 1; }
.sprint-hero__mark {
  position: absolute;
  right: clamp(20px, 4.5vw, 64px);
  top: clamp(52px, 8vw, 96px);
  width: clamp(168px, 27vw, 290px);
  height: auto;
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 680px) {
  .sprint-hero__mark, .featured-service__mark { display: none; }
}

/* Fact strip */
.fact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--paper);
  margin-top: clamp(-40px, -4vw, -32px);
  margin-bottom: clamp(48px, 6vw, 80px);
  position: relative;
  z-index: 2;
}
@media (max-width: 800px) { .fact-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .fact-strip { grid-template-columns: 1fr; } }
.fact {
  padding: 28px;
  border-right: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.fact:last-child { border-right: 0; }
@media (max-width: 800px) {
  .fact:nth-child(2) { border-right: 0; }
}
.fact__label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-soft);
  margin-bottom: 12px;
}
.fact__value {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.18;
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  color: var(--ink);
}
.fact__value .num { color: var(--teal); }

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(32px, 4vw, 56px);
}
@media (max-width: 800px) { .timeline { grid-template-columns: 1fr; } }
.timeline__step {
  border-top: 2px solid var(--teal);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.timeline__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}
.timeline__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.18;
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  color: var(--ink);
}
.timeline__body {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--slate);
}
.timeline__list {
  margin: 6px 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.timeline__list li {
  font-size: 14.5px;
  color: var(--slate);
  padding-left: 16px;
  position: relative;
}
.timeline__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 1px;
  background: var(--teal);
}

/* Deliverables */
.deliverables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.4vw, 28px);
  margin-top: clamp(28px, 3vw, 44px);
}
@media (max-width: 700px) { .deliverables { grid-template-columns: 1fr; } }
.deliverable {
  padding: 24px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--paper);
  display: flex;
  gap: 16px;
  align-items: start;
}
.deliverable__icon {
  width: 24px; height: 24px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}
.deliverable__title {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.25;
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  color: var(--ink);
  margin-bottom: 6px;
}
.deliverable__body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--slate);
}

/* Fit/not-fit lists */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(28px, 3vw, 44px);
}
@media (max-width: 700px) { .fit-grid { grid-template-columns: 1fr; } }
.fit-col h3 {
  font-size: 18px;
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.fit-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.fit-col li {
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--slate);
  padding-left: 26px;
  position: relative;
}
.fit-col--yes li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 8px;
  border-left: 1.5px solid var(--teal);
  border-bottom: 1.5px solid var(--teal);
  transform: rotate(-45deg);
}
.fit-col--no li::before {
  content: "";
  position: absolute;
  left: 4px; top: 11px;
  width: 10px; height: 1.5px;
  background: var(--slate-soft);
  transform: rotate(45deg);
}
.fit-col--no li::after {
  content: "";
  position: absolute;
  left: 4px; top: 11px;
  width: 10px; height: 1.5px;
  background: var(--slate-soft);
  transform: rotate(-45deg);
}

/* CTA strip */
.cta-strip {
  background: var(--teal-ink);
  color: var(--cream);
  padding: clamp(56px, 7vw, 96px) 0;
}
.cta-strip h2 { color: var(--cream); max-width: 18ch; }
.cta-strip__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
}
@media (max-width: 800px) { .cta-strip__inner { grid-template-columns: 1fr; } }
.cta-strip__aside {
  color: rgba(246,244,239,0.75);
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 44ch;
}
.cta-strip__actions {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-strip .btn--primary {
  background: var(--cream);
  color: var(--teal-ink);
}
.cta-strip .btn--primary:hover { background: var(--paper); }
.cta-strip .btn--ghost {
  color: var(--cream);
  border-color: rgba(246,244,239,0.4);
}
.cta-strip .btn--ghost:hover { background: var(--cream); color: var(--teal-ink); }

/* =========================================================================
   Page-specific: Contact
   ----------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form__row { display: flex; flex-direction: column; gap: 8px; }
.form label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-soft);
}
.form input, .form textarea, .form select {
  border: 0;
  border-bottom: 1px solid var(--rule);
  background: transparent;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  border-radius: 0;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-bottom-color: var(--teal);
}
.form textarea { min-height: 140px; resize: vertical; }
.form__actions { margin-top: 12px; }

.contact-aside dl { margin: 0; }
.contact-aside dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-soft);
  margin-top: 24px;
}
.contact-aside dt:first-of-type { margin-top: 0; }
.contact-aside dd {
  margin: 8px 0 0 0;
  font-size: 17px;
  color: var(--ink);
}
.contact-aside a { color: var(--teal); text-decoration: none; border-bottom: 1px solid var(--teal); padding-bottom: 1px; }

/* =========================================================================
   Article content — rendered markdown (blog posts, episode show notes)
   ----------------------------------------------------------------------- */
.article-prose {
  font-size: 18px;
  line-height: 1.7;
  color: var(--slate);
  max-width: 68ch;
}
.article-prose p { margin: 1.25em 0; }
.article-prose > :first-child { margin-top: 0; }
.article-prose h2 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: var(--display-tracking);
  color: var(--ink);
  margin: 1.8em 0 0.6em;
}
.article-prose h3 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(21px, 2.2vw, 26px);
  line-height: 1.2;
  letter-spacing: var(--display-tracking);
  color: var(--ink);
  margin: 1.6em 0 0.5em;
}
.article-prose h4 {
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  margin: 1.4em 0 0.4em;
}
.article-prose ul, .article-prose ol { margin: 1.25em 0; padding-left: 1.4em; }
.article-prose ul { list-style: disc; }
.article-prose ol { list-style: decimal; }
.article-prose li { margin: 0.4em 0; padding-left: 4px; }
.article-prose a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.article-prose a:hover { color: var(--teal-deep); }
.article-prose strong { color: var(--ink); font-weight: 500; }
.article-prose img { display: block; margin: 1.6em 0; max-width: 100%; height: auto; border-radius: 4px; border: 1px solid var(--rule-soft); }
.article-prose figure { margin: 1.6em 0; }
.article-prose figcaption { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--slate-soft); margin-top: 8px; }
.article-prose blockquote { margin: 1.6em 0; border-left: 2px solid var(--teal); padding-left: 20px; color: var(--ink); font-style: italic; }
.article-prose code { font-family: var(--font-mono); font-size: 0.88em; background: var(--cream-deep); padding: 2px 6px; border-radius: 3px; color: var(--teal-ink); }
.article-prose pre { margin: 1.6em 0; background: var(--teal-ink); color: var(--cream); padding: 20px 24px; border-radius: 6px; overflow-x: auto; }
.article-prose pre code { background: none; padding: 0; color: inherit; font-size: 14px; line-height: 1.6; }
.article-prose hr { border: 0; height: 1px; background: var(--rule); margin: 2.4em 0; }
.article-prose iframe { max-width: 100%; margin: 1.6em 0; border-radius: 6px; }

/* Article header */
.article-head { padding-top: clamp(48px, 7vw, 96px); }
.article-head__title { max-width: 24ch; margin-top: clamp(20px, 2.4vw, 32px); }

/* Content embeds — utility classes emitted by Hugo shortcodes (youtube, img,
   video) that originate from the old Tailwind theme. The editorial stylesheet
   has no Tailwind utilities, so these are restated minimally to keep embeds
   responsive inside the article body. */
.aspect-video { position: relative; aspect-ratio: 16 / 9; width: 100%; }
.aspect-video iframe, .aspect-video video, .aspect-video img { position: absolute; inset: 0; width: 100%; height: 100%; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.rounded-lg { border-radius: 8px; }
.mb-6 { margin-bottom: 1.5rem; }

/* Older shortcodes (callout, video, stories, blockquote, img-center, pod) emit
   Bootstrap- and Tailwind-era utility classes the editorial stylesheet never
   defined. Restated minimally so the handful of legacy posts still using them
   render cleanly. Values follow the Bootstrap spacing scale. #21 */
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.pl-8 { padding-left: 2rem; }
.text-xl\/8 { font-size: 1.25rem; line-height: 2rem; }
.font-semibold { font-weight: 600; }
.tracking-tight { letter-spacing: -0.025em; }
.text-gray-900 { color: var(--ink); }
.video-wrapper { display: block; max-width: 100%; }
.img-responsive { display: block; max-width: 100%; height: auto; }
.col-12 { width: 100%; }
.article-prose a.btn { text-decoration: none; }
.blockquote-footer { margin-top: 8px; font-size: 0.875rem; color: var(--slate); font-style: normal; }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.pb-1 { padding-bottom: 0.25rem; }

/* Utility classes used by the Orbit Weekly subscribe form's JS. */
.hidden { display: none; }
.text-green-400 { color: #6fe3b0; }
.text-red-400 { color: #ff8f80; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* =========================================================================
   Print
   ----------------------------------------------------------------------- */
@media print {
  .nav, .tweaks-panel, .tweaks-trigger { display: none !important; }
}
