:root {
  color-scheme: dark;
  --bg: #090a0a;
  --bg-2: #111312;
  --ink: #f5efe4;
  --muted: #b9afa0;
  --dim: rgba(245, 239, 228, 0.72);
  --line: rgba(216, 181, 106, 0.35);
  --hair: rgba(255, 255, 255, 0.11);
  --accent: #d8b56a;
  --gutter: clamp(20px, 4.2vw, 72px);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 70% 0%, rgba(216, 181, 106, 0.08), transparent 34rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

a {
  color: inherit;
  text-underline-offset: 0.28em;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 80;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--ink);
  color: #111;
}

.site-header {
  position: fixed;
  z-index: 40;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding: 22px var(--gutter) 28px;
  background: linear-gradient(to bottom, rgba(9, 10, 10, 0.9), rgba(9, 10, 10, 0.56), transparent);
  backdrop-filter: saturate(112%) blur(10px);
}

.brand,
.footer-brand {
  display: inline-block;
  text-decoration: none;
  line-height: 1;
}

.brand span,
.footer-brand span {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
}

.brand small,
.footer-brand small {
  display: block;
  margin-top: 5px;
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 6px clamp(16px, 1.8vw, 28px);
  font-family: var(--serif);
  font-size: 0.98rem;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(245, 239, 228, 0.88);
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--hair);
  border-radius: 0;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
}

.hero,
.page-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 132px var(--gutter) 72px;
}

.hero picture,
.page-hero picture {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: #050505;
}

.hero picture::after,
.page-hero picture::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(9, 10, 10, 0.92), rgba(9, 10, 10, 0.45) 42%, rgba(9, 10, 10, 0.2)),
    linear-gradient(0deg, var(--bg), transparent 42%);
}

.hero.cinematic picture::after {
  background:
    linear-gradient(90deg, rgba(9, 10, 10, 0.9), rgba(9, 10, 10, 0.34) 38%, rgba(9, 10, 10, 0.06) 76%),
    linear-gradient(0deg, var(--bg), transparent 34%);
}

.hero img,
.page-hero img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero .hero-img {
  object-position: 50% 50%;
}

.hero-copy,
.page-hero > div {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  min-width: 0;
  max-width: calc(100vw - (var(--gutter) * 2));
}

.hero h1,
.page-hero h1,
.section-line h2,
.feature-panel h2,
.field-band h2,
.notes-layout h2,
.legal-section h2,
.text-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(4rem, 9vw, 8.8rem);
  line-height: 0.88;
  overflow-wrap: break-word;
}

.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 7vw, 7rem);
  line-height: 0.9;
}

.hero p,
.page-hero p {
  width: min(590px, 100%);
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(245, 239, 228, 0.86);
  font-size: clamp(1.02rem, 1.8vw, 1.28rem);
  line-height: 1.65;
  overflow-wrap: break-word;
}

.quiet-cta,
.field-band a,
.feature-panel small,
.notes-layout a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 28px;
  color: var(--accent);
  text-decoration: none;
}

.quiet-cta::before,
.field-band a::before,
.notes-layout a::before {
  display: inline-block;
  width: 34px;
  height: 1px;
  margin-right: 14px;
  content: "";
  background: var(--accent);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 50%;
  bottom: 32px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--accent);
  text-decoration: none;
  transform: translateX(50%);
}

.hero-strip {
  position: absolute;
  z-index: 3;
  right: var(--gutter);
  bottom: clamp(28px, 5vw, 68px);
  width: min(42vw, 640px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(216, 181, 106, 0.28);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.hero-strip span {
  aspect-ratio: 1.42 / 1;
  overflow: hidden;
  background: #050505;
}

.hero-strip img,
.archive-preview-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-strip span:first-child img {
  object-position: 50% 20%;
}

.selected-section,
.gallery-editorial,
.archive-intro,
.field-band,
.social-band,
.notes-layout,
.text-hero,
.legal-doc {
  padding-inline: var(--gutter);
}

.selected-section,
.gallery-editorial {
  padding-block: clamp(58px, 8vw, 110px);
}

.archive-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding-block: clamp(54px, 8vw, 112px);
  border-top: 1px solid var(--hair);
}

.archive-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  font-weight: 400;
  line-height: 0.94;
}

.archive-intro p,
.gallery-lede {
  color: var(--muted);
  line-height: 1.68;
}

.archive-intro a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 18px;
  color: var(--accent);
  text-decoration: none;
}

.archive-intro a::before {
  display: inline-block;
  width: 34px;
  height: 1px;
  margin-right: 14px;
  content: "";
  background: var(--accent);
}

.archive-preview-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.archive-preview-grid button {
  min-height: clamp(120px, 14vw, 230px);
  padding: 0;
  cursor: zoom-in;
  background: #050505;
  border: 0;
  overflow: hidden;
}

.archive-preview-grid button:nth-child(2),
.archive-preview-grid button:nth-child(7) {
  grid-row: span 2;
}

.archive-preview-grid button:nth-child(3),
.archive-preview-grid button:nth-child(10) {
  grid-column: span 2;
}

.archive-preview-grid button:hover img,
.archive-preview-grid button:focus-visible img {
  filter: brightness(1.08) contrast(1.04) saturate(1.03);
  transform: scale(1.026);
}

.section-line {
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 28px;
}

.section-line h2 {
  font-size: clamp(2rem, 3.4vw, 3.1rem);
}

.line {
  height: 1px;
  background: var(--line);
}

.selected-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 34vw);
  gap: 1px;
  overflow-x: auto;
  padding-bottom: 18px;
  scroll-snap-type: x mandatory;
}

.selected-card {
  position: relative;
  min-height: 480px;
  margin: 0;
  scroll-snap-align: start;
  background: #050505;
}

.selected-card.is-tall {
  min-height: 620px;
}

.selected-card button,
.gallery-card button {
  width: 100%;
  height: 100%;
  padding: 0;
  cursor: zoom-in;
  background: none;
  border: 0;
}

.selected-card span,
.feature-panel > span {
  display: block;
  height: 100%;
  overflow: hidden;
}

.selected-card img,
.feature-panel img,
.gallery-card img,
.field-band img,
.archive-preview-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 520ms ease, filter 520ms ease;
}

.selected-card:hover img,
.selected-card:focus-within img,
.feature-panel:hover img,
.gallery-card:hover img,
.gallery-card:focus-within img {
  filter: brightness(1.08) contrast(1.04) saturate(1.03);
  transform: scale(1.026);
}

.selected-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 5px;
  padding-top: 14px;
  color: var(--ink);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.82);
}

.selected-card strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.selected-card small,
.gallery-card figcaption {
  color: var(--dim);
  line-height: 1.45;
}

.feature-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 0 var(--gutter) clamp(58px, 8vw, 110px);
}

.feature-panel {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
  background: #050505;
}

.feature-panel > span {
  position: absolute;
  inset: 0;
}

.feature-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(9, 10, 10, 0.88), rgba(9, 10, 10, 0.2));
}

.feature-panel div {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: clamp(28px, 5vw, 58px);
}

.feature-panel h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.feature-panel p,
.field-band p,
.social-band p,
.notes-layout p,
.legal-doc p,
.site-footer p {
  color: var(--muted);
  line-height: 1.68;
}

.field-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 1px;
  align-items: stretch;
  padding-bottom: clamp(58px, 8vw, 110px);
}

.field-band > div {
  padding: clamp(28px, 5vw, 58px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.field-band figure {
  min-height: 430px;
  margin: 0;
}

.social-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 90px);
  padding-block: clamp(54px, 8vw, 108px);
  border-top: 1px solid var(--hair);
}

.social-image {
  grid-column: 1 / -1;
  height: clamp(260px, 38vw, 520px);
  margin: 0 0 clamp(12px, 2vw, 22px);
  overflow: hidden;
  background: #050505;
}

.social-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.social-band h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.4rem);
  font-weight: 400;
  line-height: 0.98;
}

.social-band p {
  max-width: 650px;
  margin: 0;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 26px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: #10100e;
  background: var(--accent);
  border-color: var(--accent);
}

.page-hero {
  min-height: 74svh;
}

.masonry-gallery {
  columns: 3 290px;
  column-gap: 20px;
}

.gallery-lede {
  max-width: 760px;
  margin: -6px 0 34px;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.gallery-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 20px;
  break-inside: avoid;
  background: #070707;
}

.gallery-card button {
  display: block;
}

.gallery-card img {
  height: auto;
}

.gallery-card figcaption {
  padding: 12px 0 4px;
  font-size: 0.88rem;
}

.notes-layout,
.legal-doc {
  width: min(980px, 100%);
  margin: 0 auto;
  padding-block: clamp(58px, 8vw, 110px);
}

.field-notes-hero picture::after {
  background:
    linear-gradient(90deg, rgba(9, 10, 10, 0.74), rgba(9, 10, 10, 0.18) 54%, rgba(9, 10, 10, 0.55)),
    linear-gradient(0deg, var(--bg) 0%, rgba(9, 10, 10, 0) 34%);
}

.field-notes-placeholder {
  padding: clamp(58px, 8vw, 110px) var(--gutter);
  border-top: 1px solid var(--hair);
}

.field-notes-intro {
  width: min(980px, 100%);
  margin-bottom: clamp(30px, 5vw, 58px);
}

.field-notes-intro p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  line-height: 1.72;
}

.field-note-topics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.field-note-topics article {
  min-height: 310px;
  padding: clamp(24px, 3.4vw, 42px);
  background:
    linear-gradient(180deg, rgba(245, 239, 228, 0.045), rgba(245, 239, 228, 0.018)),
    #0b0d0c;
}

.field-note-topics span {
  display: block;
  margin-bottom: clamp(42px, 6vw, 82px);
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field-note-topics h3 {
  max-width: 360px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 0.98;
}

.field-note-topics p,
.field-notes-follow p {
  color: var(--muted);
  line-height: 1.68;
}

.field-notes-follow {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(32px, 5vw, 64px);
  padding-top: 28px;
  border-top: 1px solid var(--hair);
}

.field-notes-follow p {
  max-width: 620px;
  margin: 0;
}

.field-notes-follow a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  color: var(--accent);
  white-space: nowrap;
  text-decoration: none;
}

.field-notes-follow a::before {
  display: inline-block;
  width: 34px;
  height: 1px;
  margin-right: 14px;
  content: "";
  background: var(--accent);
}

.notes-layout section,
.legal-section {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: clamp(22px, 5vw, 70px);
  padding-block: 34px;
  border-top: 1px solid var(--hair);
}

.notes-layout h2,
.legal-section h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.text-hero {
  padding-top: 150px;
  padding-bottom: 58px;
}

.text-hero h1 {
  font-size: clamp(3rem, 6vw, 6rem);
}

.text-hero p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.65;
}

.lightbox {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 76px;
  align-items: center;
  gap: 16px;
  padding: 28px;
  background: rgba(0, 0, 0, 0.94);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  display: grid;
  place-items: center;
  gap: 16px;
  min-width: 0;
  margin: 0;
}

.lightbox img {
  max-height: 82vh;
  width: auto;
  object-fit: contain;
}

.lightbox figcaption {
  color: var(--muted);
  text-align: center;
}

.lightbox button {
  min-height: 52px;
  color: var(--ink);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--hair);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 52px;
  font-size: 1.6rem;
}

.lightbox-prev,
.lightbox-next {
  font-size: 2.4rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 48px;
  padding: 46px var(--gutter);
  border-top: 1px solid var(--line);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 10px 20px;
  font-size: 0.95rem;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--dim);
  text-decoration: none;
}

.site-footer .footer-brand {
  display: inline-block;
}

.shutter-scout-page {
  background:
    radial-gradient(circle at 78% 8%, rgba(48, 195, 207, 0.12), transparent 30rem),
    radial-gradient(circle at 8% 28%, rgba(210, 141, 85, 0.1), transparent 26rem),
    #07121a;
}

.scout-hero {
  position: relative;
  min-height: min(820px, 94svh);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  padding: 132px var(--gutter) 78px;
}

.scout-hero picture {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: #07121a;
}

.scout-hero picture::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 18, 26, 0.92), rgba(7, 18, 26, 0.48) 45%, rgba(7, 18, 26, 0.16)),
    linear-gradient(0deg, #07121a, transparent 44%);
}

.scout-hero picture img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.scout-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(112px, 148px) minmax(0, 780px);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  width: min(1040px, 100%);
}

.scout-icon {
  width: clamp(112px, 13vw, 148px);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

.scout-copy {
  min-width: 0;
}

.scout-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 8.6rem);
  font-weight: 400;
  line-height: 0.9;
}

.scout-copy p {
  width: min(690px, 100%);
  max-width: 100%;
  margin: 22px 0 0;
  color: rgba(245, 239, 228, 0.82);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.45;
  overflow-wrap: break-word;
}

.scout-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  max-width: 760px;
  margin-top: 32px;
}

.scout-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  color: rgba(245, 239, 228, 0.84);
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(48, 195, 207, 0.22);
  border-radius: 8px;
}

.scout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.scout-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 11px 16px;
  color: #f5efe4;
  text-decoration: none;
  background: rgba(210, 141, 85, 0.16);
  border: 1px solid rgba(210, 141, 85, 0.5);
  border-radius: 8px;
  transition: background 180ms ease, border-color 180ms ease;
}

.scout-actions a:hover,
.scout-actions a:focus-visible {
  background: rgba(210, 141, 85, 0.24);
  border-color: rgba(210, 141, 85, 0.78);
}

.scout-support-shell {
  padding: clamp(58px, 8vw, 112px) var(--gutter);
  background:
    linear-gradient(180deg, #07121a, #090a0a 52%),
    var(--bg);
}

.scout-field-station {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(300px, 0.58fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: center;
  padding: clamp(58px, 8vw, 112px) var(--gutter);
  background:
    radial-gradient(circle at 78% 22%, rgba(48, 195, 207, 0.14), transparent 28rem),
    radial-gradient(circle at 16% 88%, rgba(210, 141, 85, 0.12), transparent 26rem),
    linear-gradient(180deg, #07121a, #08100f);
  border-top: 1px solid rgba(48, 195, 207, 0.18);
}

.scout-station-copy {
  max-width: 680px;
}

.scout-station-copy span,
.scout-station-board span,
.scout-station-list span {
  color: rgba(216, 181, 106, 0.92);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scout-station-copy h2 {
  max-width: 760px;
  margin: 18px 0 20px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.7vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
}

.scout-station-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--dim);
  font-size: clamp(1rem, 1.6vw, 1.24rem);
  line-height: 1.72;
}

.scout-station-board {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at 28% 8%, rgba(48, 195, 207, 0.16), transparent 14rem),
    radial-gradient(circle at 72% 72%, rgba(210, 141, 85, 0.13), transparent 16rem),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.scout-station-top {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.scout-station-top img {
  width: 78px;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

.scout-station-top strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 0.86;
}

.scout-station-top small {
  display: block;
  margin-top: 10px;
  color: rgba(245, 239, 228, 0.7);
  font-size: 0.9rem;
}

.scout-station-meter {
  height: 4px;
  margin: 28px 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.scout-station-meter i {
  display: block;
  width: 82%;
  height: 100%;
  background: linear-gradient(90deg, #30c3cf, #d8b56a);
}

.scout-station-list {
  display: grid;
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.1);
}

.scout-station-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 8px 14px;
  padding: 16px;
  background: rgba(6, 15, 18, 0.88);
}

.scout-station-list strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.scout-station-list small {
  grid-column: 2;
  color: rgba(245, 239, 228, 0.68);
  line-height: 1.45;
}

.scout-support-intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.4fr);
  gap: clamp(26px, 5vw, 80px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto clamp(34px, 5vw, 64px);
}

.scout-support-intro h2,
.scout-faq h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 0.96;
}

.scout-support-intro p {
  max-width: 660px;
  margin: 0;
  color: var(--dim);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  line-height: 1.7;
}

.scout-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.scout-panel,
.scout-faq-list article {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.scout-panel h3,
.scout-faq-list h3 {
  margin: 0 0 12px;
  color: #f5efe4;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 400;
  line-height: 1.08;
}

.scout-panel p,
.scout-faq-list p {
  margin: 0;
  color: rgba(245, 239, 228, 0.73);
  font-size: 0.98rem;
  line-height: 1.7;
}

.scout-contact a {
  color: #d28d55;
  text-decoration-color: rgba(210, 141, 85, 0.5);
}

.scout-faq {
  max-width: 1180px;
  margin: clamp(44px, 7vw, 82px) auto 0;
}

.scout-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.aurora-page {
  background:
    radial-gradient(circle at 76% 0%, rgba(37, 211, 171, 0.14), transparent 32rem),
    radial-gradient(circle at 16% 22%, rgba(225, 83, 164, 0.1), transparent 30rem),
    #07100f;
}

.aurora-hero picture::after {
  background:
    linear-gradient(90deg, rgba(7, 16, 15, 0.9), rgba(7, 16, 15, 0.48) 48%, rgba(7, 16, 15, 0.16)),
    linear-gradient(0deg, #07100f, transparent 44%);
}

.aurora-hero img {
  object-position: 50% 50%;
}

.aurora-hero-read {
  width: min(460px, 100%);
  margin-top: clamp(24px, 4vw, 44px);
  padding: 18px 0 0;
  border-top: 1px solid rgba(216, 181, 106, 0.42);
}

.aurora-hero-read span,
.aurora-score-card span {
  display: block;
  color: rgba(216, 181, 106, 0.92);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aurora-hero-read strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2.45rem);
  font-weight: 400;
  line-height: 1;
}

.aurora-hero-read small {
  display: block;
  max-width: 380px;
  margin-top: 8px;
  color: var(--dim);
  line-height: 1.5;
}

.aurora-dashboard,
.aurora-webcams,
.aurora-source-band {
  padding-inline: var(--gutter);
  scroll-margin-top: 112px;
}

.aurora-dashboard,
.aurora-webcams {
  padding-block: clamp(58px, 8vw, 110px);
}

.aurora-live-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: baseline;
  width: min(1180px, 100%);
  margin: 0 0 26px;
  padding: 18px 0;
  border-top: 1px solid rgba(37, 211, 171, 0.28);
  border-bottom: 1px solid rgba(37, 211, 171, 0.18);
}

.aurora-live-bar strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 2.5rem);
  font-weight: 400;
}

.aurora-live-bar span {
  color: var(--dim);
  line-height: 1.6;
}

.aurora-command-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 1px;
  width: min(1180px, 100%);
  background: rgba(37, 211, 171, 0.26);
  transition: background 450ms ease, box-shadow 450ms ease;
}

.aurora-command-grid[data-alert="active"] {
  background: rgba(37, 211, 171, 0.34);
  box-shadow: 0 0 42px rgba(37, 211, 171, 0.08);
}

.aurora-command-grid[data-alert="watch"] {
  background: rgba(216, 181, 106, 0.34);
  box-shadow: 0 0 52px rgba(216, 181, 106, 0.1);
}

.aurora-command-grid[data-alert="storm"] {
  background: rgba(225, 83, 131, 0.4);
  box-shadow: 0 0 64px rgba(225, 83, 131, 0.14);
}

.aurora-score-card {
  display: grid;
  align-content: space-between;
  min-width: 0;
  min-height: 560px;
  padding: clamp(26px, 3.8vw, 48px);
  background:
    radial-gradient(circle at 52% 20%, rgba(37, 211, 171, 0.16), transparent 17rem),
    linear-gradient(180deg, rgba(245, 239, 228, 0.07), rgba(245, 239, 228, 0.026)),
    #081211;
}

.aurora-score-orbit {
  position: relative;
  display: grid;
  width: min(230px, 70vw);
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: clamp(42px, 7vw, 86px);
  color: var(--ink);
  background:
    radial-gradient(circle, #081211 0 56%, transparent 57%),
    conic-gradient(from -90deg, #25d3ab 0deg, #d8b56a var(--aurora-score-angle), rgba(255, 255, 255, 0.09) var(--aurora-score-angle) 360deg);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 48px rgba(37, 211, 171, 0.12);
}

.aurora-score-orbit::before,
.aurora-score-orbit::after {
  position: absolute;
  inset: 17%;
  content: "";
  border: 1px solid rgba(216, 181, 106, 0.2);
  border-radius: 50%;
}

.aurora-score-orbit::after {
  inset: 35%;
  border-color: rgba(37, 211, 171, 0.2);
}

.aurora-score-orbit span {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 6.6rem);
  font-weight: 400;
  letter-spacing: 0;
}

.aurora-score-card h2 {
  max-width: 360px;
  margin: 16px 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4.4vw, 4.5rem);
  font-weight: 400;
  line-height: 0.95;
}

.aurora-score-card p {
  max-width: 430px;
  color: var(--muted);
  line-height: 1.68;
}

.aurora-field-orders {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, 100%);
  padding: 0;
  margin: 0 0 clamp(22px, 3vw, 34px);
  list-style: none;
  background: rgba(255, 255, 255, 0.11);
}

.aurora-field-orders li {
  --order-accent: rgba(88, 200, 150, 0.62);
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 8px 14px;
  min-width: 0;
  padding: 15px 16px;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--order-accent), transparent 88%), transparent 58%),
    rgba(5, 13, 12, 0.9);
  box-shadow: inset 3px 0 0 var(--order-accent);
}

.aurora-field-orders li[data-order-state="active"] {
  --order-accent: rgba(37, 211, 171, 0.9);
}

.aurora-field-orders li[data-order-state="watch"] {
  --order-accent: rgba(216, 181, 106, 0.92);
}

.aurora-field-orders li[data-order-state="storm"] {
  --order-accent: rgba(225, 83, 131, 0.96);
}

.aurora-field-orders span {
  color: rgba(216, 181, 106, 0.92);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.aurora-field-orders strong {
  display: block;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.82rem);
  font-weight: 400;
  line-height: 1.08;
}

.aurora-field-orders small {
  grid-column: 2;
  margin: 0;
  color: rgba(245, 239, 228, 0.68);
  line-height: 1.42;
}

.aurora-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, 100%);
  background: rgba(37, 211, 171, 0.24);
}

.aurora-metric-grid-wide {
  width: 100%;
}

.aurora-metric {
  --metric-accent: rgba(37, 211, 171, 0.46);
  --metric-glow: rgba(37, 211, 171, 0.08);
  position: relative;
  min-width: 0;
  padding: clamp(22px, 3vw, 34px) clamp(22px, 3vw, 34px) clamp(30px, 3.6vw, 42px);
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, var(--metric-glow), transparent 13rem),
    linear-gradient(180deg, rgba(245, 239, 228, 0.065), rgba(245, 239, 228, 0.03)),
    #0b1413;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--metric-accent), transparent 78%);
  transition: background 450ms ease, box-shadow 450ms ease, transform 450ms ease;
}

.aurora-metric::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: linear-gradient(180deg, transparent, var(--metric-accent), transparent);
  opacity: 0.74;
}

.aurora-metric::after {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  height: 3px;
  content: "";
  background:
    linear-gradient(90deg, var(--metric-accent) var(--metric-level, 0%), rgba(255, 255, 255, 0.08) var(--metric-level, 0%));
  border-radius: 999px;
  opacity: 0.72;
}

.aurora-metric[data-state="quiet"] {
  --metric-accent: rgba(88, 200, 150, 0.52);
  --metric-glow: rgba(88, 200, 150, 0.055);
}

.aurora-metric[data-state="active"],
.aurora-metric[data-state="south"],
.aurora-metric[data-state="compressed"] {
  --metric-accent: rgba(37, 211, 171, 0.86);
  --metric-glow: rgba(37, 211, 171, 0.12);
}

.aurora-metric[data-state="watch"] {
  --metric-accent: rgba(216, 181, 106, 0.9);
  --metric-glow: rgba(216, 181, 106, 0.12);
}

.aurora-metric[data-state="storm"] {
  --metric-accent: rgba(225, 83, 131, 0.95);
  --metric-glow: rgba(225, 83, 131, 0.16);
  box-shadow: inset 0 0 0 1px rgba(225, 83, 131, 0.34), 0 0 32px rgba(225, 83, 131, 0.08);
}

.aurora-metric[data-metric="bz"] {
  background:
    radial-gradient(circle at 20% 16%, color-mix(in srgb, var(--metric-accent), transparent 72%), transparent 14rem),
    linear-gradient(180deg, rgba(245, 239, 228, 0.09), rgba(37, 211, 171, 0.035)),
    #081211;
}

.aurora-metric[data-metric="bz"] span {
  color: rgba(245, 239, 228, 0.9);
}

.aurora-metric span,
.aurora-camera-card span {
  display: block;
  color: rgba(216, 181, 106, 0.92);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aurora-metric strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.45rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 0.94;
}

.aurora-command-grid .aurora-metric {
  padding: clamp(22px, 2.5vw, 34px) clamp(18px, 2.3vw, 30px) clamp(30px, 3.4vw, 42px);
}

.aurora-command-grid .aurora-metric strong {
  max-width: 100%;
  font-size: clamp(2.15rem, 3.2vw, 3.45rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.aurora-command-grid .aurora-metric[data-metric="bz"] strong {
  font-size: clamp(2.45rem, 3.7vw, 3.95rem);
}

.aurora-command-grid .aurora-metric[data-metric="scale"] strong {
  max-width: calc(100% - 6px);
  font-size: clamp(1.42rem, 1.9vw, 2.35rem);
  line-height: 1.04;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

.aurora-metric small {
  display: block;
  margin-top: 14px;
  color: var(--dim);
  line-height: 1.55;
}

.aurora-data-lab {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin-top: clamp(28px, 4.5vw, 62px);
}

.aurora-mini-card {
  min-width: 0;
  padding: clamp(18px, 2.4vw, 26px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(245, 239, 228, 0.052), rgba(245, 239, 228, 0.02)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.aurora-mini-card header {
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
}

.aurora-mini-card header span,
.aurora-mini-card header small {
  color: var(--dim);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aurora-mini-card header span {
  color: rgba(245, 239, 228, 0.78);
}

.aurora-mini-card > strong {
  display: inline-flex;
  min-height: 58px;
  align-items: baseline;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.45rem, 4.8vw, 4rem);
  font-weight: 400;
  line-height: 0.95;
}

.aurora-mini-card > small {
  display: block;
  min-height: 38px;
  color: var(--dim);
  line-height: 1.45;
}

.aurora-mini-chart {
  height: 190px;
  margin-top: 18px;
}

.aurora-chart-sync {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(240px, 0.58fr) minmax(260px, 1fr);
  gap: 1px;
  width: min(1180px, 100%);
  margin: clamp(28px, 4.2vw, 56px) 0 0;
  overflow: hidden;
  background: rgba(37, 211, 171, 0.22);
  border: 1px solid rgba(37, 211, 171, 0.2);
}

.aurora-chart-sync span,
.aurora-chart-sync strong,
.aurora-chart-sync small {
  display: block;
  min-width: 0;
  padding: 16px 18px;
  background:
    radial-gradient(circle at 18% 18%, rgba(37, 211, 171, 0.08), transparent 12rem),
    rgba(7, 16, 15, 0.94);
}

.aurora-chart-sync span {
  color: rgba(216, 181, 106, 0.9);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aurora-chart-sync strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2.2rem);
  font-weight: 400;
  line-height: 1.1;
}

.aurora-chart-sync small {
  color: var(--dim);
  line-height: 1.45;
}

.aurora-mini-chart p {
  color: var(--muted);
}

.aurora-mini-chart svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.aurora-mini-chart path {
  fill: none;
}

.aurora-mini-chart .grid {
  stroke: rgba(245, 239, 228, 0.11);
  stroke-width: 1;
}

.aurora-mini-chart .hit-area {
  fill: transparent;
  outline: none;
  pointer-events: all;
}

.aurora-mini-chart .hover-line {
  stroke: rgba(245, 239, 228, 0.42);
  stroke-width: 1;
  stroke-dasharray: 3 5;
}

.aurora-mini-chart .hover-dot {
  fill: #f5efe4;
  stroke: rgba(37, 211, 171, 0.78);
  stroke-width: 2;
  filter: drop-shadow(0 0 12px rgba(37, 211, 171, 0.45));
}

.aurora-mini-chart .bz-positive-zone {
  fill: rgba(225, 83, 131, 0.08);
}

.aurora-mini-chart .bz-negative-zone {
  fill: rgba(37, 211, 171, 0.14);
}

.aurora-mini-chart[data-sync-active="true"] {
  filter: drop-shadow(0 0 18px rgba(37, 211, 171, 0.08));
}

.aurora-mini-chart text {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.04em;
  paint-order: stroke;
  stroke: rgba(8, 14, 13, 0.84);
  stroke-width: 3px;
  text-transform: uppercase;
}

.aurora-mini-chart .threshold-label {
  fill: rgba(245, 239, 228, 0.64);
}

.aurora-mini-chart .south-label {
  fill: #25d3ab;
}

.aurora-mini-chart .now-label {
  fill: rgba(216, 181, 106, 0.92);
  text-anchor: end;
}

.aurora-mini-chart path.white {
  stroke: rgba(245, 239, 228, 0.92);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.aurora-mini-chart path.gold {
  stroke: #d8b56a;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.aurora-mini-chart path.orange {
  stroke: #f08d56;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.aurora-mini-chart .south {
  fill: #25d3ab;
}

.aurora-mini-chart .north {
  fill: #e15383;
}

.aurora-mini-chart .quiet {
  fill: #58c896;
}

.aurora-mini-chart .watch,
.aurora-mini-chart .predicted {
  fill: #d8b56a;
}

.aurora-mini-chart .storm {
  fill: #e15383;
}

.aurora-mini-chart circle {
  fill: var(--ink);
  stroke: rgba(9, 10, 10, 0.78);
  stroke-width: 2;
}

.aurora-mini-chart .celestial-chart text {
  stroke: rgba(8, 14, 13, 0.72);
  stroke-width: 2px;
}

.aurora-mini-chart .sky-panel {
  fill: rgba(5, 12, 12, 0.92);
  stroke: rgba(255, 255, 255, 0.08);
}

.aurora-mini-chart .horizon {
  stroke: rgba(245, 239, 228, 0.18);
  stroke-width: 1;
}

.aurora-mini-chart .night-band {
  fill: rgba(37, 211, 171, 0.36);
  filter: drop-shadow(0 0 12px rgba(37, 211, 171, 0.18));
}

.aurora-mini-chart .twilight-arc {
  stroke: url("#sunNightGradient");
  stroke-width: 5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 14px rgba(216, 181, 106, 0.2));
}

.aurora-mini-chart .now-pin {
  stroke: rgba(245, 239, 228, 0.26);
  stroke-width: 1;
  stroke-dasharray: 4 6;
}

.aurora-mini-chart .sun-disc {
  fill: #d8b56a;
  stroke: rgba(255, 231, 168, 0.85);
  stroke-width: 2;
  filter: drop-shadow(0 0 18px rgba(216, 181, 106, 0.54));
}

.aurora-mini-chart .moon-glow {
  fill: rgba(130, 160, 255, 0.16);
  filter: drop-shadow(0 0 18px rgba(154, 180, 255, 0.22));
}

.aurora-mini-chart .moon-lit {
  fill: url("#moonGlow");
}

.aurora-mini-chart .moon-shadow {
  fill: #07100f;
}

.aurora-mini-chart .moon-rim {
  fill: none;
  stroke: rgba(245, 239, 228, 0.72);
  stroke-width: 1.4;
}

.aurora-mini-chart .moon-wash-track {
  fill: rgba(255, 255, 255, 0.08);
}

.aurora-mini-chart .moon-wash-fill {
  fill: rgba(190, 207, 255, 0.66);
  filter: drop-shadow(0 0 14px rgba(154, 180, 255, 0.25));
}

.aurora-mini-chart .moon-visible-band {
  fill: rgba(154, 180, 255, 0.24);
  filter: drop-shadow(0 0 12px rgba(154, 180, 255, 0.16));
}

.aurora-mini-chart .moon-path {
  fill: none;
  stroke: rgba(190, 207, 255, 0.72);
  stroke-width: 4;
  stroke-linecap: round;
  filter: drop-shadow(0 0 14px rgba(154, 180, 255, 0.2));
}

.aurora-card-read {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: 1px;
  margin: 18px 0 0;
  color: var(--dim);
  background: rgba(255, 255, 255, 0.08);
}

.aurora-card-read div {
  min-width: 0;
  padding: 12px 14px;
  background: rgba(7, 16, 15, 0.9);
}

.aurora-card-read dt {
  margin: 0 0 5px;
  color: rgba(216, 181, 106, 0.92);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aurora-card-read dd {
  margin: 0;
  color: var(--ink);
  line-height: 1.35;
}

.aurora-science-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, 100%);
  margin-top: clamp(28px, 4.4vw, 58px);
  background: rgba(216, 181, 106, 0.2);
  border: 1px solid rgba(216, 181, 106, 0.16);
}

.aurora-science-bar article {
  min-width: 0;
  padding: clamp(20px, 2.4vw, 30px);
  background:
    radial-gradient(circle at 20% 0%, rgba(216, 181, 106, 0.09), transparent 12rem),
    linear-gradient(180deg, rgba(245, 239, 228, 0.045), rgba(245, 239, 228, 0.022)),
    #0a1312;
}

.aurora-science-bar span {
  color: rgba(216, 181, 106, 0.9);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aurora-science-bar strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.3vw, 2.35rem);
  font-weight: 400;
  line-height: 1.05;
}

.aurora-science-bar p {
  margin: 12px 0 0;
  color: var(--dim);
  line-height: 1.55;
}

.aurora-event-suite {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: clamp(22px, 3.4vw, 44px);
  align-items: start;
  width: min(1180px, 100%);
  margin-top: clamp(34px, 5vw, 76px);
  padding-top: clamp(10px, 2vw, 20px);
  scroll-margin-top: 112px;
}

.aurora-event-lead {
  position: sticky;
  top: 104px;
}

.aurora-event-lead span,
.aurora-event-card header span {
  color: rgba(216, 181, 106, 0.92);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aurora-event-lead h2 {
  max-width: 360px;
  margin: 16px 0 18px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 400;
  line-height: 0.98;
}

.aurora-event-lead p {
  max-width: 390px;
  color: var(--muted);
  line-height: 1.7;
}

.aurora-event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.aurora-event-card {
  min-width: 0;
  padding: clamp(20px, 2.4vw, 30px);
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 0%, rgba(37, 211, 171, 0.08), transparent 14rem),
    linear-gradient(180deg, rgba(245, 239, 228, 0.052), rgba(245, 239, 228, 0.022)),
    #0a1312;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.aurora-event-card header {
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
}

.aurora-event-card header small {
  color: var(--dim);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.aurora-event-card strong {
  display: block;
  max-width: 100%;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.4vw, 3.75rem);
  font-weight: 400;
  line-height: 1;
  overflow-wrap: anywhere;
}

.aurora-event-card p {
  margin: 14px 0 0;
  color: var(--dim);
  line-height: 1.58;
}

.aurora-flare-card[data-flare-state="active"] {
  border-color: rgba(216, 181, 106, 0.28);
  box-shadow: inset 0 0 0 1px rgba(216, 181, 106, 0.12);
}

.aurora-flare-card[data-flare-state="major"],
.aurora-flare-card[data-flare-state="extreme"] {
  border-color: rgba(225, 83, 131, 0.38);
  box-shadow: inset 0 0 0 1px rgba(225, 83, 131, 0.18), 0 0 38px rgba(225, 83, 131, 0.08);
}

.aurora-model-card figure {
  margin: 20px 0 0;
  overflow: hidden;
  background: #020504;
  border: 1px solid rgba(37, 211, 171, 0.16);
  border-radius: 6px;
}

.aurora-model-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08) brightness(0.88);
}

.aurora-mini-chart .xray-line {
  stroke: #e15383;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 14px rgba(225, 83, 131, 0.18));
}

.aurora-mini-chart .solar-flux {
  fill: rgba(216, 181, 106, 0.78);
}

.aurora-mini-chart .sun {
  stroke: #d8b56a;
  stroke-width: 4;
  filter: drop-shadow(0 0 14px rgba(216, 181, 106, 0.22));
}

.aurora-mini-chart .moon {
  stroke: #dfe8ff;
  stroke-width: 4;
  filter: drop-shadow(0 0 14px rgba(154, 180, 255, 0.22));
}

.aurora-condition-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(22px, 3.4vw, 44px);
  align-items: start;
  width: min(1180px, 100%);
  margin-top: clamp(32px, 5vw, 70px);
}

.aurora-simulation {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: stretch;
  width: min(1180px, 100%);
  margin-top: clamp(34px, 5vw, 76px);
  scroll-margin-top: 112px;
  padding: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at 72% 30%, rgba(37, 211, 171, 0.11), transparent 22rem),
    radial-gradient(circle at 25% 70%, rgba(225, 83, 131, 0.09), transparent 20rem),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
}

.aurora-sim-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
}

.aurora-sim-copy .section-line {
  margin-bottom: 20px;
}

.aurora-sim-copy p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.7;
}

.aurora-sim-readout {
  display: grid;
  gap: 1px;
  margin: clamp(24px, 4vw, 54px) 0 0;
  background: rgba(255, 255, 255, 0.09);
}

.aurora-sim-readout div {
  padding: 16px 18px;
  background: rgba(7, 16, 15, 0.92);
}

.aurora-sim-readout dt {
  margin: 0 0 6px;
  color: rgba(216, 181, 106, 0.92);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aurora-sim-readout dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.12;
}

.aurora-sim-stage {
  position: relative;
  min-height: clamp(500px, 52vw, 720px);
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 34%, rgba(216, 181, 106, 0.18), transparent 18rem),
    radial-gradient(circle at 45% 46%, rgba(37, 211, 171, 0.14), transparent 22rem),
    radial-gradient(circle at 78% 62%, rgba(76, 151, 255, 0.1), transparent 20rem),
    linear-gradient(180deg, #020605, #07110f 58%, #030706);
  border: 1px solid rgba(37, 211, 171, 0.24);
  border-radius: 8px;
  box-shadow: inset 0 0 80px rgba(37, 211, 171, 0.08), 0 22px 80px rgba(0, 0, 0, 0.28);
}

.aurora-sim-stage::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(216, 181, 106, 0.12), transparent 28%, transparent 70%, rgba(37, 211, 171, 0.06)),
    radial-gradient(circle at 50% 50%, transparent 42%, rgba(0, 0, 0, 0.28));
  mix-blend-mode: screen;
}

.aurora-sim-stage canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.aurora-sim-overlay {
  position: absolute;
  inset: auto 18px 18px;
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  pointer-events: none;
}

.aurora-sim-overlay span {
  padding: 7px 10px;
  color: rgba(245, 239, 228, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(5, 8, 8, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.aurora-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(18px, 2.4vw, 30px);
  align-items: start;
  width: min(1180px, 100%);
  margin-top: clamp(32px, 5vw, 70px);
  scroll-margin-top: 112px;
}

.aurora-map-panel,
.aurora-forecast-panel,
.aurora-camera-card,
.aurora-chart-panel,
.aurora-alert-panel {
  min-width: 0;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.aurora-oval-panel {
  grid-row: span 2;
}

.aurora-map-panel {
  overflow: hidden;
}

.aurora-map-panel > div,
.aurora-forecast-panel,
.aurora-chart-panel,
.aurora-alert-panel {
  padding: clamp(22px, 3vw, 34px);
}

.aurora-map-panel h2,
.aurora-forecast-panel h2,
.aurora-source-band h2,
.aurora-camera-card h3,
.aurora-chart-panel h2,
.aurora-alert-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
}

.aurora-map-panel h2,
.aurora-forecast-panel h2,
.aurora-source-band h2,
.aurora-chart-panel h2,
.aurora-alert-panel h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.aurora-map-panel p,
.aurora-camera-card p,
.aurora-forecast-list p,
.aurora-chart-panel p,
.aurora-alert-panel p {
  color: var(--muted);
  line-height: 1.68;
}

.aurora-map-panel a,
.aurora-oval-frame {
  display: block;
  margin: 0;
  background: #050606;
  border-top: 1px solid rgba(37, 211, 171, 0.2);
}

.aurora-oval-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(37, 211, 171, 0.18);
  border-top: 1px solid rgba(37, 211, 171, 0.2);
}

.aurora-oval-frame {
  position: relative;
  border-top: 0;
}

.aurora-oval-frame figcaption {
  position: absolute;
  top: 14px;
  right: 14px;
  left: 14px;
  z-index: 1;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background: rgba(4, 6, 6, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.aurora-oval-frame figcaption span {
  color: var(--dim);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.aurora-oval-frame figcaption strong {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
}

.aurora-map-panel img {
  width: 100%;
  height: auto;
  filter: saturate(1.05) contrast(1.02) brightness(0.92);
}

.aurora-forecast-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.aurora-forecast-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 14px;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.aurora-window-list article {
  position: relative;
  grid-template-columns: minmax(0, 1fr) auto;
  padding-bottom: 20px;
}

.aurora-window-list article i {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.09);
}

.aurora-window-list article i::after {
  display: block;
  width: var(--kp-level);
  height: 100%;
  content: "";
  background: linear-gradient(90deg, #25d3ab, #d8b56a, #e153a4);
}

.aurora-forecast-list span,
.aurora-forecast-list small {
  color: var(--dim);
  font-size: 0.88rem;
}

.aurora-forecast-list strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.aurora-trace {
  position: relative;
  display: flex;
  align-items: center;
  height: 220px;
  gap: 2px;
  margin-top: 24px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.aurora-trace::before {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  height: 1px;
  content: "";
  background: rgba(245, 239, 228, 0.18);
}

.aurora-trace span {
  position: relative;
  display: block;
  flex: 1 1 2px;
  min-width: 2px;
  height: 100%;
}

.aurora-trace span::before,
.aurora-trace span::after {
  position: absolute;
  right: 0;
  left: 0;
  content: "";
  border-radius: 999px;
}

.aurora-trace span::before {
  top: calc(50% - (var(--bt-height) / 2));
  height: var(--bt-height);
  opacity: 0.16;
  background: #d8b56a;
}

.aurora-trace span::after {
  height: var(--bz-height);
  background: #25d3ab;
}

.aurora-trace span.south::after {
  top: 50%;
}

.aurora-trace span.north::after {
  bottom: 50%;
  background: #e153a4;
}

.aurora-trace span.neutral::after {
  top: calc(50% - 3px);
  height: 6px;
  background: rgba(245, 239, 228, 0.45);
}

.aurora-trace-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  color: var(--dim);
  font-size: 0.86rem;
}

.aurora-trace-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.aurora-trace-legend i {
  width: 24px;
  height: 2px;
  background: rgba(245, 239, 228, 0.4);
}

.aurora-trace-legend i.south {
  background: #25d3ab;
}

.aurora-trace-legend i.north {
  background: #e153a4;
}

.aurora-alert-panel article {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.aurora-alert-panel article span {
  color: var(--dim);
  font-size: 0.84rem;
}

.aurora-alert-panel article strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 400;
  line-height: 1.16;
}

.aurora-alert-panel {
  grid-column: 2;
}

.aurora-webcams {
  border-top: 1px solid var(--hair);
}

.aurora-camera-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.aurora-camera-grid-expanded {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.aurora-camera-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: clamp(22px, 2.8vw, 32px);
}

.aurora-camera-card h3 {
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
}

.aurora-camera-card p {
  margin: 16px 0 24px;
}

.aurora-camera-status {
  display: inline-flex;
  width: fit-content;
  margin-top: 6px;
  padding: 6px 9px;
  color: rgba(245, 239, 228, 0.68);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
}

.aurora-camera-card[data-camera-state="online"] .aurora-camera-status,
.aurora-camera-card[data-camera-state="blocked"] .aurora-camera-status {
  color: rgba(37, 211, 171, 0.86);
  background: rgba(37, 211, 171, 0.08);
  border-color: rgba(37, 211, 171, 0.22);
}

.aurora-camera-card[data-camera-state="offline"] {
  order: 99;
  opacity: 0.62;
}

.aurora-camera-card[data-camera-state="offline"] .aurora-camera-status {
  color: rgba(216, 181, 106, 0.9);
  background: rgba(216, 181, 106, 0.09);
  border-color: rgba(216, 181, 106, 0.24);
}

.aurora-camera-card a,
.aurora-source-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: auto;
  color: #d8b56a;
  text-decoration: none;
}

.aurora-camera-card a::before,
.aurora-source-links a::before {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin-right: 12px;
  content: "";
  background: currentColor;
}

.aurora-source-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding-block: clamp(54px, 8vw, 104px);
  border-top: 1px solid var(--hair);
}

.aurora-source-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  align-content: start;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    justify-content: start;
    gap: 6px 22px;
    padding-top: 10px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .selected-rail {
    grid-auto-columns: minmax(260px, 74vw);
  }

  .hero-strip {
    right: var(--gutter);
    bottom: 20px;
    width: min(68vw, 540px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .archive-intro,
  .feature-pair,
  .field-band,
  .social-band,
  .aurora-command-grid,
  .aurora-metric-grid,
  .aurora-field-orders,
  .aurora-chart-sync,
  .aurora-science-bar,
  .aurora-event-suite,
  .aurora-simulation,
  .aurora-condition-layout,
  .aurora-visual-grid,
  .aurora-camera-grid,
  .aurora-source-band,
  .field-note-topics,
  .site-footer,
  .notes-layout section,
  .scout-field-station,
  .scout-support-intro,
  .scout-support-grid,
  .scout-faq-list,
  .legal-section {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: start;
  }

  .aurora-camera-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aurora-metric-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aurora-data-lab {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aurora-event-lead {
    position: static;
  }

  .aurora-event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aurora-oval-pair {
    grid-template-columns: 1fr;
  }

  .aurora-score-card {
    min-height: 0;
  }

  .aurora-command-grid .aurora-metric-grid-wide {
    order: -1;
  }

  .scout-field-station {
    align-items: start;
  }

  .aurora-oval-panel {
    grid-row: auto;
  }

  .aurora-alert-panel {
    grid-column: auto;
  }

  .field-notes-follow {
    display: grid;
    justify-content: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-top: 16px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.85rem, 13.4vw, 3.45rem);
  }

  .hero-copy,
  .page-hero > div {
    width: min(330px, calc(100vw - 44px));
    max-width: min(330px, calc(100vw - 44px));
  }

  .hero p,
  .page-hero p {
    width: min(320px, 100%);
    max-width: min(320px, 100%);
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero,
  .page-hero {
    min-height: 84svh;
  }

  .scout-hero {
    min-height: 88svh;
    padding-top: 112px;
    padding-bottom: 56px;
  }

  .scout-hero picture::after {
    background:
      linear-gradient(90deg, rgba(7, 18, 26, 0.88), rgba(7, 18, 26, 0.52) 66%, rgba(7, 18, 26, 0.28)),
      linear-gradient(0deg, #07121a, transparent 46%);
  }

  .scout-hero-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    width: min(330px, calc(100vw - 44px));
    max-width: min(330px, calc(100vw - 44px));
  }

  .scout-icon {
    width: 112px;
    border-radius: 22px;
  }

  .scout-copy h1 {
    font-size: clamp(3.35rem, 16vw, 5rem);
  }

  .scout-copy p {
    width: min(320px, 100%);
    max-width: min(320px, 100%);
    font-size: 1rem;
    line-height: 1.55;
  }

  .scout-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: min(320px, 100%);
    max-width: min(320px, 100%);
  }

  .scout-tags span {
    justify-content: center;
    padding-inline: 8px;
    text-align: center;
    font-size: 0.78rem;
  }

  .scout-actions a {
    justify-content: center;
    min-width: min(150px, 100%);
  }

  .scout-support-shell {
    padding-right: 22px;
    padding-left: 22px;
    overflow: hidden;
  }

  .scout-field-station {
    padding-right: 22px;
    padding-left: 22px;
  }

  .scout-station-copy,
  .scout-station-board {
    box-sizing: border-box;
    width: min(100%, calc(100vw - 44px));
    max-width: min(100%, calc(100vw - 44px));
  }

  .scout-station-board {
    padding: 22px;
  }

  .scout-station-top {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .scout-station-top img {
    width: 66px;
    border-radius: 15px;
  }

  .scout-station-list li,
  .aurora-field-orders li {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .scout-support-intro,
  .scout-support-grid,
  .scout-faq,
  .scout-faq-list,
  .scout-panel,
  .scout-faq-list article {
    box-sizing: border-box;
    width: min(100%, calc(100vw - 44px));
    max-width: min(100%, calc(100vw - 44px));
    margin-right: 0;
    margin-left: 0;
  }

  .scout-panel,
  .scout-faq-list article {
    padding: 22px;
  }

  .scout-panel h3,
  .scout-faq-list h3,
  .scout-support-intro p,
  .scout-panel p,
  .scout-faq-list p {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero.cinematic .hero-img {
    object-position: 50% 50%;
  }

  .selected-card {
    min-height: 420px;
  }

  .feature-panel {
    min-height: 430px;
  }

  .hero-strip {
    display: none;
  }

  .aurora-dashboard,
  .aurora-webcams,
  .aurora-source-band {
    padding-right: 22px;
    padding-left: 22px;
  }

  .aurora-metric-grid,
  .aurora-metric-grid-wide,
  .aurora-condition-layout,
  .aurora-visual-grid,
  .aurora-event-suite,
  .aurora-event-grid,
  .aurora-camera-grid,
  .aurora-source-links {
    grid-template-columns: 1fr;
  }

  .aurora-live-bar,
  .aurora-field-orders,
  .aurora-command-grid,
  .aurora-metric-grid,
  .aurora-chart-sync,
  .aurora-science-bar,
  .aurora-event-suite,
  .aurora-data-lab,
  .aurora-simulation,
  .aurora-visual-grid,
  .aurora-condition-layout {
    width: min(100%, calc(100vw - 44px));
  }

  .aurora-camera-card {
    min-height: 0;
  }

  .aurora-score-card {
    padding: 24px;
  }

  .aurora-score-orbit {
    width: min(190px, 66vw);
    margin-bottom: 34px;
  }

  .aurora-trace {
    height: 168px;
  }

  .aurora-data-lab {
    grid-template-columns: 1fr;
  }

  .aurora-simulation {
    padding: 18px;
  }

  .aurora-sim-stage {
    min-height: 520px;
  }

  .aurora-sim-overlay {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .aurora-mini-card > strong {
    min-height: 48px;
  }

  .field-notes-placeholder {
    padding-right: 22px;
    padding-left: 22px;
  }

  .field-note-topics article {
    min-height: 0;
  }

  .field-note-topics span {
    margin-bottom: 34px;
  }

  .archive-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .archive-preview-grid button {
    min-height: 136px;
  }

  .masonry-gallery {
    columns: 1;
  }

  .lightbox {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .lightbox figure {
    grid-column: 1 / -1;
    grid-row: 1;
  }
}

/* Shutter Scout gold-standard poster rebuild. */
.ss-page .ss-hero-poster {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(14px, 2svh, 22px);
  padding: 104px clamp(18px, 3.2vw, 48px) 32px;
  background:
    linear-gradient(180deg, rgba(2, 7, 11, 0.64) 0%, rgba(2, 7, 11, 0.08) 34%, rgba(2, 7, 11, 0.78) 100%),
    linear-gradient(90deg, rgba(2, 7, 11, 0.72) 0%, rgba(2, 7, 11, 0.08) 42%, rgba(2, 7, 11, 0.52) 100%),
    url("./shutter-scout/shutter-scout-field-bg.webp") center / cover no-repeat,
    #02070b;
}

.ss-page .ss-brand-lockup {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: center;
  gap: 0 clamp(16px, 2vw, 28px);
  text-align: center;
  color: var(--ss-ink);
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.76);
}

.ss-page .ss-star {
  width: clamp(46px, 5vw, 76px);
  aspect-ratio: 1;
  background: linear-gradient(135deg, #ffcc76, var(--ss-gold) 55%, #ff8d3d);
  clip-path: polygon(50% 0, 61% 37%, 100% 50%, 61% 63%, 50% 100%, 39% 63%, 0 50%, 39% 37%);
  filter: drop-shadow(0 8px 22px rgba(243, 163, 70, 0.38));
}

.ss-page .ss-brand-lockup h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 6.8vw, 7.7rem);
  line-height: 0.88;
  font-weight: 400;
}

.ss-page .ss-brand-lockup p {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: var(--ss-teal);
  font-size: clamp(0.85rem, 1.38vw, 1.18rem);
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ss-page .ss-mode-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 70px);
  color: rgba(239, 248, 248, 0.84);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ss-page .ss-mode-row span {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 54px;
}

.ss-page .ss-mode-row span::before {
  width: 24px;
  height: 24px;
  content: "";
  border: 1px solid rgba(239, 248, 248, 0.68);
  border-radius: 6px;
  background: rgba(5, 19, 27, 0.22);
  box-shadow: inset 0 0 18px rgba(73, 221, 207, 0.08);
}

.ss-page .ss-poster-board {
  position: relative;
  z-index: 1;
  width: min(1420px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(245px, 345px) minmax(250px, 340px) minmax(245px, 345px);
  gap: clamp(14px, 2vw, 28px);
  align-items: center;
}

.ss-page .ss-feature-rail {
  display: grid;
  gap: clamp(8px, 1svh, 12px);
}

.ss-page .ss-feature-rail article {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  align-items: center;
  min-height: 70px;
  padding: 10px 14px;
  color: var(--ss-ink);
  background: rgba(4, 18, 25, 0.82);
  border: 1px solid rgba(73, 221, 207, 0.38);
  border-radius: 8px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 16px 34px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px) saturate(116%);
}

.ss-page .ss-feature-rail article:nth-child(2n) {
  border-color: rgba(117, 151, 255, 0.38);
}

.ss-page .ss-feature-rail article:nth-child(3n) {
  border-color: rgba(243, 163, 70, 0.36);
}

.ss-page .ss-feature-rail span {
  display: grid;
  grid-row: 1 / 3;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  color: var(--ss-teal);
  background: rgba(73, 221, 207, 0.12);
  border: 1px solid rgba(73, 221, 207, 0.52);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.ss-page .ss-feature-rail h2 {
  grid-column: 2;
  margin: 0;
  color: var(--ss-ink);
  font-family: var(--sans);
  font-size: clamp(0.88rem, 1.08vw, 1.05rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ss-page .ss-feature-rail p {
  grid-column: 2;
  width: auto;
  margin: 3px 0 0;
  color: rgba(224, 239, 239, 0.8);
  font-size: clamp(0.74rem, 0.78vw, 0.86rem);
  line-height: 1.25;
}

.ss-page .ss-phone-stage {
  margin: 0;
  display: grid;
  place-items: center;
}

.ss-page .ss-device {
  position: relative;
  height: min(59svh, 640px);
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 18%),
    #05080b;
  border: 1px solid rgba(230, 241, 241, 0.32);
  border-radius: 44px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.66),
    0 0 0 6px rgba(0, 0, 0, 0.42),
    0 0 58px rgba(73, 221, 207, 0.18);
}

.ss-page .ss-device::before {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 50%;
  width: 34%;
  height: 26px;
  content: "";
  background: #020304;
  border-radius: 999px;
  transform: translateX(-50%);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.ss-page .ss-device img {
  display: block;
  width: auto;
  height: 100%;
  max-width: none;
  border-radius: 34px;
  object-fit: contain;
}

.ss-page .ss-launch-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 16px;
  text-align: center;
}

.ss-page .ss-launch-row #ss-beta-copy {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--ss-teal);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.78);
}

@media (max-width: 1180px) {
  .ss-page .ss-hero-poster {
    min-height: auto;
    padding-top: 112px;
  }

  .ss-page .ss-poster-board {
    grid-template-columns: minmax(250px, 360px) minmax(250px, 360px);
  }

  .ss-page .ss-phone-stage {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .ss-page .ss-feature-rail-left {
    grid-column: 1;
  }

  .ss-page .ss-feature-rail-right {
    grid-column: 2;
  }

  .ss-page .ss-device {
    height: min(54svh, 610px);
  }
}

@media (max-width: 760px) {
  .ss-page .ss-hero-poster {
    padding: 104px 18px 30px;
    gap: 16px;
  }

  .ss-page .ss-brand-lockup {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ss-page .ss-star {
    justify-self: center;
    width: 44px;
  }

  .ss-page .ss-brand-lockup h1 {
    font-size: clamp(3.55rem, 17vw, 5rem);
    line-height: 0.9;
  }

  .ss-page .ss-brand-lockup p {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .ss-page .ss-mode-row {
    gap: 12px;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .ss-page .ss-mode-row::-webkit-scrollbar {
    display: none;
  }

  .ss-page .ss-mode-row span {
    min-width: 62px;
  }

  .ss-page .ss-poster-board {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ss-page .ss-phone-stage,
  .ss-page .ss-feature-rail-left,
  .ss-page .ss-feature-rail-right {
    grid-column: auto;
    grid-row: auto;
  }

  .ss-page .ss-phone-stage {
    order: -1;
  }

  .ss-page .ss-device {
    height: min(54svh, 470px);
    border-radius: 36px;
  }

  .ss-page .ss-device img {
    border-radius: 28px;
  }

  .ss-page .ss-feature-rail {
    gap: 10px;
  }

  .ss-page .ss-feature-rail article {
    min-height: 76px;
  }
}

@media (max-width: 520px) {
  .ss-page .ss-feature-rail article:nth-child(n + 5) {
    display: none;
  }

  .ss-page .ss-device {
    height: min(46svh, 390px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* Shutter Scout product route. Keep every selector scoped to this page. */
.ss-page {
  --ss-bg: #02070b;
  --ss-panel: rgba(5, 19, 27, 0.78);
  --ss-panel-strong: rgba(6, 24, 32, 0.92);
  --ss-line: rgba(85, 226, 215, 0.32);
  --ss-line-warm: rgba(243, 163, 70, 0.4);
  --ss-ink: #fbf4e7;
  --ss-muted: rgba(224, 239, 239, 0.74);
  --ss-teal: #49ddcf;
  --ss-gold: #f3a346;
  background:
    linear-gradient(180deg, #02070b 0%, #04131a 44%, #02070b 100%);
}

.ss-page .ss-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 118px var(--gutter) 64px;
  background:
    linear-gradient(180deg, rgba(2, 7, 11, 0.2), #02070b 96%),
    #02070b;
}

.ss-page .ss-hero-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 98px clamp(12px, 3vw, 56px) 42px;
}

.ss-page .ss-hero-art img {
  width: min(88vw, 1100px);
  height: auto;
  max-height: calc(100svh - 120px);
  object-fit: contain;
  filter: drop-shadow(0 32px 70px rgba(0, 0, 0, 0.58));
}

.ss-page .ss-hero-copy {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(420px, 100%);
  margin-top: 42svh;
  color: var(--ss-ink);
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.92);
}

.ss-page .ss-app-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.48);
}

.ss-page .ss-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 10vw, 7.2rem);
  line-height: 0.9;
  font-weight: 400;
}

.ss-page .ss-hero p {
  width: min(390px, 100%);
  margin: 20px 0 26px;
  color: var(--ss-muted);
  font-size: clamp(1.05rem, 1.7vw, 1.36rem);
  line-height: 1.45;
}

.ss-page .ss-primary,
.ss-page .ss-support-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: #051013;
  background: linear-gradient(135deg, var(--ss-gold), #ffd885);
  border: 1px solid rgba(255, 236, 184, 0.7);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.36);
}

.ss-page .ss-primary + span {
  display: block;
  margin-top: 12px;
  color: var(--ss-teal);
  font-size: 0.83rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ss-page .ss-proof,
.ss-page .ss-feature-band,
.ss-page .ss-support {
  padding: 96px var(--gutter);
}

.ss-page .ss-section-head {
  width: min(880px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.ss-page .ss-section-head h2,
.ss-page .ss-support h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.45rem, 5.4vw, 5rem);
  line-height: 0.98;
  color: var(--ss-ink);
}

.ss-page .ss-section-head p,
.ss-page .ss-support p {
  margin: 22px auto 0;
  width: min(760px, 100%);
  color: var(--ss-muted);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.7;
}

.ss-page .ss-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.ss-page .ss-proof-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  color: var(--ss-ink);
  background: var(--ss-panel);
  border: 1px solid var(--ss-line);
  border-radius: 8px;
}

.ss-page .ss-proof-wide {
  grid-column: 1 / -1;
}

.ss-page .ss-proof-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1280 / 920;
  object-fit: cover;
  background: #02070b;
}

.ss-page .ss-proof-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(18px, 3vw, 32px);
  background: linear-gradient(0deg, rgba(1, 6, 10, 0.9), rgba(1, 6, 10, 0.04));
}

.ss-page .ss-proof-card h3,
.ss-page .ss-feature-grid h3 {
  margin: 0;
  color: var(--ss-ink);
  font-size: clamp(1.15rem, 2.1vw, 1.8rem);
  line-height: 1.1;
}

.ss-page .ss-proof-card p,
.ss-page .ss-feature-grid p {
  margin: 10px 0 0;
  color: var(--ss-muted);
  line-height: 1.55;
}

.ss-page .ss-feature-band {
  background:
    linear-gradient(180deg, rgba(73, 221, 207, 0.06), rgba(243, 163, 70, 0.04) 62%, transparent),
    #031017;
}

.ss-page .ss-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ss-page .ss-feature-grid article {
  min-height: 210px;
  padding: 24px;
  background: var(--ss-panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.ss-page .ss-feature-grid span {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--ss-teal);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.ss-page .ss-support {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  border-top: 1px solid var(--ss-line);
  background:
    linear-gradient(90deg, rgba(2, 7, 11, 0.2), rgba(73, 221, 207, 0.08)),
    #02070b;
}

.ss-page .ss-support-actions {
  display: grid;
  gap: 12px;
}

.ss-page .ss-support-actions a {
  width: 100%;
  min-height: 54px;
}

.ss-page .ss-support-actions a:nth-child(n + 3) {
  color: var(--ss-ink);
  background: rgba(8, 30, 39, 0.74);
  border-color: var(--ss-line);
}

.ss-page .site-footer {
  border-top-color: var(--ss-line);
}

@media (min-width: 1180px) {
  .ss-page .ss-hero-copy {
    margin-top: 33svh;
  }

  .ss-page .ss-hero-art img {
    width: min(72vw, 1040px);
  }
}

@media (max-width: 980px) {
  .ss-page .ss-hero {
    min-height: auto;
    padding-top: 106px;
  }

  .ss-page .ss-hero-art {
    position: relative;
    padding: 0;
  }

  .ss-page .ss-hero-art img {
    width: min(100%, 660px);
    max-height: none;
  }

  .ss-page .ss-hero-copy {
    width: min(660px, 100%);
    margin: 28px auto 0;
    text-align: center;
  }

  .ss-page .ss-app-icon {
    margin-right: auto;
    margin-left: auto;
  }

  .ss-page .ss-hero p {
    margin-right: auto;
    margin-left: auto;
  }

  .ss-page .ss-proof-grid,
  .ss-page .ss-feature-grid,
  .ss-page .ss-support {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ss-page .ss-hero,
  .ss-page .ss-proof,
  .ss-page .ss-feature-band,
  .ss-page .ss-support {
    padding-right: 20px;
    padding-left: 20px;
  }

  .ss-page .ss-hero h1 {
    font-size: clamp(3rem, 13.5vw, 4.1rem);
  }

  .ss-page .ss-hero-art img {
    width: min(100%, 300px);
  }

  .ss-page .ss-app-icon {
    display: none;
  }

  .ss-page .ss-hero-copy {
    margin-top: 18px;
  }

  .ss-page .ss-hero p {
    margin-top: 12px;
    margin-bottom: 18px;
  }

  .ss-page .ss-proof,
  .ss-page .ss-feature-band,
  .ss-page .ss-support {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .ss-page .ss-proof-card div {
    position: relative;
    background: #06141c;
  }

  .ss-page .ss-proof-card p,
  .ss-page .ss-feature-grid p,
  .ss-page .ss-section-head p,
  .ss-page .ss-support p {
    overflow-wrap: anywhere;
  }
}

/* Final Shutter Scout poster override: this must live after the legacy route block. */
.ss-page .ss-hero-poster {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(12px, 1.6svh, 20px);
  padding: 98px clamp(18px, 3vw, 46px) 24px;
  background:
    linear-gradient(180deg, rgba(2, 7, 11, 0.58) 0%, rgba(2, 7, 11, 0.08) 34%, rgba(2, 7, 11, 0.74) 100%),
    linear-gradient(90deg, rgba(2, 7, 11, 0.68) 0%, rgba(2, 7, 11, 0.08) 42%, rgba(2, 7, 11, 0.48) 100%),
    url("./shutter-scout/shutter-scout-field-bg.webp") center / cover no-repeat,
    #02070b;
}

.ss-page .ss-hero-poster .ss-brand-lockup {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: center;
  gap: 0 clamp(16px, 2vw, 28px);
  text-align: center;
  color: var(--ss-ink);
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.76);
}

.ss-page .ss-hero-poster .ss-star {
  width: clamp(44px, 4.5vw, 72px);
  aspect-ratio: 1;
  background: linear-gradient(135deg, #ffcc76, var(--ss-gold) 55%, #ff8d3d);
  clip-path: polygon(50% 0, 61% 37%, 100% 50%, 61% 63%, 50% 100%, 39% 63%, 0 50%, 39% 37%);
  filter: drop-shadow(0 8px 22px rgba(243, 163, 70, 0.38));
}

.ss-page .ss-hero-poster .ss-brand-lockup h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 6vw, 7rem);
  line-height: 0.88;
  font-weight: 400;
}

.ss-page .ss-hero-poster .ss-brand-lockup p {
  grid-column: 1 / -1;
  width: auto;
  margin: 4px 0 0;
  color: var(--ss-teal);
  font-size: clamp(0.82rem, 1.16vw, 1.05rem);
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ss-page .ss-hero-poster .ss-mode-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3.5vw, 64px);
  color: rgba(239, 248, 248, 0.84);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ss-page .ss-hero-poster .ss-mode-row span {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 7px;
  min-width: 54px;
}

.ss-page .ss-hero-poster .ss-mode-row span::before {
  width: 22px;
  height: 22px;
  content: "";
  border: 1px solid rgba(239, 248, 248, 0.68);
  border-radius: 6px;
  background: rgba(5, 19, 27, 0.22);
  box-shadow: inset 0 0 18px rgba(73, 221, 207, 0.08);
}

.ss-page .ss-hero-poster .ss-poster-board {
  position: relative;
  z-index: 1;
  width: min(1390px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(238px, 328px) minmax(232px, 315px) minmax(238px, 328px);
  gap: clamp(14px, 2vw, 28px);
  align-items: center;
}

.ss-page .ss-hero-poster .ss-feature-rail {
  display: grid;
  gap: clamp(7px, 0.8svh, 10px);
}

.ss-page .ss-hero-poster .ss-feature-rail article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 4px 11px;
  align-items: center;
  min-height: 66px;
  padding: 10px 13px;
  color: var(--ss-ink);
  background: rgba(4, 18, 25, 0.82);
  border: 1px solid rgba(73, 221, 207, 0.38);
  border-radius: 8px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 16px 34px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px) saturate(116%);
}

.ss-page .ss-hero-poster .ss-feature-rail article:nth-child(2n) {
  border-color: rgba(117, 151, 255, 0.38);
}

.ss-page .ss-hero-poster .ss-feature-rail article:nth-child(3n) {
  border-color: rgba(243, 163, 70, 0.36);
}

.ss-page .ss-hero-poster .ss-feature-rail span {
  display: grid;
  grid-row: 1 / 3;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  color: var(--ss-teal);
  background: rgba(73, 221, 207, 0.12);
  border: 1px solid rgba(73, 221, 207, 0.52);
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.ss-page .ss-hero-poster .ss-feature-rail h2 {
  grid-column: 2;
  margin: 0;
  color: var(--ss-ink);
  font-family: var(--sans);
  font-size: clamp(0.82rem, 0.88vw, 0.98rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.ss-page .ss-hero-poster .ss-feature-rail p {
  grid-column: 2;
  width: auto;
  margin: 0;
  color: rgba(224, 239, 239, 0.8);
  font-size: clamp(0.7rem, 0.72vw, 0.82rem);
  line-height: 1.24;
}

.ss-page .ss-hero-poster .ss-phone-stage {
  margin: 0;
  display: grid;
  place-items: center;
}

.ss-page .ss-hero-poster .ss-device {
  position: relative;
  height: min(54svh, 594px);
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 18%),
    #05080b;
  border: 1px solid rgba(230, 241, 241, 0.32);
  border-radius: 42px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.66),
    0 0 0 6px rgba(0, 0, 0, 0.42),
    0 0 58px rgba(73, 221, 207, 0.18);
}

.ss-page .ss-hero-poster .ss-device::before {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 50%;
  width: 34%;
  height: 24px;
  content: "";
  background: #020304;
  border-radius: 999px;
  transform: translateX(-50%);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.ss-page .ss-hero-poster .ss-device img {
  display: block;
  width: auto;
  height: 100%;
  max-width: none;
  border-radius: 32px;
  object-fit: contain;
}

.ss-page .ss-hero-poster .ss-launch-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 16px;
  text-align: center;
}

.ss-page .ss-hero-poster .ss-launch-row #ss-beta-copy {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin: 0;
  color: var(--ss-teal);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.78);
}

@media (max-width: 1180px) {
  .ss-page .ss-hero-poster {
    min-height: auto;
    padding-top: 112px;
  }

  .ss-page .ss-hero-poster .ss-poster-board {
    grid-template-columns: minmax(250px, 360px) minmax(250px, 360px);
  }

  .ss-page .ss-hero-poster .ss-phone-stage {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .ss-page .ss-hero-poster .ss-feature-rail-left {
    grid-column: 1;
  }

  .ss-page .ss-hero-poster .ss-feature-rail-right {
    grid-column: 2;
  }

  .ss-page .ss-hero-poster .ss-device {
    height: min(54svh, 610px);
  }
}

@media (max-width: 760px) {
  .ss-page .ss-hero-poster {
    padding: 104px 18px 30px;
    gap: 16px;
  }

  .ss-page .ss-hero-poster .ss-brand-lockup {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ss-page .ss-hero-poster .ss-star {
    justify-self: center;
    width: 44px;
  }

  .ss-page .ss-hero-poster .ss-brand-lockup h1 {
    font-size: clamp(3.55rem, 17vw, 5rem);
    line-height: 0.9;
  }

  .ss-page .ss-hero-poster .ss-brand-lockup p {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .ss-page .ss-hero-poster .ss-mode-row {
    gap: 12px;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .ss-page .ss-hero-poster .ss-mode-row::-webkit-scrollbar {
    display: none;
  }

  .ss-page .ss-hero-poster .ss-mode-row span {
    min-width: 62px;
  }

  .ss-page .ss-hero-poster .ss-poster-board {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ss-page .ss-hero-poster .ss-phone-stage,
  .ss-page .ss-hero-poster .ss-feature-rail-left,
  .ss-page .ss-hero-poster .ss-feature-rail-right {
    grid-column: auto;
    grid-row: auto;
  }

  .ss-page .ss-hero-poster .ss-phone-stage {
    order: -1;
  }

  .ss-page .ss-hero-poster .ss-device {
    height: min(54svh, 470px);
    border-radius: 36px;
  }

  .ss-page .ss-hero-poster .ss-device img {
    border-radius: 28px;
  }

  .ss-page .ss-hero-poster .ss-feature-rail {
    gap: 10px;
  }

  .ss-page .ss-hero-poster .ss-feature-rail article {
    min-height: 76px;
  }
}

@media (max-width: 520px) {
  .ss-page .ss-hero-poster .ss-feature-rail article:nth-child(n + 5) {
    display: none;
  }

  .ss-page .ss-hero-poster .ss-device {
    height: min(46svh, 390px);
  }
}

/* Shutter Scout award-pass refinement: keep after all route rules. */
.ss-page .site-header {
  padding-top: 14px;
  padding-bottom: 16px;
  background:
    linear-gradient(180deg, rgba(1, 6, 10, 0.68), rgba(1, 6, 10, 0.26) 66%, transparent);
  border-bottom-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px) saturate(120%);
}

.ss-page .brand span {
  font-size: clamp(1rem, 1.45vw, 1.32rem);
}

.ss-page .brand small {
  color: rgba(251, 244, 231, 0.64);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

.ss-page .site-nav {
  gap: 6px clamp(12px, 1.4vw, 22px);
  font-size: 0.86rem;
}

.ss-page .site-nav a {
  min-height: 36px;
  color: rgba(251, 244, 231, 0.74);
}

.ss-page .site-nav a[aria-current="page"] {
  color: #fffaf0;
  text-shadow: 0 0 18px rgba(73, 221, 207, 0.42);
}

.ss-page .ss-hero-poster {
  min-height: 100svh;
  padding-top: clamp(74px, 8.2svh, 92px);
  padding-bottom: clamp(18px, 2.6svh, 32px);
  gap: clamp(7px, 0.95svh, 13px);
  background:
    radial-gradient(circle at 20% 22%, rgba(243, 163, 70, 0.3), transparent 24%),
    radial-gradient(circle at 74% 21%, rgba(73, 221, 207, 0.34), transparent 25%),
    linear-gradient(180deg, rgba(2, 7, 11, 0.36) 0%, rgba(2, 7, 11, 0.04) 38%, rgba(2, 7, 11, 0.64) 100%),
    linear-gradient(90deg, rgba(2, 7, 11, 0.5) 0%, rgba(2, 7, 11, 0.06) 46%, rgba(2, 7, 11, 0.44) 100%),
    url("./shutter-scout/shutter-scout-field-bg.webp") center / cover no-repeat,
    #02070b;
}

.ss-page .ss-hero-poster .ss-brand-lockup {
  max-width: min(1040px, 96vw);
  gap: clamp(13px, 1.4vw, 18px);
}

.ss-page .ss-hero-poster .ss-star {
  width: clamp(56px, 5.2vw, 84px);
  filter:
    drop-shadow(0 0 14px rgba(243, 163, 70, 0.56))
    drop-shadow(0 0 30px rgba(243, 163, 70, 0.28));
}

.ss-page .ss-hero-poster .ss-brand-lockup h1 {
  font-size: clamp(3.95rem, 6.35vw, 7.35rem);
  line-height: 0.84;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.08),
    0 18px 44px rgba(0, 0, 0, 0.8);
}

.ss-page .ss-hero-poster .ss-brand-lockup p {
  margin-top: clamp(4px, 0.55svh, 8px);
  color: rgba(91, 235, 222, 0.9);
  font-size: clamp(0.82rem, 1.05vw, 1.08rem);
  letter-spacing: 0.28em;
  text-shadow: 0 0 18px rgba(73, 221, 207, 0.22), 0 4px 18px rgba(0, 0, 0, 0.8);
}

.ss-page .ss-hero-poster .ss-mode-row {
  gap: clamp(16px, 2.55vw, 45px);
  color: rgba(247, 253, 253, 0.86);
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.72);
}

.ss-page .ss-hero-poster .ss-mode-row span::before {
  opacity: 0.92;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(73, 221, 207, 0.62));
}

.ss-page .ss-hero-poster .ss-poster-board {
  width: min(1340px, 100%);
  grid-template-columns: minmax(230px, 312px) minmax(276px, 374px) minmax(230px, 312px);
  gap: clamp(15px, 2vw, 30px);
}

.ss-page .ss-hero-poster .ss-feature-rail {
  gap: clamp(6px, 0.72svh, 9px);
}

.ss-page .ss-hero-poster .ss-feature-rail article {
  grid-template-columns: 7px minmax(0, 1fr);
  min-height: 60px;
  padding: 8px 12px 9px;
  gap: 3px 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 26%),
    rgba(3, 16, 23, 0.86);
  border-color: rgba(73, 221, 207, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 14px 34px rgba(0, 0, 0, 0.32),
    0 0 24px rgba(73, 221, 207, 0.06);
}

.ss-page .ss-hero-poster .ss-feature-rail article:nth-child(2n) {
  border-color: rgba(115, 154, 255, 0.42);
}

.ss-page .ss-hero-poster .ss-feature-rail article:nth-child(3n) {
  border-color: rgba(243, 163, 70, 0.44);
}

.ss-page .ss-hero-poster .ss-feature-rail span {
  grid-row: 1 / 3;
  width: 5px;
  height: 100%;
  min-height: 38px;
  align-self: stretch;
  color: transparent;
  font-size: 0;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(91, 235, 222, 0.98), rgba(243, 163, 70, 0.92));
  box-shadow: 0 0 18px rgba(73, 221, 207, 0.28);
}

.ss-page .ss-hero-poster .ss-feature-rail h2 {
  align-self: end;
  font-size: clamp(0.78rem, 0.78vw, 0.9rem);
  letter-spacing: 0.05em;
}

.ss-page .ss-hero-poster .ss-feature-rail p {
  max-width: 24ch;
  color: rgba(231, 242, 242, 0.82);
  font-size: clamp(0.67rem, 0.68vw, 0.76rem);
  line-height: 1.22;
}

.ss-page .ss-hero-poster .ss-device {
  height: min(56.5svh, 640px);
  padding: 11px;
  border-color: rgba(255, 250, 238, 0.42);
  box-shadow:
    0 34px 88px rgba(0, 0, 0, 0.72),
    0 0 0 6px rgba(0, 0, 0, 0.46),
    0 0 70px rgba(73, 221, 207, 0.24),
    0 0 120px rgba(243, 163, 70, 0.12);
}

.ss-page .ss-hero-poster .ss-launch-row {
  margin-top: -7px;
  gap: 8px 14px;
  transform: translateY(-3px);
}

.ss-page .ss-hero-poster .ss-launch-row .ss-primary {
  min-height: 48px;
  padding: 0 25px;
  border-color: rgba(243, 163, 70, 0.72);
  background:
    linear-gradient(135deg, rgba(243, 163, 70, 0.96), rgba(255, 205, 126, 0.9));
  color: #061014;
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.42),
    0 0 30px rgba(243, 163, 70, 0.18);
}

.ss-page .ss-hero-poster .ss-launch-row #ss-beta-copy {
  min-height: 42px;
  color: rgba(91, 235, 222, 0.9);
  font-size: 0.78rem;
}

@media (max-width: 1180px) {
  .ss-page .ss-hero-poster .ss-poster-board {
    grid-template-columns: minmax(250px, 360px) minmax(250px, 360px);
  }

  .ss-page .ss-hero-poster .ss-device {
    height: min(56svh, 610px);
  }
}

@media (max-width: 760px) {
  .ss-page .site-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .ss-page .ss-hero-poster {
    padding: 92px 18px 32px;
    gap: 13px;
    background:
      radial-gradient(circle at 24% 18%, rgba(243, 163, 70, 0.26), transparent 26%),
      radial-gradient(circle at 76% 22%, rgba(73, 221, 207, 0.34), transparent 30%),
      linear-gradient(180deg, rgba(2, 7, 11, 0.28) 0%, rgba(2, 7, 11, 0.12) 42%, rgba(2, 7, 11, 0.72) 100%),
      url("./shutter-scout/shutter-scout-field-bg.webp") center top / cover no-repeat,
      #02070b;
  }

  .ss-page .ss-hero-poster .ss-brand-lockup h1 {
    font-size: clamp(3.8rem, 17vw, 5.25rem);
  }

  .ss-page .ss-hero-poster .ss-brand-lockup p {
    font-size: 0.76rem;
    letter-spacing: 0.2em;
  }

  .ss-page .ss-hero-poster .ss-mode-row {
    justify-content: center;
    gap: 12px;
  }

  .ss-page .ss-hero-poster .ss-mode-row span {
    min-width: 52px;
    font-size: 0.66rem;
  }

  .ss-page .ss-hero-poster .ss-device {
    height: min(56svh, 500px);
  }

  .ss-page .ss-hero-poster .ss-feature-rail article {
    min-height: 70px;
  }

  .ss-page .ss-hero-poster .ss-launch-row {
    transform: none;
  }
}

@media (max-width: 520px) {
  .ss-page .ss-hero-poster .ss-device {
    height: min(48svh, 415px);
  }
}
