:root {
    --ink: #f4f8f6;
    --muted: #aebebd;
    --dim: #718383;
    --night: #02070e;
    --night-blue: #07131f;
    --panel: rgba(7, 18, 31, 0.7);
    --panel-strong: rgba(5, 15, 27, 0.9);
    --line: rgba(202, 235, 226, 0.15);
    --line-bright: rgba(215, 255, 239, 0.28);
    --cyan: #59f3ff;
    --lime: #c9ff37;
    --lime-soft: #e8ff9e;
    --magenta: #f057ff;
    --amber: #ffcd5c;
    --danger: #ff6d84;
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
    --font-display: "Arial Narrow", "Avenir Next Condensed", "Helvetica Neue", Arial, sans-serif;
    --font-body: "Avenir Next", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
    background: var(--night);
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background:
        radial-gradient(circle at 50% -20%, rgba(27, 93, 105, 0.32), transparent 42rem),
        var(--night);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
    font: inherit;
}

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

button {
    color: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid var(--lime);
    outline-offset: 4px;
}

textarea:focus-visible {
    outline: 2px solid var(--lime);
    outline-offset: 2px;
}

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

button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

svg {
    display: block;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--night);
    background: var(--lime);
    font-weight: 800;
    transform: translateY(-180%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.sky-backdrop {
    position: absolute;
    z-index: -2;
    inset: 0 0 auto;
    min-height: 1100px;
    overflow: hidden;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(2, 7, 14, 0.08) 0%, rgba(2, 7, 14, 0.18) 48%, var(--night) 100%),
        linear-gradient(90deg, rgba(2, 7, 14, 0.08), rgba(2, 7, 14, 0.2)),
        url("images/skycalm-alien-sky.webp") center top / cover no-repeat;
}

.sky-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 7, 14, 0.66) 0%, transparent 42%, rgba(2, 7, 14, 0.25) 100%),
        linear-gradient(180deg, transparent 20%, rgba(2, 7, 14, 0.15) 70%, var(--night) 100%);
}

.acid-glow {
    position: absolute;
    z-index: 1;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    opacity: 0.18;
    filter: blur(90px);
    mix-blend-mode: screen;
}

.acid-glow-cyan {
    top: 120px;
    left: -220px;
    background: var(--cyan);
}

.acid-glow-lime {
    top: 380px;
    right: -260px;
    background: var(--lime);
}

.contrail {
    position: absolute;
    z-index: 2;
    width: 56vw;
    height: 1px;
    opacity: 0.22;
    background: linear-gradient(90deg, transparent, rgba(214, 246, 255, 0.92), transparent);
    box-shadow: 0 0 12px rgba(89, 243, 255, 0.7);
    transform-origin: center;
}

.contrail::after {
    content: "";
    position: absolute;
    inset: -5px 0;
    background: inherit;
    opacity: 0.35;
    filter: blur(5px);
}

.contrail-one {
    top: 210px;
    right: -6vw;
    transform: rotate(-14deg);
}

.contrail-two {
    top: 365px;
    left: -14vw;
    transform: rotate(9deg);
}

.film-grain {
    position: absolute;
    z-index: 3;
    inset: 0;
    opacity: 0.11;
    background-image:
        repeating-radial-gradient(circle at 20% 30%, transparent 0 1px, rgba(255,255,255,0.12) 1.5px 2px);
    background-size: 7px 9px;
    mix-blend-mode: soft-light;
}

.shell {
    width: min(1200px, calc(100% - 48px));
    margin-inline: auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1320px, calc(100% - 48px));
    min-height: 96px;
    margin-inline: auto;
    padding: calc(20px + env(safe-area-inset-top, 0px)) 0 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    text-decoration: none;
}

.brand img {
    border-radius: 15px;
    box-shadow: 0 0 32px rgba(89, 243, 255, 0.18);
}

.brand-copy {
    display: grid;
    gap: 1px;
}

.brand-copy strong {
    font-family: var(--font-display);
    font-size: 18px;
    font-stretch: condensed;
    letter-spacing: 0.24em;
    line-height: 1;
}

.brand-copy small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

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

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(5, 14, 24, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.language-switcher button,
.language-switcher a {
    display: inline-grid;
    place-items: center;
    min-width: 34px;
    min-height: 32px;
    padding: 0 8px;
    color: var(--muted);
    border: 0;
    border-radius: 999px;
    background: transparent;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.language-switcher button:hover,
.language-switcher button.active,
.language-switcher a:hover,
.language-switcher a.active {
    color: #07110d;
    background: var(--lime);
    box-shadow: 0 0 18px rgba(201, 255, 55, 0.18);
}

.header-link {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.045em;
    text-decoration: none;
    transition: color 160ms ease;
}

.header-link:hover {
    color: var(--lime);
}

.live-pill,
.icon-button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(5, 14, 24, 0.48);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
}

.live-pill {
    padding: 0 16px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 4px rgba(201, 255, 55, 0.1), 0 0 14px var(--lime);
    animation: livePulse 2.4s ease-in-out infinite;
}

.offline .live-dot {
    background: var(--danger);
    box-shadow: 0 0 0 4px rgba(255, 109, 132, 0.1), 0 0 14px var(--danger);
    animation: none;
}

.icon-button {
    padding: 0 14px;
    cursor: pointer;
}

.icon-button svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.icon-button span {
    font-size: 12px;
    font-weight: 800;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
    min-height: 700px;
    align-items: center;
    gap: clamp(48px, 8vw, 110px);
    padding: 56px 0 90px;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 22px;
    color: var(--lime);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.18em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
    box-shadow: 0 0 8px currentColor;
}

.eyebrow-index {
    color: rgba(229, 244, 240, 0.52);
}

.hero h1 {
    max-width: 680px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(64px, 8.6vw, 126px);
    font-stretch: condensed;
    font-weight: 900;
    letter-spacing: -0.065em;
    line-height: 0.88;
    text-transform: uppercase;
    text-wrap: balance;
    text-shadow: 0 12px 36px rgba(0, 0, 0, 0.42);
}

.hero h1 em {
    display: block;
    color: transparent;
    background: linear-gradient(92deg, var(--lime) 2%, #efffb8 44%, var(--cyan) 104%);
    background-clip: text;
    font-style: normal;
    -webkit-background-clip: text;
    filter: drop-shadow(0 0 24px rgba(201, 255, 55, 0.16));
}

.hero-title-line {
    display: block;
    overflow: visible;
    padding: 0.015em 0 0.035em;
}

.hero-intro {
    max-width: 590px;
    margin: 34px 0 0;
    color: #c7d5d4;
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.7;
    text-wrap: pretty;
}

.independence-notice {
    display: grid;
    max-width: 590px;
    gap: 6px;
    margin-top: 22px;
    padding: 15px 17px;
    border: 1px solid rgba(89, 243, 255, 0.26);
    border-radius: 15px;
    background: rgba(5, 18, 28, 0.72);
    color: #c7d5d4;
    font-size: 11px;
    line-height: 1.55;
}

.independence-notice strong {
    color: var(--cyan);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.independence-notice a {
    width: fit-content;
    color: var(--ink);
    font-weight: 800;
    text-decoration-color: rgba(201, 255, 55, 0.5);
    text-underline-offset: 3px;
}

.independence-notice a:hover,
.independence-notice a:focus-visible {
    color: var(--lime);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    position: relative;
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    overflow: hidden;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 15px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.035em;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover:not(:disabled) {
    transform: translateY(-2px);
}

.button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.button-primary {
    color: #08110e;
    background: linear-gradient(115deg, var(--lime) 0%, #e8ff82 55%, #a8f68c 100%);
    box-shadow: 0 16px 44px rgba(154, 224, 50, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.button-primary:hover:not(:disabled) {
    box-shadow: 0 20px 54px rgba(154, 224, 50, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.button-primary.is-loading {
    color: rgba(8, 17, 14, 0.58);
}

.button-primary.is-loading::after {
    content: "";
    width: 17px;
    height: 17px;
    border: 2px solid rgba(8, 17, 14, 0.26);
    border-top-color: #08110e;
    border-radius: 50%;
    animation: spin 700ms linear infinite;
}

.button-primary.is-loading svg {
    display: none;
}

.button-sheen {
    position: absolute;
    top: -50%;
    left: -30%;
    width: 28%;
    height: 200%;
    background: rgba(255, 255, 255, 0.28);
    filter: blur(12px);
    transform: rotate(20deg);
    transition: left 450ms ease;
}

.button-primary:hover .button-sheen {
    left: 110%;
}

.button-ghost {
    color: var(--ink);
    border-color: var(--line-bright);
    background: rgba(7, 17, 29, 0.62);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
}

.button-ghost:hover:not(:disabled) {
    border-color: rgba(89, 243, 255, 0.54);
    background: rgba(10, 27, 41, 0.75);
}

.button-compact {
    min-height: 46px;
    color: var(--night);
    background: var(--lime);
}

.status-console {
    display: flex;
    min-height: 24px;
    align-items: flex-start;
    gap: 10px;
    max-width: 620px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.status-console.is-error {
    color: #ffc1cb;
}

.status-console.is-active {
    color: var(--lime-soft);
}

.status-beacon {
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    margin-top: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 12px currentColor;
}

.manual-location {
    max-width: 650px;
    margin-top: 16px;
    padding: 18px;
    border: 1px solid rgba(255, 205, 92, 0.24);
    border-radius: var(--radius-md);
    background: rgba(35, 27, 12, 0.52);
    backdrop-filter: blur(18px);
}

.manual-location p {
    margin: 0 0 12px;
    color: #ffe4a7;
    font-size: 13px;
}

.coordinate-fields {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: end;
    gap: 10px;
}

.coordinate-fields label {
    display: grid;
    gap: 7px;
}

.coordinate-fields label span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.coordinate-fields input {
    min-width: 0;
    height: 46px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink);
    background: rgba(2, 8, 15, 0.68);
}

.signal-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 30px 0 0;
    padding: 0;
    color: rgba(214, 228, 226, 0.68);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    list-style: none;
}

.signal-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.signal-list li span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
}

.radar-stage {
    position: relative;
    width: min(100%, 520px);
    justify-self: end;
}

.glass-panel {
    border: 1px solid var(--line);
    background:
        linear-gradient(145deg, rgba(15, 34, 47, 0.76), rgba(3, 12, 22, 0.57)),
        rgba(5, 15, 26, 0.62);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        inset 0 -1px 0 rgba(0, 0, 0, 0.24),
        var(--shadow);
    backdrop-filter: blur(26px) saturate(128%);
}

.radar-card {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    padding: 24px;
    border-radius: var(--radius-xl);
}

.radar-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 5%, rgba(89, 243, 255, 0.13), transparent 30%),
        linear-gradient(125deg, rgba(255,255,255,0.05), transparent 26%);
}

.radar-card-head,
.card-kicker,
.card-footer-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.radar-card-head {
    position: relative;
    z-index: 2;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.mono {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.radar-orbit {
    position: relative;
    display: grid;
    width: min(100%, 420px);
    aspect-ratio: 1;
    place-items: center;
    margin: 18px auto 8px;
    border-radius: 50%;
    isolation: isolate;
}

.radar-orbit::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 8%;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(89, 243, 255, 0.08) 0 4%, transparent 5%),
        radial-gradient(circle, rgba(6, 30, 42, 0.84), rgba(2, 9, 16, 0.2) 68%, transparent 69%);
    box-shadow:
        inset 0 0 70px rgba(89, 243, 255, 0.08),
        0 0 70px rgba(89, 243, 255, 0.05);
}

.radar-grid,
.radar-ring,
.radar-axis,
.radar-sweep {
    position: absolute;
}

.radar-grid {
    inset: 7%;
    overflow: hidden;
    border: 1px solid rgba(89, 243, 255, 0.22);
    border-radius: 50%;
    box-shadow: inset 0 0 48px rgba(89, 243, 255, 0.06);
}

.radar-ring {
    top: 50%;
    left: 50%;
    border: 1px solid rgba(89, 243, 255, 0.17);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ring-one {
    width: 32%;
    height: 32%;
}

.ring-two {
    width: 62%;
    height: 62%;
}

.ring-three {
    width: 92%;
    height: 92%;
}

.radar-axis {
    top: 50%;
    left: 50%;
    background: rgba(89, 243, 255, 0.12);
    transform: translate(-50%, -50%);
}

.axis-x {
    width: 100%;
    height: 1px;
}

.axis-y {
    width: 1px;
    height: 100%;
}

.radar-sweep {
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0 82%, rgba(201, 255, 55, 0.02) 88%, rgba(201, 255, 55, 0.3) 100%);
    animation: radarSweep 5.5s linear infinite;
}

.radar-blip {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 4px rgba(201, 255, 55, 0.07), 0 0 14px var(--lime);
    opacity: 0.5;
}

.blip-one {
    top: 31%;
    left: 67%;
}

.blip-two {
    top: 69%;
    left: 29%;
    animation-delay: -1.1s;
}

.blip-three {
    top: 22%;
    left: 41%;
    animation-delay: -2.2s;
}

.radar-orbit.is-active .radar-blip {
    animation: blip 2.1s ease-in-out infinite;
}

.radar-plane {
    position: absolute;
    z-index: 2;
    width: 31%;
    color: var(--cyan);
    fill: rgba(89, 243, 255, 0.16);
    stroke: currentColor;
    stroke-width: 2;
    filter: drop-shadow(0 0 13px rgba(89, 243, 255, 0.7));
}

.radar-score {
    position: absolute;
    z-index: 3;
    right: 10%;
    bottom: 16%;
    display: flex;
    align-items: baseline;
    padding: 8px 10px;
    border: 1px solid rgba(201, 255, 55, 0.2);
    border-radius: 10px;
    background: rgba(3, 11, 19, 0.78);
    box-shadow: 0 0 24px rgba(201, 255, 55, 0.08);
}

.radar-score span {
    color: var(--lime);
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    line-height: 0.9;
}

.radar-score small {
    color: var(--dim);
    font-size: 9px;
}

.radar-readout {
    display: grid;
    grid-template-columns: 1.3fr 1fr 0.7fr;
    gap: 8px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.radar-readout div {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.radar-readout div + div {
    padding-left: 14px;
    border-left: 1px solid var(--line);
}

.radar-readout span {
    color: var(--dim);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.radar-readout strong {
    overflow: hidden;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.floating-tag {
    position: absolute;
    z-index: 3;
    display: grid;
    gap: 3px;
    min-width: 118px;
    padding: 11px 14px;
    border: 1px solid rgba(215, 255, 239, 0.18);
    border-radius: 12px;
    background: rgba(4, 13, 23, 0.76);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(20px);
}

.floating-tag span {
    color: var(--cyan);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.floating-tag strong {
    font-size: 12px;
}

.tag-top {
    top: 14%;
    right: -2%;
}

.tag-bottom {
    bottom: 16%;
    left: -4%;
}

.dashboard {
    position: relative;
    z-index: 2;
    padding: 72px 0 90px;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 40px;
    margin-bottom: 28px;
}

.section-heading .eyebrow {
    margin-bottom: 15px;
}

.section-heading h2 {
    max-width: 640px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(40px, 5.2vw, 72px);
    font-stretch: condensed;
    letter-spacing: -0.045em;
    line-height: 0.92;
    text-transform: uppercase;
}

.profile-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(82px, auto));
    border-radius: 18px;
}

.profile-strip div {
    display: grid;
    gap: 6px;
    padding: 14px 16px;
}

.profile-strip div + div {
    border-left: 1px solid var(--line);
}

.profile-strip span {
    color: var(--dim);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.profile-strip strong {
    color: var(--lime-soft);
    font-size: 15px;
}

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

.score-card,
.metric-card,
.community-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.score-card {
    grid-column: span 7;
    min-height: 368px;
    padding: 26px;
}

.score-card::after,
.traffic-card::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(35px);
}

.score-card::after {
    right: -80px;
    bottom: -120px;
    width: 250px;
    height: 250px;
    background: rgba(201, 255, 55, 0.09);
}

.card-kicker {
    position: relative;
    z-index: 2;
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.card-kicker svg {
    width: 19px;
    fill: none;
    stroke: var(--cyan);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.card-code {
    color: var(--dim);
    font-size: 9px;
}

.score-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 178px 1fr;
    align-items: center;
    gap: 30px;
    padding: 34px 0 30px;
}

.score-dial {
    position: relative;
    display: grid;
    width: 178px;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(var(--lime) calc(var(--score) * 1%), rgba(210, 244, 232, 0.1) 0);
    box-shadow: 0 0 48px rgba(201, 255, 55, 0.09);
    transition: background 600ms ease;
}

.score-dial::before {
    content: "";
    position: absolute;
    width: 164px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--panel-strong);
    box-shadow: inset 0 0 32px rgba(89, 243, 255, 0.05);
}

.score-dial-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: baseline;
}

.score-dial-inner strong {
    font-family: var(--font-display);
    font-size: 64px;
    font-stretch: condensed;
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 1;
}

.score-dial-inner span {
    color: var(--dim);
    font-size: 11px;
}

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

.signal-chip {
    display: inline-flex;
    align-items: center;
    margin: 0 0 14px;
    padding: 7px 10px;
    border: 1px solid rgba(171, 191, 185, 0.18);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(171, 191, 185, 0.06);
    font-size: 9px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.signal-calm {
    border-color: rgba(89, 243, 255, 0.24);
    color: var(--cyan);
    background: rgba(89, 243, 255, 0.06);
}

.signal-normal {
    border-color: rgba(201, 255, 55, 0.26);
    color: var(--lime);
    background: rgba(201, 255, 55, 0.06);
}

.signal-caution {
    border-color: rgba(255, 205, 92, 0.3);
    color: var(--amber);
    background: rgba(255, 205, 92, 0.07);
}

.signal-high {
    border-color: rgba(255, 109, 132, 0.3);
    color: #ff9cab;
    background: rgba(255, 109, 132, 0.07);
}

.score-copy h3,
.community-copy h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(27px, 3vw, 40px);
    font-stretch: condensed;
    letter-spacing: -0.035em;
    line-height: 0.98;
    text-transform: uppercase;
}

.score-copy > p:last-child {
    max-width: 430px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.card-footer-line {
    position: relative;
    z-index: 2;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: var(--dim);
    font-size: 10px;
}

.metric-card {
    grid-column: span 5;
    min-height: 368px;
    padding: 26px;
}

.contrail-insight {
    position: relative;
    display: grid;
    grid-column: span 12;
    grid-template-columns: 230px 1fr;
    align-items: center;
    gap: 36px;
    min-height: 340px;
    padding: 32px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.contrail-insight::before {
    content: "";
    position: absolute;
    right: -10%;
    bottom: -55%;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(89, 243, 255, 0.13), transparent 68%);
    pointer-events: none;
}

.contrail-gauge-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
    gap: 18px;
}

.contrail-gauge {
    position: relative;
    display: grid;
    width: 190px;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(from 210deg, var(--cyan) 0 calc(var(--compatibility) * 0.7%), var(--lime) calc(var(--compatibility) * 1%), rgba(213, 241, 234, 0.09) 0);
    box-shadow: 0 0 55px rgba(89, 243, 255, 0.08);
    transition: background 500ms ease;
}

.contrail-gauge::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: inherit;
    background: radial-gradient(circle at 44% 36%, rgba(89, 243, 255, 0.08), transparent 40%), var(--panel-strong);
    box-shadow: inset 0 0 30px rgba(89, 243, 255, 0.06);
}

.contrail-gauge > div {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: baseline;
}

.contrail-gauge strong {
    font-family: var(--font-display);
    font-size: 64px;
    font-stretch: condensed;
    letter-spacing: -0.06em;
    line-height: 1;
}

.contrail-gauge span {
    color: var(--dim);
    font-size: 10px;
}

.contrail-copy {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.contrail-copy h3 {
    max-width: 780px;
    margin: 23px 0 0;
    font-family: var(--font-display);
    font-size: clamp(30px, 4.2vw, 54px);
    font-stretch: condensed;
    letter-spacing: -0.045em;
    line-height: 0.98;
    text-transform: uppercase;
}

.contrail-copy > p {
    max-width: 790px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.contrail-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 25px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(2, 9, 16, 0.35);
}

.contrail-facts > div {
    display: grid;
    gap: 6px;
    padding: 13px 15px;
}

.contrail-facts > div + div {
    border-left: 1px solid var(--line);
}

.contrail-facts span {
    color: var(--dim);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.contrail-facts strong {
    color: var(--lime-soft);
    font-size: 14px;
}

.contrail-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.contrail-footer > span {
    color: var(--cyan);
    font-size: 11px;
    font-weight: 800;
}

.inline-link {
    margin-top: 0;
    text-decoration: none;
}

.sky-now-panel {
    position: relative;
    grid-column: span 12;
    padding: 32px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.sky-now-panel::before {
    content: "";
    position: absolute;
    top: -220px;
    left: 18%;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(89, 243, 255, 0.12), transparent 68%);
    pointer-events: none;
}

.sky-now-head,
.sky-now-layout,
.sky-dome-shell,
.sky-now-copy {
    position: relative;
    z-index: 2;
}

.sky-now-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.sky-now-head .card-kicker {
    flex: 1;
}

.sky-now-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    align-items: center;
    gap: clamp(32px, 5vw, 72px);
}

.sky-dome-shell {
    width: min(100%, 620px);
    justify-self: center;
}

.contrail-sky {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
    border: 1px solid rgba(184, 233, 241, 0.13);
    border-radius: 50%;
    background:
        radial-gradient(circle at 36% 29%, rgba(89, 243, 255, 0.08), transparent 30%),
        rgba(2, 9, 16, 0.7);
    box-shadow:
        inset 0 0 90px rgba(89, 243, 255, 0.07),
        0 28px 80px rgba(0, 0, 0, 0.32),
        0 0 0 12px rgba(5, 17, 27, 0.34);
}

.sky-dome-fill {
    fill: url(#skyDomeFill);
    stroke: rgba(89, 243, 255, 0.25);
    stroke-width: 1.2;
}

.sky-grid {
    fill: none;
    stroke: rgba(179, 226, 234, 0.15);
    stroke-width: 0.9;
}

.sky-grid-minor {
    stroke-dasharray: 3 8;
    opacity: 0.65;
}

.sky-cardinals {
    fill: var(--cyan);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.sky-cardinals .zenith-label {
    fill: rgba(218, 239, 235, 0.46);
    font-size: 7px;
    letter-spacing: 0.2em;
}

.sky-cardinals .horizon-label {
    fill: rgba(218, 239, 235, 0.33);
    font-size: 6px;
    letter-spacing: 0.18em;
}

.predicted-trail-back,
.predicted-trail {
    fill: none;
    stroke-linecap: round;
    animation: trailMaterialize 7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: var(--trail-delay, 0ms);
}

.predicted-trail-back {
    stroke: var(--cyan);
    stroke-width: calc(var(--trail-width, 3) * 2.2);
    opacity: 0;
    filter: url(#trailGlow);
}

.predicted-trail {
    stroke: #f0fff8;
    stroke-width: var(--trail-width, 3);
    opacity: 0;
    filter: url(#trailGlow);
}

.sky-plane-marker {
    color: var(--cyan);
    opacity: 0;
    animation: planeMaterialize 900ms 420ms ease-out forwards;
    filter: url(#planeGlow);
}

.sky-plane-marker path {
    fill: rgba(5, 20, 29, 0.95);
    stroke: currentColor;
    stroke-width: 1.7;
    vector-effect: non-scaling-stroke;
}

.sky-plane-marker circle {
    fill: var(--lime);
    stroke: rgba(233, 255, 193, 0.8);
    stroke-width: 1;
}

.sky-plane-marker text {
    fill: #f2fbf7;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.sky-empty-state circle {
    fill: var(--lime);
    filter: url(#planeGlow);
}

.sky-empty-state text {
    fill: rgba(214, 233, 230, 0.55);
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.17em;
}

.sky-evolution {
    display: grid;
    grid-template-columns: auto minmax(80px, 1fr) auto;
    align-items: center;
    gap: 14px;
    margin-top: 25px;
    color: var(--dim);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.sky-evolution strong {
    color: var(--cyan);
    font-size: 10px;
}

.sky-evolution-track {
    height: 4px;
    overflow: hidden;
    border-radius: 99px;
    background: rgba(217, 241, 235, 0.08);
}

.sky-evolution-track i {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(89, 243, 255, 0.12), var(--cyan), var(--lime));
    transform: scaleX(0);
    transform-origin: left;
}

.sky-now-panel.is-rendered .sky-evolution-track i {
    animation: evolutionFill 7s linear forwards;
}

.science-eyebrow {
    color: var(--lime);
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.sky-now-copy h3 {
    max-width: 520px;
    margin: 17px 0 0;
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 68px);
    font-stretch: condensed;
    letter-spacing: -0.05em;
    line-height: 0.95;
    text-transform: uppercase;
}

.sky-now-copy > p {
    max-width: 580px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.sky-candidate-list {
    display: grid;
    gap: 9px;
    margin-top: 25px;
}

.sky-candidate,
.sky-candidate-empty {
    display: grid;
    grid-template-columns: minmax(90px, 0.9fr) 1.4fr auto;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(2, 10, 18, 0.46);
}

.sky-candidate.is-likely {
    border-color: rgba(201, 255, 55, 0.24);
    box-shadow: inset 3px 0 0 rgba(201, 255, 55, 0.68);
}

.sky-candidate strong {
    overflow: hidden;
    color: #f2faf7;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sky-candidate span {
    color: var(--dim);
    font-size: 9px;
    font-weight: 800;
}

.sky-candidate em {
    color: var(--cyan);
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
}

.sky-candidate-empty {
    display: block;
    color: var(--dim);
    font-size: 11px;
}

.sky-normal-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 13px;
    margin-top: 24px;
    padding: 16px;
    border: 1px solid rgba(201, 255, 55, 0.2);
    border-radius: 15px;
    background: linear-gradient(115deg, rgba(201, 255, 55, 0.08), rgba(89, 243, 255, 0.04));
}

.sky-normal-icon {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 50%;
    color: #041014;
    background: var(--lime);
    box-shadow: 0 0 20px rgba(201, 255, 55, 0.25);
    font-weight: 1000;
}

.sky-normal-note p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.55;
}

.sky-normal-note strong {
    color: var(--lime-soft);
}

@keyframes trailMaterialize {
    0% { opacity: 0.02; }
    45% { opacity: calc(var(--trail-opacity, 0.7) * 0.42); }
    100% { opacity: var(--trail-opacity, 0.7); }
}

@keyframes planeMaterialize {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes evolutionFill {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.traffic-card::after {
    top: 80px;
    right: -70px;
    width: 210px;
    height: 210px;
    background: rgba(89, 243, 255, 0.08);
}

.metric-hero {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: baseline;
    gap: 11px;
    margin-top: 24px;
}

.metric-hero strong {
    font-family: var(--font-display);
    font-size: 68px;
    font-stretch: condensed;
    letter-spacing: -0.06em;
    line-height: 1;
}

.metric-hero span {
    max-width: 100px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.35;
}

.altitude-bars {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 18px;
    margin-top: 20px;
}

.altitude-row {
    display: grid;
    grid-template-columns: minmax(110px, 1.2fr) 1fr auto;
    align-items: center;
    gap: 12px;
}

.altitude-row > div:first-child {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.altitude-row span,
.altitude-row small {
    color: var(--muted);
    font-size: 10px;
}

.altitude-row strong {
    color: var(--ink);
    font-size: 11px;
}

.altitude-row small {
    min-width: 72px;
    text-align: right;
}

.bar-track {
    overflow: hidden;
    height: 4px;
    border-radius: 99px;
    background: rgba(218, 244, 237, 0.1);
}

.bar-track span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--cyan), var(--lime));
    box-shadow: 0 0 12px rgba(89, 243, 255, 0.42);
    transition: width 550ms ease;
}

.traffic-source {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 5px;
    margin-top: 22px;
    padding-top: 15px;
    border-top: 1px solid rgba(218, 244, 237, 0.09);
}

.traffic-source > span {
    color: var(--cyan);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.traffic-source small {
    color: var(--muted);
    font-size: 9px;
    line-height: 1.5;
}

.traffic-source a {
    color: var(--ink);
    text-decoration-color: rgba(89, 243, 255, 0.35);
    text-underline-offset: 2px;
}

.traffic-source a:hover,
.traffic-source a:focus-visible {
    color: var(--lime);
}

.wind-card,
.air-card {
    grid-column: span 6;
    min-height: 326px;
}

.wind-layout {
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: center;
    gap: 30px;
    margin-top: 34px;
}

.wind-compass {
    position: relative;
    width: 160px;
    aspect-ratio: 1;
    border: 1px solid rgba(89, 243, 255, 0.19);
    border-radius: 50%;
    background:
        linear-gradient(rgba(89,243,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(89,243,255,0.08) 1px, transparent 1px),
        radial-gradient(circle, rgba(89, 243, 255, 0.08), transparent 64%);
    background-size: 100% 50%, 50% 100%, 100% 100%;
    box-shadow: inset 0 0 36px rgba(89, 243, 255, 0.05);
}

.wind-compass > span {
    position: absolute;
    color: var(--dim);
    font-size: 8px;
    font-weight: 900;
}

.compass-n { top: 8px; left: 50%; transform: translateX(-50%); }
.compass-e { right: 8px; top: 50%; transform: translateY(-50%); }
.compass-s { bottom: 8px; left: 50%; transform: translateX(-50%); }
.compass-w { left: 8px; top: 50%; transform: translateY(-50%); }

.wind-compass svg {
    position: absolute;
    inset: 25%;
    width: 50%;
    overflow: visible;
    fill: rgba(201, 255, 55, 0.12);
    stroke: var(--lime);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    filter: drop-shadow(0 0 8px rgba(201, 255, 55, 0.48));
    transition: transform 500ms cubic-bezier(.2,.8,.2,1);
}

.wind-copy {
    display: grid;
    align-content: center;
}

.wind-copy > strong {
    font-family: var(--font-display);
    font-size: 58px;
    font-stretch: condensed;
    letter-spacing: -0.055em;
    line-height: 1;
}

.wind-copy > strong small {
    color: var(--dim);
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0;
}

.wind-copy > span {
    margin-top: 5px;
    color: var(--cyan);
    font-size: 11px;
    font-weight: 800;
}

.wind-copy p {
    max-width: 260px;
    margin: 17px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.air-pulse {
    width: 8px;
    height: 8px;
    border: 1px solid var(--lime);
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(201, 255, 55, 0.7);
}

.air-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 30px;
}

.air-metric {
    position: relative;
    display: grid;
    min-width: 0;
    padding: 20px 14px 16px;
    border: 1px solid rgba(214, 239, 232, 0.1);
    border-radius: 16px;
    background: rgba(3, 12, 21, 0.42);
}

.air-metric::after {
    content: "";
    position: absolute;
    inset: auto 14px 11px;
    height: 1px;
    background: linear-gradient(90deg, var(--cyan), transparent);
    opacity: 0.36;
}

.air-metric > span {
    color: var(--muted);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.air-metric strong {
    overflow: hidden;
    margin-top: 12px;
    font-family: var(--font-display);
    font-size: 38px;
    font-stretch: condensed;
    letter-spacing: -0.04em;
    line-height: 1;
    text-overflow: ellipsis;
}

.air-metric small {
    margin-top: 3px;
    color: var(--dim);
    font-size: 8px;
}

.air-metric em {
    overflow: hidden;
    margin-top: 22px;
    color: var(--lime-soft);
    font-size: 8px;
    font-style: normal;
    font-weight: 800;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.community-card {
    display: grid;
    grid-column: span 12;
    grid-template-columns: 1fr 0.8fr;
    min-height: 290px;
}

.community-copy {
    position: relative;
    z-index: 2;
    padding: 34px;
}

.community-copy .eyebrow {
    margin-bottom: 18px;
}

.community-copy > p:not(.eyebrow) {
    max-width: 600px;
    margin: 17px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.text-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 0;
    border: 0;
    color: var(--lime);
    background: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
}

.text-button svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    transition: transform 160ms ease;
}

.text-button:hover svg {
    transform: translateX(4px);
}

.community-visual {
    position: relative;
    overflow: hidden;
    min-height: 290px;
    background:
        radial-gradient(circle at 65% 45%, rgba(201, 255, 55, 0.18), transparent 34%),
        radial-gradient(circle at 45% 58%, rgba(89, 243, 255, 0.16), transparent 35%),
        rgba(4, 12, 22, 0.3);
}

.community-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 18, 31, 0.88), transparent 45%);
}

.community-orb {
    position: absolute;
    top: 50%;
    left: 55%;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(201, 255, 55, 0.4);
    border-radius: 50%;
    box-shadow:
        inset 0 0 34px rgba(89, 243, 255, 0.16),
        0 0 60px rgba(201, 255, 55, 0.12);
    transform: translate(-50%, -50%);
}

.community-visual svg {
    position: absolute;
    right: -3%;
    bottom: 0;
    width: 100%;
    fill: none;
    stroke: rgba(225, 246, 239, 0.36);
    stroke-width: 1.2;
    filter: drop-shadow(0 0 8px rgba(89, 243, 255, 0.3));
}

.social-hub {
    position: relative;
    margin-top: 18px;
    padding: 36px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(145deg, rgba(12, 32, 43, 0.9), rgba(3, 11, 21, 0.82)),
        rgba(4, 14, 24, 0.88);
}

.social-hub::before {
    content: "";
    position: absolute;
    top: -380px;
    right: -240px;
    width: 760px;
    height: 760px;
    border-radius: 50%;
    pointer-events: none;
    background:
        radial-gradient(circle, rgba(240, 87, 255, 0.12), transparent 42%),
        radial-gradient(circle at 35% 62%, rgba(89, 243, 255, 0.13), transparent 56%);
}

.social-hub::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 138px;
    left: -8%;
    width: 58%;
    height: 1px;
    opacity: 0.34;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    box-shadow: 0 0 18px rgba(89, 243, 255, 0.4);
    transform: rotate(-7deg);
}

.social-head,
.social-grid,
.community-rules-line {
    position: relative;
    z-index: 2;
}

.social-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line);
}

.social-head .eyebrow {
    margin-bottom: 15px;
}

.social-head h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(42px, 5.5vw, 76px);
    font-stretch: condensed;
    letter-spacing: -0.05em;
    line-height: 0.92;
    text-transform: uppercase;
}

.social-head > div:first-child > p:last-child {
    max-width: 700px;
    margin: 17px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.community-live-stats {
    display: grid;
    flex: 0 0 auto;
    justify-items: end;
    gap: 9px;
    padding-bottom: 4px;
}

.community-live-stats > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
}

.community-live-stats i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 12px var(--lime);
}

.community-live-stats strong {
    color: var(--ink);
    font-size: 15px;
}

.community-live-stats .demo-status {
    padding: 7px 10px;
    border: 1px solid rgba(255, 205, 92, 0.22);
    border-radius: 999px;
    color: var(--amber);
    background: rgba(255, 205, 92, 0.06);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.demo-status[hidden],
.demo-notice[hidden] {
    display: none;
}

.social-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(320px, 0.78fr);
    align-items: start;
    gap: 16px;
    margin-top: 16px;
}

.public-chat,
.identity-card,
.zone-posts,
.leaderboard-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(11, 29, 40, 0.68), rgba(2, 9, 17, 0.68)),
        rgba(2, 9, 17, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.public-chat {
    min-height: 740px;
    padding: 24px;
}

.social-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 19px;
    border-bottom: 1px solid var(--line);
}

.social-panel-head .mono {
    color: var(--cyan);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.social-panel-head h4 {
    margin: 5px 0 0;
    font-family: var(--font-display);
    font-size: 29px;
    font-stretch: condensed;
    letter-spacing: -0.025em;
    line-height: 1;
    text-transform: uppercase;
}

.zone-chip {
    max-width: 190px;
    overflow: hidden;
    padding: 8px 10px;
    border: 1px solid rgba(89, 243, 255, 0.2);
    border-radius: 999px;
    color: var(--cyan);
    background: rgba(89, 243, 255, 0.05);
    font-size: 9px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.demo-notice {
    margin: 16px 0 0;
    padding: 11px 13px;
    border: 1px solid rgba(255, 205, 92, 0.2);
    border-radius: 12px;
    color: #f3dba4;
    background: rgba(255, 205, 92, 0.05);
    font-size: 10px;
    line-height: 1.5;
}

.message-stream {
    display: grid;
    gap: 10px;
    max-height: 560px;
    margin: 18px -8px 0 0;
    padding: 0 8px 8px 0;
    overflow-y: auto;
    list-style: none;
    scrollbar-color: rgba(89, 243, 255, 0.24) transparent;
}

.community-loading,
.community-empty {
    margin: 0;
    padding: 18px;
    border: 1px dashed var(--line);
    border-radius: 14px;
    color: var(--dim);
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
}

.message-item {
    position: relative;
    padding: 15px 15px 13px 18px;
    border: 1px solid rgba(202, 235, 226, 0.11);
    border-radius: 16px;
    background: rgba(3, 12, 21, 0.5);
}

.message-item::before {
    content: "";
    position: absolute;
    top: 17px;
    left: -2px;
    width: 3px;
    height: 24px;
    border-radius: 999px;
    background: var(--cyan);
    box-shadow: 0 0 12px rgba(89, 243, 255, 0.55);
}

.message-item.is-demo {
    border-color: rgba(89, 243, 255, 0.16);
    background: linear-gradient(120deg, rgba(89, 243, 255, 0.055), rgba(201, 255, 55, 0.025));
}

.message-item.is-demo::before {
    background: var(--lime);
    box-shadow: 0 0 12px rgba(201, 255, 55, 0.45);
}

.message-meta,
.message-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.message-meta {
    justify-content: space-between;
}

.message-meta > div {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
}

.message-meta strong {
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.message-meta time,
.message-zone {
    color: var(--dim);
    font-size: 8px;
    white-space: nowrap;
}

.message-body {
    margin: 9px 0 0;
    color: #d7e3e0;
    font-size: 12px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.message-actions {
    justify-content: flex-end;
    margin-top: 9px;
}

.message-action {
    padding: 0;
    border: 0;
    color: var(--dim);
    background: none;
    cursor: pointer;
    font-size: 8px;
    font-weight: 800;
}

.message-action:hover {
    color: var(--cyan);
}

.chat-composer,
.zone-post-form {
    margin-top: 18px;
}

.chat-composer textarea,
.zone-post-form textarea,
.profile-field input {
    width: 100%;
    min-width: 0;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--ink);
    background: rgba(1, 7, 13, 0.72);
    caret-color: var(--lime);
}

.chat-composer textarea,
.zone-post-form textarea {
    resize: vertical;
    line-height: 1.5;
}

.chat-composer textarea::placeholder,
.zone-post-form textarea::placeholder,
.profile-field input::placeholder {
    color: #607171;
}

.composer-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 10px;
}

.composer-actions .button {
    flex: 0 0 auto;
    min-height: 42px;
    padding-inline: 18px;
}

.switch-label,
.consent-card {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.45;
    cursor: pointer;
}

.switch-label input,
.consent-card input {
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
    margin: 0;
    accent-color: var(--lime);
}

.composer-message {
    min-height: 15px;
    margin: 8px 0 0;
    color: #ffc1cb;
    font-size: 9px;
    line-height: 1.4;
}

.community-side {
    display: grid;
    gap: 16px;
}

.identity-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 18px;
}

.identity-avatar {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(201, 255, 55, 0.28);
    border-radius: 50%;
    color: var(--lime);
    background: radial-gradient(circle, rgba(201, 255, 55, 0.12), transparent 70%);
    box-shadow: 0 0 24px rgba(201, 255, 55, 0.08);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.identity-card > div:nth-child(2) {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.identity-card span,
.identity-card small {
    color: var(--dim);
    font-size: 8px;
}

.identity-card strong {
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.compact-text-button {
    margin: 0;
    font-size: 9px;
}

.zone-posts,
.leaderboard-card {
    padding: 20px;
}

.compact-head {
    padding-bottom: 14px;
}

.compact-head h4 {
    font-size: 23px;
}

.zone-post-list {
    display: grid;
    gap: 9px;
    max-height: 270px;
    margin-top: 14px;
    overflow-y: auto;
}

.zone-post-item {
    padding: 12px;
    border: 1px solid rgba(202, 235, 226, 0.1);
    border-radius: 13px;
    background: rgba(2, 9, 16, 0.48);
}

.zone-post-item header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--dim);
    font-size: 8px;
}

.zone-post-item header strong {
    overflow: hidden;
    color: var(--cyan);
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zone-post-item p {
    margin: 8px 0 0;
    color: #cedbd8;
    font-size: 10px;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.zone-post-form {
    padding-top: 15px;
    border-top: 1px solid var(--line);
}

.zone-post-form > label:first-child {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.zone-post-form .switch-label {
    margin-top: 9px;
}

.zone-post-form .button {
    min-height: 43px;
    width: 100%;
    margin-top: 12px;
}

.leaderboard-list {
    display: grid;
    gap: 7px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: rank;
}

.leaderboard-list li {
    display: grid;
    grid-template-columns: 24px 1fr auto;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 6px 8px;
    border-radius: 10px;
    color: var(--muted);
    background: rgba(2, 9, 16, 0.42);
    font-size: 9px;
    counter-increment: rank;
}

.leaderboard-list li::before {
    content: counter(rank, decimal-leading-zero);
    color: var(--cyan);
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
}

.leaderboard-list strong {
    color: var(--lime-soft);
    font-size: 10px;
}

.leaderboard-card > small {
    display: block;
    margin-top: 11px;
    color: var(--dim);
    font-size: 8px;
    line-height: 1.5;
}

.community-rules-line {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    padding: 15px 4px 0;
    border-top: 1px solid var(--line);
    color: var(--dim);
    font-size: 9px;
    line-height: 1.5;
}

.community-rules-line span {
    flex: 1;
}

.community-rules-line a,
.consent-card a {
    color: var(--cyan);
    text-decoration: none;
}

.profile-field {
    display: grid;
    gap: 8px;
    margin-top: 20px;
}

.profile-field > span {
    color: var(--muted);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.profile-field small {
    color: var(--dim);
    font-size: 9px;
    line-height: 1.4;
}

.profile-dialog .consent-card {
    margin-top: 18px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(2, 9, 16, 0.48);
    font-size: 10px;
}

.privacy-controls {
    display: grid;
    gap: 12px;
    margin-top: 16px;
    padding: 16px;
    border: 1px solid rgba(89, 243, 255, 0.14);
    border-radius: 16px;
    background: rgba(89, 243, 255, 0.025);
}

.privacy-controls > div {
    display: grid;
    gap: 4px;
}

.privacy-controls strong {
    font-size: 11px;
}

.privacy-controls span {
    color: var(--muted);
    font-size: 9px;
    line-height: 1.45;
}

.profile-dialog .optional-consent {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
}

.profile-danger-zone {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    padding: 14px;
    border: 1px solid rgba(255, 94, 125, 0.24);
    border-radius: 16px;
    background: rgba(255, 94, 125, 0.035);
}

.profile-danger-zone > div {
    display: grid;
    gap: 4px;
}

.profile-danger-zone strong {
    color: #ffb0bf;
    font-size: 11px;
}

.profile-danger-zone p {
    margin: 0;
    color: var(--dim);
    font-size: 9px;
    line-height: 1.45;
}

.danger-text-button {
    flex: 0 0 auto;
    border-color: rgba(255, 94, 125, 0.42);
    color: #ffb0bf;
}

.danger-text-button:hover,
.danger-text-button:focus-visible {
    border-color: rgba(255, 94, 125, 0.72);
    color: #fff;
}

.disclaimer {
    max-width: 920px;
    margin: 30px auto 0;
    color: var(--dim);
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
}

.disclaimer strong {
    color: var(--muted);
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto auto auto auto;
    align-items: center;
    gap: 30px;
    min-height: 140px;
    padding: 30px 0;
    border-top: 1px solid var(--line);
}

.site-footer p {
    max-width: 430px;
    margin: 0;
    color: var(--dim);
    font-size: 10px;
    line-height: 1.5;
    text-align: center;
}

.footer-link {
    justify-self: end;
    padding: 0;
    border: 0;
    color: var(--lime);
    background: none;
    cursor: pointer;
    font-size: 11px;
    font-weight: 900;
}

.footer-science-link {
    text-decoration: none;
    white-space: nowrap;
}

.report-dialog {
    width: min(620px, calc(100% - 28px));
    max-height: min(860px, calc(100vh - 28px));
    padding: 0;
    overflow: visible;
    border: 0;
    color: var(--ink);
    background: transparent;
}

.report-dialog::backdrop {
    background: rgba(0, 4, 10, 0.78);
    backdrop-filter: blur(14px);
}

.report-sheet {
    max-height: min(860px, calc(100vh - 28px));
    padding: 28px;
    overflow-y: auto;
    border-radius: 28px;
}

.dialog-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.dialog-head .eyebrow {
    margin-bottom: 12px;
}

.dialog-head h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 44px;
    font-stretch: condensed;
    letter-spacing: -0.04em;
    line-height: 0.95;
    text-transform: uppercase;
}

.dialog-close {
    display: grid;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--muted);
    background: rgba(3, 10, 18, 0.4);
    cursor: pointer;
}

.dialog-close svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.7;
}

.dialog-intro {
    margin: 20px 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.photo-drop {
    position: relative;
    display: grid;
    min-height: 270px;
    overflow: hidden;
    place-items: center;
    border: 1px dashed rgba(89, 243, 255, 0.34);
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(89, 243, 255, 0.05), rgba(201, 255, 55, 0.03)),
        rgba(2, 9, 16, 0.54);
    cursor: pointer;
}

.photo-drop input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.photo-placeholder {
    display: grid;
    place-items: center;
    color: var(--muted);
    text-align: center;
}

.photo-placeholder svg {
    width: 38px;
    margin-bottom: 14px;
    fill: none;
    stroke: var(--cyan);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.3;
    filter: drop-shadow(0 0 12px rgba(89, 243, 255, 0.35));
}

.photo-placeholder strong {
    color: var(--ink);
    font-size: 14px;
}

.photo-placeholder small {
    margin-top: 7px;
    color: var(--dim);
    font-size: 10px;
}

.photo-drop img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-change {
    position: absolute;
    z-index: 2;
    right: 12px;
    bottom: 12px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(2, 8, 14, 0.72);
    backdrop-filter: blur(12px);
    font-size: 9px;
    font-weight: 900;
}

.report-meta {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    margin-top: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(2, 9, 16, 0.36);
}

.report-meta div {
    display: grid;
    gap: 6px;
    min-width: 0;
    padding: 14px 16px;
}

.report-meta div + div {
    border-left: 1px solid var(--line);
}

.report-meta span {
    color: var(--dim);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.report-meta strong {
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dialog-actions {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 10px;
    margin-top: 18px;
}

.form-message {
    min-height: 18px;
    margin: 12px 0 0;
    color: #ffc1cb;
    font-size: 11px;
    text-align: center;
}

.toast {
    position: fixed;
    z-index: 90;
    right: 20px;
    bottom: 20px;
    display: flex;
    max-width: min(420px, calc(100% - 40px));
    align-items: center;
    gap: 11px;
    padding: 14px 17px;
    border: 1px solid rgba(201, 255, 55, 0.24);
    border-radius: 14px;
    color: var(--ink);
    background: rgba(4, 15, 24, 0.9);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(20px);
    font-size: 12px;
    line-height: 1.4;
}

.toast-dot {
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 12px var(--lime);
}

@keyframes livePulse {
    0%, 100% { opacity: 0.5; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.08); }
}

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

@keyframes blip {
    0%, 100% { opacity: 0.25; transform: scale(0.7); }
    50% { opacity: 1; transform: scale(1.15); }
}

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

@media (max-width: 1050px) {
    .hero {
        grid-template-columns: 1fr minmax(370px, 0.8fr);
        gap: 36px;
    }

    .hero h1 {
        font-size: clamp(64px, 9.4vw, 96px);
    }

    .radar-card {
        min-height: 510px;
    }

    .tag-top {
        right: -2%;
    }

    .tag-bottom {
        left: -4%;
    }

    .section-heading {
        grid-template-columns: 1fr;
    }

    .profile-strip {
        width: 100%;
    }

    .sky-now-layout {
        grid-template-columns: 1fr;
    }

    .sky-now-copy {
        max-width: 680px;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .public-chat {
        min-height: 680px;
    }

    .community-side {
        grid-template-columns: 1fr 1fr;
    }

    .identity-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    .shell,
    .site-header {
        width: min(100% - 32px, 680px);
    }

    .site-header {
        min-height: 82px;
    }

    .live-pill {
        display: none;
    }

    .header-link {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 54px;
        padding: 50px 0 80px;
    }

    .hero h1 {
        font-size: clamp(64px, 17vw, 104px);
        line-height: 0.9;
    }

    .hero-intro {
        max-width: 640px;
    }

    .radar-stage {
        width: min(100%, 560px);
        justify-self: center;
    }

    .dashboard {
        padding-top: 54px;
    }

    .score-card,
    .metric-card,
    .wind-card,
    .air-card {
        grid-column: span 12;
    }

    .community-card {
        grid-template-columns: 1fr;
    }

    .contrail-insight {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .contrail-gauge-wrap {
        grid-template-columns: auto 1fr;
        align-items: center;
        justify-items: start;
    }

    .contrail-gauge {
        width: 150px;
    }

    .sky-dome-shell {
        width: min(100%, 560px);
    }

    .community-visual {
        min-height: 220px;
    }

    .social-hub {
        padding: 28px;
    }

    .social-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

    .community-live-stats {
        justify-items: start;
    }

    .community-side {
        grid-template-columns: 1fr;
    }

    .identity-card {
        grid-column: auto;
    }

    .site-footer {
        grid-template-columns: 1fr auto auto;
    }

    .site-footer p {
        grid-column: 1 / -1;
        grid-row: 2;
        text-align: left;
    }

    .footer-science-link {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 560px) {
    :root {
        --radius-xl: 26px;
        --radius-lg: 21px;
    }

    .shell,
    .site-header {
        width: calc(100% - 24px);
    }

    .brand-copy small {
        display: none;
    }

    .language-switcher {
        margin-left: auto;
    }

    .language-switcher button,
    .language-switcher a {
        min-width: 30px;
        min-height: 29px;
        padding-inline: 6px;
    }

    .icon-button span {
        display: none;
    }

    .hero {
        gap: 44px;
        padding-top: 38px;
    }

    .hero h1 {
        font-size: clamp(56px, 17vw, 84px);
        line-height: 0.92;
    }

    .hero-intro {
        margin-top: 26px;
        font-size: 15px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
    }

    .signal-list {
        gap: 12px 18px;
    }

    .coordinate-fields {
        grid-template-columns: 1fr 1fr;
    }

    .coordinate-fields .button {
        grid-column: 1 / -1;
    }

    .radar-card {
        min-height: auto;
        padding: 18px;
    }

    .radar-orbit {
        width: 100%;
    }

    .floating-tag {
        display: none;
    }

    .radar-readout {
        grid-template-columns: 1.2fr 1fr 0.65fr;
    }

    .radar-readout div + div {
        padding-left: 9px;
    }

    .radar-readout strong {
        font-size: 11px;
    }

    .section-heading h2 {
        font-size: 43px;
    }

    .profile-strip {
        grid-template-columns: 1fr 1fr;
    }

    .profile-strip div:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .profile-strip div:nth-child(4) {
        border-top: 1px solid var(--line);
    }

    .score-card,
    .metric-card,
    .contrail-insight,
    .sky-now-panel {
        min-height: auto;
        padding: 21px;
    }

    .sky-now-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .sky-now-head .card-kicker {
        width: 100%;
    }

    .sky-now-copy h3 {
        font-size: 42px;
    }

    .sky-evolution {
        grid-template-columns: 1fr auto;
    }

    .sky-evolution > span {
        grid-column: 1 / -1;
    }

    .sky-candidate {
        grid-template-columns: 1fr auto;
    }

    .sky-candidate span {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .contrail-gauge-wrap {
        grid-template-columns: 1fr;
    }

    .contrail-gauge {
        width: 138px;
    }

    .contrail-copy h3 {
        font-size: 34px;
    }

    .contrail-facts {
        grid-template-columns: 1fr 1fr;
    }

    .contrail-facts > div:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .contrail-facts > div:nth-child(4) {
        border-top: 1px solid var(--line);
    }

    .contrail-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .score-layout {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 24px;
        padding: 28px 0 24px;
    }

    .score-dial {
        width: 154px;
    }

    .score-dial::before {
        width: 142px;
    }

    .score-dial-inner strong {
        font-size: 54px;
    }

    .card-footer-line {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .altitude-row {
        grid-template-columns: minmax(112px, 1fr) 1fr;
    }

    .altitude-row small {
        display: none;
    }

    .wind-layout {
        grid-template-columns: 128px 1fr;
        gap: 18px;
    }

    .wind-compass {
        width: 128px;
    }

    .wind-copy > strong {
        font-size: 48px;
    }

    .air-grid {
        grid-template-columns: 1fr 1fr;
    }

    .community-copy {
        padding: 26px 21px;
    }

    .community-visual {
        min-height: 180px;
    }

    .social-hub {
        padding: 21px;
        border-radius: var(--radius-lg);
    }

    .social-head h3 {
        font-size: 43px;
    }

    .community-live-stats {
        width: 100%;
    }

    .public-chat,
    .zone-posts,
    .leaderboard-card {
        padding: 17px;
        border-radius: 18px;
    }

    .public-chat {
        min-height: 640px;
    }

    .message-stream {
        max-height: 470px;
    }

    .social-panel-head {
        align-items: flex-start;
    }

    .zone-chip {
        max-width: 128px;
    }

    .composer-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .composer-actions .button {
        width: 100%;
    }

    .identity-card {
        grid-template-columns: auto 1fr;
    }

    .identity-card .compact-text-button {
        grid-column: 1 / -1;
        justify-self: start;
        margin-left: 54px;
    }

    .community-rules-line {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .community-rules-line span {
        flex-basis: 100%;
    }

    .profile-danger-zone {
        align-items: flex-start;
        flex-direction: column;
    }

    .report-sheet {
        padding: 21px;
        border-radius: 24px;
    }

    .dialog-head h2 {
        font-size: 37px;
    }

    .photo-drop {
        min-height: 230px;
    }

    .dialog-actions {
        grid-template-columns: 1fr;
    }

    .dialog-actions .button-ghost {
        grid-row: 2;
    }

    .site-footer {
        grid-template-columns: 1fr 1fr;
        min-height: 120px;
    }

    .site-footer p {
        grid-row: auto;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

@supports not (backdrop-filter: blur(10px)) {
    .glass-panel,
    .button-ghost,
    .live-pill,
    .icon-button,
    .floating-tag,
    .manual-location {
        background: rgba(4, 14, 25, 0.96);
    }
}
