:root {
  color-scheme: light;
  --bg: #eef5f8;
  --panel: #ffffff;
  --panel-soft: #f7fbfc;
  --text: #10212b;
  --muted: #647580;
  --line: #d8e5ea;
  --accent: #1f7aae;
  --accent-2: #38a37f;
  --warn: #d9a21e;
  --shadow: 0 18px 48px rgba(25, 62, 77, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #020304;
  --panel: #07090c;
  --panel-soft: #0b0f13;
  --text: #f1f6f8;
  --muted: #a7b1b7;
  --line: #20272d;
  --accent: #58b9ea;
  --accent-2: #66d2a5;
  --warn: #f0c45a;
  --shadow: 0 22px 56px rgba(0, 0, 0, 0.46);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(88, 185, 234, 0.09), transparent 28rem),
    linear-gradient(180deg, var(--bg), #050608 42%, var(--bg));
  color: var(--text);
}

a { color: inherit; }

.site-header {
  position: fixed;
  top: clamp(0.7rem, 1.7vw, 1.15rem);
  left: clamp(0.7rem, 1.8vw, 1.35rem);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: auto;
  max-width: min(calc(100vw - 1.4rem), 58rem);
  padding: 0.48rem 0.58rem;
  border: 1px solid rgba(242, 246, 248, 0.13);
  border-radius: 999px;
  background: rgba(4, 7, 10, 0.54);
  color: #f2f6f8;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 0.48rem;
  align-items: center;
  text-decoration: none;
  min-width: 0;
  color: #f2f6f8;
}

.brand strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.1;
}

.brand-logo {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  object-fit: contain;
  filter: saturate(1.35) contrast(1.18) brightness(1.06) drop-shadow(0 0 14px rgba(240, 196, 90, 0.28));
}

.mobile-theme-hint {
  position: absolute;
  left: 0.18rem;
  top: calc(100% + 0.5rem);
  display: none;
  padding: 0.38rem 0.58rem;
  border: 1px solid rgba(242, 246, 248, 0.16);
  border-radius: 999px;
  background: rgba(4, 7, 10, 0.78);
  color: #f2f6f8;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 820;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.2rem);
  transition: opacity 0.22s ease, transform 0.22s ease;
  white-space: nowrap;
}

.mobile-theme-hint::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: -0.34rem;
  width: 0.62rem;
  height: 0.62rem;
  border-left: 1px solid rgba(242, 246, 248, 0.16);
  border-top: 1px solid rgba(242, 246, 248, 0.16);
  background: rgba(4, 7, 10, 0.78);
  transform: rotate(45deg);
}

.orb {
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 30%, #ffffff 0 8%, var(--accent) 24%, #0f4f79 72%);
  box-shadow: 0 0 0 0 rgba(31, 122, 174, 0.42);
  animation: breathe 2.8s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(0.97); box-shadow: 0 0 0 0 rgba(31, 122, 174, 0.34); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(31, 122, 174, 0); }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.44rem;
}

.theme-toggle {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2rem;
  border: 1px solid rgba(242, 246, 248, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.theme-toggle::before {
  content: "◐";
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0;
}

.theme-toggle span {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.nav a {
  padding: 0.42rem 0.56rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 760;
  text-decoration: none;
}

.nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.app-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(5.4rem, 8vw, 6.4rem) 0 3rem;

  min-height: calc(100vh - 24px);
}

.app-shell[data-view="stories"] {
  width: 100%;
  padding-top: clamp(5.4rem, 8vw, 6.4rem);
}

.admin-shell {
  padding-top: clamp(2.2rem, 5vw, 4.5rem);
}

.admin-shell .article-shell {
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
}

.admin-shell .blog-shell {
  margin-top: clamp(1rem, 2.5vw, 1.8rem);
}

.admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.icon-action {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-soft);
  color: var(--text);
  padding: 0.42rem 0.72rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.icon-action:hover {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, var(--panel));
}

.icon-action.danger {
  color: #b42318;
  border-color: color-mix(in srgb, #b42318 34%, var(--line));
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  gap: 1rem;
  align-items: stretch;
}

.hero-main,
.panel,
.post-card,
.social-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--panel) 94%, transparent);
  box-shadow: var(--shadow);
}

.hero-main { padding: clamp(1.4rem, 4vw, 3rem); }

.hero-main {
  display: flex;
  flex-direction: column;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 13ch;
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h3 { margin-bottom: 0.45rem; }

p { color: var(--muted); line-height: 1.65; }

.dynamic-copy {
  max-width: 58rem;
  color: var(--text);
  font-size: 1.06rem;
}

.home-hero .hero-main {
  background:
    radial-gradient(circle at 92% 8%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 18rem),
    color-mix(in srgb, var(--panel) 94%, transparent);
}

.home-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.95rem 0 0.15rem;
}

.assistant-blip {
  position: relative;
  margin: 1.1rem 0 0;
  padding: 0.95rem 1rem;
  border: 1px solid color-mix(in srgb, var(--accent) 34%, var(--line));
  border-left: 3px solid var(--accent);
  border-radius: 14px 14px 14px 4px;
  background: var(--panel-soft);
}

.assistant-blip::before {
  content: "";
  position: absolute;
  left: -0.42rem;
  top: 1.15rem;
  width: 0.72rem;
  height: 0.72rem;
  border-left: 1px solid color-mix(in srgb, var(--accent) 34%, var(--line));
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 34%, var(--line));
  background: var(--panel-soft);
  transform: rotate(45deg);
}

.assistant-blip strong {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-size: 0.86rem;
}

.assistant-blip strong::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(31, 122, 174, 0.35);
  animation: breathe 2.8s ease-in-out infinite;
}

.assistant-blip p {
  margin-bottom: 0;
  color: var(--text);
}

.assistant-blip p + p {
  margin-top: 0.55rem;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 1.4rem;
}

.metric {
  min-width: 0;
  padding: 0.65rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 800;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.panel {
  padding: 1rem;
}

.signal-board {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  height: 100%;
}

.video-feature,
.recent-feature {
  min-height: 0;
}

.video-feature {
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
}

.recent-feature {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.video-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #061119;
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-title {
  display: block;
  overflow: hidden;
  margin-top: 0.4rem;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.25;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.panel-list {
  display: grid;
  gap: 0.55rem;
}

.section-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
}

.section-label-row .eyebrow {
  margin: 0;
}

.section-label-row span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-list {
  display: grid;
  align-content: start;
  flex: 1 1 auto;
  gap: 0.48rem;
  min-height: 0;
  height: 100%;
  overflow-y: auto;
  padding-right: 0.25rem;
  scrollbar-width: thin;
}

.signal-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2.25rem;
  gap: 0.65rem;
  align-items: center;
  min-height: 3.35rem;
  padding: 0.58rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
  text-decoration: none;
}

.signal-text {
  min-width: 0;
}

.signal-text strong {
  display: block;
  overflow: hidden;
  color: var(--text);
  font-size: 0.86rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.signal-text small {
  display: block;
  margin-top: 0.2rem;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.signal-icon {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--panel) 88%, var(--accent) 12%);
  color: color-mix(in srgb, var(--text) 88%, var(--accent) 12%);
}

.signal-icon .helios-icon {
  width: 1.22rem;
  height: 1.22rem;
}

.mini-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.4rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
}

.section {
  margin-top: 1rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin: 2rem 0 1rem;
}

.section-head.compact {
  margin-top: 1rem;
}

.photo-strip {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--panel) 88%, transparent);
  padding: 1rem;
}

.photo-carousel-shell {
  position: relative;
}

.photo-carousel {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0.15rem 0 0.35rem;
}

.photo-carousel::-webkit-scrollbar {
  display: none;
}

.photo-carousel-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 2.65rem;
  height: 4.8rem;
  border: 1px solid rgba(242, 246, 248, 0.16);
  border-radius: 999px;
  background: rgba(2, 3, 4, 0.34);
  color: rgba(241, 246, 248, 0.86);
  font-size: 1.9rem;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
  opacity: 0.72;
  transform: translateY(-50%);
  transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(8px);
}

.photo-carousel-control.previous {
  left: 0.35rem;
}

.photo-carousel-control.next {
  right: 0.35rem;
}

.photo-carousel-control:hover,
.photo-carousel-control:focus-visible {
  border-color: rgba(242, 246, 248, 0.32);
  background: rgba(2, 3, 4, 0.58);
  opacity: 1;
}

.photo-carousel-control:active {
  transform: translateY(-50%) scale(0.98);
}

.photo-card {
  position: relative;
  display: block;
  flex: 0 0 clamp(12rem, 24vw, 18rem);
  overflow: hidden;
  min-height: 10rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
  color: white;
  text-decoration: none;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 10rem;
  object-fit: cover;
  display: block;
  filter: saturate(0.96) contrast(1.02);
  transition: transform 0.2s ease;
}

.photo-card:hover img {
  transform: scale(1.035);
}

.photo-card span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.55rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
  font-size: 0.74rem;
  font-weight: 800;
}

body[data-view="home"] {
  overflow-x: hidden;
  background: #000;
}

body[data-view="home"] .site-header {
  display: none;
}

.app-shell[data-view="home"] {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}

.home-cinema {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
  color: #f5f7f8;
}

.home-cinema-slides,
.home-cinema-slide,
.home-cinema-shade {
  position: absolute;
  inset: 0;
}

.home-cinema-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.045);
  animation: homeSlideShow 24s linear infinite;
  animation-delay: calc(var(--slide-index, 0) * 6s);
  filter: saturate(1.08) contrast(1.05);
}

.home-cinema-slide.is-first {
  opacity: 1;
  animation: none;
}

@keyframes homeSlideShow {
  0% { opacity: 0; transform: scale(1.045); }
  5% { opacity: 1; }
  25% { opacity: 1; }
  31% { opacity: 0; transform: scale(1.09); }
  100% { opacity: 0; transform: scale(1.09); }
}

.home-cinema-shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.16) 20%, rgba(0, 0, 0, 0.08) 56%, rgba(0, 0, 0, 0.74)),
    radial-gradient(circle at 18% 72%, rgba(0, 0, 0, 0.68), transparent 26rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), transparent 38%, rgba(0, 0, 0, 0.72));
  backdrop-filter: blur(0.5px);
}

.home-social-rail,
.home-metrics,
.home-cinema-copy {
  position: absolute;
  z-index: 2;
}

.home-social-rail {
  top: clamp(1.05rem, 2.4vw, 2rem);
  left: clamp(1rem, 3vw, 2.4rem);
  display: flex;
  gap: clamp(0.75rem, 1.4vw, 1rem);
  align-items: center;
}

.home-social-rail a {
  display: inline-grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.home-social-rail a:hover,
.home-social-rail a:focus-visible {
  color: white;
  transform: translateY(-1px);
}

.home-social-rail .helios-icon {
  width: 1.26rem;
  height: 1.26rem;
}

.home-yt-dropdown-wrap {
  position: relative;
}

.home-yt-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.52rem 0.68rem;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(11, 12, 16, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.01em;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.home-yt-trigger:hover,
.home-yt-trigger:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(17, 30, 45, 0.54);
  transform: translateY(-1px);
}

.home-yt-trigger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.home-yt-trigger-icon .helios-icon {
  width: 1rem;
  height: 1rem;
}

.home-yt-menu {
  position: absolute;
  top: calc(100% + 0.52rem);
  left: 0;
  min-width: 15.2rem;
  max-width: 20rem;
  width: min(20rem, 86vw);
  padding: 0.44rem;
  border-radius: 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(140deg, rgba(6, 8, 13, 0.95), rgba(16, 22, 35, 0.95));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.54);
  display: grid;
  gap: 0.26rem;
  z-index: 6;
  max-height: min(18rem, 60vh);
  pointer-events: none;
  opacity: 0;
  transform: translateY(-0.24rem) scale(0.98);
  transform-origin: top left;
  transition: opacity 0.18s ease, transform 0.18s ease;
  overflow-y: auto;
  overflow-x: hidden;
}

.home-yt-dropdown-wrap.open .home-yt-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.home-yt-link {
  display: grid;
  grid-template-columns: 0.24rem 1fr;
  align-items: center;
  gap: 0.46rem;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  padding: 0.42rem 0.56rem;
  border-radius: 0.56rem;
  font-size: 0.74rem;
  line-height: 1.2;
  transition: background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.home-social-rail .home-yt-link {
  width: 100%;
  height: auto;
  place-items: initial;
}

.home-yt-link::before {
  content: "";
  margin-left: 0.02rem;
  width: 0.24rem;
  height: 0.24rem;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.82;
  justify-self: center;
  align-self: center;
}

.home-yt-link span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-yt-link:hover,
.home-yt-link:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.home-yt-menu::-webkit-scrollbar {
  width: 8px;
}

.home-yt-menu::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.07);
}

.home-yt-menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}

.home-metrics {
  left: clamp(1rem, 3vw, 2.4rem);
  bottom: clamp(1.2rem, 4vw, 3.1rem);
  display: grid;
  gap: 0.55rem;
  width: min(12.5rem, calc(100vw - 2rem));
}

.home-metric {
  display: grid;
  gap: 0.02rem;
  padding: 0.68rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.28);
  color: white;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.home-metric strong {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1;
}

.home-metric span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.home-cinema-copy {
  right: clamp(1rem, 4vw, 4rem);
  bottom: clamp(1.4rem, 5vw, 4.2rem);
  display: grid;
  justify-items: end;
  gap: 0.8rem;
  max-width: min(50rem, calc(100vw - 2rem));
  text-align: right;
}

.home-cinema-copy h1 {
  margin: 0;
  color: white;
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  line-height: 0.88;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.78);
  white-space: nowrap;
}

.home-title-lockup {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.6rem, 1.3vw, 1rem);
  max-width: min(100%, 50rem);
}

.home-title-lockup img {
  width: clamp(2.9rem, 6vw, 5.25rem);
  height: clamp(2.9rem, 6vw, 5.25rem);
  object-fit: contain;
  filter: saturate(1.45) contrast(1.2) brightness(1.08) drop-shadow(0 0 24px rgba(0, 0, 0, 0.78));
}

.home-title-lockup span {
  display: inline-block;
}

.home-entry-nav {
  display: grid;
  justify-items: end;
  gap: 0.42rem;
  padding: 0.62rem 0.78rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.8rem;
  background: linear-gradient(135deg, rgba(5, 7, 8, 0.52), rgba(5, 7, 8, 0.22));
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.home-pipe-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.24rem 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.8rem, 1.25vw, 1rem);
  font-weight: 760;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.8);
}

.home-entry-helper {
  display: none;
}

.home-pipe-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.18rem 0.32rem;
  border-radius: 999px;
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.24em;
  transition: background 0.18s ease, color 0.18s ease, text-decoration-color 0.18s ease, transform 0.18s ease;
}

.home-pipe-nav a:hover,
.home-pipe-nav a:focus-visible {
  color: white;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
  outline: none;
}

.home-pipe-nav .home-current-room {
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 50% 50%, rgba(89, 176, 255, 0.32), rgba(89, 176, 255, 0.08) 58%, transparent 76%),
    rgba(91, 170, 255, 0.13);
  box-shadow: 0 0 0 1px rgba(138, 203, 255, 0.24), 0 0 18px rgba(70, 166, 255, 0.32);
  animation: landingRoomGlow 3.8s ease-in-out infinite;
}

.home-pipe-nav .home-current-room::after {
  content: "You are here";
  position: absolute;
  left: 50%;
  right: auto;
  bottom: calc(100% + 0.62rem);
  width: max-content;
  max-width: min(8rem, 72vw);
  padding: 0.46rem 0.68rem;
  border: 1px solid rgba(138, 203, 255, 0.22);
  border-radius: 999px;
  background: rgba(4, 7, 10, 0.78);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.32);
  font-size: 0.68rem;
  font-weight: 760;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  transform: translate(-50%, 0.28rem);
  animation: landingHelperBubble 7.5s ease-in-out infinite;
  white-space: nowrap;
}

.home-pipe-nav .home-current-room::before {
  display: none;
}

@keyframes landingRoomGlow {
  0%, 100% {
    box-shadow: 0 0 0 1px rgba(138, 203, 255, 0.18), 0 0 12px rgba(70, 166, 255, 0.18);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(176, 220, 255, 0.34), 0 0 24px rgba(70, 166, 255, 0.44);
  }
}

@keyframes landingHelperBubble {
  0%, 12%, 100% {
    opacity: 0;
    transform: translate(-50%, 0.28rem);
  }
  18%, 72% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  82% {
    opacity: 0;
    transform: translate(-50%, -0.1rem);
  }
}

.home-pipe-nav a + a::before {
  content: "|";
  margin: 0 0.4rem 0 0.18rem;
  color: rgba(255, 255, 255, 0.34);
}

.app-shell[data-view="screenroom"] {
  width: 100%;
  padding-top: 0;
}

.screenroom-page {
  min-height: 100vh;
  background: #000;
  color: #f4f7f8;
}

.screenroom-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  min-height: min(78vh, 48rem);
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) clamp(1rem, 5vw, 4rem) clamp(2.2rem, 5vw, 4rem);
  background: #020303;
}

.screenroom-hero-bg,
.screenroom-hero-shade {
  position: absolute;
  inset: 0;
}

.screenroom-hero-bg {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08);
  opacity: 0.82;
}

.screenroom-hero-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.08) 38%, #000 96%),
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.65) 38%, rgba(0, 0, 0, 0.26) 74%, #000 100%);
}

.screenroom-hero-copy {
  display: grid;
  gap: 0.85rem;
  max-width: 43rem;
}

.screenroom-hero-copy h1 {
  max-width: 12ch;
  margin: 0;
  color: white;
  font-size: clamp(3rem, 8vw, 7rem);
}

.screenroom-hero-copy p:not(.eyebrow) {
  max-width: 39rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.screenroom-shelf {
  padding: clamp(1.5rem, 3.4vw, 2.7rem) clamp(1rem, 4vw, 3.2rem) 0;
}

.screenroom-shelf-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.screenroom-shelf-head .eyebrow {
  margin-bottom: 0.24rem;
  color: #f4f7f8;
  font-size: clamp(1.08rem, 1.8vw, 1.55rem);
  text-transform: none;
}

.screenroom-shelf-head p:not(.eyebrow) {
  max-width: 40rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.screenroom-row {
  display: flex;
  gap: clamp(0.78rem, 1.4vw, 1.05rem);
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.55rem;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.screenroom-row::-webkit-scrollbar {
  display: none;
}

.screenroom-card {
  position: relative;
  flex: 0 0 clamp(15.5rem, 23vw, 22rem);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 0.72rem;
  background: #111;
  color: white;
  text-decoration: none;
  scroll-snap-align: start;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.36);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.screenroom-card:hover,
.screenroom-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.48);
}

.screenroom-card img,
.screenroom-card-fallback {
  display: block;
  width: 100%;
  height: 100%;
}

.screenroom-card img {
  object-fit: cover;
  transition: transform 0.22s ease;
}

.screenroom-card:hover img {
  transform: scale(1.045);
}

.screenroom-card-fallback {
  display: grid;
  place-items: center;
  padding: 1rem;
  background: linear-gradient(135deg, #101820, #1f3c52);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 850;
}

.screenroom-view-more .screenroom-card-fallback {
  gap: 0.35rem;
  background:
    radial-gradient(circle at 28% 24%, rgba(88, 185, 234, 0.24), transparent 9rem),
    linear-gradient(135deg, #0c1218, #172737 62%, #111315);
  text-align: center;
}

.screenroom-view-more .screenroom-card-fallback strong {
  color: white;
  font-size: 1rem;
  line-height: 1.05;
}

.screenroom-view-more .screenroom-card-fallback small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.74rem;
}

.screenroom-card-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 0.25rem;
  min-height: 42%;
  align-content: end;
  padding: 3rem 0.9rem 0.82rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.92));
}

.screenroom-card-copy strong {
  display: -webkit-box;
  overflow: hidden;
  color: white;
  font-size: 0.96rem;
  line-height: 1.16;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.screenroom-card-copy small {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.post-card, .social-card, .contact-card {
  padding: 1rem;
}

.discovery-card {
  display: grid;
  align-content: start;
}

.discovery-grid {
  display: grid;
  gap: 0.45rem;
}

.discovery-tile {
  display: grid;
  gap: 0.2rem;
  min-height: 4.2rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
  color: var(--text);
  text-decoration: none;
}

.discovery-tile span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.discovery-tile strong {
  overflow: hidden;
  font-size: 0.82rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.post-meta,
.tag {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.8rem 0;
}

.tag {
  padding: 0.3rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-soft);
}

.blog-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.blog-hero h1 {
  max-width: none;
  margin: 0.2rem 0 0.7rem;
  font-size: clamp(2.5rem, 6vw, 4.7rem);
  line-height: 1.02;
}

.blog-hero .dynamic-copy {
  max-width: 58rem;
}

.blog-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.65fr);
  gap: clamp(1rem, 3vw, 1.8rem);
  align-items: end;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(82, 184, 214, 0.22), transparent 30rem),
    radial-gradient(circle at 88% 0%, rgba(244, 168, 62, 0.14), transparent 26rem),
    linear-gradient(135deg, #0b151b 0%, #12252d 52%, #080d12 100%);
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.7), transparent 74%);
  pointer-events: none;
}

.blog-hero-copy,
.blog-hero-feature,
.blog-control-bar,
.blog-stat-row {
  position: relative;
  z-index: 1;
}

.blog-hero-feature {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  border: 1px solid rgba(226, 241, 247, 0.14);
  border-radius: var(--radius);
  background: rgba(5, 12, 17, 0.42);
  backdrop-filter: blur(10px);
}

.blog-hero-feature span,
.blog-hero-feature small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.blog-hero-feature strong {
  color: var(--text);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.16;
}

.blog-control-bar {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem;
  border: 1px solid rgba(226, 241, 247, 0.14);
  border-radius: 999px;
  background: rgba(5, 12, 17, 0.46);
  backdrop-filter: blur(10px);
}

.blog-smart-select {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: min(30rem, 100%);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.blog-smart-select select {
  min-width: min(22rem, 62vw);
  min-height: 2.5rem;
  padding: 0 2.4rem 0 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-soft);
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
}

.blog-stat-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-stat-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(226, 241, 247, 0.12);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(5, 12, 17, 0.3);
  font-size: 0.78rem;
  font-weight: 800;
}

.blog-stat-row strong {
  color: var(--text);
}

.blog-view-toggle {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.2rem;
  min-width: 18rem;
  padding: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-soft);
  overflow: hidden;
}

.blog-view-slider {
  position: absolute;
  inset: 0.2rem auto 0.2rem 0.2rem;
  width: calc(50% - 0.2rem);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  transition: transform 0.2s ease;
  box-shadow: 0 10px 24px rgba(31, 122, 174, 0.2);
}

.blog-view-toggle[data-view="timeline"] .blog-view-slider {
  transform: translateX(calc(100% + 0.2rem));
}

.blog-view-toggle button {
  position: relative;
  z-index: 1;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: 0.62rem 0.8rem;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}

.blog-view-toggle button.active {
  color: white;
}

.blog-shell {
  display: grid;
  grid-template-columns: 19rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.blog-shell-compact {
  display: block;
}

.blog-mobile-menu-toggle {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  padding: 0.82rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.blog-mobile-menu-toggle::after {
  content: "▾";
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1;
}

.blog-shell.mobile-menu-open .blog-mobile-menu-toggle::after {
  content: "▴";
}

.blog-mobile-drawer {
  display: none;
}

.blog-sidebar {
  grid-column: 1;
  grid-row: 1;
  position: sticky;
  top: 5rem;
  align-self: start;
}

.blog-sidebar-card {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.blog-sidebar-scroll {
  display: grid;
  gap: 0.45rem;
  max-height: calc(100vh - 14rem);
  overflow: auto;
  padding-right: 0.2rem;
}

.blog-category-chip,
.timeline-item {
  display: grid;
  gap: 0.25rem;
  padding: 0.8rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
  text-decoration: none;
}

.blog-category-chip {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.blog-category-chip strong,
.timeline-copy strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.25;
}

.blog-category-chip span,
.timeline-copy span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 750;
}

.blog-category-chip.active,
.timeline-item.active {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, var(--panel));
}

.blog-main {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.blog-shell-compact .blog-main {
  grid-column: auto;
  grid-row: auto;
}

.blog-main-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(0.9rem, 2vw, 1.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--panel) 96%, #1f7aae 4%), var(--panel)),
    var(--panel);
  box-shadow: var(--shadow);
}

.blog-main-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.blog-main-head h2 {
  margin: 0.15rem 0 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.editorial-post-card {
  display: grid;
  align-content: start;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  min-height: 0;
  padding: 1rem;
  overflow: hidden;
  border-color: color-mix(in srgb, var(--line) 82%, var(--accent) 18%);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--panel) 96%, var(--accent) 4%), color-mix(in srgb, var(--panel-soft) 96%, var(--accent-2) 4%));
}

.editorial-post-card .post-meta,
.editorial-post-card h3,
.editorial-post-card .tag-row,
.editorial-post-card p,
.editorial-post-card .mini-link {
  margin-inline: 0;
}

.editorial-post-card h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1.15;
}

.editorial-post-card p {
  display: -webkit-box;
  min-height: calc(1.5em * 2);
  max-height: calc(1.5em * 2);
  overflow: hidden;
  color: var(--muted);
  line-height: 1.5;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-grid .editorial-post-card:first-child {
  grid-column: span 2;
}

.stories-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: end;
  margin-bottom: 1rem;
  padding: clamp(1.1rem, 3vw, 2rem);
  border: 1px solid rgba(31, 122, 174, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--panel) 92%, #1f7aae 8%), color-mix(in srgb, var(--panel) 88%, #f4a83e 12%));
  box-shadow: var(--shadow);
}

.stories-hero h1 {
  max-width: 52rem;
  margin: 0.25rem 0 0.8rem;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.02;
}

.stories-hero .dynamic-copy {
  max-width: 60rem;
}

.stories-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(4.6rem, 1fr));
  gap: 0.55rem;
  min-width: min(26rem, 100%);
}

.stories-stats span {
  display: grid;
  gap: 0.15rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 4px);
  background: color-mix(in srgb, var(--panel) 78%, transparent);
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.stories-stats strong {
  color: var(--text);
  font-size: 1.45rem;
  line-height: 1;
}

.stories-cinema {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  justify-items: end;
  min-height: min(82vh, 54rem);
  margin: 0 0 1rem;
  padding: clamp(1rem, 4vw, 3.5rem);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 20% 85%, rgba(31, 122, 174, 0.32), transparent 34rem),
    radial-gradient(circle at 82% 20%, rgba(244, 168, 62, 0.18), transparent 30rem),
    linear-gradient(135deg, #05080d 0%, #0b1720 48%, #150c12 100%);
  box-shadow: none;
}

.stories-cinema::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 7, 12, 0.22), rgba(3, 7, 12, 0.18) 38%, rgba(3, 7, 12, 0.72) 100%),
    linear-gradient(0deg, rgba(3, 7, 12, 0.78), rgba(3, 7, 12, 0.08) 62%);
  z-index: 1;
}

.stories-cinema-copy,
.stories-cinema-dots {
  position: relative;
  z-index: 2;
}

.stories-cinema-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.06) saturate(0.96);
}

.stories-cinema-copy {
  display: grid;
  align-content: end;
  gap: 1rem;
  width: min(50rem, 100%);
  padding: clamp(1rem, 2.6vw, 1.8rem);
  border: 1px solid rgba(242, 246, 248, 0.14);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(5, 8, 13, 0.2), rgba(5, 8, 13, 0.58));
  backdrop-filter: blur(6px);
}

.stories-cinema-copy .eyebrow,
.stories-cinema-copy h1,
.stories-cinema-copy p {
  color: #f2f6f8;
}

.stories-cinema-copy h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3.2rem, 7.4vw, 7.1rem);
  line-height: 0.94;
}

.stories-cinema-copy p {
  max-width: 46rem;
  margin: 0;
  color: #cdd8df;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.55;
}

.stories-cinema-visual {
  display: none;
}

.stories-cinema-visual img {
  display: none;
}

.read-story-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: max-content;
  min-height: 2.55rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(242, 246, 248, 0.32);
  background: rgba(242, 246, 248, 0.12);
  color: #f2f6f8;
  font-weight: 900;
  text-decoration: none;
  backdrop-filter: blur(14px);
}

.read-story-link span {
  display: inline-grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: #f2f6f8;
  color: #07121c;
  font-size: 0.8rem;
}

.stories-cinema-dots {
  position: absolute;
  left: clamp(1.4rem, 4vw, 3rem);
  bottom: clamp(1.2rem, 3vw, 2rem);
  display: flex;
  gap: 0.55rem;
}

.stories-cinema-dots button {
  width: 0.72rem;
  height: 0.72rem;
  padding: 0;
  border: 1px solid rgba(242, 246, 248, 0.46);
  border-radius: 50%;
  background: rgba(242, 246, 248, 0.24);
  cursor: pointer;
}

.stories-cinema-dots button.is-active {
  width: 2.2rem;
  border-radius: 999px;
  background: #f2f6f8;
}

.story-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.65fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.story-feature,
.story-side-panel,
.story-collection,
.story-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--panel) 94%, transparent);
  box-shadow: var(--shadow);
}

.story-feature {
  min-height: 24rem;
  display: grid;
  align-content: end;
  gap: 1rem;
  padding: clamp(1.1rem, 3vw, 2rem);
  background:
    linear-gradient(160deg, rgba(11, 24, 36, 0.04), rgba(31, 122, 174, 0.13)),
    color-mix(in srgb, var(--panel) 88%, #f4a83e 12%);
}

.story-feature h2,
.story-side-panel h2 {
  max-width: 40rem;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
}

.story-feature p,
.story-side-panel p,
.story-card p {
  margin: 0;
  color: var(--muted);
}

.story-side-panel {
  display: grid;
  align-content: center;
  gap: 0.8rem;
  padding: 1.2rem;
}

.story-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.story-meta-line span,
.story-label {
  display: inline-flex;
  align-items: center;
  min-height: 1.6rem;
  padding: 0.28rem 0.55rem;
  border: 1px solid color-mix(in srgb, var(--line) 78%, #1f7aae 22%);
  border-radius: 999px;
  color: var(--muted);
  background: color-mix(in srgb, var(--panel) 78%, transparent);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.story-collection {
  padding: 1rem;
}

.story-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.9rem;
}

.story-card {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  min-height: 20rem;
  padding: 0 0 1rem;
  overflow: hidden;
  background: color-mix(in srgb, var(--panel) 82%, #05080d 18%);
}

.story-card-poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  color: #f2f6f8;
  text-decoration: none;
  background: #07121c;
}

.story-card-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 7, 12, 0.1), rgba(3, 7, 12, 0.74)),
    linear-gradient(90deg, rgba(3, 7, 12, 0.42), transparent 58%);
  pointer-events: none;
}

.story-card-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 220ms ease;
}

.story-card:hover .story-card-poster img {
  transform: scale(1.035);
}

.story-number {
  position: absolute;
  left: 0.9rem;
  bottom: 0.65rem;
  z-index: 1;
  color: color-mix(in srgb, var(--muted) 55%, transparent);
  font-family: "Georgia", serif;
  font-size: 2.4rem;
  line-height: 1;
}

.story-card-poster .story-label {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 1;
  color: #f2f6f8;
  border-color: rgba(242, 246, 248, 0.28);
  background: rgba(3, 7, 12, 0.44);
}

.story-card h3 {
  margin: 0 1rem;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.04;
}

.story-card p,
.story-card .story-meta-line {
  margin-inline: 1rem;
}

.story-card .mini-link {
  margin: 0 1rem;
}

.reflection-card-grid {
  align-items: stretch;
}

.reflection-card {
  min-height: 0;
  padding: 1rem;
  border-color: color-mix(in srgb, var(--line) 88%, var(--accent) 12%);
  background: color-mix(in srgb, var(--panel) 94%, transparent);
}

[data-theme="dark"] .reflection-card {
  border-color: color-mix(in srgb, var(--line) 76%, var(--accent) 24%);
  background: color-mix(in srgb, var(--panel) 92%, #05080d 8%);
}

.reflection-title-card {
  display: grid;
  align-items: end;
  min-height: 8.5rem;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--line) 82%, var(--accent) 18%);
  border-radius: calc(var(--radius) - 2px);
  background:
    radial-gradient(circle at 15% 18%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 14rem),
    linear-gradient(135deg, color-mix(in srgb, var(--panel-soft) 96%, var(--accent) 4%), color-mix(in srgb, var(--panel) 94%, var(--accent-2) 6%));
  color: var(--text);
  text-decoration: none;
}

[data-theme="dark"] .reflection-title-card {
  background:
    radial-gradient(circle at 15% 18%, rgba(88, 185, 234, 0.18), transparent 14rem),
    linear-gradient(135deg, rgba(18, 34, 44, 0.96), rgba(12, 21, 27, 0.96));
}

.reflection-title-card span {
  max-width: 18ch;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  font-weight: 800;
  line-height: 1.02;
}

.reflection-card p {
  display: -webkit-box;
  min-height: calc(1.55em * 4);
  max-height: calc(1.55em * 4);
  overflow: hidden;
  color: var(--muted);
  line-height: 1.55;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.reflection-card .story-meta-line {
  margin-inline: 0;
}

.reflection-card .mini-link {
  margin: 0;
  justify-self: start;
}

.story-reader-page {
  position: relative;
  min-height: calc(100vh - 11rem);
  margin: -1rem calc(50% - 50vw) -2.25rem;
  padding: clamp(0.8rem, 2vw, 1.4rem) max(0.75rem, calc((100vw - 1560px) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(29, 120, 162, 0.28), transparent 28rem),
    radial-gradient(circle at 84% 12%, rgba(180, 58, 58, 0.2), transparent 24rem),
    linear-gradient(180deg, #05080d 0%, #0c1119 48%, #06070a 100%);
  color: #f2f5f7;
}

.story-reader-aura {
  position: absolute;
  inset: 8rem auto auto 55%;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 0 rgba(100, 180, 220, 0.16);
  animation: storyPulse 3.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes storyPulse {
  0%, 100% { opacity: 0.34; transform: translate(-50%, 0) scale(0.95); box-shadow: 0 0 0 0 rgba(100, 180, 220, 0.14); }
  50% { opacity: 0.72; transform: translate(-50%, 0) scale(1.08); box-shadow: 0 0 0 2.6rem rgba(100, 180, 220, 0); }
}

.story-back-link {
  display: none;
}

.story-reader {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.1rem;
}

.story-reader-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  min-height: min(58vh, 42rem);
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
}

.story-reader-copy {
  display: grid;
  align-content: end;
  gap: 1rem;
}

.story-reader-copy .eyebrow,
.story-reader-copy h1,
.story-reader-copy p {
  color: #f2f5f7;
}

.story-reader-copy h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.1rem, 8vw, 7.2rem);
  line-height: 0.9;
}

.story-reader-premise {
  max-width: 48rem;
  margin: 0;
  color: #cdd8df !important;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.story-reader-visual {
  position: relative;
  min-height: 24rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(100, 180, 220, 0.08)),
    #111820;
}

.story-reader-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.38));
  pointer-events: none;
}

.story-reader-visual img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
  display: block;
  filter: contrast(1.06) saturate(0.92);
}

.story-reader-body {
  width: min(1560px, 100%);
  max-width: min(1560px, 100%);
  margin: 0 auto;
  padding: clamp(1rem, 2.2vw, 1.8rem) clamp(0.9rem, 2.4vw, 1.6rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(20, 31, 39, 0.98), rgba(14, 23, 29, 0.96)),
    #0e171c;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.story-reader-body p,
.story-reader-body li {
  max-width: none;
  margin: 0 0 1.45rem !important;
  color: #d9e5e9 !important;
  font-size: clamp(1.02rem, 1.35vw, 1.12rem) !important;
  line-height: 1.68 !important;
  text-align: justify !important;
  text-justify: inter-word !important;
  hyphens: auto !important;
  overflow-wrap: break-word !important;
  font-family: inherit !important;
}

.story-reader-body h1,
.story-reader-body h2,
.story-reader-body h3,
.story-reader-body h4 {
  max-width: none;
  margin: 2rem 0 0.85rem !important;
  color: #f3f7f8 !important;
  text-align: left !important;
  font-family: inherit !important;
  letter-spacing: 0;
}

.story-reader-body h3 {
  padding-top: 1.1rem;
  border-top: 1px solid rgba(230, 240, 244, 0.14);
  font-size: clamp(1.25rem, 2.4vw, 1.85rem) !important;
}

.story-reader-body h3:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.story-reader-body img {
  width: min(42vw, 580px) !important;
  height: auto !important;
  max-height: 33rem;
  object-fit: cover;
  display: block;
  margin: 0.3rem 0 1.1rem 1.4rem !important;
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(7, 18, 28, 0.24);
}

.story-reader-body .story-inline-image {
  margin: 0.2rem 0 1.45rem 2.35rem !important;
  max-width: min(42vw, 580px);
  float: right;
  clear: right;
}

.story-reader-body .story-inline-image--left {
  float: right;
  clear: right;
  margin: 0.2rem 0 1.45rem 2.35rem !important;
}

.story-reader-body .story-inline-image--left img,
.story-reader-body .story-inline-image--right img {
  width: 100% !important;
  margin: 0 !important;
  float: none;
  clear: none;
}

.story-reader-body hr {
  margin: 2rem 0 !important;
  border: 0;
  border-top: 1px solid rgba(230, 240, 244, 0.16);
}

.story-reader-body blockquote {
  margin: 2rem 0 0 !important;
  padding: 1rem 1.1rem;
  border-left: 4px solid #1f7aae;
  background: rgba(31, 122, 174, 0.16);
}

.story-reader .story-reader-body {
  display: block;
  width: min(1560px, 100%);
  max-width: min(1560px, 100%);
  margin: 0 auto;
}

.story-reader .story-reader-body p,
.story-reader .story-reader-body li {
  margin: 0 0 1.45rem;
  color: #d9e5e9;
  line-height: 1.68;
  text-align: justify;
}

.story-reader .story-reader-body::after {
  content: "";
  display: block;
  clear: both;
}

.story-reader .story-reader-body > *:first-child {
  margin-top: 0 !important;
}

.story-reader .story-reader-body > div:empty,
.story-reader .story-reader-body > p:empty {
  display: none !important;
}

.story-reader .story-reader-body .separator {
  margin: 0.2rem 0 1.45rem 2.35rem !important;
}

.story-reader .story-reader-body p + p {
  margin-top: 0.35rem;
}

.story-reader .story-reader-body h1,
.story-reader .story-reader-body h2,
.story-reader .story-reader-body h3,
.story-reader .story-reader-body h4 {
  clear: both;
}

.story-reader .story-reader-body,
.story-reader .story-reader-body *:not(a):not(img):not(svg):not(path) {
  color: #d9e5e9 !important;
}

.story-reader .story-reader-body h1,
.story-reader .story-reader-body h2,
.story-reader .story-reader-body h3,
.story-reader .story-reader-body h4,
.story-reader .story-reader-body strong,
.story-reader .story-reader-body b {
  color: #f3f7f8 !important;
}

.blog-article {
  max-width: none;
  margin: 0;
}

.blog-article h1 {
  max-width: none;
}

.timeline-item {
  grid-template-columns: 6.8rem minmax(0, 1fr);
  align-items: start;
  gap: 0.7rem;
}

.timeline-item time {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.timeline-copy {
  display: grid;
  gap: 0.15rem;
}

.timeline-load-more,
.timeline-end {
  width: 100%;
  padding: 0.8rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
  color: var(--muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.timeline-load-more {
  color: var(--text);
  cursor: pointer;
}

.admin-preview {
  max-width: 920px;
}

.admin-preview .article-content {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.admin-preview .article-content > * {
  margin-top: 0;
  margin-bottom: 0;
}

.timeline-item h3 a {
  color: var(--text);
  text-decoration: none;
}

.article-shell {
  max-width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(1.2rem, 4vw, 2.4rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.article-shell h1 {
  max-width: none;
  margin-top: 1rem;
  font-size: clamp(2.2rem, 5.6vw, 5rem);
  line-height: 0.98;
}

.article-body {
  display: grid;
  gap: 1.15rem;
  max-width: 100%;
  margin: 1.5rem 0;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.article-body > * {
  max-width: 100%;
  min-width: 0;
}

.article-body p,
.article-body li {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.02rem, 1.2vw, 1.14rem);
  line-height: 1.78;
  text-align: left;
  text-justify: inter-word;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.blog-article .article-body {
  gap: 1.05rem;
}

.blog-article .article-body p,
.blog-article .article-body li {
  text-align: justify;
  text-align-last: auto;
}

.blog-article .article-body p + p {
  margin-top: 0.15rem;
}

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4 {
  max-width: none;
  margin: 1.4rem 0 0.45rem;
  line-height: 1.12;
  text-align: left;
}

.article-body h1 { font-size: 2rem; }
.article-body h2 { font-size: 1.6rem; }
.article-body h3 { font-size: 1.25rem; }

.article-body a {
  color: var(--accent);
  font-weight: 800;
}

.article-body ul,
.article-body ol {
  margin: 0;
  padding-left: 1.4rem;
  color: var(--text);
}

.article-body pre,
.article-body code {
  max-width: 100%;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.article-body pre {
  overflow-x: auto;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
}

.article-body table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
  text-align: left;
}

.article-body th,
.article-body td {
  min-width: min(9rem, 42vw);
  max-width: 24rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  color: var(--text);
  text-align: left;
  text-align-last: auto;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.article-body th {
  background: color-mix(in srgb, var(--accent) 12%, var(--panel));
  font-weight: 900;
}

.article-disclaimer {
  margin-top: 1.6rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  background: var(--panel-soft);
}

.article-disclaimer strong {
  display: block;
  margin-bottom: 0.35rem;
}

.article-disclaimer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .blog-hero {
    grid-template-columns: 1fr;
  }

  .blog-control-bar {
    border-radius: var(--radius);
    align-items: stretch;
  }

  .blog-view-toggle,
  .blog-smart-select,
  .blog-smart-select select {
    width: 100%;
    min-width: 0;
  }

  .blog-smart-select {
    display: grid;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid .editorial-post-card:first-child {
    grid-column: auto;
  }

  .blog-main-head {
    display: grid;
    align-items: start;
  }

  .article-shell {
    padding: 1rem;
  }
}

.social-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.social-hero {
  position: relative;
  display: grid;
  align-items: end;
  justify-items: end;
  min-height: min(74vh, 50rem);
  margin: -1rem calc(50% - 50vw) 1rem;
  padding: clamp(5.8rem, 8vw, 7rem) max(1rem, calc((100vw - 1560px) / 2)) clamp(1rem, 4vw, 3.5rem);
  overflow: hidden;
  border: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(88, 185, 234, 0.24), transparent 30rem),
    radial-gradient(circle at 76% 72%, rgba(102, 210, 165, 0.16), transparent 28rem),
    linear-gradient(135deg, #05080d, #0a1720 56%, #081014);
}

.social-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 7, 12, 0.24), rgba(3, 7, 12, 0.08) 42%, rgba(3, 7, 12, 0.58)),
    linear-gradient(0deg, rgba(3, 7, 12, 0.72), transparent 58%);
}

.social-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.66;
  filter: saturate(1.08) contrast(1.08);
}

.social-hero-aura {
  position: absolute;
  inset: 12% auto auto 10%;
  width: min(46rem, 72vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(88, 185, 234, 0.18), transparent 64%),
    conic-gradient(from 100deg, rgba(102, 210, 165, 0.16), rgba(88, 185, 234, 0.16), rgba(244, 168, 62, 0.1), rgba(102, 210, 165, 0.16));
  filter: blur(24px);
  opacity: 0.78;
}

.social-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  width: min(44rem, 100%);
  padding: clamp(1rem, 2.6vw, 1.8rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #f2f6f8;
  backdrop-filter: blur(8px);
}

.social-hero-copy .eyebrow,
.social-hero-copy h1,
.social-hero-copy p {
  color: #f2f6f8;
}

.social-hero-copy h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.1rem, 7.4vw, 7.2rem);
  line-height: 0.94;
}

.social-hero-copy p {
  max-width: 42rem;
  margin: 0;
  color: #cdd8df;
  font-size: clamp(1.05rem, 1.65vw, 1.25rem);
  line-height: 1.55;
}

.social-directory {
  display: grid;
  gap: 1rem;
}

.social-channel-section {
  display: grid;
  gap: 0.85rem;
  padding: clamp(0.95rem, 2vw, 1.25rem);
  border: 1px solid color-mix(in srgb, var(--line) 86%, var(--accent) 14%);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--panel) 96%, var(--accent) 4%), color-mix(in srgb, var(--panel-soft) 96%, transparent));
  box-shadow: var(--shadow);
}

.social-channel-section .social-card-head {
  margin: 0;
}

.social-channel-section .social-card-head h2 {
  margin: 0.12rem 0 0.25rem;
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  line-height: 1;
}

.social-channel-section .social-card-head p:not(.eyebrow) {
  max-width: 56rem;
  margin: 0;
  color: var(--muted);
}

.social-section-mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2.65rem;
  height: 2.65rem;
  color: color-mix(in srgb, var(--text) 88%, var(--accent) 12%);
}

.helios-icon {
  display: block;
  width: 1.45rem;
  height: 1.45rem;
}

.category-icon {
  width: 2.15rem;
  height: 2.15rem;
}

.inline-platform-icon,
.social-mini-icon {
  display: inline-grid;
  place-items: center;
  color: color-mix(in srgb, var(--text) 82%, var(--muted) 18%);
}

.inline-platform-icon .helios-icon {
  width: 1.35rem;
  height: 1.35rem;
}

.social-mini-icon .helios-icon {
  width: 1rem;
  height: 1rem;
}

.social-link-flow {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--line) 88%, transparent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--panel-soft) 88%, transparent);
}

.social-link-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(12rem, 0.52fr);
  gap: 0.75rem;
  align-items: center;
  min-height: 4.35rem;
  padding: 0.76rem 0.85rem;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 86%, transparent);
  color: var(--text);
  text-decoration: none;
}

.social-link-row:last-child {
  border-bottom: 0;
}

.social-link-row:hover {
  background: color-mix(in srgb, var(--panel) 88%, var(--accent) 12%);
}

.social-link-main,
.social-link-meta {
  display: grid;
  min-width: 0;
}

.social-link-main {
  gap: 0.18rem;
}

.social-link-main strong {
  overflow: hidden;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-link-main small {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.social-link-meta {
  justify-items: end;
  gap: 0.18rem;
  text-align: right;
}

.social-link-meta strong,
.social-link-meta em {
  overflow: hidden;
  max-width: 100%;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-link-meta strong {
  color: var(--text);
  font-weight: 850;
}

.social-link-meta em {
  font-style: normal;
}

.app-shell[data-view="aperture"] {
  width: 100%;
  max-width: none;
  padding: clamp(5.4rem, 8vw, 6.4rem) 0 0;
}

.aperture-page {
  position: relative;
  min-height: calc(100vh - 4.5rem);
  margin: 0;
  padding: clamp(0.85rem, 2.4vw, 1.65rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 10%, rgba(88, 185, 234, 0.16), transparent 28rem),
    radial-gradient(circle at 82% 26%, rgba(102, 210, 165, 0.1), transparent 28rem),
    linear-gradient(180deg, #030507, #070b10 46%, #040609);
}

.aperture-ambient {
  position: fixed;
  inset: 4.1rem 0 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 5, 7, 0.15), rgba(3, 5, 7, 0.72)),
    radial-gradient(circle at 50% 0%, rgba(242, 246, 248, 0.08), transparent 34rem);
}

.aperture-stream {
  position: relative;
  z-index: 1;
  columns: 4 17rem;
  column-gap: clamp(0.7rem, 1.6vw, 1.05rem);
  width: min(1720px, 100%);
  margin: 0 auto;
}

.aperture-frame {
  display: block;
  break-inside: avoid;
  margin: 0 0 clamp(0.7rem, 1.6vw, 1.05rem);
  overflow: hidden;
  border: 1px solid rgba(242, 246, 248, 0.1);
  border-radius: 0.45rem;
  background: #05080d;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.34);
  transform: translateZ(0);
}

.aperture-frame img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.96;
  transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
}

.aperture-frame:hover img {
  opacity: 1;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.018);
}

.aperture-library-note {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.58rem;
  width: min(100%, 46rem);
  margin: clamp(1rem, 3vw, 2rem) auto 0;
  padding: 1rem;
  text-align: center;
  color: #cdd8df;
}

.aperture-library-note span {
  color: #8f9aa1;
  font-size: 0.86rem;
  font-weight: 700;
}

.aperture-library-note a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(242, 246, 248, 0.18);
  border-radius: 999px;
  background: rgba(242, 246, 248, 0.07);
  color: #f1f6f8;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.aperture-library-note a:hover,
.aperture-library-note a:focus-visible {
  border-color: rgba(102, 210, 165, 0.45);
  background: rgba(102, 210, 165, 0.12);
  transform: translateY(-1px);
}

.about-page {
  display: grid;
  gap: 1rem;
}

.about-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(20rem, 0.76fr);
  gap: 1rem;
  align-items: stretch;
  min-height: min(72vh, 48rem);
  margin: -1rem calc(50% - 50vw) 0;
  padding: clamp(6rem, 8vw, 7.2rem) max(1rem, calc((100vw - 1480px) / 2)) clamp(1rem, 4vw, 3.5rem);
  background:
    radial-gradient(circle at 16% 24%, rgba(88, 185, 234, 0.18), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(102, 210, 165, 0.12), transparent 28rem),
    linear-gradient(135deg, #05080d, #0c1820 58%, #070b10);
  color: #f2f6f8;
}

.about-hero-copy {
  display: grid;
  align-content: end;
  gap: 1rem;
  max-width: 64rem;
}

.about-hero-copy .eyebrow,
.about-hero-copy h1,
.about-hero-copy p {
  color: #f2f6f8;
}

.about-hero-copy h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.96;
}

.about-hero-copy p {
  max-width: 54rem;
  margin: 0;
  color: #cdd8df;
  font-size: clamp(1.03rem, 1.55vw, 1.23rem);
  line-height: 1.6;
}

.about-visual-stack {
  position: relative;
  min-height: 28rem;
}

.about-visual-stack img {
  position: absolute;
  display: block;
  width: min(64%, 22rem);
  border: 1px solid rgba(242, 246, 248, 0.16);
  border-radius: 0.7rem;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  object-fit: cover;
  filter: brightness(1.18) saturate(1.08) contrast(1.04);
}

.about-visual-stack img:nth-child(1) {
  top: 0;
  right: 0;
  height: 58%;
}

.about-visual-stack img:nth-child(2) {
  left: 0;
  top: 22%;
  height: 54%;
}

.about-visual-stack img:nth-child(3) {
  right: 9%;
  bottom: 0;
  height: 42%;
}

.about-photo-note {
  position: absolute;
  right: 10%;
  bottom: 1rem;
  z-index: 2;
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(242, 246, 248, 0.18);
  border-radius: 999px;
  background: rgba(3, 5, 7, 0.58);
  color: #f2f6f8;
  font-size: 0.74rem;
  font-weight: 850;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
  animation: aboutPhotoNoteFade 8s ease forwards;
}

@keyframes aboutPhotoNoteFade {
  0%, 68% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(0.35rem); }
}

.about-pillars {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.about-pillar,
.about-statement {
  border: 1px solid color-mix(in srgb, var(--line) 88%, var(--accent) 12%);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--panel) 94%, transparent);
  box-shadow: var(--shadow);
}

.about-pillar {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  min-height: 14rem;
  padding: 1rem;
}

.about-pillar-icon {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid color-mix(in srgb, var(--line) 72%, var(--accent) 28%);
  border-radius: 0.72rem;
  color: var(--accent);
}

.about-icon {
  width: 1.55rem;
  height: 1.55rem;
}

.about-pillar h2 {
  margin: 0;
  font-size: 1.35rem;
}

.about-pillar p,
.about-statement p {
  margin: 0;
  color: var(--muted);
}

.about-statement {
  padding: clamp(1.1rem, 3vw, 1.9rem);
}

.about-statement p {
  max-width: 72rem;
  color: var(--text);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.65;
}

.social-card-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.social-card-head h3 {
  margin: 0;
}

.mini-link.rich {
  align-items: flex-start;
  flex-direction: column;
  min-height: 3.7rem;
}

.mini-link.rich small {
  display: grid;
  gap: 0.18rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 650;
  line-height: 1.35;
}

.mini-link.rich small strong {
  display: block;
  overflow: hidden;
  max-width: 100%;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-link.rich small em {
  color: var(--muted);
  font-style: normal;
}

.home-public-footer {
  display: grid;
  grid-template-columns: minmax(16rem, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1rem, 2.4vw, 1.6rem);
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--panel) 96%, transparent), color-mix(in srgb, var(--panel-soft) 92%, var(--accent) 8%));
  padding: clamp(1rem, 2.2vw, 1.4rem);
}

.home-footer-brand {
  display: grid;
  gap: 0.7rem;
}

.home-footer-brand h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.home-footer-title {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

.home-footer-logo {
  width: 2.55rem;
  height: 2.55rem;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(240, 196, 90, 0.16));
}

.home-footer-brand p:not(.eyebrow) {
  max-width: 33rem;
  margin: 0;
  color: var(--muted);
  text-wrap: balance;
}

.home-footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.15rem;
}

.home-footer-contact span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-footer-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-soft);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 850;
  text-decoration: none;
}

.home-footer-directory {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.74fr) minmax(0, 1.3fr);
  gap: 0.9rem;
}

.home-footer-channel-group {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  min-width: 0;
}

.home-footer-channel-group h3 {
  margin: 0;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-footer-channel-list {
  display: grid;
  gap: 0.34rem;
}

.home-footer-channel {
  display: grid;
  grid-template-columns: 1.35rem minmax(0, 1fr);
  gap: 0.45rem;
  align-items: center;
  min-height: 2rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
  text-decoration: none;
}

.home-footer-channel:hover,
.home-footer-channel:focus-visible {
  color: var(--text);
}

.home-footer-channel-icon {
  display: inline-grid;
  place-items: center;
  color: color-mix(in srgb, var(--text) 86%, var(--muted) 14%);
}

.home-footer-channel-icon .helios-icon {
  width: 1.02rem;
  height: 1.02rem;
}

.social-mini-icon,
.inline-platform-icon {
  display: inline-grid;
  place-items: center;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 999px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 86%, white), var(--accent-2));
  color: white;
  font-size: 0.68rem;
  font-weight: 950;
}

.inline-platform-icon {
  justify-self: center;
  width: auto;
  min-width: 2.35rem;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: color-mix(in srgb, var(--text) 86%, var(--muted));
  font-size: 0.82rem;
  letter-spacing: 0;
  margin-right: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1rem;
}

.contact-page {
  display: grid;
  gap: 1rem;
}

.contact-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.45fr);
  gap: 1rem;
  align-items: end;
  min-height: min(58vh, 38rem);
  margin: -1rem calc(50% - 50vw) 0;
  padding: clamp(1rem, 4vw, 3.5rem) max(1rem, calc((100vw - 1480px) / 2));
  background:
    radial-gradient(circle at 18% 22%, rgba(88, 185, 234, 0.2), transparent 29rem),
    radial-gradient(circle at 82% 72%, rgba(102, 210, 165, 0.13), transparent 28rem),
    linear-gradient(135deg, #05080d, #0c1820 58%, #070b10);
  color: #f2f6f8;
}

.contact-hero-panel .eyebrow,
.contact-hero-panel h1,
.contact-hero-panel p {
  color: #f2f6f8;
}

.contact-hero-panel h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3.1rem, 7.2vw, 7rem);
  line-height: 0.96;
}

.contact-hero-panel p {
  max-width: 50rem;
  margin: 1rem 0 0;
  color: #cdd8df;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.6;
}

.contact-hero-image {
  align-self: stretch;
  min-height: 21rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(242, 246, 248, 0.14);
  border-radius: 0.85rem;
  background: #05080d;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.contact-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.94;
}

.contact-workspace {
  display: grid;
  grid-template-columns: minmax(16rem, 0.42fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.contact-assistant-panel,
.contact-form-panel {
  border: 1px solid color-mix(in srgb, var(--line) 86%, var(--accent) 14%);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--panel) 94%, transparent);
  box-shadow: var(--shadow);
}

.contact-assistant-panel {
  position: sticky;
  top: 5.25rem;
  padding: 1rem;
}

.contact-form-panel {
  padding: clamp(1rem, 2vw, 1.35rem);
}

.contact-form-card {
  gap: 0.85rem;
}

.contact-field-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

form {
  display: grid;
  gap: 0.7rem;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--panel-soft) 84%, transparent);
}

.contact-success-panel {
  min-height: 34rem;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.85rem;
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(25, 135, 84, 0.26);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(25, 135, 84, 0.1), rgba(25, 135, 84, 0.04));
}

.contact-success-icon {
  width: 4.25rem;
  height: 4.25rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #198754;
  color: #fff;
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(25, 135, 84, 0.28);
}

.contact-success-panel h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.contact-success-panel p {
  max-width: 28rem;
  margin: 0;
  color: var(--muted);
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
}

input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
  color: var(--text);
  padding: 0.8rem;
  font: inherit;
}

textarea { min-height: 8rem; resize: vertical; }

.admin-shell h1 {
  max-width: 18ch;
}

.admin-shell code {
  word-break: break-all;
}

.admin-shell canvas {
  display: block;
  margin: 1rem 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 0.75rem;
}

.assistant-note {
  position: relative;
  border: 1px solid color-mix(in srgb, var(--accent) 38%, var(--line));
  border-left: 3px solid var(--accent);
  border-radius: 14px 14px 14px 4px;
  padding: 1rem;
  background: var(--panel-soft);
  color: var(--text);
  line-height: 1.55;
}

.assistant-note::before {
  content: "";
  position: absolute;
  left: -0.42rem;
  top: 1.15rem;
  width: 0.72rem;
  height: 0.72rem;
  border-left: 1px solid color-mix(in srgb, var(--accent) 38%, var(--line));
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 38%, var(--line));
  background: var(--panel-soft);
  transform: rotate(45deg);
}

.assistant-note strong {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}

.assistant-note strong::before {
  content: "";
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(31, 122, 174, 0.35);
  animation: breathe 2.8s ease-in-out infinite;
}

.assistant-note p {
  margin-bottom: 0.7rem;
  color: var(--text);
}

.assistant-note.error {
  border-left-color: #c94f4f;
}

.field-note {
  color: var(--muted);
  font-weight: 700;
}

.ready-mode {
  animation: readyPulse 1.7s ease-in-out infinite;
}

.pending-mode {
  opacity: 0.72;
}

@keyframes readyPulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 0 rgba(31, 122, 174, 0); }
  50% { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(31, 122, 174, 0.22); }
}

.orb.tiny {
  width: 1.25rem;
  height: 1.25rem;
}

.footer {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.4rem 0 2rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    max-width: calc(100vw - 1rem);
    padding: 0.36rem;
    border-radius: 1.05rem;
    background: rgba(4, 7, 10, 0.82);
  }
  .brand {
    position: relative;
    left: 0;
    z-index: 3;
    min-width: max-content;
    margin: -0.14rem 0;
    padding: 0.2rem 0.48rem 0.2rem 0.2rem;
    border-radius: 0.84rem;
    background: #04070a;
    box-shadow: 8px 0 18px rgba(4, 7, 10, 0.94);
    cursor: pointer;
  }
  .mobile-theme-hint {
    display: block;
  }
  .mobile-theme-hint.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .header-actions {
    display: flex;
    width: auto;
    align-items: center;
    gap: 0.36rem;
    min-width: 0;
  }
  .theme-toggle {
    display: none;
  }
  .nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: auto;
    max-width: none;
    padding-left: 0.34rem;
    overflow-x: auto;
    scrollbar-width: none;
    border-radius: 1rem;
  }
  .nav::-webkit-scrollbar {
    display: none;
  }
  .nav a {
    flex: 0 0 auto;
    min-width: max-content;
    padding: 0.42rem 0.54rem;
    text-align: center;
    font-size: 0.76rem;
  }
  .hero, .blog-shell, .contact-grid, .stories-hero, .stories-cinema, .story-stage, .story-card-grid, .story-reader-hero { grid-template-columns: 1fr; }
  .app-shell:not([data-view="home"]) {
    padding-top: 5rem;
  }
  .app-shell[data-view="stories"],
  .app-shell[data-view="screenroom"],
  .app-shell[data-view="aperture"] {
    padding-top: 5.75rem;
  }
  .contact-hero-panel,
  .contact-workspace,
  .contact-field-pair {
    grid-template-columns: 1fr;
  }
  .contact-hero-panel {
    min-height: 0;
    margin-inline: -0.8rem;
    padding: 1rem 0.8rem;
  }
  .contact-hero-panel h1 {
    max-width: none;
    font-size: clamp(2.7rem, 14vw, 4.6rem);
  }
  .contact-assistant-panel {
    position: static;
  }
  .signal-board { height: auto; }
  .metric-row { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 0; }
  .grid, .social-groups { grid-template-columns: 1fr; }
  .social-hero {
    min-height: 72vh;
    margin-inline: -0.8rem;
    padding: 5.5rem 0.8rem 1rem;
  }
  .social-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.9rem, 14vw, 4.9rem);
  }
  .social-link-row {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }
  .social-link-meta {
    grid-column: 2;
    justify-items: start;
    text-align: left;
  }
  .aperture-page {
    min-height: calc(100vh - 7.8rem);
    padding: 0.72rem;
  }
  .aperture-ambient {
    inset-block-start: 7.5rem;
  }
  .aperture-stream {
    columns: 1;
  }
  .aperture-frame {
    border-radius: 0.38rem;
  }
  .about-hero-panel {
    grid-template-columns: 1fr;
  }
  .about-hero-panel {
    min-height: 0;
    margin-inline: -0.8rem;
    padding: 5.5rem 0.8rem 1rem;
  }
  .about-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.75rem, 14vw, 4.7rem);
  }
  .about-visual-stack {
    min-height: 22rem;
  }
  .about-photo-note {
    right: 0.75rem;
    bottom: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }
  .home-public-footer,
  .home-footer-directory {
    grid-template-columns: 1fr;
  }
  .home-footer-brand p:not(.eyebrow) {
    max-width: none;
  }
  .photo-carousel-shell { display: block; }
  .stories-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .story-feature { min-height: 20rem; }
  .stories-cinema {
    min-height: 0;
    padding: 1rem;
  }
  .stories-cinema-copy h1 {
    max-width: none;
    font-size: clamp(2.7rem, 14vw, 4.8rem);
  }
  .stories-cinema-visual,
  .stories-cinema-visual img {
    min-height: 20rem;
  }
  .stories-cinema-dots {
    position: static;
    margin-top: 0.35rem;
  }
  .story-reader-page {
    margin-inline: -0.8rem;
    padding-inline: 0.8rem;
  }
  .story-reader-copy h1 {
    max-width: none;
    font-size: clamp(2.8rem, 15vw, 4.7rem);
  }
  .story-reader-visual,
  .story-reader-visual img {
    min-height: 18rem;
  }
  .story-reader-body img {
    float: none;
    clear: both;
    width: 100% !important;
    max-height: none;
    margin: 1rem auto 1.35rem !important;
  }
  .story-reader-body .story-inline-image,
  .story-reader-body .story-inline-image--left,
  .story-reader .story-reader-body .separator {
    float: none;
    clear: both;
    max-width: none;
    margin: 1rem auto 1.35rem !important;
  }
  .story-reader-body .story-inline-image img,
  .story-reader-body .story-inline-image--left img {
    width: 100% !important;
    margin: 0 !important;
  }
  .photo-carousel-control {
    width: 2.25rem;
    height: 4rem;
    opacity: 0.82;
  }
  .photo-card { flex-basis: 78vw; min-height: 10rem; }
  .blog-shell {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .blog-hero {
    display: grid;
    gap: 0.75rem;
    align-items: stretch;
  }

  .blog-hero .blog-view-toggle {
    display: none;
  }

  .blog-main {
    grid-column: auto;
    grid-row: auto;
    order: -1;
  }

  .blog-mobile-menu-toggle {
    display: inline-flex;
    width: 100%;
    align-self: flex-start;
  }

  .blog-mobile-drawer {
    display: none;
    gap: 0.75rem;
    padding: 0.9rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: var(--shadow);
  }

  .blog-hero.mobile-menu-open .blog-mobile-drawer {
    display: grid;
  }

  .blog-mobile-drawer .blog-view-toggle {
    display: grid !important;
    min-width: 0;
    width: 100%;
  }

  .blog-mobile-drawer .blog-sidebar {
    display: block;
    position: static;
    width: 100%;
  }

  .blog-mobile-drawer .blog-sidebar-card {
    box-shadow: none;
  }

  .blog-mobile-drawer .blog-sidebar-scroll {
    max-height: min(48vh, 28rem);
  }

  .blog-sidebar {
    grid-column: auto;
    grid-row: auto;
    display: none;
    position: static;
  }

  .blog-main-head { align-items: flex-start; }
  .blog-main-head {
    display: grid;
    gap: 0.65rem;
  }
  .blog-main-head .dynamic-copy {
    max-width: none;
  }
  .timeline-item { grid-template-columns: 1fr; }
  .app-shell {
    width: 100%;
    padding: 1rem 0.8rem 2.25rem;
    min-height: calc(100vh - 150px);
  }
  .footer {
    width: 100%;
    padding-inline: 0.8rem;
  }
  h1 { max-width: none; }
}

@media (max-width: 640px) {
  .signal-text strong,
  .signal-text small {
    white-space: normal;
  }

  .metric-row { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .blog-hero .blog-view-toggle {
    display: grid;
  }

  .blog-mobile-menu-toggle,
  .blog-mobile-drawer {
    display: none !important;
  }

  .blog-shell-compact {
    display: block;
  }
}


.video-placeholder {
  background: linear-gradient(135deg, rgba(31, 122, 174, 0.18), rgba(244, 168, 62, 0.22)), #10212b;
  position: relative;
  display: block;
  overflow: hidden;
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reflections-cinema {
  position: relative;
  display: grid;
  align-items: end;
  justify-items: end;
  min-height: min(86vh, 58rem);
  margin: -1rem calc(50% - 50vw) 0.45rem;
  padding: clamp(1rem, 4vw, 3.5rem) max(1rem, calc((100vw - 1560px) / 2));
  overflow: hidden;
  background: #05080d;
}

.reflections-cinema::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 7, 12, 0.08), rgba(3, 7, 12, 0.18) 42%, rgba(3, 7, 12, 0.84)),
    linear-gradient(0deg, rgba(3, 7, 12, 0.84), rgba(3, 7, 12, 0.08) 62%);
}

.reflections-cinema-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.98);
}

.reflections-cinema-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1rem;
  width: min(52rem, 100%);
  padding: clamp(1rem, 2.6vw, 1.8rem);
  border: 1px solid rgba(242, 246, 248, 0.14);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(5, 8, 13, 0.1), rgba(5, 8, 13, 0.5));
  color: #f2f6f8;
  backdrop-filter: blur(7px);
}

.reflections-cinema-copy h1 {
  max-width: 13ch;
  margin: 0;
  color: #f2f6f8;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.94;
}

.reflections-cinema-copy p {
  max-width: 46rem;
  margin: 0;
  color: #cdd8df;
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  line-height: 1.55;
}

.reflection-dots {
  z-index: 3;
}

.reflection-browse-strip {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  max-width: 100%;
  gap: 0.55rem;
  margin: 0 0 0.7rem;
  padding: 0.38rem;
  border: 1px solid rgba(226, 241, 247, 0.12);
  border-radius: 999px;
  background: rgba(5, 12, 17, 0.62);
  backdrop-filter: blur(12px);
}

.reflection-browse-strip .blog-control-bar {
  flex: 0 1 auto;
  flex-wrap: nowrap;
  grid-column: auto;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.reflection-browse-strip .blog-view-toggle {
  min-width: 11.5rem;
}

.reflection-browse-strip .blog-smart-select {
  min-width: 0;
}

.reflection-browse-strip .blog-smart-select span {
  white-space: nowrap;
  font-size: 0;
}

.reflection-browse-strip .blog-smart-select span::after {
  content: "Category";
  font-size: 0.72rem;
}

.reflection-browse-strip .blog-smart-select select {
  min-width: min(17rem, 42vw);
}

.reflection-browse-strip .blog-stat-row.compact {
  display: none;
}

.reflection-browse-strip .blog-stat-row.compact span {
  min-height: 1.85rem;
  padding: 0.28rem 0.55rem;
}

.blog-main-panel {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.blog-main-head {
  padding: 0.3rem 0.1rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  overflow: visible;
  padding: 0.1rem 0 1rem;
}

.blog-grid .editorial-post-card:first-child {
  grid-column: auto;
}

.editorial-post-card {
  grid-template-columns: 1fr;
  gap: 0.45rem;
  min-height: 0;
  padding: 0.85rem;
  border: 1px solid color-mix(in srgb, var(--line) 84%, var(--accent) 16%);
  border-radius: 0.65rem;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--panel) 96%, var(--accent) 4%), color-mix(in srgb, var(--panel-soft) 96%, var(--accent-2) 4%));
}

.editorial-post-card h3 {
  font-size: 1rem;
  line-height: 1.2;
}

.editorial-post-card p {
  display: -webkit-box;
  min-height: calc(1.48em * 2);
  max-height: calc(1.48em * 2);
  overflow: hidden;
  font-size: 0.82rem;
  line-height: 1.48;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.editorial-post-card .mini-link {
  justify-self: start;
  min-height: 2rem;
  padding: 0.38rem 0.65rem;
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .reflections-cinema {
    min-height: 72vh;
    margin-inline: -0.8rem;
    padding: 1rem 0.8rem;
  }

  .reflections-cinema::before {
    background:
      linear-gradient(0deg, rgba(3, 7, 12, 0.88), rgba(3, 7, 12, 0.2) 62%),
      linear-gradient(90deg, rgba(3, 7, 12, 0.28), rgba(3, 7, 12, 0.58));
  }

  .reflections-cinema-copy h1 {
    max-width: none;
    font-size: clamp(2.7rem, 13vw, 4.6rem);
  }

  .reflection-browse-strip {
    display: block;
    border-radius: var(--radius);
  }

  .reflection-browse-strip .blog-control-bar,
  .reflection-browse-strip .blog-stat-row.compact {
    min-width: 0;
    width: 100%;
  }

  .reflection-browse-strip .blog-control-bar {
    display: grid;
    gap: 0.55rem;
  }

  .reflection-browse-strip .blog-stat-row.compact {
    overflow-x: auto;
  }

  .reflection-browse-strip .blog-smart-select,
  .reflection-browse-strip .blog-smart-select select {
    width: 100%;
    min-width: 0;
  }

  .reflection-browse-strip .blog-smart-select {
    display: grid;
    gap: 0.35rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .editorial-post-card {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

.video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.88);
  color: #123247;
  font-weight: 900;
}

.orb,
.assistant-blip strong::before,
.contact-assistant::before,
.contact-submit-ready {
  animation: none !important;
}

@media (max-width: 760px) {
  .home-cinema {
    min-height: 100svh;
  }

  .home-cinema-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18) 24%, rgba(0, 0, 0, 0.3) 58%, rgba(0, 0, 0, 0.82)),
      radial-gradient(circle at 12% 72%, rgba(0, 0, 0, 0.74), transparent 18rem);
  }

  .home-social-rail {
    top: 0.85rem;
    left: 0.75rem;
    gap: 0.48rem;
  }

  .home-social-rail a {
    width: 1.85rem;
    height: 1.85rem;
  }

  .home-yt-trigger {
    padding: 0.42rem 0.56rem;
    font-size: 0.68rem;
  }

  .home-yt-trigger .helios-icon {
    width: 0.92rem;
    height: 0.92rem;
  }

  .home-yt-menu {
    min-width: 13.5rem;
  }

  .home-yt-link {
    font-size: 0.72rem;
  }

  .home-metrics {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.85rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: auto;
  }

  .home-metric {
    min-width: 0;
    padding: 0.52rem;
  }

  .home-metric strong {
    font-size: 1.25rem;
  }

  .home-metric span {
    font-size: 0.61rem;
  }

  .home-cinema-copy {
    right: 0.85rem;
    bottom: 8.2rem;
    left: 0.85rem;
    justify-items: end;
  }

  .home-cinema-copy h1 {
    max-width: 100%;
    font-size: clamp(2rem, 12vw, 3.35rem);
    white-space: normal;
  }

  .home-title-lockup {
    gap: 0.5rem;
  }

  .home-title-lockup img {
    width: 3rem;
    height: 3rem;
  }

  .home-entry-nav {
    max-width: min(100%, 22.5rem);
    padding: 0.52rem 0.58rem 0.62rem;
    border-radius: 0.7rem;
  }

  .home-pipe-nav {
    max-width: 21rem;
    font-size: 0.76rem;
  }

  .home-pipe-nav a {
    min-height: 1.78rem;
    padding: 0.12rem 0.22rem;
  }

  .home-pipe-nav a + a::before {
    margin: 0 0.28rem 0 0.12rem;
  }

  .screenroom-hero {
    grid-template-columns: 1fr;
    min-height: 78svh;
    padding: 5.2rem 1rem 1.2rem;
  }

  .screenroom-hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(2.8rem, 16vw, 4.8rem);
  }

  .screenroom-hero-card {
    margin-top: 1rem;
  }

  .screenroom-shelf {
    padding-inline: 0.9rem;
  }

  .screenroom-card {
    flex-basis: min(78vw, 18rem);
  }
}
.reflection-browse-strip {
  max-width: min(1160px, calc(100vw - 32px));
  margin: 1.15rem auto 1.5rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.reflection-browse-strip .blog-control-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem 0;
  border-width: 1px 0;
  border-style: solid;
  border-color: rgba(226, 241, 247, 0.12);
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.blog-filter-status {
  flex: 1 1 auto;
  min-width: 10rem;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0;
}

.blog-filter-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  min-width: 0;
}

.reflection-browse-strip .blog-view-toggle {
  min-width: 11rem;
  padding: 0.16rem;
  background: rgba(255, 255, 255, 0.055);
}

.reflection-browse-strip .blog-view-toggle button {
  padding: 0.48rem 0.65rem;
  font-size: 0.76rem;
}

.reflection-browse-strip .blog-view-slider {
  inset: 0.16rem auto 0.16rem 0.16rem;
  width: calc(50% - 0.16rem);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.reflection-browse-strip .blog-smart-select {
  min-width: 0;
  gap: 0.45rem;
  text-transform: none;
}

.reflection-browse-strip .blog-smart-select span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.reflection-browse-strip .blog-smart-select span::after {
  content: "";
}

.reflection-browse-strip .blog-smart-select select {
  min-width: min(17rem, 42vw);
  min-height: 2.15rem;
  padding: 0 2rem 0 0.78rem;
  border: 1px solid rgba(226, 241, 247, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 800;
}

@media (max-width: 760px) {
  .reflection-browse-strip {
    max-width: calc(100vw - 24px);
    margin: 0.9rem auto 1.1rem;
  }

  .reflection-browse-strip .blog-control-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
  }

  .blog-filter-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .reflection-browse-strip .blog-view-toggle {
    min-width: min(100%, 12rem);
  }

  .reflection-browse-strip .blog-smart-select,
  .reflection-browse-strip .blog-smart-select select {
    width: 100%;
    min-width: 0;
  }
}



/* Keep native reflection filters readable in both theme states. */
.reflection-browse-strip .blog-smart-select select {
  background: var(--panel-soft);
  color: var(--text);
  border-color: var(--line);
  color-scheme: light;
}

.reflection-browse-strip .blog-smart-select select option {
  background: var(--panel);
  color: var(--text);
}

[data-theme="dark"] .reflection-browse-strip .blog-smart-select select {
  background: #07090c;
  color: #f1f6f8;
  border-color: #20272d;
  color-scheme: dark;
}

[data-theme="dark"] .reflection-browse-strip .blog-smart-select select option {
  background: #07090c;
  color: #f1f6f8;
}


.reflection-browse-strip .blog-view-slider {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.reflection-browse-strip .blog-view-toggle button.active {
  color: #ffffff;
}

[data-theme="dark"] .reflection-browse-strip .blog-view-slider {
  background: rgba(255, 255, 255, 0.14);
}

[data-theme="dark"] .reflection-browse-strip .blog-view-toggle button.active {
  color: #ffffff;
}

/* ============================================================
   READER MODE — applied when viewing a blog post (#blog/post/*)
   or a story post (#stories/post/*). Toggled by body.is-reading.
   - Hides the site header and footer
   - Shows a thin floating reader header: logo+Helios (left), X (right)
   - Lets the article content fill the screen
   - Does not change backgrounds, colors, or images
   ============================================================ */

.reader-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: clamp(0.55rem, 1.4vw, 0.95rem) clamp(0.85rem, 2vw, 1.4rem);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(4, 7, 10, 0.55), rgba(4, 7, 10, 0));
}

[data-theme="light"] .reader-header {
  background: linear-gradient(180deg, rgba(238, 245, 248, 0.65), rgba(238, 245, 248, 0));
}

body.is-reading .reader-header {
  display: flex;
}

.reader-header > * {
  pointer-events: auto;
}

.reader-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
  transition: background 0.15s ease;
}

.reader-logo:hover {
  background: rgba(255, 255, 255, 0.06);
}

[data-theme="light"] .reader-logo:hover {
  background: rgba(0, 0, 0, 0.05);
}

.reader-logo img {
  display: block;
  width: 34px;
  height: 34px;
}

.reader-logo strong {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.reader-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background 0.15s ease, transform 0.15s ease;
  padding: 0;
}

[data-theme="light"] .reader-close {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.10);
}

.reader-close:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.05);
}

[data-theme="light"] .reader-close:hover {
  background: rgba(0, 0, 0, 0.10);
}

.reader-close:focus-visible {
  outline: 2px solid var(--accent, currentColor);
  outline-offset: 2px;
}

/* When in reader mode: hide the site chrome */
body.is-reading .site-header,
body.is-reading .footer {
  display: none !important;
}

/* Give article content a little breathing room from the top edge
   so it does not collide with the floating reader header. */
body.is-reading .app-shell {
  padding-top: clamp(3.2rem, 7vw, 4.2rem);
}

/* Hide intra-article hero negative margins on story reader so the floating bar
   does not visually clash with the story hero artwork. */
body.is-reading .story-reader-page {
  padding-top: 0;
}

@media (max-width: 720px) {
  .reader-close {
    width: 36px;
    height: 36px;
  }
  .reader-logo img {
    width: 30px;
    height: 30px;
  }
  .reader-logo strong {
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reader-logo,
  .reader-close {
    transition: none;
  }
}
