/* =====================================================================
   Matteo Menardi Ménego — JumpscareAI 🫀😱  v3.7.69
   Written from line 0. Stamp 03.09.2026 20:30:00.
   Ladin palette · glass as window · print as paper · desktop-request is YouTube-style.
   ===================================================================== */

:root {
  --ladin-blue: #87CEEB;
  --ladin-white: #FFFFFF;
  --ladin-green: #006A4E;
  --platinum: #E5E4E2;
  --text-light: #006A4E;
  --text-dark: #FFFFFF;
  --bg-light: #F4F6F7;
  --bg-dark: #05080b;
  --glass-bg: rgba(255, 255, 255, 0.82);
  --glass-border: rgba(0, 106, 78, 0.10);
  --veil-top: rgba(255, 255, 255, 0.08);
  --veil-mid: rgba(255, 255, 255, 0.04);
  --veil-bot: rgba(255, 255, 255, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --nav-pad-y: 0.95rem;
  --nav-pad-x: 1.15rem;
  --touch: 2.85rem;
  --radius-lg: 1.75rem;
  --radius-md: 1.25rem;
  --max: 80rem;
  --chev-w: 5.4rem;
  --chev-h: 2.75rem;
  --btn-glass: rgba(255,255,255,.42);
  --btn-glass-dark: rgba(255,255,255,.07);
  --btn-glass-shadow: 0 0 0 1px rgba(229,228,226,.28), 0 6px 14px -8px rgba(0,0,0,.18);
  --btn-glass-shadow-dark: 0 0 0 1px rgba(229,228,226,.18), 0 8px 18px -10px rgba(0,0,0,.45);
  --btn-glass-shadow-hover: 0 0 0 2px rgba(229,228,226,.55), 0 10px 22px -10px rgba(0,0,0,.28);
  color-scheme: light;
  supported-color-schemes: light dark;
}

html.dark {
  color-scheme: dark;
  --glass-bg: rgba(10, 14, 20, 0.66);
  --glass-border: rgba(255, 255, 255, 0.09);
  --veil-top: rgba(4, 7, 11, 0.28);
  --veil-mid: rgba(4, 7, 11, 0.20);
  --veil-bot: rgba(4, 7, 11, 0.36);
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  background: var(--bg-light);
  color-scheme: light;
  overflow-x: hidden;
  max-width: 100%;
  scroll-padding-top: calc(var(--safe-top, 0px) + 11.5rem);
}
@media (min-width: 1100px) {
  html:not(.is-handheld) { scroll-padding-top: calc(var(--safe-top, 0px) + 5.5rem); }
}
html.force-desktop,
html.desktop-request { scroll-padding-top: calc(var(--safe-top, 0px) + 5.5rem); overflow-x: auto; max-width: none; }
html.force-desktop body,
html.desktop-request body { overflow-x: auto; max-width: none; }
html.dark { background: var(--bg-dark); color-scheme: dark; }
@supports (overflow: clip) {
  html, body { overflow-x: clip; }
  html.force-desktop, html.force-desktop body,
  html.desktop-request, html.desktop-request body { overflow-x: auto; }
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: "Rethink Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--text-light);
  background: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  position: relative;
  width: 100%;
}
html.dark body { color: var(--text-dark); }

img, svg { max-width: 100%; height: auto; display: block; }
svg.stories-chevron { width: 3.7rem; height: 0.82rem; max-width: none; max-height: none; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3 { letter-spacing: -0.025em; line-height: 1.2; }

/* ----- Wallpaper (place, not texture) ----- */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #c9d6e2;
}
html.dark .site-bg { background: #0a1622; }

.site-bg picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.site-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 82%;
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* Posted MobileWallpaper is 3:4, campanile lower-left. cover + left bottom
   on a tall phone box crops the right, not the tower. Files are not recropped. */
.site-bg.is-portrait .site-bg-img {
  object-position: left bottom;
}
.site-bg-print { display: none; }

.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--veil-top) 0%, var(--veil-mid) 45%, var(--veil-bot) 100%);
}

.site-bg.name-gem { background: #0a1218; }
html:not(.dark) .site-bg.name-gem { background: #dfe8ef; }
.site-bg.name-gem .site-bg-img {
  opacity: 0;
  transform: scale(1.08) translateZ(0);
}
.site-bg.name-gem.name-gem-live .site-bg-img {
  animation: nameGemEnter 0.62s var(--ease) both;
}
@keyframes nameGemEnter {
  0% { opacity: 0; transform: scale(1.00) translate3d(0, 10px, 0); }
  38% { opacity: 1; transform: scale(1.055); }
  72% { transform: scale(0.978); }
  100% { opacity: 1; transform: scale(1); }
}
.site-bg.name-gem::after {
  background:
    radial-gradient(ellipse 80% 70% at 50% 42%, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.36) 100%),
    linear-gradient(180deg, rgba(4,7,11,.28) 0%, rgba(4,7,11,.42) 100%);
}
html:not(.dark) .site-bg.name-gem::after {
  background:
    radial-gradient(ellipse 80% 70% at 50% 42%, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.36) 100%),
    linear-gradient(180deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.28) 100%);
}
.name-page-ready #main-content { animation: nameContentIn 0.9s var(--ease) 0.1s both; }
@keyframes nameContentIn {
  from { opacity: 0; transform: translate3d(0, 16px, 0); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .site-bg.name-gem.name-gem-live .site-bg-img,
  .name-page-ready #main-content {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

body > nav, body > main, body > footer { position: relative; z-index: 1; }
body > nav { z-index: 60; }
#main-content { scroll-margin-top: calc(var(--safe-top, 0px) + 1rem); }

body.name-gem-page #main-content {
  min-height: calc(100dvh - 8rem);
  min-height: calc(100vh - 8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body.name-gem-page #main-content .wrap { width: 100%; }

/* ----- Glass ----- */
.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: saturate(190%) blur(28px);
  backdrop-filter: saturate(190%) blur(28px);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 10px 30px -10px rgba(0,0,0,.12),
    0 4px 6px -4px rgba(0,0,0,.08),
    inset 0 1px 0 rgba(255,255,255,.5);
  transform: translateZ(0);
}
html.dark .glass {
  box-shadow: 0 10px 30px -10px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.06);
}
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .glass { background: rgba(255,255,255,0.95); }
  html.dark .glass { background: rgba(12,18,24,0.97); }
}
@media (prefers-reduced-transparency: reduce) {
  .glass {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(255,255,255,.95) !important;
  }
  html.dark .glass { background: rgba(12,18,24,.96) !important; }
}

.apple-rounded { border-radius: var(--radius-lg); }
.card {
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
@media (min-width: 768px) { .card { padding: 2rem 1.75rem; } }
@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 44px -16px rgba(0,0,0,.24);
  }
}
html:not(.dark) .card { color: #005a42; }
.card p, .card li { line-height: 1.68; }
.card h1, .card h2, .card h3 { text-wrap: balance; }

/* ----- Type helpers ----- */
.monego-italic {
  font-style: italic;
  font-weight: inherit;
  font-family: "Rethink Sans", system-ui, sans-serif;
}
html.dark .monego-italic { color: var(--ladin-blue); }

.quote-platinum {
  font-style: italic;
  color: #8a8880;
  text-shadow: 0 1px 0 rgba(255,255,255,.75), 0 0 18px rgba(229,228,226,.55);
}
html.dark .quote-platinum {
  color: #f1f0eb;
  text-shadow: 0 1px 5px rgba(0,0,0,.65);
}

.platinum-ring {
  box-shadow:
    0 0 0 3px var(--platinum),
    0 0 0 6px rgba(229,228,226,.35),
    0 14px 26px -10px rgba(0,0,0,.35);
}

.content-justified {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.readable-on-wp {
  text-shadow: 0 1px 3px rgba(255,255,255,.85), 0 2px 8px rgba(255,255,255,.5);
}
html.dark .readable-on-wp {
  text-shadow: 0 1px 2px rgba(0,0,0,.75), 0 3px 12px rgba(0,0,0,.55);
}

.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;
}
.sr-only:focus {
  position: fixed; top: .75rem; left: .75rem; z-index: 200;
  width: auto; height: auto; margin: 0; clip: auto; clip-path: none;
  overflow: visible; white-space: normal;
  padding: .65rem 1rem; border-radius: .85rem;
  background: #fff; color: var(--ladin-green); box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

/* ----- Nav ----- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(255,255,255,.14);
  padding-top: var(--safe-top);
  background: var(--glass-bg);
  -webkit-backdrop-filter: saturate(200%) blur(32px);
  backdrop-filter: saturate(200%) blur(32px);
}
html.dark .site-nav { border-bottom-color: rgba(255,255,255,.07); }

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--nav-pad-y) max(var(--nav-pad-x), var(--safe-left)) var(--nav-pad-y) max(var(--nav-pad-x), var(--safe-right));
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1rem 1.25rem;
  min-height: 4.85rem;
}
.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding-bottom: 0.15rem;
}

@media (min-width: 1100px) and (hover: hover) and (pointer: fine) {
  html:not(.is-handheld) .nav-desktop { display: flex; }
  html:not(.is-handheld) .nav-mobile { display: none !important; }
}
html.is-handheld .nav-desktop { display: none !important; }
html.is-handheld .nav-mobile { display: flex !important; }
html.force-desktop .nav-desktop,
html.desktop-request .nav-desktop { display: flex !important; flex-wrap: wrap !important; }
html.force-desktop .nav-mobile,
html.desktop-request .nav-mobile { display: none !important; }
html.force-desktop .nav-desktop { display: flex !important; flex-wrap: wrap; }
html.force-desktop .nav-mobile { display: none !important; }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  flex-shrink: 0;
  max-width: 15.5rem;
}
.nav-avatar {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 1.05rem;
  object-fit: cover;
  object-position: center 22%;
  flex-shrink: 0;
  box-shadow: 0 0 0 2.5px rgba(229,228,226,.78);
}
.nav-brand-name {
  font-size: 1.12rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
}
@media (min-width: 1100px) {
  .nav-brand { max-width: 14.5rem; }
  .nav-brand-name { font-size: 1.05rem; }
}

.nav-links {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.15rem;
  min-width: 0;
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.45rem 0.7rem;
  border-radius: 0.85rem;
  text-decoration: none;
  color: inherit;
  font-size: 0.9rem;
  font-weight: 550;
  letter-spacing: -0.015em;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  max-width: 11.5rem;
  transition: background .2s, color .2s;
  border-color: var(--platinum);
}
html[lang="de"] .nav-link {
  font-size: 0.82rem;
  padding: 0.5rem 0.55rem;
  max-width: 12.75rem;
  min-height: 2.75rem;
  line-height: 1.18;
}
.nav-link:hover { color: var(--ladin-green); background: rgba(0,106,78,.09); }
html.dark .nav-link:hover { color: var(--ladin-blue); background: rgba(135,206,235,.1); }
html:not(.dark) .nav-link.active {
  color: var(--ladin-green);
  font-weight: 650;
  background: rgba(0,106,78,.09);
}
html.dark .nav-link.active {
  color: var(--ladin-blue);
  background: rgba(135,206,235,.12);
}
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 0.28rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(to right, var(--ladin-blue), var(--ladin-green));
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  margin-left: auto;
}

.lang-selector {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  min-height: 2.85rem;
  padding: 0.12rem 0.45rem;
  border-radius: 9999px;
  border: 1.25px solid var(--platinum);
  background: rgba(255,255,255,.48);
  box-shadow: 0 0 0 1px rgba(229,228,226,.4);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
html.dark .lang-selector { background: rgba(255,255,255,.07); }
.lang-selector a,
.lang-selector a[data-lang] {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.35rem 0.4rem;
  border-radius: 0.4rem;
}
.lang-selector a:hover { color: var(--ladin-green); }
html.dark .lang-selector a:hover { color: var(--ladin-blue); }
.lang-selector a.active {
  color: var(--ladin-green);
  background: rgba(0,106,78,.1);
}
html.dark .lang-selector a.active {
  color: var(--ladin-blue);
  background: rgba(135,206,235,.12);
}
.lang-sep { opacity: .42; user-select: none; }

.nav-mobile-top {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
}
.mobile-name {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  width: 100%;
  text-decoration: none;
  color: inherit;
}
.mobile-name .nav-avatar { width: 3.15rem; height: 3.15rem; border-radius: 22%; }
.mobile-name-text {
  min-width: 0;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.25;
  font-size: clamp(0.98rem, 4.1vw, 1.18rem);
  white-space: normal;
  overflow: visible;
  text-wrap: balance;
}
.nav-mobile .lang-selector {
  flex-shrink: 0;
  align-self: flex-end;
  font-size: 0.68rem;
  min-height: 2.85rem;
  padding: 0.1rem 0.4rem;
}

.mobile-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.5rem;
}
.mobile-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  min-height: 3.05rem;
  padding: 0.55rem 0.4rem;
  border-radius: 1rem;
  background: rgba(255,255,255,.34);
  border: 1.5px solid rgba(229,228,226,.75);
  box-shadow: 0 0 0 1px rgba(229,228,226,.25);
  font-size: clamp(0.72rem, 2.85vw, 0.88rem);
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  transition: background .2s, transform .15s;
}
.mobile-grid a.mg-wide { grid-column: span 3; }
.mobile-grid a.mg-third { grid-column: span 2; }
html[lang="de"] .mobile-grid a {
  min-height: 3.45rem;
  font-size: clamp(0.66rem, 2.4vw, 0.78rem);
  padding: 0.55rem 0.3rem;
  line-height: 1.15;
}
html.dark .mobile-grid a {
  background: rgba(255,255,255,.055);
  border-color: rgba(229,228,226,.28);
}
.mobile-grid a.active {
  background: rgba(0,106,78,.12);
  box-shadow: inset 0 0 0 1px rgba(0,106,78,.16);
}
html.dark .mobile-grid a.active {
  background: rgba(135,206,235,.14);
  color: var(--ladin-blue);
}
.mobile-grid a:active { transform: scale(0.98); }

/* ----- Layout ----- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.75rem max(1.15rem, var(--safe-left)) 3.25rem max(1.15rem, var(--safe-right));
}
.stack { display: grid; gap: 1.25rem; }
.grid-2, .grid-3 { display: grid; gap: 1.25rem; }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}
.span-all { grid-column: 1 / -1; }

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem 0.5rem;
}
.hero-photo {
  width: min(16.5rem, 74vw);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center center;
  border-radius: 3rem;
  border: 6px solid var(--platinum);
  margin-bottom: 1.35rem;
  background: transparent;
}
.hero-photo.platinum-ring { box-shadow: none; }
@media (min-width: 768px) { .hero-photo { width: 18rem; } }
.hero h1 { font-size: clamp(1.85rem, 5vw, 3.35rem); font-weight: 650; margin: 0 0 0.85rem; }
.hero .quote-platinum { font-size: clamp(1.05rem, 2.6vw, 1.4rem); margin: 0; }
.hero .quote-src { margin-top: 0.65rem; font-size: 0.88rem; opacity: .72; }

.kicker {
  font-size: 0.76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: .7;
}

.btn-soft,
a.btn-soft,
.maps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.7rem;
  padding: 0.55rem 1.2rem;
  border-radius: 9999px;
  background: var(--btn-glass);
  border: 1.5px solid var(--platinum);
  text-decoration: none;
  color: inherit;
  font-weight: 550;
  font-size: 0.92rem;
  box-shadow: var(--btn-glass-shadow);
  transition: border-color .2s, box-shadow .2s, transform .15s, background .2s;
}
html.dark .btn-soft, html.dark .maps-btn {
  background: var(--btn-glass-dark);
  box-shadow: var(--btn-glass-shadow-dark);
}
.btn-soft:hover, .maps-btn:hover {
  border-color: #f1f0ee;
  box-shadow: var(--btn-glass-shadow-hover);
}
.btn-soft:active { transform: scale(0.98); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.home-roles {
  display: block;
  font-size: 1.12rem;
  line-height: 1.35;
  width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
}
.home-roles > span { display: block; min-width: 0; }
.home-roles > span + span { margin-top: 0.4rem; }
.cta-lookup .home-roles { text-align: center; }
.cta-lookup {
  border: 2px solid #E5E4E2 !important;
  box-shadow: 0 0 0 1px rgba(229,228,226,.45), 0 8px 28px rgba(0,0,0,.12) !important;
}
html.dark .cta-lookup {
  box-shadow: 0 0 0 1px rgba(229,228,226,.35), 0 8px 28px rgba(0,0,0,.35) !important;
}
.lookup-btn { font-weight: 700 !important; font-size: 1.05rem !important; padding: 0.65rem 1.35rem !important; }

.cv-list { list-style: none; padding: 0; margin: 0; }
.cv-list li { margin-bottom: 0.75rem; }
.cv-list li:last-child { margin-bottom: 0; }
.list { padding-left: 1.2rem; margin: 0 0 0.75rem; }
.list li { margin-bottom: 0.35rem; }

.cv-stack { display: grid; gap: 1.25rem; }
@media (min-width: 900px) {
  .cv-stack { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .cv-stack > .card { height: 100%; }
}
.cv-stack-full { grid-column: 1 / -1; }

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; }
.milestone-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.92rem;
}
.milestone-table th, .milestone-table td {
  padding: 0.75rem 0.85rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(0,106,78,.14);
}
html.dark .milestone-table th, html.dark .milestone-table td { border-bottom-color: rgba(255,255,255,.08); }
.milestone-table th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ladin-green);
}
html.dark .milestone-table th { color: var(--ladin-blue); }
.milestone-table tr:last-child td { border-bottom: 0; }
@media (max-width: 640px) {
  .milestone-table { font-size: 0.82rem; }
  .milestone-table th, .milestone-table td { padding: 0.65rem 0.5rem; }
}

.story-image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 12px 28px -12px rgba(0,0,0,.28);
  margin: 0.85rem 0;
}
.story-lead {
  width: 100%;
  max-width: 22rem;
  margin: 0 auto 1rem;
  border-radius: 1.25rem;
  box-shadow:
    0 0 0 1.25px color-mix(in srgb, var(--platinum) 70%, transparent),
    0 16px 32px -16px rgba(0, 0, 0, 0.32);
}
.image-pair { display: grid; gap: 0.85rem; margin: 0.85rem 0; }
@media (min-width: 640px) { .image-pair { grid-template-columns: 1fr 1fr; } }
.essay-quote {
  border-left: 3px solid var(--ladin-blue);
  padding-left: 1.15rem;
  margin: 1.25rem 0;
}

.social-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  text-decoration: none;
  color: inherit;
  min-height: 8.5rem;
  border: 1.5px solid rgba(229,228,226,.65);
}
.social-card .ico { font-size: 1.7rem; }
.social-card .url { font-size: 0.82rem; opacity: .7; word-break: break-all; }
.official-card {
  display: block;
  text-align: center;
  text-decoration: none;
  color: inherit;
  padding: 1.75rem 1.25rem;
  border: 1.5px solid rgba(229,228,226,.65);
}
.official-card .t { font-weight: 650; font-size: clamp(1.3rem, 5vw, 1.8rem); letter-spacing: -0.03em; }
.official-card .d { margin-top: 0.45rem; font-size: clamp(1rem, 4vw, 1.35rem); font-weight: 500; color: #5a9fbf; word-break: break-word; }
html.dark .official-card .d { color: var(--ladin-blue); }
.official-card .here { margin-top: 0.7rem; font-size: 0.88rem; opacity: .72; }
.substack-card, .newsletter-card {
  border: 1.5px solid color-mix(in srgb, var(--platinum) 80%, transparent);
}

/* ----- Footer ----- */
.site-footer {
  border-top: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.6);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  padding: 1.75rem max(1.15rem, var(--safe-left)) max(1.75rem, var(--safe-bottom)) max(1.15rem, var(--safe-right));
}
html.dark .site-footer {
  border-top-color: rgba(255,255,255,.06);
  background: rgba(10,15,20,.84);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  font-size: 0.9rem;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
}
.footer-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.45rem 0.6rem; }
.footer-dot { opacity: .35; }
.footer-version { font-size: 0.7rem; letter-spacing: .08em; opacity: .7; font-family: "Geist Pixel Grid", "Rethink Sans", sans-serif; }
.footer-link {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color .2s, transform .2s;
}
.footer-link:hover { color: var(--ladin-blue); transform: translateY(-1px); }
.footer-socials { display: flex; flex-wrap: wrap; align-items: center; gap: 0.85rem; font-size: 1.15rem; }
.footer-brands { display: flex; align-items: center; gap: 0.65rem; font-weight: 550; }
.footer-brands a {
  padding: 0.35rem 0.75rem;
  border-radius: 1rem;
  min-height: 2.4rem;
  border: 1.5px solid var(--platinum);
  box-shadow: 0 0 0 1px rgba(229,228,226,.25);
}
.footer-newsletter {
  font-size: 0.78rem;
  font-weight: 550;
  letter-spacing: -0.015em;
  line-height: 1.25;
  max-width: 22rem;
  white-space: normal;
  text-align: left;
}
.podcast-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  color: inherit;
  opacity: .88;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1.5px solid var(--platinum);
  background: rgba(255,255,255,.35);
  min-height: 2.35rem;
  box-shadow: 0 0 0 1px rgba(229,228,226,.22);
}
html.dark .podcast-link { border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.05); }
.podcast-link:hover { opacity: 1; color: var(--ladin-blue); }

.grok-colophon {
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  color: color-mix(in srgb, var(--platinum) 55%, var(--ladin-green));
  font-weight: 500;
}
html.dark .grok-colophon {
  color: color-mix(in srgb, var(--platinum) 80%, var(--ladin-blue));
}
.name-colophon { margin: 1.35rem 0 0; text-align: center; }

/* Theme pill — hit box is the 66×34 track */
.theme-pill {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  line-height: 0;
  display: inline-flex;
  flex: 0 0 66px;
  align-self: center;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 34px;
  max-width: 66px;
  max-height: 34px;
  overflow: hidden;
  pointer-events: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.pill-track {
  position: relative;
  box-sizing: border-box;
  width: 66px;
  height: 34px;
  border-radius: 9999px;
  background: #dfe3e1;
  border: 1.5px solid var(--platinum);
  box-shadow: inset 0 1px 3px rgba(0,0,0,.16), 0 0 0 1px rgba(229,228,226,.3);
  pointer-events: auto;
}
html.dark .pill-track { background: #2e3a44; }
.pill-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 26px;
  height: 26px;
  border-radius: 9999px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.3);
  transition: transform .32s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
html.dark .pill-knob { transform: translateX(32px); }
.pill-sun { display: inline; }
.pill-moon { display: none; }
html.dark .pill-sun { display: none; }
html.dark .pill-moon { display: inline; }

.ladin-flag {
  width: 58px;
  height: 39px;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
  border: 1px solid rgba(0,0,0,.18);
  flex-shrink: 0;
  color-scheme: only light;
  isolation: isolate;
  forced-color-adjust: none;
  -webkit-forced-color-adjust: none;
  print-color-adjust: exact;
  -webkit-print-color-adjust: exact;
  background: #fff;
}
html.dark .ladin-flag { border-color: rgba(255,255,255,.35); background: #fff; filter: none; }
.ladin-flag > span { flex: 1; min-height: 0; display: block; print-color-adjust: exact; -webkit-print-color-adjust: exact; }
.ladin-flag > span:nth-child(1) { background: #87CEEB !important; }
.ladin-flag > span:nth-child(2) { background: #FFFFFF !important; }
.ladin-flag > span:nth-child(3) { background: #006A4E !important; }

.footer-gems { display: flex; align-items: center; gap: 1.1rem; }
.footer-gem-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-decoration: none;
  color: inherit;
  text-align: center;
  color-scheme: only light;
  isolation: isolate;
  forced-color-adjust: none;
  -webkit-forced-color-adjust: none;
}
img.footer-logo, .footer-logo {
  height: 4.35rem;
  width: auto;
  max-width: 4.5rem;
  border-radius: 12px;
  display: block;
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
  padding: 0.18rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color-scheme: only light;
  isolation: isolate;
  forced-color-adjust: none !important;
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  print-color-adjust: exact !important;
  -webkit-print-color-adjust: exact !important;
}
.click-me {
  font-size: 0.7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .65;
  text-align: center;
  margin-top: 0.3rem;
}

/* ----- Stories ----- */
.publications-rule {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.85rem 1rem;
  margin: 0.35rem 0 0.15rem;
  padding: 0.15rem 0 0.55rem;
}
.publications-rule-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,106,78,.35), rgba(229,228,226,.7), rgba(0,106,78,.35), transparent);
}
html.dark .publications-rule-line {
  background: linear-gradient(90deg, transparent, rgba(135,206,235,.45), rgba(229,228,226,.45), rgba(135,206,235,.45), transparent);
}
.publications-rule-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
  max-width: 18rem;
}
.publications-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--ladin-green);
}
html.dark .publications-eyebrow { color: var(--ladin-blue); }
.publications-note { font-size: 0.78rem; line-height: 1.35; opacity: 0.78; max-width: 16.5rem; }

.story-feature { position: relative; overflow: visible; }
.story-header { margin-bottom: 0.35rem; }
.story-date { font-size: 0.86rem; font-weight: 600; letter-spacing: 0.02em; opacity: 0.82; margin: 0 0 0.55rem; }
.story-title { margin: 0 0 0.45rem; line-height: 1.25; text-wrap: balance; }
.story-feature .story-title { font-size: clamp(1.2rem, 3.2vw, 1.55rem); }
.story-kicker { margin: 0 0 0.85rem; font-style: italic; opacity: 0.88; line-height: 1.45; text-wrap: pretty; }
.story-hero { margin: 0.4rem 0 1rem; }
.story-hero-img {
  margin-top: 0.2rem;
  border-radius: 1.15rem;
  box-shadow: 0 0 0 1.5px var(--platinum), 0 18px 40px -18px rgba(0,0,0,.38);
}
.story-gallery { display: grid; grid-template-columns: 1fr; gap: 0.85rem; margin: 1.1rem 0 0.2rem; }
@media (min-width: 640px) {
  .story-gallery { grid-template-columns: 1fr 1fr; gap: 0.95rem; }
}
.story-gallery .story-image { margin: 0; transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease; }
@media (hover: hover) and (pointer: fine) {
  .story-gallery .story-image:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(0,0,0,.34); }
}
.story-feature .essay-body {
  max-width: min(40rem, 100%);
  margin-inline: auto;
  line-height: 1.72;
  font-size: clamp(1.02rem, 0.4vw + 0.95rem, 1.08rem);
}
.story-feature .essay-body p { margin-bottom: 0.95rem; }
.story-thesis {
  font-size: 1.05rem;
  text-align: center !important;
  text-align-last: center;
  margin: 1.75rem auto !important;
  max-width: 36rem;
  padding: 0.85rem 1rem;
  border-top: 1px solid color-mix(in srgb, var(--platinum) 70%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--platinum) 70%, transparent);
}
.story-pull {
  font-size: clamp(1.35rem, 3.6vw, 1.85rem);
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-align: center;
  margin: 1.6rem 0;
  color: var(--ladin-green);
}
html.dark .story-pull { color: var(--ladin-blue); }
.story-signoff { text-align: right; margin-top: 1.75rem !important; font-size: 1.05rem; padding-top: 0.35rem; }
.stories-cut {
  height: 1px;
  margin: 0.55rem 7% 1.35rem;
  background: linear-gradient(90deg, transparent, rgba(0,106,78,.4), var(--platinum), rgba(0,106,78,.4), transparent);
}
html.dark .stories-cut {
  background: linear-gradient(90deg, transparent, rgba(135,206,235,.55), var(--platinum), rgba(135,206,235,.55), transparent);
}
.stories-cut-archive { margin: 1.85rem 10% 1.55rem; opacity: 0.92; }
.story-card { padding: 1.45rem 1.35rem 1.4rem; }
.story-archive .story-title { font-size: clamp(1.12rem, 2.8vw, 1.38rem); font-weight: 600; }
.page-404 { padding: 1.6rem 1.25rem 1.5rem; }
.page-404 h1 { text-wrap: balance; letter-spacing: -0.03em; }

.stories-archive-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem 1rem;
  margin: 0.35rem 0 1.2rem;
  width: 100%;
}
.stories-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 var(--chev-w);
  width: var(--chev-w);
  height: var(--chev-h);
  min-width: var(--chev-w);
  min-height: var(--chev-h);
  padding: 0 0.55rem;
  margin: 0;
  border: 1.5px solid var(--platinum);
  background: var(--btn-glass);
  color: inherit;
  border-radius: 9999px;
  box-shadow: var(--btn-glass-shadow);
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  overflow: visible;
  transition: border-color .2s, box-shadow .2s, transform .15s, background .2s;
}
html.dark .stories-toggle {
  background: var(--btn-glass-dark);
  box-shadow: var(--btn-glass-shadow-dark);
}
.stories-toggle:hover, .stories-toggle:focus-visible {
  border-color: #f1f0ee;
  box-shadow: var(--btn-glass-shadow-hover);
}
.stories-toggle:active { transform: scale(0.98); }
.stories-toggle[aria-expanded="true"], .stories-toggle.is-open {
  background: var(--btn-glass);
  box-shadow: var(--btn-glass-shadow-hover);
}
html.dark .stories-toggle[aria-expanded="true"],
html.dark .stories-toggle.is-open {
  background: var(--btn-glass-dark);
  box-shadow: var(--btn-glass-shadow-hover);
}
.stories-chevron {
  position: relative;
  z-index: 1;
  width: 3.7rem;
  height: 0.82rem;
  max-width: none;
  max-height: none;
  flex: 0 0 3.7rem;
  color: currentColor;
  transform-origin: 50% 50%;
  transform: rotate(0deg);
  transition: transform 0.42s var(--ease);
  pointer-events: none;
  overflow: visible;
}
.stories-toggle[aria-expanded="true"] .stories-chevron,
.stories-toggle.is-open .stories-chevron { transform: rotate(180deg); }
.stories-toggle:focus-visible { outline: 2px solid var(--ladin-green); outline-offset: 3px; }
html.dark .stories-toggle:focus-visible { outline-color: var(--ladin-blue); }
.stories-archive-bar .newsletter-cta {
  flex: 1 1 auto;
  max-width: none;
  text-align: center;
  white-space: normal;
}
.newsletter-cta,
a.newsletter-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.7rem;
  padding: 0.55rem 1.2rem;
  border-radius: 9999px;
  background: var(--btn-glass);
  border: 1.5px solid var(--platinum);
  box-shadow: var(--btn-glass-shadow);
  text-decoration: none;
  color: inherit;
  font-weight: 550;
  font-size: 0.92rem;
  line-height: 1.35;
  max-width: none;
  white-space: normal;
  overflow-wrap: break-word;
  hyphens: none;
  transition: border-color .2s, box-shadow .2s, transform .15s, background .2s;
}
html.dark .newsletter-cta,
html.dark a.newsletter-cta {
  background: var(--btn-glass-dark);
  box-shadow: var(--btn-glass-shadow-dark);
}
.newsletter-cta:hover, .newsletter-cta:focus-visible,
a.newsletter-cta:hover, a.newsletter-cta:focus-visible {
  border-color: #f1f0ee;
  box-shadow: var(--btn-glass-shadow-hover);
}
#stories-archive[hidden] { display: none !important; }

/* Same chevron geometry on every width — including Request Desktop Website */
html.is-handheld .stories-toggle,
.stories-toggle {
  width: var(--chev-w);
  min-width: var(--chev-w);
  height: var(--chev-h);
  min-height: var(--chev-h);
}

/* ----- Utilities ----- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.opacity-70 { opacity: .7; }
.font-semibold { font-weight: 600; }
.leading-relaxed { line-height: 1.65; }
.muted { opacity: .78; }

a:focus-visible, button:focus-visible, .theme-pill:focus-visible,
.nav-link:focus-visible, .btn-soft:focus-visible, .footer-link:focus-visible,
.lang-selector a:focus-visible, .social-card:focus-visible,
.mg-wide:focus-visible, .mg-third:focus-visible {
  outline: 2px solid var(--ladin-green);
  outline-offset: 3px;
}
html.dark a:focus-visible, html.dark button:focus-visible,
html.dark .nav-link:focus-visible, html.dark .btn-soft:focus-visible {
  outline-color: var(--ladin-blue);
}

/* ----- Narrow / coarse ----- */
@media (max-width: 640px) {
  .publications-rule { display: flex; flex-direction: column; align-items: center; gap: 0.45rem; }
  .publications-rule-line { width: 100%; max-width: 12rem; }
  .card { padding: 1.25rem 1rem; }
  .story-gallery { grid-template-columns: 1fr 1fr; gap: 0.65rem; }
  .story-gallery .story-image:nth-child(5),
  .story-gallery .story-image:nth-child(6) { grid-column: 1 / -1; }
  .image-pair { grid-template-columns: 1fr; }
  .nav-mobile .lang-selector {
    min-height: 2.75rem;
    padding: 0.35rem 0.55rem;
    font-size: 0.7rem;
    flex-wrap: nowrap;
    justify-content: center;
  }
  .glass, .site-nav, .site-footer {
    -webkit-backdrop-filter: saturate(160%) blur(12px);
    backdrop-filter: saturate(160%) blur(12px);
  }
  .site-nav.glass { background: rgba(255,255,255,0.78); }
  html.dark .site-nav.glass { background: rgba(10,14,20,0.82); }
  .footer-row { flex-direction: column; align-items: stretch; gap: 0.85rem; }
  .footer-meta, .footer-socials, .footer-brands, .footer-gems { justify-content: center; text-align: center; }
  .footer-version { width: 100%; text-align: center; }
  .story-feature .essay-body { font-size: 1rem; line-height: 1.68; }
  .story-card { padding: 1.2rem 1rem 1.15rem; }
}
@media (max-width: 420px) {
  /* Keep chevron locked to desktop geometry — do not grow it on small phones */
  .stories-toggle {
    width: var(--chev-w);
    min-width: var(--chev-w);
    height: var(--chev-h);
    min-height: var(--chev-h);
  }
  .stories-chevron { width: 3.7rem; height: 0.82rem; flex-basis: 3.7rem; }
}
@media (max-width: 360px) {
  .hero-photo { width: min(15rem, 78vw); }
  .mobile-grid a { font-size: clamp(0.66rem, 2.6vw, 0.8rem); padding: 0.45rem 0.28rem; }
}
@media (hover: none), (pointer: coarse) {
  .story-gallery .story-image:hover, .card:hover, .footer-link:hover { transform: none; }
  .glass, .site-nav, .site-footer {
    -webkit-backdrop-filter: saturate(150%) blur(10px);
    backdrop-filter: saturate(150%) blur(10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-gallery .story-image { transition: none; }
  .stories-chevron, .stories-toggle { transition: none; }
  .stories-toggle:active { transform: none; }
}

/* =====================================================================
   PRINT — paper, always white. CTRL+P is a sheet, not a night screenshot.
   html.is-printing is set by JS before the dialog paints.
   ===================================================================== */
html.is-printing,
html.is-printing.dark {
  color-scheme: light !important;
  background: #fff !important;
  --glass-bg: rgba(255,255,255,0.94);
  --glass-border: rgba(0,106,78,0.12);
  --text-light: #0a0a0a;
  --text-dark: #0a0a0a;
  --bg-light: #ffffff;
  --bg-dark: #ffffff;
}

@media print {
  @page { size: A4 portrait; margin: 8mm 8mm 10mm 8mm; }

  html, html.dark, html.is-printing, html.is-printing.dark {
    width: 100% !important;
    background: #fff !important;
    font-size: 10.5pt !important;
    color-scheme: light !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  body, html.dark body, html.is-printing body {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 0 !important;
    overflow: visible !important;
    color: #0a0a0a !important;
    background: transparent !important;
  }
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
  .sr-only { display: none !important; }

  .site-bg {
    position: absolute !important;
    inset: 0 auto auto 0 !important;
    width: 100% !important;
    height: 280mm !important;
    z-index: 0 !important;
    opacity: 0.28 !important;
    overflow: hidden !important;
  }
  .site-bg picture { display: none !important; }
  .site-bg-print {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    opacity: 1 !important;
    filter: grayscale(0) brightness(1.08);
  }
  .site-bg::after {
    background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.96)) !important;
    opacity: 1 !important;
  }

  .site-nav, main, .site-footer { position: relative !important; z-index: 2 !important; }
  .site-nav, html.dark .site-nav {
    position: relative !important;
    top: auto !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    background: rgba(255,255,255,0.94) !important;
    box-shadow: none !important;
    break-inside: avoid;
  }
  .nav-desktop { display: flex !important; flex-wrap: wrap !important; gap: 0.3rem !important; }
  .nav-mobile, .mobile-grid { display: none !important; }

  .site-footer, html.dark .site-footer {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    background: rgba(255,255,255,0.96) !important;
    break-inside: avoid;
  }
  .glass, .card, .social-card, .official-card,
  html.dark .glass, html.dark .card {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    background: rgba(255,255,255,0.96) !important;
    border: 1px solid rgba(229,228,226,0.95) !important;
    box-shadow: none !important;
    color: #0a0a0a !important;
    break-inside: avoid-page;
  }
  .hero-photo { width: min(52mm, 38%) !important; margin-inline: auto !important; }
  .nav-avatar { width: 9mm !important; height: 9mm !important; object-position: center 80% !important; }
  .story-hero-img, .story-lead { max-height: 95mm !important; width: auto !important; max-width: 100% !important; object-fit: contain !important; }
  .story-gallery { grid-template-columns: 1fr 1fr !important; gap: 3mm !important; }
  .wrap, .nav-inner, .footer-inner { max-width: 100% !important; padding-left: 0 !important; padding-right: 0 !important; }
  .milestone-table { font-size: 8.5pt !important; }
  .milestone-table th, .milestone-table td { border: 0.35pt solid #333 !important; padding: 1.6mm !important; color: #0a0a0a !important; }
  a { color: inherit !important; text-decoration: none !important; }
  a[href]::after { content: none !important; }
  .ladin-flag { display: flex !important; }
  .footer-logo { background: #FFFFFF !important; filter: none !important; }
  .quote-platinum, .grok-colophon { color: #6b6a68 !important; }
  .monego-italic { font-style: italic !important; color: #006A4E !important; }
  .story-pull { color: #006A4E !important; }
  .stories-toggle, .stories-chevron, .theme-pill, .pill-track { display: none !important; }
  .newsletter-cta, a.newsletter-cta,
  html.dark .newsletter-cta, html.dark a.newsletter-cta {
    background: #fff !important;
    border: 1.5px solid #E5E4E2 !important;
    box-shadow: none !important;
    color: #0a0a0a !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
  #stories-archive, #stories-archive[hidden] { display: block !important; }
  
}

@font-face {
  font-family: "Geist Pixel Grid";
  src: url("../fonts/GeistPixel-Grid.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.print-apple-head, .print-apple-foot { display: none; }
@media print {
  .print-apple-head {
    display: flex !important;
    justify-content: space-between;
    align-items: baseline;
    gap: 8mm;
    border-bottom: 0.35pt solid #d2d2d7;
    color: #6e6e73 !important;
    font-size: 8pt;
    letter-spacing: 0.02em;
    padding: 0 0 3mm;
    margin: 0 0 6mm;
  }
  .print-apple-foot {
    display: flex !important;
    justify-content: space-between;
    gap: 8mm;
    border-top: 0.35pt solid #d2d2d7;
    color: #6e6e73 !important;
    font-size: 8pt;
    padding: 3mm 0 0;
    margin: 8mm 0 0;
  }
  .print-apple-mark { font-weight: 600; color: #1d1d1f !important; }
  .site-bg { height: 210mm !important; opacity: 0.18 !important; }
}
