@charset "UTF-8";
:root {
    color-scheme: dark;
    --bg:#111312;
    --surface:#1a1d1b;
    --ink:#f1f3ec;
    --muted:#a2aaa1;
    --subtle:#778176;
    --line:#ffffff13;
    --lime:#c8f578;
    --orange:#ff9a62;
    --water:#9dccca;
    --radius:22px;
    --ease:cubic-bezier(.2,.7,.2,1);
}

* {
    box-sizing:border-box;
}

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

body {
    margin:0;
    background:var(--bg);
    color:var(--ink);
    font:14px/1.5 -apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    -webkit-font-smoothing:antialiased;
}

body::before {
    content:"";
    position:absolute;
    inset:0 0 auto;
    height:800px;
    pointer-events:none;
    background:radial-gradient(ellipse at 75% 0,#b7df6810,transparent 55%);
    z-index:-1;
}

a {
    color:inherit;
}

button,input {
    font:inherit;
}

button {
    color:inherit;
    cursor:pointer;
    border:0;
}

button,a {
    -webkit-tap-highlight-color:transparent;
}

button:focus-visible,a:focus-visible,summary:focus-visible,[tabindex]:focus-visible {
    outline:2px solid var(--lime);
    outline-offset:5px;
}

[hidden] {
    display:none!important;
}

::selection {
    background:var(--lime);
    color:#161b11;
}

h1,h2,h3,p {
    margin:0;
}

h1,h2,h3 {
    font-weight:600;
    line-height:1.2;
}

h1 {
    font-size:clamp(25px,3vw,39px);
    letter-spacing:-.05em;
    text-wrap:balance;
}

h2 {
    font-size:23px;
    letter-spacing:-.045em;
}

h3 {
    font-size:14px;
    letter-spacing:-.015em;
}

dl,dd {
    margin:0;
}

.icon {
    width:22px;
    height:22px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.65;
    stroke-linecap:round;
    stroke-linejoin:round;
    flex:0 0 auto;
}

.page {
    width:min(1320px,calc(100% - 64px));
    margin-inline:auto;
}

.site-header {
    min-height:94px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-bottom:1px solid var(--line);
    gap:16px;
}

.brand {
    display:flex;
    align-items:center;
    gap:11px;
    text-decoration:none;
    font-size:31px;
    font-weight:650;
    letter-spacing:-.065em;
}

.brand-mark {
    width:35px;
    height:35px;
    color:var(--lime);
}

.brand-mark svg {
    width:100%;
    height:100%;
    fill:none;
    stroke:currentColor;
    stroke-width:2.1;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.brand-dot {
    color:var(--lime);
}

.brand-sub {
    font-size:10px;
    color:var(--muted);
    letter-spacing:.2em;
    font-weight:500;
    margin:7px 0 0 18px;
    padding-left:23px;
    border-left:1px solid #ffffff25;
}

.header-actions {
    display:flex;
    align-items:center;
    gap:9px;
}

.header-date {
    margin-right:15px;
    font:12px Consolas,"SFMono-Regular",monospace;
    color:var(--muted);
}

.icon-button {
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    background:#ffffff04;
    border:1px solid #ffffff18;
    border-radius:50%;
    transition:background .2s,border-color .2s;
}

.icon-button .icon {
    width:18px;
    height:18px;
}

.icon-button:hover {
    border-color:#c8f57866;
    background:#c8f5780a;
}

.icon-button[aria-pressed="true"] {
    color:var(--lime);
    border-color:#c8f57855;
}

.scene-button {
    background:#c8f5780b;
    border:1px solid #c8f57836;
    border-radius:25px;
    padding:10px 15px;
    min-height:42px;
    display:flex;
    align-items:center;
    gap:8px;
    font-size:12px;
    color:var(--lime);
}

.scene-button .icon {
    width:17px;
    height:17px;
}

.scene-button:hover {
    background:#c8f57820;
}

.page-title {
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:20px;
    margin:33px 0 26px;
}

.eyebrow {
    font-size:10px;
    font-weight:550;
    text-transform:uppercase;
    letter-spacing:.16em;
    color:var(--muted);
}

.location-label {
    display:flex;
    align-items:center;
    gap:6px;
    margin-bottom:10px;
}

.location-label .icon {
    width:12px;
    height:12px;
    color:var(--lime);
}

.station-status {
    display:flex;
    gap:10px;
    align-items:flex-start;
    font-size:11px;
    color:var(--muted);
    padding-bottom:2px;
    flex-shrink:0;
}

.station-status time {
    display:block;
    color:var(--ink);
    font:12px/1.8 Consolas,"SFMono-Regular",monospace;
}

.status-dot {
    display:inline-block;
    height:6px;
    width:6px;
    border-radius:50%;
    background:var(--orange);
    margin-top:5px;
    flex-shrink:0;
}

.status-dot.is-live {
    background:var(--lime);
    box-shadow:0 0 0 4px #c8f5780f,0 0 12px #c8f57866;
    animation:status-pulse 3s infinite;
}

.notice {
    padding:9px 14px;
    border:1px solid #ff9a6220;
    border-radius:10px;
    background:#ff9a6207;
    color:#cfbb9e;
    font-size:12px;
    margin-bottom:14px;
}

.overview {
    display:grid;
    grid-template-columns:minmax(0,1.6fr) minmax(0,1fr);
    gap:16px;
}

.panel {
    background:linear-gradient(130deg,#ffffff02,transparent 60%),var(--surface);
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:25px;
    min-width:0;
    position:relative;
}

.hero {
    --scene-accent:#bedeb8;
    isolation:isolate;
    min-height:394px;
    padding:30px 32px 20px;
    overflow:hidden;
    border-color:#aabd9229;
    background:#1a231c;
}

.hero[data-phase="night"] {
    --scene-accent:#c2d2db;
    background:#191f21;
    border-color:#a8c0ca24;
}

.hero[data-phase="twilight"] {
    --scene-accent:#ffad72;
    background:#30241e;
    border-color:#ffc28630;
}

.hero[data-weather="rain"],.hero[data-weather="storm"] {
    --scene-accent:#a4bac8;
    background:#1a2228;
}

.hero[data-weather="snow"] {
    --scene-accent:#c2dce2;
    background:#1d272c;
}

.hero[data-weather="fog"],.hero[data-weather="cloudy"] {
    --scene-accent:#c0c9b6;
    background:#252923;
}

.weather-scene {
    position:absolute;
    inset:0;
    z-index:-1;
    overflow:hidden;
    pointer-events:none;
}

.sky-glow {
    position:absolute;
    width:95%;
    aspect-ratio:1;
    border-radius:50%;
    right:-22%;
    top:-68%;
    background:radial-gradient(circle,#e6f9ac30,#d4f7980c 40%,transparent 68%);
    transition:background 1s;
}

[data-phase="night"] .sky-glow {
    background:radial-gradient(circle,#a5c6df36,#7da0c610 44%,transparent 68%);
}

[data-phase="twilight"] .sky-glow {
    background:radial-gradient(circle,#ff995668,#e5752520 44%,transparent 68%);
    top:-20%;
}

.celestial {
    position:absolute;
    width:139px;
    height:139px;
    right:62px;
    top:61px;
    border-radius:50%;
    box-shadow:0 0 90px 14px #edffb020;
    animation:celestial-float 16s ease-in-out infinite alternate;
    transition:opacity 1.5s;
}

.celestial-core {
    width:100%;
    height:100%;
    border-radius:inherit;
    background:radial-gradient(circle at 37% 30%,#ffffee,#edf8b3 46%,#b6d875 100%);
    box-shadow:inset 0 0 20px #ffffcd90,0 0 35px #d5eb9730;
}

[data-phase="night"] .celestial {
    width:120px;
    height:120px;
    box-shadow:0 0 80px #c1ddf222;
}

[data-phase="night"] .celestial-core {
    background:radial-gradient(ellipse at 30% 65%,#7d939744 0 9%,transparent 11%),radial-gradient(circle at 70% 30%,#8d9a9c55 0 5%,transparent 7%),radial-gradient(circle at 45% 35%,#d5dedc,#afc0c1 40%,#56666e);
    box-shadow:inset -16px -10px 20px #141c2788,0 0 25px #c5e1e222;
}

[data-phase="twilight"] .celestial {
    top:106px;
    box-shadow:0 0 85px #ff853744;
}

[data-phase="twilight"] .celestial-core {
    background:linear-gradient(#ffe0a0,#ff9556);
    box-shadow:0 0 30px #ffba5955;
}

[data-weather="unknown"] .celestial {
    opacity:.35;
}

[data-weather="unknown"] .celestial-core {
    background:transparent;
    border:1px solid #c8d2be66;
    box-shadow:inset 0 0 40px #d4f79809;
}

[data-weather="rain"] .celestial,[data-weather="storm"] .celestial,[data-weather="cloudy"] .celestial,[data-weather="fog"] .celestial,[data-weather="snow"] .celestial {
    opacity:.08;
}

.orbital {
    position:absolute;
    border:1px solid #deebbc0d;
    border-radius:50%;
    width:255px;
    height:255px;
    right:3px;
    top:3px;
}

.orbital::after {
    content:"";
    position:absolute;
    top:50%;
    left:-2px;
    width:3px;
    height:3px;
    border-radius:50%;
    background:#dce5c955;
}

.orbital-two {
    width:390px;
    height:390px;
    top:-65px;
    right:-65px;
    border-style:dashed;
    animation:orbit 160s linear infinite;
}

.cloud {
    position:absolute;
    width:300px;
    height:90px;
    border-radius:50%;
    background:radial-gradient(ellipse,#a6b9bb24,#a6b9bb08 50%,transparent 70%);
    filter:blur(15px);
    right:-40px;
    top:70px;
    opacity:0;
    animation:cloud-drift 19s ease-in-out infinite alternate;
}

.cloud-two {
    top:130px;
    right:30px;
    width:240px;
    animation-delay:-7s;
}

.cloud-three {
    top:15px;
    right:120px;
    width:380px;
    animation-delay:-12s;
}

[data-weather="partly"] .cloud,[data-weather="cloudy"] .cloud,[data-weather="rain"] .cloud,[data-weather="storm"] .cloud,[data-weather="fog"] .cloud,[data-weather="snow"] .cloud {
    opacity:1;
}

[data-weather="fog"] .cloud {
    width:650px;
    height:200px;
    filter:blur(25px);
}

.atmosphere-canvas {
    position:absolute;
    width:100%;
    height:100%;
    inset:0;
}

.terrain {
    position:absolute;
    bottom:-8px;
    width:100%;
    height:48%;
    color:var(--scene-accent);
    fill:none;
    stroke:currentColor;
    stroke-opacity:.13;
    stroke-width:.7;
}

.terrain .terrain-fill {
    fill:url(#terrain-fill);
    stroke:none;
}

.scene-vignette {
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,#1017116b,transparent 80%),linear-gradient(0deg,#10171155,transparent 35%);
}

.hero-top {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
    min-height:24px;
}

.hero-top .eyebrow {
    color:#dce5d2;
}

.hero-top .eyebrow span {
    color:#a5b29e;
    margin-left:7px;
}

.hero-tag {
    color:#d2dfd0;
    font-size:9px;
    border:1px solid #ffffff1a;
    background:#141b1580;
    backdrop-filter:blur(8px);
    padding:4px 8px;
    border-radius:5px;
    white-space:nowrap;
}

.hero-reading {
    display:flex;
    align-items:baseline;
    gap:9px;
    margin-top:19px;
    position:relative;
}

.temperature {
    font-size:clamp(80px,8.4vw,116px);
    line-height:1.03;
    font-weight:370;
    letter-spacing:-.075em;
    font-variant-numeric:tabular-nums;
    text-shadow:0 4px 35px #0002;
}

.temperature-unit {
    color:#d8e2cf;
    font-size:34px;
    font-weight:350;
    letter-spacing:-.05em;
}

.hero-condition {
    display:flex;
    gap:10px;
    align-items:center;
    font-size:16px;
    margin-top:9px;
}

.condition-icon {
    color:var(--scene-accent);
    height:23px;
}

.hero-secondary {
    display:flex;
    flex-wrap:wrap;
    gap:7px 20px;
    color:#b3c0ac;
    font-size:11px;
    margin-top:9px;
    min-height:17px;
}

.hero-secondary strong {
    color:#dce5d6;
    font-weight:500;
    margin-left:3px;
}

.hero-bottom {
    margin-top:29px;
}

.hero-range-label {
    display:flex;
    justify-content:space-between;
    font-size:10px;
    color:#aebea6;
}

.hero-range {
    display:flex;
    align-items:center;
    gap:15px;
    margin-top:9px;
}

.hero-range > svg {
    min-width:30px;
    height:20px;
    flex:1;
}

.hero-range > span {
    display:flex;
    gap:3px;
    align-items:center;
    font-size:15px;
    white-space:nowrap;
}

.hero-range strong {
    font-weight:500;
    font-variant-numeric:tabular-nums;
}

.hero-range .icon {
    width:13px;
    height:13px;
    margin-right:3px;
}

.range-low {
    color:#afcfd0;
}

.range-high {
    color:#ffbc90;
}

.hero-foot {
    display:flex;
    justify-content:space-between;
    gap:10px;
    margin-top:16px;
    padding-top:12px;
    border-top:1px solid #ffffff0c;
    color:#b2bdae;
    font:9px Consolas,"SFMono-Regular",monospace;
}

.tiny-cross {
    color:var(--lime);
    margin-right:4px;
}

.hero-foot-divider {
    margin:0 8px;
    opacity:.4;
}

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

.metric-card {
    --accent:var(--water);
    min-width:0;
    isolation:isolate;
    position:relative;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    border:1px solid var(--line);
    border-radius:var(--radius);
    background:radial-gradient(circle at 85% 0,#afded707,transparent 60%),var(--surface);
    padding:21px 22px 16px;
}

.metric-card::before {
    content:"";
    position:absolute;
    inset:0;
    z-index:-2;
    background:radial-gradient(#ffffff0e .6px,transparent .8px) 0 0 / 7px 7px;
    mask-image:linear-gradient(90deg,transparent,black);
}

.metric-heading {
    display:flex;
    justify-content:space-between;
    gap:6px;
    align-items:center;
}

.metric-heading h2 {
    font-size:12px;
    font-weight:500;
    color:#ccd2c7;
    letter-spacing:0;
}

.metric-heading > .icon {
    width:19px;
    height:19px;
    color:var(--accent);
    opacity:.9;
}

.metric-value {
    display:flex;
    align-items:baseline;
    flex-wrap:wrap;
    column-gap:6px;
    font-size:clamp(28px,3.05vw,41px);
    line-height:1.25;
    font-weight:420;
    letter-spacing:-.055em;
    margin:18px 0 25px;
    color:var(--accent);
    font-variant-numeric:tabular-nums;
}

.unit {
    font-size:12px;
    font-weight:400;
    color:var(--muted);
    letter-spacing:0;
    margin-left:3px;
}

.metric-foot {
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    gap:2px 6px;
    color:#a3ada1;
    font-size:10px;
    margin-top:auto;
}

.metric-foot strong {
    font-weight:450;
    color:#c2cbbd;
    font-variant-numeric:tabular-nums;
}

.humidity-wave {
    position:absolute;
    height:32px;
    width:100%;
    left:0;
    bottom:35px;
    z-index:-1;
    fill:#93c5bf09;
    stroke:#93c5bf22;
    stroke-width:.7;
    overflow:visible;
}

.humidity-wave path {
    animation:wave 12s ease-in-out infinite alternate;
}

.humidity-wave path + path {
    animation-delay:-6s;
    opacity:.6;
}

.wind-card {
    --accent:var(--lime);
}

.wind-stream {
    position:absolute;
    width:100%;
    height:100px;
    bottom:17px;
    left:0;
    fill:none;
    stroke:#c8f57819;
    stroke-width:1;
    z-index:-1;
}

.wind-stream path {
    stroke-dasharray:55 25 5 8;
    animation:wind-flow 7s linear infinite;
}

.pressure-card {
    --accent:#edc89e;
}

.pressure-rings {
    position:absolute;
    z-index:-1;
    width:140px;
    height:140px;
    border-radius:50%;
    right:-45px;
    bottom:-40px;
    background:repeating-radial-gradient(circle,transparent 0 14px,#edc89e0d 15px 16px);
}

.rain-mini-card {
    --accent:#b6d3df;
}

.rain-texture {
    position:absolute;
    z-index:-1;
    width:130px;
    height:130px;
    right:-5px;
    bottom:-10px;
    transform:skewX(-18deg);
    background:repeating-linear-gradient(90deg,transparent 0 13px,#b6d3df0b 13px 14px);
    mask-image:linear-gradient(0deg,black,transparent);
}

.section-heading {
    margin:35px 1px 16px;
    display:flex;
    align-items:baseline;
    justify-content:space-between;
    gap:15px;
}

.section-heading > span {
    color:var(--muted);
    font:10px Consolas,"SFMono-Regular",monospace;
}

.section-dot {
    color:var(--lime);
    margin-left:2px;
}

.content-grid {
    display:grid;
    grid-template-columns:minmax(0,1.6fr) minmax(0,1fr);
    gap:16px;
}

.panel-heading {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
}

.panel-label {
    display:flex;
    align-items:center;
    gap:9px;
    min-width:0;
}

.panel-label .icon {
    color:var(--lime);
    width:19px;
    height:19px;
}

.panel-label h3 {
    color:#d9dfd2;
    font-size:13px;
    font-weight:500;
}

.quiet {
    color:var(--muted);
    font-size:11px;
}

.range {
    display:flex;
    gap:2px;
    padding:3px;
    border:1px solid var(--line);
    border-radius:9px;
    background:#121612;
}

.range a {
    text-decoration:none;
    font-size:10px;
    padding:6px 13px;
    border-radius:6px;
    color:var(--muted);
    min-height:30px;
    display:grid;
    place-items:center;
}

.range a[aria-current] {
    background:var(--lime);
    color:#202919;
    font-weight:600;
    box-shadow:0 0 13px #c8f57812;
}

.range a:hover:not([aria-current]) {
    color:var(--ink);
    background:#ffffff09;
}

.chart-headline {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin:18px 0 4px;
}

.chart-reading {
    font-size:32px;
    line-height:1.15;
    color:var(--lime);
    font-weight:400;
    letter-spacing:-.05em;
    font-variant-numeric:tabular-nums;
}

.legend {
    display:flex;
    align-items:center;
    gap:7px;
    color:var(--muted);
    font-size:9px;
}

.legend i {
    display:inline-block;
    width:14px;
    height:2px;
    background:var(--lime);
}

.chart-wrap {
    position:relative;
    margin-top:8px;
    touch-action:pan-y;
}

.temperature-chart {
    width:100%;
    display:block;
    overflow:visible;
}

.grid-line {
    stroke:#ffffff0c;
    stroke-width:1;
    stroke-dasharray:3 5;
}

.axis-label {
    fill:#9ba694;
    font:13px Consolas,"SFMono-Regular",monospace;
}

.temperature-line {
    fill:none;
    stroke:var(--lime);
    stroke-width:2.3;
    stroke-linecap:round;
    stroke-linejoin:round;
    vector-effect:non-scaling-stroke;
    filter:drop-shadow(0 0 3px #c8f57825);
    stroke-dasharray:1;
    animation:plot-draw 1.9s var(--ease) both;
}

.temperature-area {
    fill:url(#plot-fill);
    opacity:.85;
    animation:fill-in 2s ease both;
}

.plot-endpoint {
    fill:#f2ffd7;
    stroke:var(--lime);
    stroke-width:1.5;
    filter:drop-shadow(0 0 5px #c8f578bb);
}

.plot-beacon {
    fill:#c8f57818;
    stroke:#c8f57833;
    stroke-width:1;
    transform-box:fill-box;
    transform-origin:center;
    animation:beacon 3s ease-out infinite;
}

.chart-crosshair {
    stroke:#d5e6c16b;
    stroke-dasharray:4 4;
    stroke-width:1;
}

.chart-cursor {
    fill:#171e12;
    stroke:var(--lime);
    stroke-width:2;
    filter:drop-shadow(0 0 4px #c8f57866);
}

.chart-tooltip {
    position:absolute;
    top:5px;
    z-index:2;
    pointer-events:none;
    padding:7px 10px;
    border:1px solid #c8f57844;
    border-radius:7px;
    background:#141b12ed;
    box-shadow:0 5px 30px #0004;
    color:var(--lime);
    font-size:11px;
    white-space:nowrap;
}

.chart-data {
    font-size:10px;
    color:var(--muted);
    border-top:1px solid var(--line);
    padding-top:8px;
    margin-top:11px;
}

summary {
    cursor:pointer;
    min-height:32px;
    padding-block:6px;
}

.chart-data summary {
    display:flex;
    justify-content:space-between;
    align-items:center;
}

summary .icon {
    width:14px;
    height:14px;
    color:var(--subtle);
}

.chart-data[open] summary .icon {
    transform:rotate(90deg);
}

.table-scroll {
    overflow:auto;
    max-height:270px;
    margin-top:8px;
}

table {
    width:100%;
    border-collapse:collapse;
    font-size:12px;
    font-variant-numeric:tabular-nums;
}

caption {
    text-align:left;
    padding-bottom:10px;
}

th,td {
    text-align:left;
    padding:8px;
    border-bottom:1px solid var(--line);
}

th:last-child,td:last-child {
    text-align:right;
}

.sun-panel {
    overflow:hidden;
    background:radial-gradient(ellipse at 50% 48%,#ff9a6208,transparent 70%),var(--surface);
}

.sun-panel .panel-label .icon {
    color:var(--orange);
}

.sun-duration {
    text-align:center;
    margin-top:23px;
    font-size:30px;
    letter-spacing:-.04em;
    font-variant-numeric:tabular-nums;
}

.sun-duration span {
    font-size:12px;
    color:var(--muted);
    margin:0 4px;
    letter-spacing:0;
}

.sun-caption {
    text-align:center;
    font-size:9px;
    margin-top:4px;
}

.solar-chart {
    display:block;
    width:100%;
    height:126px;
    margin-top:2px;
    overflow:visible;
}

.solar-area {
    fill:url(#sun-fill);
}

.solar-orbit {
    fill:none;
    stroke:#d3905855;
    stroke-width:1.4;
    stroke-dasharray:3 5;
}

.solar-horizon {
    stroke:#ffffff18;
    stroke-width:1;
}

.solar-edge {
    fill:var(--orange);
}

.sun-position {
    fill:#ffe1b8;
    filter:drop-shadow(0 0 6px #ff9955);
}

.sun-position-halo {
    fill:#ff995515;
    stroke:#ff995530;
}

.sun-times {
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.sun-times > div {
    display:flex;
    align-items:center;
    gap:10px;
}

.sun-times .icon {
    color:var(--orange);
    width:23px;
    height:23px;
}

.sun-times span {
    font-size:9px;
    color:var(--muted);
}

.sun-times strong {
    display:block;
    font-size:17px;
    font-weight:450;
    color:var(--ink);
    font-variant-numeric:tabular-nums;
}

.sun-times > div:last-child {
    text-align:right;
}

.forecast-panel {
    padding:0;
    overflow:hidden;
}

.forecast-days {
    display:grid;
    grid-template-columns:repeat(7,minmax(0,1fr));
}

.forecast-day {
    padding:22px 18px 19px;
    min-width:0;
    border-right:1px solid var(--line);
    position:relative;
}

.forecast-day:last-child {
    border-right:0;
}

.forecast-day:first-child {
    background:linear-gradient(#c8f57809,transparent);
}

.forecast-day:first-child::before {
    content:"";
    position:absolute;
    top:0;
    left:18px;
    width:26px;
    height:2px;
    background:var(--lime);
    box-shadow:0 0 10px #c8f57844;
}

.forecast-date {
    display:flex;
    align-items:baseline;
    justify-content:space-between;
    gap:5px;
}

.forecast-date h3 {
    font-size:13px;
}

.forecast-date > span {
    font-size:10px;
    color:var(--muted);
}

.forecast-condition {
    margin:21px 0 17px;
    display:flex;
    flex-direction:column;
    gap:10px;
    align-items:flex-start;
    color:var(--muted);
    font-size:10px;
}

.forecast-condition .icon {
    width:31px;
    height:31px;
    stroke-width:1.3;
    color:#d8dfd5;
    filter:drop-shadow(0 0 6px #d6e9df20);
}

[data-forecast-weather="clear"] .forecast-condition .icon,[data-forecast-weather="partly"] .forecast-condition .icon {
    color:#efc880;
}

[data-forecast-weather="rain"] .forecast-condition .icon,[data-forecast-weather="snow"] .forecast-condition .icon {
    color:var(--water);
}

[data-forecast-weather="storm"] .forecast-condition .icon {
    color:var(--orange);
}

.forecast-temperature {
    display:flex;
    align-items:center;
    justify-content:space-between;
    font-size:23px;
    letter-spacing:-.04em;
    font-variant-numeric:tabular-nums;
    gap:7px;
}

.forecast-temperature > span {
    color:var(--muted);
}

.forecast-temperature strong {
    font-weight:500;
}

.forecast-temperature svg {
    display:none;
}

.forecast-track {
    fill:#0e130f;
}

.forecast-details {
    border-top:1px solid var(--line);
    padding-top:12px;
    margin-top:13px;
    display:flex;
    flex-direction:column;
    gap:6px;
    color:#b7c3b4;
    font-size:11px;
    font-variant-numeric:tabular-nums;
}

.forecast-details > span {
    display:flex;
    align-items:center;
    gap:5px;
}

.forecast-details .icon {
    width:12px;
    height:12px;
    color:var(--water);
}

.forecast-details small {
    font-size:9px;
    color:var(--muted);
}

.forecast-probability {
    color:var(--muted);
    font-size:9px;
    margin-top:10px;
}

.forecast-source {
    border-top:1px solid var(--line);
    padding:12px 20px;
    display:flex;
    justify-content:space-between;
    gap:8px;
    color:var(--muted);
    font-size:9px;
}

.forecast-source a {
    text-decoration:none;
}

.forecast-source a:hover {
    text-decoration:underline;
}

.rain-records-grid {
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1.6fr);
    gap:16px;
}

.rain-panel .panel-label .icon {
    color:var(--water);
}

.rain-summary {
    display:flex;
    align-items:center;
    gap:18px;
    justify-content:space-between;
    margin:25px 0 18px;
}

.rain-total {
    font-size:38px;
    letter-spacing:-.05em;
    line-height:1.1;
    color:var(--water);
    font-variant-numeric:tabular-nums;
}

.rain-total > small {
    display:block;
    color:var(--muted);
    font-size:10px;
    letter-spacing:0;
    margin-top:7px;
}

.rain-total .unit {
    margin-left:6px;
}

.rain-totals {
    display:flex;
    gap:22px;
}

.rain-totals dt {
    color:var(--muted);
    font-size:9px;
    margin-bottom:4px;
}

.rain-totals dd {
    font-size:15px;
    font-variant-numeric:tabular-nums;
}

.rain-totals dd > span:last-child {
    font-size:9px;
    color:var(--muted);
}

.rain-chart {
    display:block;
    width:100%;
    max-height:168px;
    overflow:visible;
}

.rain-bar {
    fill:url(#rain-fill);
    animation:rain-grow 1.2s var(--ease) both;
    transform-origin:center 115px;
}

.rain-column:nth-of-type(2n) .rain-bar {
    animation-delay:.1s;
}

.rain-column:nth-of-type(3n) .rain-bar {
    animation-delay:.2s;
}

.rain-label {
    fill:#c0d4d0;
    font:12px Consolas,"SFMono-Regular",monospace;
}

.rain-chart .axis-label {
    font-size:11px;
}

.records-grid {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
}

.record-panel {
    padding:23px 18px;
    overflow:hidden;
    isolation:isolate;
    display:flex;
    flex-direction:column;
}

.record-panel::before {
    content:"";
    position:absolute;
    width:190px;
    height:190px;
    right:-60px;
    bottom:-70px;
    background:repeating-radial-gradient(ellipse,transparent 0 16px,#c8f57808 17px 18px);
    transform:rotate(-30deg);
    z-index:-1;
}

.record-panel .panel-label {
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
    min-height:77px;
}

.record-panel .panel-label > .icon {
    width:24px;
    height:24px;
}

.record-panel h3 {
    font-size:13px;
    line-height:1.45;
}

.record-value {
    font-size:28px;
    line-height:1.35;
    letter-spacing:-.04em;
    color:var(--lime);
    overflow-wrap:anywhere;
    font-variant-numeric:tabular-nums;
    margin:22px 0 8px;
}

.record-panel p {
    color:var(--muted);
    font-size:10px;
}

.record-panel details {
    font-size:10px;
    margin-top:auto;
    padding-top:17px;
    color:var(--muted);
}

.record-note {
    font-size:9px;
    margin-top:auto;
    padding-top:25px;
    color:var(--muted);
}

.wettest-card .record-value,.wettest-card .icon {
    color:var(--water);
}

.dry-card .record-value,.dry-card .icon {
    color:var(--orange);
}

.station-strip {
    margin-top:30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:24px 4px;
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
    gap:20px;
}

.station-strip-title {
    display:flex;
    align-items:center;
    gap:13px;
    font-size:12px;
}

.station-strip-title > .icon {
    color:var(--lime);
    width:26px;
    height:26px;
}

.station-strip-title small {
    display:block;
    margin-top:3px;
    color:var(--muted);
    font-size:10px;
}

.station-coordinates {
    display:flex;
    gap:25px;
    font:10px Consolas,"SFMono-Regular",monospace;
    color:var(--muted);
}

footer {
    display:flex;
    align-items:center;
    justify-content:space-between;
    font-size:10px;
    color:var(--subtle);
    padding:21px 0 115px;
}

.footer-divider {
    margin:0 10px;
    opacity:.5;
}

.dock {
    position:fixed;
    z-index:10;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:5px;
    padding:6px;
    border:1px solid #d6e3cb1c;
    border-radius:19px;
    background:#1c211ce8;
    backdrop-filter:blur(22px);
    box-shadow:0 12px 45px #0005,inset 0 1px #ffffff04;
}

.dock a {
    display:flex;
    align-items:center;
    gap:8px;
    padding:13px 18px;
    font-size:11px;
    text-decoration:none;
    color:#a4b09d;
    border-radius:13px;
    transition:background .2s,color .2s;
    white-space:nowrap;
}

.dock .icon {
    width:18px;
    height:18px;
}

.dock a[aria-current] {
    background:#c8f5780e;
    color:var(--lime);
    box-shadow:inset 0 0 0 1px #c8f57824;
}

.dock a:hover {
    color:var(--ink);
    background:#ffffff08;
}

.scene-dialog {
    background:#1b201b;
    border:1px solid #c8f57825;
    color:var(--ink);
    padding:23px;
    border-radius:23px;
    width:min(410px,calc(100% - 24px));
    box-shadow:0 20px 120px #0008;
}

.scene-dialog::backdrop {
    background:#080c08a8;
    backdrop-filter:blur(10px);
}

.dialog-heading {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    margin-bottom:22px;
}

.dialog-heading h2 {
    font-size:21px;
}

.scene-options {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:9px;
}

.scene-options button {
    display:flex;
    align-items:center;
    gap:12px;
    padding:17px 13px;
    border-radius:12px;
    background:#ffffff03;
    border:1px solid var(--line);
    font-size:12px;
    color:#c1cbbb;
}

.scene-options .icon {
    color:var(--orange);
}

.scene-options button[aria-pressed="true"] {
    color:var(--lime);
    border-color:#c8f57860;
    background:#c8f57809;
}

.scene-options button:hover {
    background:#ffffff08;
}

.chart-empty {
    display:grid;
    place-items:center;
    min-height:170px;
    color:var(--muted);
    font-size:12px;
}

.empty-page {
    padding:100px 10px;
}

.empty-page h1 {
    margin:15px 0;
}

.empty-page p {
    color:var(--muted);
}

.skip {
    position:fixed;
    top:10px;
    left:10px;
    transform:translateY(-200%);
    background:var(--lime);
    color:#142010;
    padding:10px 15px;
    border-radius:8px;
    z-index:30;
}

.skip:focus {
    transform:none;
}

.value-updated {
    animation:value-flash .9s ease;
}

@keyframes plot-draw {
    from {
        stroke-dashoffset:1;
    }
    to {
        stroke-dashoffset:0;
    }
}

@keyframes fill-in {
    from {
        opacity:0;
    }
}

@keyframes beacon {
    0% {
        transform:scale(.75);
        opacity:.8;
    }
    85%,100% {
        transform:scale(1.7);
        opacity:0;
    }
}

@keyframes rain-grow {
    from {
        transform:scaleY(0);
    }
}

@keyframes celestial-float {
    to {
        transform:translateY(-9px);
    }
}

@keyframes cloud-drift {
    to {
        transform:translateX(-70px);
    }
}

@keyframes orbit {
    to {
        transform:rotate(360deg);
    }
}

@keyframes wave {
    to {
        transform:translateX(-60px);
    }
}

@keyframes wind-flow {
    to {
        stroke-dashoffset:-186;
    }
}

@keyframes status-pulse {
    50% {
        box-shadow:0 0 0 5px #c8f57804,0 0 12px #c8f57833;
    }
}

@keyframes value-flash {
    30% {
        color:#f4ffd9;
        text-shadow:0 0 15px #c8f57866;
    }
}

.motion-paused *,.motion-paused *::before,.motion-paused *::after {
    animation-play-state:paused!important;
}

.motion-paused .temperature-line {
    stroke-dashoffset:0;
    animation:none;
}

.motion-paused .temperature-area {
    opacity:.85;
    animation:none;
}

.motion-paused .rain-bar {
    transform:none;
    animation:none;
}

@media (hover:hover) {
    .metric-card {
        transition:border-color .3s,transform .3s;
    }
    .metric-card:hover {
        transform:translateY(-3px);
        border-color:#c8f57830;
    }
}

@media (min-width:1440px) {
    .hero {
        min-height:425px;
    }
    .hero-reading {
        margin-top:25px;
    }
    .hero-bottom {
        margin-top:42px;
    }
    .celestial {
        width:156px;
        height:156px;
        right:90px;
    }
    .orbital-one {
        right:41px;
    }
    .orbital-two {
        right:-26px;
    }
}

@media (max-width:1100px) {
    .page {
        width:calc(100% - 40px);
    }
    .hero {
        padding:26px 25px 19px;
    }
    .metric-card {
        padding:20px 16px 16px;
    }
    .metric-value {
        font-size:33px;
    }
    .metric-grid {
        gap:12px;
    }
    .celestial {
        right:33px;
        width:125px;
        height:125px;
    }
    .orbital-one {
        right:-32px;
    }
    .orbital-two {
        right:-100px;
    }
    .record-panel {
        padding:20px 13px;
    }
    .record-value {
        font-size:24px;
    }
    .forecast-day {
        padding:19px 12px;
    }
    .forecast-condition span {
        font-size:9px;
    }
    .station-coordinates {
        gap:15px;
    }
}

@media (max-width:800px) {
    :root {
        --radius:20px;
    }
    .page {
        width:calc(100% - 24px);
    }
    .site-header {
        min-height:75px;
    }
    .brand-sub {
        display:none;
    }
    .brand {
        font-size:29px;
    }
    .brand-mark {
        width:31px;
        height:31px;
    }
    .header-date {
        display:none;
    }
    .page-title {
        margin:26px 2px 20px;
    }
    .station-status time {
        font-size:10px;
    }
    .overview {
        grid-template-columns:1fr;
        gap:12px;
    }
    .hero {
        min-height:386px;
        padding:26px 26px 20px;
    }
    .temperature {
        font-size:105px;
    }
    .celestial {
        width:148px;
        height:148px;
        top:58px;
        right:65px;
    }
    .orbital-one {
        right:15px;
        top:5px;
    }
    .orbital-two {
        right:-52px;
        top:-62px;
    }
    .sky-glow {
        top:-65%;
    }
    .hero-bottom {
        margin-top:31px;
    }
    .metric-grid {
        grid-template-columns:repeat(4,minmax(0,1fr));
        gap:10px;
    }
    .metric-card {
        padding:18px 14px 14px;
        min-height:162px;
    }
    .metric-heading h2 {
        font-size:10px;
    }
    .metric-heading .icon {
        width:16px;
        height:16px;
    }
    .metric-value {
        font-size:31px;
        margin:15px 0 23px;
    }
    .metric-value .unit {
        font-size:10px;
    }
    .metric-foot {
        font-size:9px;
    }
    .content-grid {
        grid-template-columns:minmax(0,1.3fr) minmax(0,1fr);
        gap:12px;
    }
    .panel:not(.hero):not(.forecast-panel) {
        padding:20px;
    }
    .sun-duration {
        font-size:27px;
        margin-top:25px;
    }
    .solar-chart {
        height:115px;
    }
    .temperature-chart .axis-label {
        font-size:19px;
    }
    .legend {
        font-size:8px;
    }
    .chart-reading {
        font-size:29px;
    }
    .range a {
        padding-inline:9px;
    }
    .forecast-days {
        display:block;
    }
    .forecast-day {
        display:grid;
        grid-template-columns:58px 48px minmax(0,1fr);
        grid-template-rows:auto auto;
        gap:4px 14px;
        padding:16px 21px;
        border-right:0;
        border-bottom:1px solid var(--line);
    }
    .forecast-day:last-child {
        border-bottom:0;
    }
    .forecast-date {
        display:block;
        grid-row:1 / 3;
        align-self:center;
    }
    .forecast-date h3 {
        font-size:14px;
        margin-bottom:3px;
    }
    .forecast-condition {
        margin:0;
        grid-row:1 / 3;
        align-self:center;
    }
    .forecast-condition .icon {
        width:30px;
        height:30px;
    }
    .forecast-condition span {
        position:absolute;
        width:1px;
        height:1px;
        overflow:hidden;
        clip-path:inset(50%);
    }
    .forecast-temperature {
        grid-column:3;
        font-size:23px;
        gap:12px;
    }
    .forecast-temperature svg {
        display:block;
        flex:1;
        min-width:25px;
        height:10px;
    }
    .forecast-temperature > span,.forecast-temperature > strong {
        min-width:31px;
    }
    .forecast-temperature > strong {
        text-align:right;
    }
    .forecast-details {
        grid-column:3;
        border:0;
        margin:0;
        padding:0;
        flex-direction:row;
        gap:20px;
        font-size:11px;
    }
    .forecast-probability {
        display:none;
    }
    .rain-records-grid {
        grid-template-columns:1fr;
        gap:12px;
    }
    .records-grid {
        gap:12px;
    }
    .rain-summary {
        margin-top:20px;
    }
    .rain-chart {
        max-height:150px;
    }
    .rain-total {
        font-size:37px;
    }
    .rain-totals {
        gap:32px;
    }
    .record-panel .panel-label {
        min-height:55px;
    }
    .record-value {
        margin-top:16px;
    }
    .record-note {
        padding-top:15px;
    }
    .station-strip {
        flex-wrap:wrap;
        gap:15px;
    }
    .station-coordinates {
        gap:25px;
    }
    .dock a {
        padding:12px 15px;
    }
}

@media (max-width:560px) {
    html {
        scroll-padding-top:16px;
    }
    .page {
        width:calc(100% - 16px);
    }
    .site-header {
        min-height:68px;
        padding-inline:7px;
    }
    .brand {
        font-size:27px;
        gap:8px;
    }
    .brand-mark {
        width:28px;
        height:28px;
    }
    .header-actions {
        gap:7px;
    }
    .icon-button {
        width:38px;
        height:38px;
    }
    .scene-button {
        min-height:38px;
        padding:8px 11px;
        font-size:11px;
    }
    .scene-button .icon {
        width:16px;
        height:16px;
    }
    .page-title {
        display:block;
        margin:23px 8px 19px;
    }
    .location-label {
        font-size:9px;
        margin-bottom:8px;
    }
    h1 {
        font-size:clamp(24px,6.7vw,33px);
        letter-spacing:-.045em;
    }
    .station-status {
        margin-top:11px;
        gap:8px;
        font-size:10px;
    }
    .station-status > span:last-child {
        display:flex;
        gap:7px;
        flex-wrap:wrap;
    }
    .station-status time {
        line-height:1.5;
        font-size:10px;
    }
    .status-dot {
        width:5px;
        height:5px;
        margin-top:5px;
    }
    .notice {
        margin:0 2px 10px;
        font-size:11px;
        padding:7px 11px;
    }
    .hero {
        padding:22px 20px 17px;
        min-height:366px;
        border-radius:23px;
    }
    .hero-top .eyebrow {
        font-size:9px;
        letter-spacing:.13em;
    }
    .hero-top .eyebrow span {
        margin-left:2px;
    }
    .hero-tag {
        font-size:8px;
        padding:4px 6px;
    }
    .hero-reading {
        margin-top:28px;
        gap:6px;
    }
    .temperature {
        font-size:clamp(83px,25vw,116px);
        font-weight:370;
    }
    .temperature-unit {
        font-size:29px;
    }
    .hero-condition {
        font-size:15px;
        margin-top:12px;
        gap:8px;
    }
    .hero-condition .icon {
        width:21px;
        height:21px;
    }
    .hero-secondary {
        font-size:10px;
        margin-top:6px;
    }
    .hero-bottom {
        margin-top:27px;
    }
    .hero-range-label {
        font-size:9px;
    }
    .hero-range {
        gap:9px;
    }
    .hero-range > span {
        font-size:14px;
    }
    .hero-foot {
        font-size:8px;
        margin-top:12px;
        padding-top:10px;
        gap:5px;
    }
    .hero-foot-divider {
        margin-inline:4px;
    }
    .celestial {
        width:99px;
        height:99px;
        right:26px;
        top:84px;
    }
    [data-phase="night"] .celestial {
        width:95px;
        height:95px;
    }
    [data-phase="twilight"] .celestial {
        top:115px;
    }
    .orbital-one {
        width:184px;
        height:184px;
        right:-15px;
        top:41px;
    }
    .orbital-two {
        width:294px;
        height:294px;
        right:-70px;
        top:-15px;
    }
    .sky-glow {
        width:150%;
        right:-60%;
        top:-30%;
    }
    .terrain {
        height:40%;
    }
    .scene-vignette {
        background:linear-gradient(90deg,#10171170,transparent 90%),linear-gradient(0deg,#10171155,transparent 45%);
    }
    .metric-grid {
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:10px;
    }
    .metric-card {
        padding:17px 16px 14px;
        min-height:146px;
        border-radius:18px;
    }
    .metric-heading h2 {
        font-size:11px;
    }
    .metric-heading .icon {
        width:18px;
        height:18px;
    }
    .metric-value {
        font-size:37px;
        margin:13px 0 17px;
    }
    .metric-value .unit {
        font-size:10px;
    }
    .metric-foot {
        font-size:9px;
    }
    .humidity-wave {
        bottom:31px;
    }
    .wind-stream {
        height:70px;
        bottom:20px;
    }
    .section-heading {
        margin:29px 8px 13px;
    }
    h2 {
        font-size:21px;
    }
    .section-heading > span {
        font-size:9px;
    }
    .content-grid {
        grid-template-columns:1fr;
        gap:12px;
    }
    .panel:not(.hero):not(.forecast-panel) {
        padding:20px 17px 16px;
    }
    .panel-label h3 {
        font-size:12px;
    }
    .panel-label {
        gap:8px;
    }
    .panel-label .icon {
        width:18px;
        height:18px;
    }
    .range a {
        min-height:32px;
        padding-inline:13px;
        font-size:10px;
    }
    .chart-headline {
        margin-top:19px;
    }
    .chart-reading {
        font-size:32px;
    }
    .legend {
        font-size:9px;
    }
    .chart-wrap {
        margin-top:19px;
    }
    .temperature-chart {
        min-height:161px;
    }
    .temperature-chart .axis-label {
        font-size:24px;
    }
    .temperature-line {
        stroke-width:2;
    }
    .chart-data {
        font-size:10px;
        margin-top:9px;
    }
    .sun-panel {
        min-height:295px;
    }
    .sun-duration {
        margin-top:18px;
        font-size:30px;
    }
    .solar-chart {
        height:115px;
        max-width:340px;
        margin-inline:auto;
    }
    .sun-times {
        padding-inline:4px;
    }
    .sun-times span {
        font-size:10px;
    }
    .sun-times strong {
        font-size:19px;
    }
    .forecast-day {
        padding:17px 16px;
        grid-template-columns:47px 34px minmax(0,1fr);
        gap:5px 10px;
    }
    .forecast-date h3 {
        font-size:13px;
    }
    .forecast-temperature {
        font-size:22px;
        gap:7px;
    }
    .forecast-temperature > span,.forecast-temperature > strong {
        min-width:29px;
    }
    .forecast-details {
        font-size:10px;
        gap:15px;
    }
    .forecast-source {
        padding:12px 15px;
        font-size:8px;
        flex-wrap:wrap;
    }
    .rain-summary {
        gap:10px;
    }
    .rain-totals {
        gap:22px;
    }
    .rain-totals dd {
        font-size:15px;
    }
    .rain-chart {
        max-height:none;
    }
    .rain-chart .axis-label {
        font-size:13px;
    }
    .rain-label {
        font-size:14px;
    }
    .records-grid {
        grid-template-columns:1fr;
        gap:10px;
    }
    .panel.record-panel {
        padding:18px 17px;
        display:grid;
        grid-template-columns:minmax(0,1fr) auto;
        gap:5px 15px;
    }
    .record-panel .panel-label {
        flex-direction:row;
        align-items:center;
        gap:9px;
        min-height:0;
        grid-column:1;
    }
    .record-panel .panel-label .icon {
        width:19px;
        height:19px;
    }
    .record-panel .panel-label h3 {
        font-size:12px;
    }
    .record-panel .record-value {
        grid-column:2;
        grid-row:1 / 3;
        align-self:center;
        font-size:25px;
        margin:0;
        max-width:145px;
    }
    .record-panel > p {
        grid-column:1;
        font-size:9px;
        padding-left:28px;
    }
    .record-panel > details {
        grid-column:1 / -1;
        padding-top:6px;
    }
    .record-panel .record-note {
        grid-column:1;
        padding:4px 0 0 28px;
        font-size:8px;
    }
    .record-panel::before {
        height:150px;
        width:190px;
        bottom:-80px;
    }
    .station-strip {
        padding:22px 9px;
        margin-top:25px;
    }
    .station-strip-title {
        font-size:11px;
    }
    .station-coordinates {
        gap:15px;
        font-size:9px;
    }
    .station-strip-title .icon {
        width:23px;
        height:23px;
    }
    .dock {
        bottom:0;
        left:0;
        transform:none;
        width:100%;
        gap:2px;
        padding:6px 5px calc(7px + env(safe-area-inset-bottom));
        border-radius:19px 19px 0 0;
        border-bottom:0;
        background:#171c17f2;
        box-shadow:0 -8px 30px #080c0833;
    }
    .dock a {
        flex:1;
        justify-content:center;
        flex-direction:column;
        padding:9px 2px 7px;
        gap:5px;
        font-size:9px;
        border-radius:12px;
        min-width:0;
    }
    .dock .icon {
        width:20px;
        height:20px;
    }
    .dock a[aria-current] {
        box-shadow:inset 0 1px #c8f57838;
    }
    .dock a[aria-current] .icon {
        filter:drop-shadow(0 0 5px #c8f57826);
    }
    footer {
        padding:17px 8px calc(105px + env(safe-area-inset-bottom));
        font-size:9px;
    }
    .scene-dialog {
        padding:20px;
    }
    .scene-options button {
        padding:17px 12px;
    }
}

@media (max-width:360px) {
    .hero {
        padding-inline:17px;
    }
    .hero-top .eyebrow {
        font-size:8px;
    }
    .hero-tag {
        max-width:115px;
        white-space:normal;
    }
    .temperature {
        font-size:81px;
    }
    .celestial {
        right:17px;
        width:86px;
        height:86px;
    }
    [data-phase="night"] .celestial {
        width:80px;
        height:80px;
    }
    .metric-card {
        padding-inline:13px;
    }
    .metric-value {
        font-size:33px;
    }
    .metric-foot {
        font-size:8px;
    }
    .hero-foot {
        font-size:7px;
    }
    .forecast-day {
        grid-template-columns:42px 28px minmax(0,1fr);
        gap:5px 8px;
        padding-inline:13px;
    }
    .forecast-condition .icon {
        width:27px;
    }
    .rain-totals {
        gap:13px;
    }
    .rain-totals dd {
        font-size:14px;
    }
    .rain-total {
        font-size:33px;
    }
    .station-coordinates {
        font-size:8px;
        gap:12px;
    }
}

@media (prefers-reduced-motion:reduce) {
    html {
        scroll-behavior:auto;
    }
    *,*::before,*::after {
        animation:none!important;
        transition:none!important;
    }
    .temperature-line {
        stroke-dashoffset:0;
    }
    .rain-bar {
        transform:none;
    }
    .temperature-area {
        opacity:.85;
    }
}

@media print {
    :root {
        --ink:#111;
        --muted:#555;
        --surface:#fff;
        --bg:#fff;
        --lime:#375922;
        --line:#ddd;
    }
    body {
        color:#111;
    }
    .page {
        width:100%;
    }
    .dock,.header-actions,.weather-scene,.scene-dialog,.chart-data,.skip {
        display:none!important;
    }
    .hero {
        background:#eee;
    }
    .hero * {
        color:#111;
    }
    .panel,.metric-card {
        break-inside:avoid;
        box-shadow:none;
    }
    .temperature-line {
        stroke:#375922;
        filter:none;
    }
    .axis-label {
        fill:#555;
    }
    footer {
        padding-bottom:10px;
    }
}

/* Keep auxiliary data readable at phone viewing distance. */
.scene-offscreen .weather-scene * {
    animation-play-state:paused!important;
}

@media (max-width:560px) {
    .location-label,.station-status,.station-status time {
        font-size:11px;
    }
    .hero-top .eyebrow {
        font-size:10px;
    }
    .hero-tag {
        font-size:9px;
    }
    .hero-range-label {
        font-size:11px;
    }
    .hero-secondary {
        font-size:12px;
    }
    .hero-foot {
        font-size:9px;
    }
    .hero-foot-divider {
        margin-inline:5px;
    }
    .hero-foot > span:first-child {
        display:flex;
        align-items:center;
        flex-wrap:wrap;
    }
    .metric-heading h2 {
        font-size:12px;
    }
    .metric-foot {
        font-size:11px;
    }
    .metric-value .unit {
        font-size:12px;
    }
    .metric-card {
        min-height:151px;
    }
    .section-heading > span,.quiet {
        font-size:11px;
    }
    .panel-label h3 {
        font-size:14px;
    }
    .range a,.legend,.chart-data {
        font-size:11px;
    }
    .sun-caption {
        font-size:10px;
    }
    .sun-times span {
        font-size:11px;
    }
    .forecast-date > span,.forecast-details,.forecast-details small {
        font-size:11px;
    }
    .forecast-source {
        font-size:10px;
    }
    .rain-totals dt,.rain-totals dd > span:last-child,.rain-total > small {
        font-size:11px;
    }
    .record-panel .panel-label h3 {
        font-size:13px;
    }
    .record-panel > p,.record-panel details,.record-panel .record-note {
        font-size:11px;
    }
    .record-panel .record-value {
        font-size:26px;
        max-width:120px;
    }
    .station-strip-title,.station-strip-title small {
        font-size:11px;
    }
    .station-coordinates {
        font-size:10px;
        flex-wrap:wrap;
        row-gap:7px;
    }
    .dock a {
        font-size:11px;
        padding-top:8px;
    }
    .hero {
        min-height:384px;
    }
    .hero-reading {
        margin-top:25px;
    }
    .hero-bottom {
        margin-top:25px;
    }
}

@media (max-width:360px) {
    .hero-top .eyebrow {
        font-size:9px;
    }
    .hero-foot {
        font-size:8px;
    }
    .metric-foot {
        font-size:10px;
    }
    .legend {
        font-size:10px;
    }
    .record-panel .panel-label h3 {
        font-size:12px;
    }
    .record-panel .record-value {
        max-width:95px;
        font-size:24px;
    }
}
.motion-offscreen *, .motion-offscreen *::before, .motion-offscreen *::after {
    animation-play-state: paused !important;
}
.icon-button:disabled {
    opacity: .45;
    cursor: default;
}
@media (max-width: 560px) {
    .icon-button {
        width: 42px;
        height: 42px;
    }
    .scene-button {
        min-height: 42px;
    }
}
/* Sunlight is warm; the interface keeps its lime accent. */
.hero[data-weather="clear"][data-phase="day"],
.hero[data-weather="partly"][data-phase="day"] {
    --scene-accent: #ffdda0;
    background: #2a2820;
    border-color: #ffcf802f;
}
.hero[data-phase="day"] .sky-glow {
    background: radial-gradient(circle, #ffd78b66, #ffc46426 34%, #e6ad5c0c 52%, transparent 70%);
}
.hero[data-phase="day"] .celestial {
    box-shadow: 0 0 34px #ffdc9b44, 0 0 95px 20px #ffc27026;
}
.hero[data-phase="day"] .celestial-core {
    background: radial-gradient(circle at 38% 32%, #fffef4, #ffe5ac 42%, #ffd17a 75%, #efb454);
    box-shadow: inset 0 0 22px #fff8dfb0, 0 0 28px #ffe1a04d;
}
.hero[data-phase="day"][data-weather="unknown"] .celestial-core {
    background: transparent;
    box-shadow: inset 0 0 40px #ffe1a009;
}
.hero[data-phase="day"] .scene-vignette {
    background: linear-gradient(90deg, #201b1255, transparent 80%), linear-gradient(0deg, #15170f55, transparent 45%);
}
.hero[data-phase="day"] .orbital {
    border-color: #ffe3aa17;
}
.hero[data-weather="fog"] {
    background: #252d2e;
}
.hero[data-weather="fog"] .sky-glow {
    background: radial-gradient(ellipse, #c3d0cf20, transparent 65%);
}
.hero[data-weather="fog"] .scene-vignette {
    background: linear-gradient(90deg, #101a1c88, #121d2010 72%), linear-gradient(0deg, #10191955, transparent 40%);
}
.hero[data-weather="fog"] .cloud {
    background: radial-gradient(ellipse, #c5d6d61c, transparent 68%);
    animation-duration: 26s;
}
/* The shared village changes with light and precipitation. */
.hero {
    min-height: 478px;
}
.hero-bottom {
    margin-top: 102px;
}
.landscape-ready .terrain {
    display: none;
}
.hero[data-weather="clear"][data-phase="day"],
.hero[data-weather="partly"][data-phase="day"] {
    background: linear-gradient(160deg, #3677a8, #6ca9cc 46%, #c7d9c7 74%);
    border-color: #9ac1ce55;
}
.hero[data-phase="day"] .sky-glow {
    top: -65%;
    right: -35%;
    background: radial-gradient(circle, #ffedb440, #ffe1a015 28%, transparent 60%);
}
.hero[data-phase="day"] .celestial {
    width: 110px;
    height: 110px;
    top: 61px;
    right: 62px;
    box-shadow: 0 0 25px #fff1bd55, 0 0 80px 15px #ffe3a230;
}
.hero[data-phase="twilight"] {
    background: linear-gradient(150deg, #393749, #ab7666 50%, #e2ae78 72%);
}
.hero[data-phase="day"] .scene-vignette {
    background: linear-gradient(90deg, #102a397a, #172e370a 78%), linear-gradient(0deg, #122821c9, transparent 44%);
}
.hero[data-phase="night"] .scene-vignette {
    background: linear-gradient(90deg, #10182066, transparent 85%), linear-gradient(0deg, #0c1918bb, transparent 40%);
}
.hero[data-phase="twilight"] .scene-vignette {
    background: linear-gradient(90deg, #201c3659, transparent 85%), linear-gradient(0deg, #20241bbb, transparent 40%);
}
.hero[data-weather="rain"], .hero[data-weather="storm"] {
    background: linear-gradient(160deg, #24333e, #4b626a 70%, #657a73);
}
.hero[data-weather="snow"] {
    background: linear-gradient(155deg, #263b4b, #718f9d 75%);
}
.hero[data-weather="fog"] {
    background: linear-gradient(155deg, #3c5056, #758987 75%);
}
.hero[data-weather="fog"] .scene-vignette {
    background: linear-gradient(90deg, #12222b80, transparent 82%), linear-gradient(0deg, #172722bd, transparent 42%);
}
.hero[data-phase="day"] .hero-top .eyebrow,
.hero[data-phase="day"] .temperature-unit,
.hero[data-phase="day"] .hero-condition,
.hero[data-phase="day"] .hero-secondary,
.hero[data-phase="day"] .hero-range-label {
    color: #edf5ed;
}
.hero[data-phase="day"] .hero-top .eyebrow span {
    color: #dce8e1;
}
.hero[data-phase="day"] .orbital {
    border-color: #e4f1ed12;
}
@media (min-width:1440px) {
    .hero { min-height:490px; }
    .hero-bottom { margin-top:104px; }
}
@media (max-width:800px) {
    .hero-bottom { margin-top:106px; }
}
@media (max-width:560px) {
    .hero { min-height:465px; }
    .hero-bottom { margin-top:105px; }
    .hero[data-phase="day"] .celestial {
        width:84px;
        height:84px;
        top:81px;
        right:28px;
    }
}
/* Shade the full scene, with extra depth below the card for tall layouts. */
.scene-vignette::after {
    content: "";
    position: absolute;
    inset: 65% 0 -96px;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, #101b188c 60px, #101b18b0 170px);
}
.hero .hero-range-label {
    color: #d8e3d5;
}
.hero .hero-foot {
    color: #c4d1bf;
}
/* Seasonal light is independent of the weather effect and time of day. */
.hero[data-season="winter"] {
    --season-sky: linear-gradient(160deg, #437ea9, #92bcd9 48%, #dee7e9 76%);
    --season-overcast: linear-gradient(155deg, #344a5d, #8199aa 75%);
    --season-night: linear-gradient(155deg, #111f35, #253a54 65%, #455b70);
    --sun-size: 88px;
    --sun-top: 98px;
}
.hero[data-season="spring"] {
    --season-sky: linear-gradient(160deg, #317eb3, #79b8d8 48%, #d4e4d4 76%);
    --season-overcast: linear-gradient(155deg, #304b58, #758d8b 75%);
    --season-night: linear-gradient(155deg, #12242e, #29424c 70%, #344d47);
    --sun-size: 104px;
    --sun-top: 68px;
}
.hero[data-season="summer"] {
    --season-sky: linear-gradient(160deg, #3677a8, #6ca9cc 46%, #c7d9c7 74%);
    --season-overcast: linear-gradient(155deg, #30434e, #6a8184 75%);
    --season-night: linear-gradient(155deg, #14242d, #293e48 70%, #344942);
    --sun-size: 110px;
    --sun-top: 61px;
}
.hero[data-season="autumn"] {
    --season-sky: linear-gradient(160deg, #467f9f, #96b7c2 46%, #e3c99c 76%);
    --season-overcast: linear-gradient(155deg, #424c55, #8a8d80 75%);
    --season-night: linear-gradient(155deg, #202634, #3b414d 70%, #4d4941);
    --sun-size: 100px;
    --sun-top: 82px;
}
.hero[data-season][data-phase="day"]:is([data-weather="clear"], [data-weather="partly"]) {
    background: var(--season-sky);
}
.hero[data-season]:is([data-weather="rain"], [data-weather="storm"], [data-weather="fog"], [data-weather="cloudy"]) {
    background: var(--season-overcast);
}
.hero[data-season][data-phase="night"] {
    background: var(--season-night);
}
.hero[data-season][data-phase="day"] .celestial {
    width: var(--sun-size);
    height: var(--sun-size);
    top: var(--sun-top);
}
.hero[data-season="winter"][data-phase="day"]:is([data-weather="clear"], [data-weather="partly"]) .celestial-core {
    background: radial-gradient(circle at 38% 32%, #fffef9, #fff2d6 52%, #f7dc9d);
    box-shadow: inset 0 0 22px #ffffffa0, 0 0 35px #fff6db55;
}
.hero[data-season="winter"][data-phase="day"] .sky-glow {
    background: radial-gradient(circle, #fff5db45, #e8f4ff15 32%, transparent 60%);
}
.hero[data-season="autumn"][data-phase="day"]:is([data-weather="clear"], [data-weather="partly"]) .celestial-core {
    background: radial-gradient(circle at 38% 32%, #fff7df, #ffdda1 44%, #efb563);
}
.hero:is([data-season="winter"], [data-weather="snow"]) .scene-vignette {
    background: linear-gradient(90deg, #10273e8c, #172e370a 78%), linear-gradient(0deg, #182c43c9, transparent 44%);
}
.hero:is([data-season="winter"], [data-weather="snow"]) .scene-vignette::after {
    background: linear-gradient(180deg, transparent, #17273d8c 60px, #17273dbd 170px);
}
.hero:is([data-season="winter"], [data-weather="snow"]) .hero-foot {
    color: #d2dfe9;
}
@media (max-width: 560px) {
    .hero[data-season][data-phase="day"] .celestial {
        width: min(var(--sun-size), 84px);
        height: min(var(--sun-size), 84px);
        top: max(var(--sun-top), 81px);
    }
    .hero[data-season="winter"][data-phase="day"] .celestial {
        width: 68px;
        height: 68px;
        top: 104px;
    }
}

.climate-reference { display: flex; flex-wrap: wrap; gap: .4rem 1rem; padding: 0 0 1rem; font-size: .75rem; color: var(--muted, #a8aca5); }
.climate-reference a { color: inherit; }

.unit-selector {
    display:flex;
    align-items:center;
    gap:8px;
    font-size:12px;
}
.unit-selector select,.unit-selector button {
    font:inherit;
    color:var(--ink);
    background:var(--surface);
    border:1px solid var(--line);
    border-radius:7px;
    padding:8px;
}
.unit-selector select:focus-visible {
    outline:2px solid var(--lime);
    outline-offset:5px;
}
@media(max-width:700px) {
    .site-header {flex-wrap:wrap;gap:16px}
    .header-actions,.unit-selector {flex-wrap:wrap}
}
