
:root {
  --ink: #071c1a;
  --paper: #020706;
  --acid: #b9ff69;
  --mint: #7de8ba;
  --line: rgba(7, 28, 26, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #020706;
  color: white;
  font-family: var(--font-manrope, Arial), sans-serif;
}
a { color: inherit; text-decoration: none; }
.srOnly { clip: rect(0, 0, 0, 0); clip-path: inset(50%); height: 1px; overflow: hidden; position: absolute; white-space: nowrap; width: 1px; }

.siteHeader {
  align-items: center;
  background: rgba(6, 23, 22, .72);
  backdrop-filter: blur(20px);
  color: white;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  left: 0;
  padding: 20px 4vw;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}
.brand { font-size: 21px; font-weight: 780; letter-spacing: -.06em; }
.brand > span:last-child { color: var(--acid); }
.brandMark {
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(185,255,105,.58);
  display: inline-block;
  height: 8px;
  margin-right: 10px;
  width: 8px;
}
.siteHeader nav { display: flex; font-size: 12px; font-weight: 650; gap: 34px; letter-spacing: .1em; text-transform: uppercase; }
.siteHeader nav a { opacity: .75; transition: opacity .2s ease; }
.siteHeader nav a:hover { opacity: 1; }
.headerActions { align-items: center; display: flex; gap: 20px; justify-self: end; }
.languageSwitcher {
  align-items: center;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  display: flex;
  gap: 2px;
  padding: 3px;
}
.languageSwitcher a {
  align-items: center;
  border-radius: 50%;
  display: flex;
  font-size: 15px;
  height: 28px;
  justify-content: center;
  opacity: .55;
  transition: background .2s ease, opacity .2s ease, transform .2s ease;
  width: 28px;
}
.languageSwitcher a:hover { opacity: 1; transform: translateY(-1px); }
.languageSwitcher a[aria-current="page"] { background: rgba(185,255,105,.14); box-shadow: inset 0 0 0 1px rgba(185,255,105,.3); opacity: 1; }
main[lang="zh-CN"] { font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", var(--font-manrope, Arial), sans-serif; }
main[lang="zh-CN"] .siteHeader nav { letter-spacing: .06em; }

.hero {
  background: #061b19;
  color: white;
  min-height: 1020px;
  overflow: hidden;
  padding: 170px 4vw 90px;
  position: relative;
}
.heroImage, .heroOverlay, .heroGrid { inset: 0; position: absolute; }
.heroImagePrimary {
  background: url('/images/aurora-teriberka.jpg') center 40% / cover no-repeat;
  filter: saturate(.92) contrast(1.05);
  transform: scale(1.015);
}
.heroOverlay {
  background: linear-gradient(90deg, rgba(3,19,17,.92) 0%, rgba(3,18,17,.58) 43%, rgba(3,18,17,.12) 75%), linear-gradient(0deg, rgba(3,20,18,.7) 0%, transparent 48%);
}
.heroGrid {
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(90deg, black, transparent 68%);
}
.heroContent { max-width: 920px; position: relative; z-index: 2; }
.eyebrow, .sectionKicker { font-size: 11px; font-weight: 750; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow { align-items: center; color: rgba(255,255,255,.75); display: flex; gap: 10px; }
.eyebrow span { background: var(--acid); border-radius: 50%; box-shadow: 0 0 14px var(--acid); height: 7px; width: 7px; }
.hero h1 {
  font-size: clamp(66px, 8.2vw, 132px);
  font-weight: 390;
  letter-spacing: -.078em;
  line-height: .86;
  margin: 48px 0 36px;
}
.hero h1 em, .previewForecast h2 em { color: var(--acid); font-family: Georgia, serif; font-weight: 400; }
.heroContent > p { color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.65; margin: 0 0 38px; max-width: 600px; }
.heroActions { align-items: center; display: flex; gap: 32px; }
.primaryButton {
  align-items: center;
  background: var(--acid);
  border-radius: 100px;
  color: var(--ink);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 22px;
  letter-spacing: .03em;
  padding: 17px 21px 17px 25px;
}
.primaryButton span { border: 1px solid rgba(7,28,26,.25); border-radius: 50%; display: grid; height: 26px; place-items: center; width: 26px; }
.graphsButton { background: var(--mint); }
.graphsButton:hover { background: #9af0cf; }
.textButton { border-bottom: 1px solid rgba(255,255,255,.45); font-size: 13px; font-weight: 700; padding: 10px 0; }
.textButton span { color: var(--acid); margin-left: 10px; }
.heroStats {
  display: flex;
  gap: 48px;
  margin-top: 76px;
  position: relative;
  z-index: 2;
}
.heroStats div { display: flex; flex-direction: column; gap: 4px; }
.heroStats strong { font-size: 21px; font-weight: 550; }
.heroStats span { color: rgba(255,255,255,.45); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.secondPhoto {
  bottom: 56px;
  padding-left: 132px;
  position: absolute;
  right: 4vw;
  width: 340px;
  z-index: 2;
}
.secondPhotoImage {
  background: url('/images/aurora-mountains.jpg') center / cover;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 4px;
  height: 112px;
  left: 0;
  position: absolute;
  top: -24px;
  width: 112px;
}
.secondPhoto span { color: var(--acid); display: block; font-size: 9px; font-weight: 800; letter-spacing: .12em; margin-bottom: 8px; text-transform: uppercase; }
.secondPhoto strong { font-size: 13px; font-weight: 550; line-height: 1.45; }
.heroFootnote { bottom: 18px; color: rgba(255,255,255,.32); display: flex; font-size: 8px; justify-content: space-between; letter-spacing: .12em; position: absolute; right: 4vw; text-transform: uppercase; width: 300px; z-index: 2; }

.graphsPage { background: #020706; min-height: 100vh; }
.graphsHero {
  background:
    linear-gradient(90deg, rgba(2,7,6,.96), rgba(3,24,20,.72) 58%, rgba(2,7,6,.8)),
    url('/images/aurora-teriberka.jpg') center 43% / cover no-repeat;
  min-height: 650px;
  overflow: hidden;
  padding: 175px 4vw 95px;
  position: relative;
}
.graphsHero::after {
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 68px 68px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(90deg, black, transparent 76%);
  pointer-events: none;
  position: absolute;
}
.graphsHero > * { position: relative; z-index: 1; }
.graphsHero .sectionKicker { color: var(--mint); }
.graphsHero h1 {
  font-size: clamp(62px, 8vw, 126px);
  font-weight: 390;
  letter-spacing: -.078em;
  line-height: .86;
  margin: 46px 0 38px;
}
.graphsHero h1 em { color: var(--acid); font-family: Georgia, serif; font-weight: 400; }
.graphsHero p { color: rgba(255,255,255,.68); font-size: 16px; line-height: 1.7; margin: 0 0 28px; max-width: 650px; }
.graphsHero .textButton { display: inline-block; }
.graphsForecast { padding-top: 90px; }

.cameraIntro { align-items: end; display: grid; gap: 8vw; grid-template-columns: 1fr .75fr; padding: 120px 4vw 64px; }
.sectionKicker { color: #52706a; display: block; margin-bottom: 24px; }
.cameraIntro h2, .previewForecast h2 { font-size: clamp(48px, 6vw, 92px); font-weight: 430; letter-spacing: -.07em; line-height: .95; margin: 0; }
.cameraIntro h2 em { color: #3d7769; font-family: Georgia, serif; font-weight: 400; }
.cameraIntro > p { border-top: 1px solid var(--line); color: #58706b; font-size: 15px; line-height: 1.65; margin: 0; max-width: 520px; padding-top: 24px; }
.regionMapSection { background: #020706; padding: 96px 4vw 90px; }
.regionMapHeading { align-items: end; display: grid; gap: 8vw; grid-template-columns: 1fr .75fr; margin-bottom: 42px; }
.regionMapHeading h2 { font-size: clamp(48px, 6vw, 92px); font-weight: 430; letter-spacing: -.07em; line-height: .95; margin: 0; }
.regionMapHeading h2 em { color: #3d7769; font-family: Georgia, serif; font-weight: 400; }
.regionMapHeading > p { border-top: 1px solid var(--line); color: #58706b; font-size: 14px; line-height: 1.7; margin: 0; max-width: 520px; padding-top: 24px; }
.regionMapCard { background: #061b19; border: 1px solid rgba(7,28,26,.18); box-shadow: 0 34px 80px rgba(7,28,26,.15); color: white; display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.65fr); min-height: 650px; overflow: hidden; }
.mapSidebar { border-right: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; justify-content: space-between; padding: 42px 36px 34px; position: relative; z-index: 4; }
.mapCoordinates { color: var(--mint); font-size: 8px; font-weight: 760; letter-spacing: .14em; text-transform: uppercase; }
.mapSidebar h3 { font-size: clamp(38px, 4vw, 62px); font-weight: 430; letter-spacing: -.065em; line-height: .95; margin: 24px 0; }
.mapSidebar > div:first-child p { color: rgba(255,255,255,.48); font-size: 11px; line-height: 1.65; margin: 0; max-width: 270px; }
.mapLegend { border-bottom: 1px solid rgba(255,255,255,.1); border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; gap: 12px; margin: 30px 0; padding: 18px 0; }
.mapLegend span { align-items: center; color: rgba(255,255,255,.48); display: flex; font-size: 8px; font-weight: 700; gap: 10px; letter-spacing: .1em; text-transform: uppercase; }
.mapLegend i { border-radius: 50%; display: inline-block; height: 7px; width: 7px; }
.legendLive { background: var(--acid); box-shadow: 0 0 12px var(--acid); }
.legendCity { border: 1px solid rgba(255,255,255,.6); }
.mapStationIndex { display: grid; gap: 0 16px; grid-template-columns: 1fr 1fr; }
.mapStationIndex a { align-items: baseline; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.58); display: flex; font-size: 8px; gap: 7px; line-height: 1.25; padding: 9px 0; transition: color .2s ease; }
.mapStationIndex a:hover { color: var(--acid); }
.mapStationIndex span { color: var(--mint); font-family: Georgia, serif; font-size: 8px; font-style: italic; }
.mapCanvas { background: radial-gradient(circle at 55% 48%, rgba(53,122,100,.28), transparent 42%), linear-gradient(135deg, #092722, #041310 72%); min-height: 650px; overflow: hidden; position: relative; }
.mapGrid { background-image: linear-gradient(rgba(255,255,255,.042) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.042) 1px, transparent 1px); background-size: 52px 52px; inset: 0; mask-image: radial-gradient(circle at 55% 48%, black, transparent 78%); position: absolute; }
.mapGlow { background: radial-gradient(ellipse at 55% 48%, rgba(185,255,105,.1), transparent 54%); filter: blur(20px); inset: 0; position: absolute; }
.regionLand { filter: drop-shadow(0 24px 42px rgba(0,0,0,.4)); inset: 9% 8% 7% 6%; position: absolute; }
.regionLand > div { background: radial-gradient(circle at 25% 38%, rgba(185,255,105,.1) 0 1px, transparent 2px) 0 0 / 21px 21px, repeating-radial-gradient(ellipse at 58% 45%, transparent 0 34px, rgba(154,226,190,.08) 35px 36px), linear-gradient(145deg, #194b3e, #0d302a 62%, #09231f); clip-path: polygon(7% 18%, 20% 11%, 36% 14%, 49% 9%, 65% 14%, 81% 12%, 96% 22%, 90% 31%, 97% 41%, 86% 51%, 91% 61%, 75% 68%, 66% 78%, 57% 75%, 50% 96%, 41% 91%, 33% 81%, 23% 88%, 17% 74%, 8% 66%, 12% 51%, 5% 43%, 11% 32%, 3% 27%); height: 100%; width: 100%; }
.barentsLabel, .whiteSeaLabel { color: rgba(156,210,195,.34); font-family: Georgia, serif; font-size: 10px; font-style: italic; letter-spacing: .08em; position: absolute; }
.barentsLabel { right: 7%; top: 11%; transform: rotate(5deg); }
.whiteSeaLabel { bottom: 7%; right: 10%; transform: rotate(-8deg); }
.northMark { align-items: center; color: rgba(255,255,255,.55); display: flex; font-size: 9px; font-weight: 800; gap: 8px; left: 5%; letter-spacing: .14em; position: absolute; top: 5%; }
.northMark i { color: var(--acid); font-size: 20px; font-style: normal; font-weight: 400; }
.murmanskMarker { align-items: center; color: rgba(255,255,255,.5); display: flex; font-size: 8px; gap: 6px; left: 46%; letter-spacing: .08em; position: absolute; text-transform: uppercase; top: 43%; }
.murmanskMarker i { border: 1px solid rgba(255,255,255,.75); border-radius: 50%; display: block; height: 6px; width: 6px; }
.mapPoint { align-items: center; display: flex; position: absolute; transform: translate(-50%, -50%); z-index: 3; }
.pointPulse { align-items: center; background: rgba(185,255,105,.12); border: 1px solid rgba(185,255,105,.35); border-radius: 50%; display: flex; height: 34px; justify-content: center; transition: transform .2s ease, background .2s ease; width: 34px; }
.pointPulse::before { animation: mapPulse 2.8s ease-out infinite; border: 1px solid rgba(185,255,105,.38); border-radius: 50%; content: ""; inset: -1px; position: absolute; }
.pointPulse i { align-items: center; background: var(--acid); border-radius: 50%; color: var(--ink); display: flex; font-size: 7px; font-style: normal; font-weight: 850; height: 20px; justify-content: center; letter-spacing: -.02em; width: 20px; }
.mapPoint:hover .pointPulse, .mapPoint:focus-visible .pointPulse { background: rgba(185,255,105,.28); transform: scale(1.14); }
.mapPoint:focus-visible { outline: none; }
.mapPointName { background: rgba(4,19,16,.8); border: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.78); font-size: 8px; font-weight: 680; letter-spacing: .02em; line-height: 1.3; max-width: 130px; padding: 6px 8px; position: absolute; white-space: nowrap; }
.mapPoint--right .mapPointName { left: 42px; }
.mapPoint--left .mapPointName { right: 42px; }
.mapScale { bottom: 5%; color: rgba(255,255,255,.34); font-size: 7px; letter-spacing: .12em; position: absolute; right: 5%; text-transform: uppercase; }
.mapScale span { border-left: 1px solid rgba(255,255,255,.38); border-right: 1px solid rgba(255,255,255,.38); border-top: 1px solid rgba(255,255,255,.38); display: block; height: 5px; margin-bottom: 6px; width: 80px; }
@keyframes mapPulse { 0% { opacity: .8; transform: scale(1); } 72%, 100% { opacity: 0; transform: scale(1.85); } }
.cameraGrid { background: #020706; display: grid; gap: 18px; grid-template-columns: 1fr 1fr; padding: 0 4vw 130px; }
.cameraCard { background: #0a1412; border: 1px solid rgba(255,255,255,.1); padding: 10px; scroll-margin-top: 24px; }
.cameraFrame { aspect-ratio: 16/10; background: #071c1a; overflow: hidden; position: relative; }
.cameraFrame iframe { border: 0; height: 100%; width: 100%; }
.camerasOnlyPage { background: #000; display: grid; gap: 2px; grid-template-columns: repeat(2, minmax(0, 1fr)); min-height: 100vh; padding: 2px; }
.cameraOnlyFrame { aspect-ratio: 16/9; background: #000; min-width: 0; overflow: hidden; }
.cameraOnlyFrame iframe { border: 0; display: block; height: 100%; width: 100%; }
.cameraMeta { align-items: center; display: grid; gap: 18px; grid-template-columns: 44px 1fr auto; padding: 24px 12px 16px; }
.cameraNumber { color: rgba(255,255,255,.38); font-family: Georgia, serif; font-size: 12px; font-style: italic; }
.cameraMeta h3 { font-size: 18px; font-weight: 660; letter-spacing: -.035em; margin: 0 0 5px; }
.cameraMeta p { color: rgba(255,255,255,.48); font-size: 11px; margin: 0; }
.partnerLine { color: var(--mint); display: inline-block; font-size: 9px; font-weight: 720; letter-spacing: .03em; margin-top: 9px; text-decoration: underline; text-decoration-color: rgba(125,232,186,.3); text-underline-offset: 3px; }
.mapButton { align-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 100px; display: inline-flex; font-size: 9px; font-weight: 760; gap: 10px; letter-spacing: .05em; padding: 7px 7px 7px 14px; text-transform: uppercase; transition: .2s ease; white-space: nowrap; }
.mapButton i { align-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; display: flex; font-size: 12px; font-style: normal; height: 27px; justify-content: center; width: 27px; }
.mapButton:hover { background: var(--acid); color: var(--ink); }
.mapButton:hover i { border-color: rgba(7,28,26,.25); }

.forecastSection { background: var(--ink); color: white; padding: 120px 4vw 110px; position: relative; }
.forecastSection::before {
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(180deg, black, transparent 42%);
  pointer-events: none;
  position: absolute;
}
.forecastHeading { margin-bottom: 76px; position: relative; }
.forecastHeading .sectionKicker, .tourCta .sectionKicker { color: var(--mint); }
.forecastHeading h2, .aboutCopy h2, .tourCta h2 { font-size: clamp(50px, 6vw, 94px); font-weight: 430; letter-spacing: -.072em; line-height: .94; margin: 0; }
.forecastHeading h2 em, .tourCta h2 em { color: var(--acid); font-family: Georgia, serif; font-weight: 400; }
.forecastHeading > p { border-top: 1px solid rgba(255,255,255,.17); color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.7; margin: 0; padding-top: 24px; }
.dashboard { position: relative; }
.dashboardTopline { align-items: center; border-bottom: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; margin-bottom: 18px; padding-bottom: 14px; }
.dataLive, .partialNotice, .sourceHealth { color: rgba(255,255,255,.55); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.dataLive i { background: var(--acid); border-radius: 50%; box-shadow: 0 0 12px var(--acid); display: inline-block; height: 6px; margin-right: 7px; width: 6px; }
.partialNotice { color: #ffcf7b; }
.sourceHealth { color: var(--acid); }
.sourceHealth--reserve { color: #ffcf7b; }
.sourceHealth--error { color: #ff8b79; }
.chartSource { border-bottom: 1px solid rgba(255,255,255,.07); border-top: 1px solid rgba(255,255,255,.07); margin: 16px 0 4px; padding: 9px 0; }
.chartSource summary { align-items: center; cursor: pointer; display: flex; flex-wrap: wrap; gap: 6px 12px; list-style: none; position: relative; }
.chartSource summary::-webkit-details-marker { display: none; }
.chartSource summary::after { color: rgba(255,255,255,.26); content: "+"; font-size: 12px; margin-left: 2px; }
.chartSource[open] summary::after { content: "−"; }
.chartSourceState { align-items: center; color: var(--acid); display: inline-flex; font-size: 8px; font-weight: 780; gap: 6px; letter-spacing: .09em; text-transform: uppercase; }
.chartSourceState i { background: currentColor; border-radius: 50%; box-shadow: 0 0 7px currentColor; display: inline-block; height: 5px; width: 5px; }
.chartSource strong { color: var(--mint); font-size: 9px; font-weight: 720; }
.chartSource time { color: rgba(255,255,255,.3); font-size: 8px; letter-spacing: .025em; margin-left: auto; text-transform: uppercase; }
.chartSource > p { color: rgba(255,255,255,.48); font-size: 10px; line-height: 1.55; margin: 9px 0 1px; max-width: 720px; }
.chartSource--partial .chartSourceState, .chartSource--fallback .chartSourceState, .chartSource--estimated .chartSourceState { color: #ffcf7b; }
.chartSource--cached .chartSourceState { color: #a5b0ad; }
.chartSource--unavailable .chartSourceState { color: #ff8b79; }
.metricLabel { color: var(--mint); display: block; font-size: 8px; font-weight: 780; letter-spacing: .14em; text-transform: uppercase; }
.forecastBlock { background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.11); display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 12px; min-height: 390px; }
.forecastCopy, .forecastTableWrap { padding: 46px; }
.forecastCopy { border-right: 1px solid rgba(255,255,255,.11); }
.forecastCopy h3, .forecastSectionTitle h3, .scienceWide h3 { font-size: clamp(38px, 4.6vw, 68px); font-weight: 430; letter-spacing: -.065em; line-height: .95; margin: 17px 0 24px; }
.forecastCopy > p, .forecastSectionTitle > p { color: rgba(255,255,255,.5); font-size: 12px; line-height: 1.75; margin: 0; max-width: 640px; }
.kpGauge { align-items: end; display: grid; gap: 14px 20px; grid-template-columns: auto 1fr; margin-top: 44px; }
.kpGauge strong { color: var(--acid); font-size: 76px; font-weight: 400; grid-row: span 2; letter-spacing: -.075em; line-height: .8; }
.kpGauge > span { background: linear-gradient(90deg, #75dda9, #d8ed6c 42%, #ffad62 68%, #ff635d); height: 7px; overflow: hidden; position: relative; }
.kpGauge > span::after { background: rgba(5,22,19,.78); content: ""; inset: 0; left: auto; position: absolute; width: calc(100% - var(--kp-fill, 100%)); }
.kpGauge > span i { background: white; display: block; height: 100%; max-width: 100%; }
.kpGauge small { color: rgba(255,255,255,.35); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.kpScale { color: rgba(255,255,255,.5); display: flex; font-size: 8px; grid-column: 2; justify-content: space-between; margin-top: -7px; }
.forecastTableWrap h4, .scienceCard h4 { font-size: 24px; font-weight: 520; letter-spacing: -.045em; margin: 13px 0 32px; }
.kpUpcoming { margin: 24px 0 26px; }
.kpUpcoming > strong { color: rgba(255,255,255,.82); display: block; font-size: 11px; font-weight: 720; letter-spacing: .055em; text-transform: uppercase; }
.kpUpcoming > strong small { color: rgba(255,255,255,.48); display: block; font-size: 10px; font-weight: 500; letter-spacing: .04em; margin-top: 6px; text-transform: none; }
.kpUpcoming .forecastCanvas, .kpUpcoming .chartUnavailable { height: 220px; margin-top: 12px; }
.kpTable { border-collapse: collapse; width: 100%; }
.kpTable th, .kpTable td { border-bottom: 1px solid rgba(255,255,255,.12); padding: 17px 10px; text-align: left; }
.kpTable thead th { color: rgba(255,255,255,.35); font-size: 8px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.kpTable tbody th { color: rgba(255,255,255,.6); font-size: 12px; font-weight: 520; }
.kpTable td { color: var(--acid); font-family: Georgia, serif; font-size: 22px; font-style: italic; }
.solarActivity { border-top: 1px solid rgba(255,255,255,.12); margin-top: 86px; padding-top: 84px; }
.forecastSectionTitle { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 48px; }
.forecastSectionTitle .metricLabel { grid-column: 1 / -1; }
.forecastSectionTitle h3 { margin-bottom: 0; }
.forecastSectionTitle p { align-self: end; border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; }
.solarLeadBanner { align-self: end; background: linear-gradient(135deg, rgba(181,255,90,.15), rgba(125,232,186,.07)); border: 1px solid rgba(181,255,90,.36); padding: 20px 22px; }
.solarLeadBanner > span { color: var(--mint); display: block; font-size: 8px; font-weight: 780; letter-spacing: .14em; text-transform: uppercase; }
.solarLeadBanner > strong { color: var(--acid); display: block; font-size: clamp(30px,3.7vw,52px); font-weight: 520; letter-spacing: -.055em; line-height: 1; margin-top: 8px; }
.scienceGrid { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.scienceCard { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.11); min-width: 0; padding: 34px; }
.scienceCardHeader { align-items: flex-start; display: flex; gap: 30px; justify-content: space-between; }
.scienceCardHeader h3 { font-size: 30px; font-weight: 500; letter-spacing: -.05em; margin: 13px 0 0; }
.currentValues { align-items: flex-end; display: flex; flex-direction: column; gap: 8px; min-width: max-content; }
.currentValues span { color: rgba(255,255,255,.36); font-size: 8px; letter-spacing: .04em; }
.currentValues strong { color: white; display: block; font-size: 16px; font-weight: 520; margin-top: 3px; }
.forecastCanvas, .chartUnavailable { background: #343a40; display: block; height: 270px; margin-top: 20px; width: 100%; }
.forecastCanvas { cursor: crosshair; touch-action: pan-y; }
.forecastCanvas--bz {
  background: linear-gradient(180deg, rgba(255,0,255,.58) 0%, #343a40 48%, #343a40 52%, rgba(255,210,0,.76) 100%);
}
.forecastCanvas:focus-visible { outline: 2px solid var(--acid); outline-offset: 4px; }
.chartUnavailable { align-items: center; color: rgba(255,255,255,.32); display: flex; font-size: 10px; justify-content: center; letter-spacing: .08em; text-transform: uppercase; }
.canvasLegend { color: rgba(255,255,255,.37); display: flex; font-size: 8px; gap: 20px; margin-top: 14px; text-transform: uppercase; }
.canvasLegend span { align-items: center; display: flex; gap: 7px; }
.canvasLegend i { display: inline-block; height: 3px; width: 16px; }
.speedKey, .btKey, .northKey { background: var(--acid); }
.densityKey, .southKey { background: #7de8ba; }
.bzKey { background: #ff855f; }
.powerColorScale { display: flex; flex-wrap: wrap; gap: 9px 18px; margin-top: 12px; }
.powerColorScale span { align-items: center; color: rgba(255,255,255,.48); display: inline-flex; font-size: 8px; gap: 7px; letter-spacing: .04em; }
.powerColorScale i { display: inline-block; height: 8px; width: 8px; }
.powerBlue { background: #2457ff; }
.powerYellow { background: #ffe11a; }
.powerRed { background: #ff3028; }
.powerDeepRed { background: #b70024; }
.powerPurple { background: #9b00a8; }
.scienceWide { margin-top: 12px; padding: 42px; }
.scienceWide .forecastCanvas, .scienceWide .chartUnavailable { height: 320px; }
.scienceDescription { color: rgba(255,255,255,.43); font-size: 11px; line-height: 1.65; margin: 16px 0 0; max-width: 760px; }
.ovationPanel { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.11); margin-top: 12px; padding: 42px; }
.ovationHeader { align-items: end; display: grid; gap: 7vw; grid-template-columns: 1fr 1fr; }
.ovationHeader h3 { font-size: clamp(38px, 4.6vw, 68px); font-weight: 430; letter-spacing: -.065em; line-height: .95; margin: 17px 0 0; }
.ovationHeader > p { border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.47); font-size: 11px; line-height: 1.7; margin: 0; padding-top: 18px; }
.ovationFigure { margin: 42px auto 0; max-width: 900px; }
.ovationFigure img { background: #020706; border: 1px solid rgba(255,255,255,.15); display: block; height: auto; width: 100%; }
.ovationFigure figcaption { color: rgba(255,255,255,.3); font-size: 8px; letter-spacing: .08em; padding-top: 12px; text-align: right; text-transform: uppercase; }
.sourceFlag { color: #ffcf7b; display: inline; margin-left: 5px; }
.dataSource { align-items: center; color: rgba(255,255,255,.3); display: flex; font-size: 8px; gap: 18px; letter-spacing: .08em; margin-top: 18px; text-transform: uppercase; }
.dataSource a { color: rgba(255,255,255,.55); text-decoration: underline; text-decoration-color: rgba(255,255,255,.18); text-underline-offset: 3px; }
.auroraAnalysis { --analysis-accent:#b5ff5a; background:linear-gradient(135deg,rgba(181,255,90,.09),rgba(11,35,31,.96) 42%,rgba(5,16,15,.98)); border:1px solid rgba(181,255,90,.25); margin-top:12px; overflow:hidden; padding:42px; position:relative; }
.auroraAnalysis::before { background:var(--analysis-accent); content:""; height:4px; left:0; position:absolute; right:0; top:0; }
.auroraAnalysis--low { --analysis-accent:#71808a; }.auroraAnalysis--below { --analysis-accent:#91a978; }.auroraAnalysis--medium { --analysis-accent:#ffd15c; }.auroraAnalysis--high { --analysis-accent:#a9ff56; }.auroraAnalysis--very-high { --analysis-accent:#5bff9a; }
.analysisHero { align-items:flex-start; display:flex; gap:30px; justify-content:space-between; }
.analysisHero h3 { font-size:clamp(34px,5vw,76px); font-weight:430; letter-spacing:-.055em; line-height:.94; margin:18px 0 0; max-width:1000px; }
.analysisHero h3 em { color:var(--analysis-accent); display:block; font-family:Georgia,serif; font-weight:400; }
.analysisScore { color:var(--analysis-accent); font-size:54px; font-weight:800; letter-spacing:-.06em; line-height:1; }.analysisScore small { color:rgba(255,255,255,.42); font-size:14px; letter-spacing:0; }
.analysisWindow { border-bottom:1px solid rgba(255,255,255,.12); border-top:1px solid rgba(255,255,255,.12); margin-top:34px; padding:24px 0; }
.analysisWindow span,.analysisWindow p { color:rgba(255,255,255,.55); font-size:12px; letter-spacing:.08em; margin:0; text-transform:uppercase; }.analysisWindow strong { color:#fff; display:block; font-size:clamp(28px,4vw,54px); letter-spacing:-.04em; margin:7px 0; }
.analysisWindow p b { color:var(--analysis-accent); font-weight:800; }
.analysisWindow p i { color:rgba(255,255,255,.3); font-style:normal; margin:0 8px; }
.analysisExplanation { display:grid; gap:38px; grid-template-columns:1fr 1fr; margin-top:30px; }.analysisExplanation h4 { color:var(--analysis-accent); font-size:12px; letter-spacing:.12em; margin:0 0 13px; text-transform:uppercase; }.analysisExplanation ul { display:grid; gap:9px; list-style:none; margin:0; padding:0; }.analysisExplanation li { color:rgba(255,255,255,.76); font-size:15px; line-height:1.45; padding-left:18px; position:relative; }.analysisExplanation li::before { background:var(--analysis-accent); border-radius:50%; content:""; height:6px; left:0; position:absolute; top:.55em; width:6px; }
.analysisMethod { color:rgba(255,255,255,.58); font-size:14px; line-height:1.65; margin:30px 0 0; max-width:1080px; }.analysisMethod strong { color:#fff; }
.analysisFooter { align-items:center; display:flex; gap:24px; justify-content:space-between; margin-top:25px; }.analysisFooter span { color:rgba(255,255,255,.45); font-size:11px; letter-spacing:.05em; text-transform:uppercase; }.analysisFooter a { background:var(--analysis-accent); border-radius:999px; color:#05100b; font-size:12px; font-weight:850; letter-spacing:.05em; padding:15px 22px; text-decoration:none; text-transform:uppercase; }
.analysisDisclaimer { color:rgba(255,255,255,.35); font-size:10px; line-height:1.5; margin:20px 0 0; max-width:900px; }
.dashboardLoading { display: grid; gap: 12px; grid-template-columns: 2fr 1fr 1fr; }
.dashboardLoading div { animation: loadingPulse 1.4s ease-in-out infinite alternate; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.09); height: 210px; }
.dashboardLoading div:first-child { grid-row: span 2; height: 432px; }
.dashboardError { border: 1px solid rgba(255,255,255,.15); padding: 44px; }
.dashboardError span { color: var(--acid); font-size: 24px; }
.dashboardError p { color: rgba(255,255,255,.55); font-size: 13px; }
.dashboardError button { background: var(--acid); border: 0; border-radius: 100px; cursor: pointer; font: inherit; font-size: 11px; font-weight: 750; padding: 12px 18px; }

/* Unlisted monitoring view: graphs only, with no site chrome or explanatory copy. */
.chartsOnlyPage { background: #000; min-height: 100vh; }
.chartsOnlyPage .forecastSection { background: #000; max-width: none; padding: 0; }
.chartsOnlyPage .dashboard { max-width: none; }
.chartsOnlyPage .dashboardTopline,
.chartsOnlyPage .forecastCopy,
.chartsOnlyPage .forecastTableWrap > .metricLabel,
.chartsOnlyPage .forecastTableWrap > h4,
.chartsOnlyPage .forecastTableWrap > .chartSource,
.chartsOnlyPage .kpUpcoming > strong,
.chartsOnlyPage .kpTable,
.chartsOnlyPage .scienceCardHeader,
.chartsOnlyPage .scienceDescription,
.chartsOnlyPage .chartSource,
.chartsOnlyPage .canvasLegend,
.chartsOnlyPage .powerColorScale,
.chartsOnlyPage .ovationHeader,
.chartsOnlyPage .ovationFigure figcaption,
.chartsOnlyPage .dataSource,
.chartsOnlyPage .auroraAnalysis { display: none !important; }
.chartsOnlyPage .forecastBlock { background: #000; border: 0; display: block; margin: 0; min-height: 0; }
.chartsOnlyPage .forecastTableWrap,
.chartsOnlyPage .scienceCard,
.chartsOnlyPage .scienceWide,
.chartsOnlyPage .ovationPanel { background: #000; border: 0; margin: 0; padding: 0; }
.chartsOnlyPage .kpUpcoming { margin: 0; }
.chartsOnlyPage .solarActivity { border: 0; margin: 0; padding: 0; }
.chartsOnlyPage .forecastSectionTitle { display: block; padding: 14px 16px 12px; }
.chartsOnlyPage .forecastSectionTitle > .metricLabel,
.chartsOnlyPage .forecastSectionTitle > h3 { display: none; }
.chartsOnlyPage .solarLeadBanner { align-items: baseline; background: #000; border: 0; display: flex; gap: 12px; padding: 0; }
.chartsOnlyPage .solarLeadBanner > span { font-size: 10px; }
.chartsOnlyPage .solarLeadBanner > strong { font-size: clamp(24px,5vw,38px); margin: 0; }
.chartsOnlyPage .scienceGrid { gap: 2px; grid-template-columns: 1fr 1fr; }
.chartsOnlyPage .forecastCanvas,
.chartsOnlyPage .chartUnavailable,
.chartsOnlyPage .kpUpcoming .forecastCanvas,
.chartsOnlyPage .kpUpcoming .chartUnavailable,
.chartsOnlyPage .scienceWide .forecastCanvas,
.chartsOnlyPage .scienceWide .chartUnavailable { height: clamp(300px, 43vw, 560px); margin: 2px 0 0; width: 100%; }
.chartsOnlyPage .ovationFigure { margin: 2px auto 0; max-width: 1100px; }
.chartsOnlyPage .ovationFigure img { border: 0; }
@keyframes loadingPulse { to { background: rgba(255,255,255,.12); } }

.windySection { background: #020706; padding: 96px 4vw 20px; scroll-margin-top: 24px; }
.windyTopline {
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
}
.windyTopline .sectionKicker { color: var(--mint); margin: 0; }
.windyTopline > span:last-child { color: rgba(255,255,255,.34); font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.windyFrame {
  background: #071c1a;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 34px 80px rgba(0,0,0,.28);
  height: clamp(520px, 64vw, 760px);
  overflow: hidden;
  padding: 10px;
}
.windyFrame iframe { border: 0; display: block; height: 100%; width: 100%; }

.graphsCta { align-items: end; background: var(--acid); color: var(--ink); display: grid; gap: 10vw; grid-template-columns: 1.1fr .7fr; padding: 82px 8vw; }
.graphsCta .sectionKicker { color: #315244; margin-bottom: 22px; }
.graphsCta h2 { font-size: clamp(42px, 5.2vw, 78px); font-weight: 430; letter-spacing: -.068em; line-height: .94; margin: 0; }
.graphsCtaAction { align-items: flex-start; display: flex; flex-direction: column; gap: 28px; }
.graphsCtaAction p { border-top: 1px solid rgba(7,28,26,.22); color: #315244; font-size: 13px; line-height: 1.7; margin: 0; max-width: 500px; padding-top: 20px; }
.graphsCta .primaryButton { background: var(--ink); color: white; }
.graphsCta .primaryButton span { border-color: rgba(255,255,255,.28); color: var(--acid); }

.howToRead { background: #020706; color: white; padding: 120px 4vw; }
.readIntro { align-items: end; display: grid; gap: 6vw; grid-template-columns: .55fr 1.15fr .9fr; }
.readIntro .sectionKicker { align-self: start; }
.readIntro h2 { font-size: clamp(40px, 4.6vw, 70px); font-weight: 430; letter-spacing: -.065em; line-height: .96; margin: 0; }
.readIntro h2 em, .readDecision h3 em { color: var(--acid); font-family: Georgia, serif; font-weight: 400; }
.readIntro > p { border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.52); font-size: 13px; line-height: 1.75; margin: 0; padding-top: 20px; }
.readGrid { border-left: 1px solid rgba(255,255,255,.12); border-top: 1px solid rgba(255,255,255,.12); display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 70px; }
.readGrid article { border-bottom: 1px solid rgba(255,255,255,.12); border-right: 1px solid rgba(255,255,255,.12); min-height: 390px; padding: 34px 9% 38px; }
.readGrid span { color: var(--mint); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.readGrid h3 { font-size: 29px; font-weight: 580; letter-spacing: -.045em; margin: 62px 0 18px; }
.readGrid p { color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.72; margin: 0; max-width: 620px; }
.readGrid .readSignal { border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.68); margin-top: 24px; padding-top: 20px; }
.readSignal strong { color: var(--acid); font-weight: 750; }
.readDecision { align-items: start; background: #0a211d; border: 1px solid rgba(185,255,98,.24); display: grid; gap: 8vw; grid-template-columns: .85fr 1.15fr; margin-top: 70px; padding: 58px 5vw 62px; }
.readDecision h3 { font-size: clamp(38px, 4.4vw, 68px); font-weight: 430; letter-spacing: -.065em; line-height: .96; margin: 30px 0 0; }
.readDecisionStates { display: grid; }
.readDecisionStates section { border-top: 1px solid rgba(255,255,255,.13); padding: 21px 0 23px; }
.readDecisionStates strong { color: var(--acid); display: block; font-size: 11px; letter-spacing: .08em; margin-bottom: 10px; text-transform: uppercase; }
.readDecisionStates p { color: rgba(255,255,255,.56); font-size: 13px; line-height: 1.72; margin: 0; }
.readDecision .primaryButton { justify-self: start; margin-top: 10px; }
.auroraGuide { background: #eceae2; color: var(--ink); padding: 120px 4vw; }
.auroraGuideHeading { align-items: end; display: grid; gap: 8vw; grid-template-columns: 1.15fr .75fr; }
.auroraGuideHeading h2 { font-size: clamp(44px, 5.6vw, 86px); font-weight: 430; letter-spacing: -.068em; line-height: .96; margin: 0; }
.auroraGuideHeading h2 em { color: #3d7769; font-family: Georgia, serif; font-weight: 400; }
.auroraGuideHeading > p { border-top: 1px solid rgba(7,28,26,.16); color: #4f6862; font-size: 14px; line-height: 1.75; margin: 0; padding-top: 24px; }
.auroraGuideGrid { border-top: 1px solid rgba(7,28,26,.16); display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 70px; }
.auroraGuideGrid article { min-height: 290px; padding: 30px 10% 30px 0; }
.auroraGuideGrid article + article { border-left: 1px solid rgba(7,28,26,.16); padding-left: 10%; }
.auroraGuideGrid article > span { color: #3d7769; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.auroraGuideGrid h3 { font-size: 25px; font-weight: 600; letter-spacing: -.045em; line-height: 1.08; margin: 58px 0 16px; }
.auroraGuideGrid p { color: #536963; font-size: 13px; line-height: 1.7; margin: 0; }
.auroraFaq { border-top: 1px solid rgba(7,28,26,.16); display: grid; grid-template-columns: .55fr 1.45fr; margin-top: 20px; padding-top: 38px; }
.auroraFaq > h3 { font-size: 28px; font-weight: 560; letter-spacing: -.045em; margin: 0; }
.auroraFaq details { border-bottom: 1px solid rgba(7,28,26,.14); grid-column: 2; }
.auroraFaq summary { cursor: pointer; font-size: 15px; font-weight: 700; list-style: none; padding: 18px 36px 18px 0; position: relative; }
.auroraFaq summary::-webkit-details-marker { display: none; }
.auroraFaq summary::after { color: #3d7769; content: "+"; font-size: 20px; font-weight: 400; position: absolute; right: 0; top: 14px; }
.auroraFaq details[open] summary::after { content: "−"; }
.auroraFaq details p { color: #536963; font-size: 13px; line-height: 1.7; margin: 0; padding: 0 42px 18px 0; }
.aboutSection { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; }
.aboutImage { background: linear-gradient(0deg, rgba(7,28,26,.22), transparent), url('/images/aurora-mountains.jpg') center / cover; }
.aboutCopy { align-items: flex-start; background: #07110f; display: flex; flex-direction: column; justify-content: center; padding: 10vw 8vw; }
.aboutCopy .sectionKicker { color: var(--mint); }
.aboutCopy h2 { margin-bottom: 42px; }
.aboutCopy > p { color: rgba(255,255,255,.5); font-size: 15px; line-height: 1.75; margin: 0 0 44px; max-width: 580px; }
.aboutLinks { border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-direction: column; width: 100%; }
.aboutLinks a { border-bottom: 1px solid rgba(255,255,255,.12); display: flex; font-size: 12px; font-weight: 700; justify-content: space-between; padding: 17px 0; }
.tourCta { align-items: end; background: #09231f; color: white; display: grid; gap: 10vw; grid-template-columns: 1.1fr .7fr; padding: 120px 8vw; scroll-margin-top: 84px; }
.tourAction { border-top: 1px solid rgba(255,255,255,.15); padding-top: 24px; }
.tourAction p { color: rgba(255,255,255,.5); font-size: 14px; margin: 0 0 28px; }
footer { background: #061714; color: white; display: grid; gap: 24px; grid-template-columns: 1fr 1fr auto; padding: 74px 4vw 28px; }
.footerBrand { align-self: start; font-size: 28px; }
footer > p { color: rgba(255,255,255,.42); font-size: 11px; line-height: 1.65; margin: 0; }
footer > div { display: flex; font-size: 10px; font-weight: 720; gap: 28px; letter-spacing: .08em; text-transform: uppercase; }
.copyright { border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.25); font-size: 8px; grid-column: 1/-1; letter-spacing: .1em; margin-top: 45px; padding-top: 24px; text-transform: uppercase; }

@media (max-width: 900px) {
  .siteHeader { grid-template-columns: 1fr auto; }
  .siteHeader nav { display: none; }
  .hero { min-height: 940px; padding-top: 150px; }
  .heroStats { gap: 26px; }
  .regionMapCard { grid-template-columns: 1fr; }
  .mapSidebar { border-bottom: 1px solid rgba(255,255,255,.1); border-right: 0; }
  .mapCanvas { min-height: 610px; }
  .forecastHeading { align-items: start; grid-template-columns: 1fr; }
  .auroraGuideHeading { align-items: start; grid-template-columns: 1fr; }
  .forecastBlock, .forecastSectionTitle, .scienceGrid, .ovationHeader { grid-template-columns: 1fr; }
  .forecastCopy { border-bottom: 1px solid rgba(255,255,255,.11); border-right: 0; }
  .aboutSection { min-height: 600px; }
  .aboutCopy { padding: 80px 6vw; }
  .tourCta { gap: 60px; grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .camerasOnlyPage { gap: 1px; grid-template-columns: 1fr; padding: 0; }
  .siteHeader { padding: 18px 20px; }
  .brand { font-size: 19px; }
  .brandMark { margin-right: 7px; }
  .headerActions { gap: 0; }
  .languageSwitcher a { font-size: 14px; height: 27px; width: 27px; }
  .graphsHero { min-height: 570px; padding: 145px 20px 76px; }
  .graphsHero h1 { font-size: clamp(55px, 17vw, 76px); margin-top: 38px; }
  .graphsHero p { font-size: 14px; }
  .graphsForecast { padding-top: 72px; }
  .hero { min-height: 880px; padding: 140px 20px 64px; }
  .hero h1 { font-size: clamp(56px, 18vw, 78px); margin-top: 38px; }
  .heroContent > p { font-size: 14px; max-width: 92%; }
  .heroActions { align-items: flex-start; flex-direction: column; gap: 12px; }
  .heroStats { margin-top: 56px; }
  .heroStats div:last-child { display: none; }
  .regionMapSection { padding: 64px 20px 60px; }
  .regionMapCard { min-height: 0; }
  .mapSidebar { padding: 34px 24px 26px; }
  .mapSidebar h3 { font-size: 45px; }
  .mapStationIndex { gap: 0 12px; }
  .mapCanvas { min-height: 500px; }
  .mapPointName { display: none; }
  .pointPulse { height: 31px; width: 31px; }
  .pointPulse i { height: 19px; width: 19px; }
  .murmanskMarker { left: 45%; }
  .cameraGrid { grid-template-columns: 1fr; padding: 0 20px 70px; }
  .cameraIntro { gap: 34px; grid-template-columns: 1fr; padding: 80px 20px 48px; }
  .cameraIntro h2 { font-size: 49px; }
  .cameraFrame { aspect-ratio: 16/11; }
  .cameraMeta { grid-template-columns: 44px 1fr; }
  .cameraMeta .mapButton { grid-column: 2; justify-self: start; }
  .forecastSection { padding: 80px 20px 70px; }
  .forecastHeading { margin-bottom: 48px; }
  .forecastHeading h2, .aboutCopy h2, .tourCta h2 { font-size: 49px; }
  .forecastCopy, .forecastTableWrap, .scienceCard, .scienceWide, .ovationPanel { padding: 26px 20px; }
  .forecastCopy h3, .forecastSectionTitle h3, .scienceWide h3 { font-size: 42px; }
  .forecastSectionTitle { gap: 28px; }
  .solarLeadBanner { padding: 20px; }
  .scienceCardHeader { flex-direction: column; }
  .currentValues { align-items: flex-start; flex-direction: row; flex-wrap: wrap; min-width: 0; }
  .forecastCanvas, .chartUnavailable, .scienceWide .forecastCanvas, .scienceWide .chartUnavailable { height: 230px; }
  .graphsPage .graphsForecast { overflow: hidden; padding: 72px 8px 70px; }
  .graphsPage .scienceCard { overflow: hidden; padding-left: 20px; padding-right: 20px; }
  .graphsPage .dashboardTopline { margin-left: 20px; margin-right: 20px; }
  .graphsPage .forecastSectionTitle { margin-left: 20px; margin-right: 20px; }
  .graphsPage .dataSource { padding-left: 20px; padding-right: 20px; }
  .graphsPage .forecastCanvas, .graphsPage .scienceWide .forecastCanvas {
    height: 270px;
    margin-left: -12px;
    width: calc(100% + 24px);
  }
  .kpGauge strong { font-size: 62px; }
  .dataSource { align-items: flex-start; flex-direction: column; gap: 9px; }
  .auroraAnalysis { padding:28px 20px; }.analysisHero { gap:12px; }.analysisScore { font-size:34px; }.analysisScore small { font-size:10px; }.analysisHero h3 { font-size:42px; }.analysisWindow { margin-top:25px; padding:20px 0; }.analysisWindow strong { font-size:31px; }.analysisExplanation { gap:25px; grid-template-columns:1fr; }.analysisFooter { align-items:flex-start; flex-direction:column; }.analysisFooter a { text-align:center; width:100%; }
  .dashboardTopline { align-items: flex-start; flex-direction: column; gap: 8px; }
  .chartSource summary { align-items: flex-start; flex-direction: column; gap: 5px; }
  .chartSource time { margin-left: 0; }
  .chartSource summary::after { position: absolute; right: 0; }
  .ovationFigure { margin-top: 28px; }
  .windySection { padding: 64px 20px 0; }
  .windyFrame { height: 560px; padding: 6px; }
  .graphsCta { align-items: start; gap: 38px; grid-template-columns: 1fr; padding: 68px 20px; }
  .graphsCta h2 { font-size: 46px; }
  .howToRead { padding: 80px 20px; }
  .readIntro { align-items: start; gap: 28px; grid-template-columns: 1fr; }
  .readIntro h2 { font-size: 46px; }
  .readGrid { grid-template-columns: 1fr; margin-top: 50px; }
  .readGrid article { min-height: auto; padding: 28px 24px 32px; }
  .readGrid h3 { font-size: 26px; margin-top: 36px; }
  .readDecision { gap: 38px; grid-template-columns: 1fr; margin-top: 50px; padding: 42px 24px 46px; }
  .readDecision h3 { font-size: 43px; }
  .auroraGuide { padding: 80px 20px; }
  .auroraGuideHeading { gap: 34px; }
  .auroraGuideHeading h2 { font-size: 47px; }
  .auroraGuideGrid { grid-template-columns: 1fr; margin-top: 50px; }
  .auroraGuideGrid article { min-height: 0; padding: 28px 0 34px; }
  .auroraGuideGrid article + article { border-left: 0; border-top: 1px solid rgba(7,28,26,.16); padding-left: 0; }
  .auroraGuideGrid h3 { margin-top: 34px; }
  .auroraFaq { grid-template-columns: 1fr; margin-top: 10px; }
  .auroraFaq > h3 { margin-bottom: 20px; }
  .auroraFaq details { grid-column: 1; }
  .aboutSection { grid-template-columns: 1fr; }
  .aboutImage { min-height: 430px; }
  .aboutCopy { padding: 74px 20px; }
  .tourCta { padding: 80px 20px; }
  footer { grid-template-columns: 1fr; padding: 60px 20px 25px; }
  footer > div { flex-wrap: wrap; }
  .copyright { grid-column: 1; }
  .chartsOnlyPage .forecastSection { padding: 0; }
  .chartsOnlyPage .scienceGrid { grid-template-columns: 1fr; }
  .chartsOnlyPage .forecastCanvas,
  .chartsOnlyPage .chartUnavailable,
  .chartsOnlyPage .kpUpcoming .forecastCanvas,
  .chartsOnlyPage .kpUpcoming .chartUnavailable,
  .chartsOnlyPage .scienceWide .forecastCanvas,
  .chartsOnlyPage .scienceWide .chartUnavailable { height: min(88vw, 440px); margin: 2px 0 0; width: 100%; }
}

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