:root {
    --ink: #071b1b;
    --ink-soft: #102d2c;
    --paper: #f3f0e8;
    --paper-deep: #e8e4d9;
    --lime: #c7ff7a;
    --aqua: #73e4de;
    --orange: #ff8a5b;
    --white: #ffffff;
    --muted: #71817e;
    --line-dark: rgba(255, 255, 255, .12);
    --line-light: rgba(7, 27, 27, .13);
    --page: min(1240px, calc(100vw - 64px));
    --radius-lg: 32px;
    --radius-md: 22px;
    --shadow: 0 28px 80px rgba(0, 0, 0, .18);
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: clip;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

::selection {
    color: var(--ink);
    background: var(--lime);
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    font: inherit;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 12px 16px;
    color: var(--ink);
    background: var(--lime);
    border-radius: 10px;
    transform: translateY(-160%);
}

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

.site-header {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 20;
    display: flex;
    width: var(--page);
    min-height: 88px;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    border-bottom: 1px solid var(--line-dark);
    transform: translateX(-50%);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -.03em;
}

.brand strong {
    color: var(--lime);
    font-weight: 750;
}

.brand__mark {
    width: 34px;
    height: 34px;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
    margin-right: 42px;
}

.site-nav a {
    position: relative;
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    transition: color .25s ease;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: var(--lime);
    content: "";
    transform: scaleX(0);
    transition: transform .25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

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

.beta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: var(--lime);
    border: 1px solid rgba(199, 255, 122, .25);
    border-radius: 999px;
    background: rgba(199, 255, 122, .07);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.beta-badge span {
    width: 5px;
    height: 5px;
    background: var(--lime);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(199, 255, 122, .1);
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    color: var(--white);
    border: 1px solid var(--line-dark);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 16px;
    height: 1px;
    margin: 5px auto;
    background: currentColor;
    transition: transform .25s ease;
}

.hero {
    --pointer-x: 78%;
    --pointer-y: 28%;
    position: relative;
    display: grid;
    min-height: 820px;
    padding: 150px max(32px, calc((100vw - 1240px) / 2)) 90px;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 82% 32%, rgba(35, 113, 105, .7), transparent 28%),
        radial-gradient(circle at 70% 70%, rgba(16, 68, 65, .9), transparent 36%),
        var(--ink);
    grid-template-columns: minmax(0, 1fr) minmax(500px, .9fr);
    gap: 64px;
    align-items: center;
}

.hero::before {
    position: absolute;
    top: -240px;
    right: -180px;
    width: 720px;
    height: 720px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    content: "";
}

.hero__noise {
    position: absolute;
    inset: 0;
    opacity: .035;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.hero__aura {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: radial-gradient(
        circle 380px at var(--pointer-x) var(--pointer-y),
        rgba(115, 228, 222, .16),
        rgba(115, 228, 222, .045) 38%,
        transparent 72%
    );
    pointer-events: none;
    transition: background .18s linear;
}

.hero__content,
.hero__visual {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: flex;
    margin: 0 0 26px;
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 28px;
    height: 1px;
    background: var(--lime);
}

.eyebrow--dark {
    color: #6d7d79;
}

.hero h1,
.section-heading h2,
.forecast-copy h2,
.about__headline h2 {
    margin: 0;
    font-weight: 620;
    letter-spacing: -.055em;
    line-height: .98;
}

.hero h1 {
    max-width: 680px;
    font-size: clamp(60px, 6.2vw, 96px);
}

.hero h1 em,
.about__headline h2 em {
    color: var(--lime);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.hero__lead {
    max-width: 610px;
    margin: 32px 0 0;
    color: rgba(255, 255, 255, .64);
    font-size: 17px;
    line-height: 1.65;
}

.hero__actions {
    display: flex;
    margin-top: 38px;
    align-items: center;
    gap: 12px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    padding: 0 22px;
    align-items: center;
    justify-content: center;
    gap: 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

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

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

.button--primary {
    color: var(--ink);
    background: var(--lime);
}

.button--primary:hover {
    background: #d6ff9e;
}

.button--ghost {
    color: rgba(255, 255, 255, .78);
    border-color: var(--line-dark);
}

.button--ghost:hover {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .05);
}

.hero__status {
    display: flex;
    margin-top: 56px;
    align-items: center;
    gap: 14px;
}

.hero__status p {
    margin: 0;
    color: rgba(255, 255, 255, .44);
    font-size: 11px;
    line-height: 1.45;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.hero__status strong {
    color: rgba(255, 255, 255, .84);
}

.avatar-stack {
    display: flex;
}

.avatar-stack span {
    display: grid;
    width: 30px;
    height: 30px;
    margin-left: -6px;
    place-items: center;
    color: var(--ink);
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--aqua);
    font-size: 8px;
    font-weight: 800;
}

.avatar-stack span:first-child {
    margin-left: 0;
    background: var(--orange);
}

.avatar-stack span:last-child {
    background: var(--lime);
}

.hero__visual {
    display: grid;
    min-height: 560px;
    place-items: center;
}

.forecast-orbit {
    position: absolute;
    inset: 0;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(199, 255, 122, .13);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit--one {
    width: 580px;
    height: 580px;
}

.orbit--two {
    width: 460px;
    height: 460px;
}

.orbit-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 22px var(--lime);
}

.orbit-dot--one {
    top: 13%;
    left: 23%;
}

.orbit-dot--two {
    right: 3%;
    bottom: 30%;
    width: 5px;
    height: 5px;
    background: var(--aqua);
    box-shadow: 0 0 20px var(--aqua);
}

.hero-card {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    position: relative;
    z-index: 2;
    width: min(430px, 80vw);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-lg);
    background: rgba(5, 27, 27, .72);
    box-shadow: var(--shadow);
    backdrop-filter: blur(24px);
    transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    transform-style: preserve-3d;
    transition: transform .18s ease-out;
}

.hero-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.hero-card__top p,
.hero-card__caption {
    margin: 0;
    color: rgba(255, 255, 255, .42);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-card__top time {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    font-weight: 600;
}

.hero-card__icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--lime);
    border-radius: 50%;
    background: rgba(199, 255, 122, .08);
}

.hero-card__icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.hero-card__temperature {
    display: flex;
    margin-top: 28px;
    align-items: flex-start;
}

.hero-card__temperature span {
    font-size: clamp(72px, 7vw, 94px);
    font-weight: 280;
    letter-spacing: -.07em;
    line-height: .9;
}

.hero-card__temperature sup {
    margin-top: 8px;
    color: var(--lime);
    font-size: 24px;
    font-weight: 500;
}

.hero-card__caption {
    margin-top: 12px;
}

.mini-chart {
    margin-top: 28px;
}

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

.mini-chart__area {
    fill: url(#chart-fill);
}

.mini-chart__line,
.mini-chart__forecast-line {
    fill: none;
    stroke: var(--lime);
    stroke-width: 2;
    vector-effect: non-scaling-stroke;
}

.mini-chart__line {
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mini-chart__forecast-line {
    stroke-dasharray: 3 4;
}

.mini-chart__dot {
    fill: var(--lime);
    stroke: rgba(199, 255, 122, .25);
    stroke-width: 10;
}

.mini-chart__labels {
    display: flex;
    margin-top: 2px;
    justify-content: space-between;
    color: rgba(255, 255, 255, .32);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hero-card__model {
    display: grid;
    margin-top: 22px;
    padding-top: 20px;
    align-items: center;
    border-top: 1px solid var(--line-dark);
    grid-template-columns: auto 1fr auto;
    gap: 12px;
}

.model-symbol {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--ink);
    border-radius: 10px;
    background: var(--lime);
    font-size: 12px;
    font-weight: 850;
}

.hero-card__model small,
.hero-card__model strong {
    display: block;
}

.hero-card__model small {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .36);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hero-card__model strong {
    overflow: hidden;
    color: rgba(255, 255, 255, .82);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.accuracy-pill {
    padding: 7px 9px;
    color: var(--lime);
    border-radius: 999px;
    background: rgba(199, 255, 122, .08);
    font-size: 9px;
    font-weight: 750;
}

.floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    padding: 13px 16px;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    border-radius: 14px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .18);
}

.floating-card p {
    margin: 0;
    font-size: 9px;
    line-height: 1.35;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.floating-card > span:not(.pulse-dot) {
    font-size: 25px;
    font-weight: 750;
    letter-spacing: -.06em;
}

.floating-card--top {
    top: 19%;
    right: -3%;
    background: var(--aqua);
    transform: rotate(3deg);
}

.floating-card--bottom {
    bottom: 17%;
    left: -1%;
    background: var(--paper);
    transform: rotate(-2deg);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22b573;
    box-shadow: 0 0 0 5px rgba(34, 181, 115, .12);
}

.data-ribbon {
    position: relative;
    z-index: 5;
    width: 102%;
    height: 74px;
    margin-top: -18px;
    margin-left: -1%;
    overflow: hidden;
    color: var(--ink);
    background: var(--lime);
    border-top: 1px solid rgba(7, 27, 27, .14);
    border-bottom: 1px solid rgba(7, 27, 27, .14);
    transform: rotate(-1.15deg);
}

.data-ribbon__track {
    display: flex;
    width: max-content;
    height: 100%;
    align-items: center;
    animation: ribbon-scroll 28s linear infinite;
    will-change: transform;
}

.data-ribbon__group {
    display: flex;
    align-items: center;
    gap: 26px;
    padding-right: 26px;
    white-space: nowrap;
}

.data-ribbon span {
    font-size: 22px;
    font-weight: 720;
    letter-spacing: -.035em;
    text-transform: uppercase;
}

.data-ribbon i {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    font-style: normal;
}

.metrics {
    display: grid;
    width: var(--page);
    margin: 0 auto;
    padding: 42px 0;
    border-bottom: 1px solid var(--line-light);
    grid-template-columns: repeat(4, 1fr);
}

.metric {
    display: flex;
    min-height: 64px;
    padding: 0 30px;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--line-light);
}

.metric:first-child {
    padding-left: 0;
    border-left: 0;
}

.metric__number {
    font-size: 31px;
    font-weight: 650;
    letter-spacing: -.05em;
}

.metric__label {
    margin-top: 6px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 650;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.section {
    padding: 130px max(32px, calc((100vw - 1240px) / 2));
}

.section-heading {
    display: grid;
    margin-bottom: 66px;
    align-items: end;
    grid-template-columns: 1.15fr .7fr;
    gap: 80px;
}

.section-heading h2,
.forecast-copy h2,
.about__headline h2 {
    font-size: clamp(48px, 5vw, 74px);
}

.section-heading > p,
.forecast-copy > p,
.about__copy > p {
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.pipeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.pipeline-card {
    position: relative;
    display: flex;
    min-height: 350px;
    padding: 28px;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--line-light);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .28);
    transition: transform .3s ease, box-shadow .3s ease;
}

.pipeline-card:hover {
    box-shadow: 0 20px 46px rgba(25, 45, 42, .08);
    transform: translateY(-6px);
}

.pipeline-card--accent {
    background: var(--lime);
    border-color: var(--lime);
}

.pipeline-card--dark {
    color: var(--white);
    background: var(--ink-soft);
    border-color: var(--ink-soft);
}

.pipeline-card__number {
    color: var(--muted);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .1em;
}

.pipeline-card--accent .pipeline-card__number,
.pipeline-card--accent .pipeline-card__meta {
    color: rgba(7, 27, 27, .52);
}

.pipeline-card--dark .pipeline-card__number,
.pipeline-card--dark .pipeline-card__meta,
.pipeline-card--dark p {
    color: rgba(255, 255, 255, .5);
}

.pipeline-card__icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin: 44px 0 26px;
    place-items: center;
    border: 1px solid var(--line-light);
    border-radius: 50%;
}

.pipeline-card--accent .pipeline-card__icon {
    border-color: rgba(7, 27, 27, .2);
}

.pipeline-card--dark .pipeline-card__icon {
    color: var(--lime);
    border-color: var(--line-dark);
}

.pipeline-card__icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.pipeline-card h3 {
    margin: 0 0 13px;
    font-size: 18px;
    letter-spacing: -.025em;
}

.pipeline-card p {
    margin: 0;
    color: #657471;
    font-size: 12px;
    line-height: 1.65;
}

.pipeline-card__meta {
    margin-top: auto;
    padding-top: 24px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.signal-room {
    position: relative;
    overflow: hidden;
    background: var(--paper-deep);
}

.signal-room__backdrop {
    position: absolute;
    top: 38px;
    left: 50%;
    color: rgba(7, 27, 27, .035);
    font-size: clamp(120px, 19vw, 300px);
    font-weight: 850;
    letter-spacing: -.08em;
    line-height: 1;
    transform: translateX(-50%);
    pointer-events: none;
    white-space: nowrap;
}

.signal-room__layout {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    grid-template-columns: .72fr 1fr;
    gap: 80px;
}

.signal-room__copy h2 {
    margin: 0;
    font-size: clamp(48px, 5.5vw, 78px);
    font-weight: 620;
    letter-spacing: -.06em;
    line-height: .96;
}

.signal-room__copy h2 em {
    color: #2b7771;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.signal-room__copy > p {
    max-width: 480px;
    margin: 30px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.signal-readout {
    margin-top: 42px;
    padding: 27px;
    border: 1px solid var(--line-light);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .44);
    box-shadow: 0 24px 60px rgba(18, 50, 47, .06);
}

.signal-readout__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.signal-readout__state {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #16895d;
}

.signal-readout__state i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 5px rgba(22, 137, 93, .1);
}

.signal-readout h3 {
    margin: 28px 0 0;
    font-size: 25px;
    letter-spacing: -.04em;
}

.signal-readout > p {
    min-height: 62px;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.signal-readout__meta {
    margin-top: 21px;
    padding-top: 18px;
    color: #2b7771;
    border-top: 1px solid var(--line-light);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 10px;
    letter-spacing: .04em;
}

.radar-stage {
    position: relative;
    width: min(620px, 48vw);
    aspect-ratio: 1;
    margin-left: auto;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(40, 113, 105, .36), transparent 28%),
        radial-gradient(circle at 35% 28%, rgba(115, 228, 222, .1), transparent 22%),
        var(--ink);
    box-shadow: 0 46px 100px rgba(7, 27, 27, .23);
}

.radar-stage::before {
    position: absolute;
    inset: -13px;
    border: 1px dashed rgba(7, 27, 27, .24);
    border-radius: 50%;
    content: "";
}

.radar-stage__grid,
.radar-stage__grid span,
.radar-stage__grid i,
.radar-stage__sweep {
    position: absolute;
    pointer-events: none;
}

.radar-stage__grid {
    z-index: 1;
    inset: 0;
    overflow: hidden;
    border-radius: 50%;
}

.radar-stage__grid span {
    top: 50%;
    left: 50%;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.radar-stage__grid span:nth-child(1) {
    width: 76%;
    height: 76%;
}

.radar-stage__grid span:nth-child(2) {
    width: 52%;
    height: 52%;
}

.radar-stage__grid span:nth-child(3) {
    width: 28%;
    height: 28%;
}

.radar-stage__grid i {
    background: rgba(255, 255, 255, .075);
}

.radar-stage__grid i:nth-of-type(1) {
    top: 50%;
    right: 8%;
    left: 8%;
    height: 1px;
}

.radar-stage__grid i:nth-of-type(2) {
    top: 8%;
    bottom: 8%;
    left: 50%;
    width: 1px;
}

.radar-stage__sweep {
    z-index: 0;
    inset: 8%;
    border-radius: 50%;
    background: conic-gradient(from -24deg, transparent 0 77%, rgba(199, 255, 122, .22) 94%, transparent 100%);
    animation: radar-turn 9s linear infinite;
}

.radar-center {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: grid;
    width: 146px;
    height: 146px;
    place-items: center;
    align-content: center;
    border: 1px solid rgba(199, 255, 122, .24);
    border-radius: 50%;
    background: rgba(7, 27, 27, .82);
    box-shadow: 0 0 46px rgba(115, 228, 222, .12);
    transform: translate(-50%, -50%);
    backdrop-filter: blur(10px);
}

.radar-center span,
.radar-center small {
    color: rgba(255, 255, 255, .38);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.radar-center strong {
    margin: 4px 0 1px;
    color: var(--lime);
    font-size: 46px;
    font-weight: 300;
    letter-spacing: -.06em;
    line-height: 1;
}

.signal-node {
    --node-position: translate(0, 0);
    position: absolute;
    z-index: 4;
    display: flex;
    min-width: 116px;
    padding: 12px 14px;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 14px;
    background: rgba(243, 240, 232, .92);
    box-shadow: 0 15px 28px rgba(0, 0, 0, .18);
    cursor: pointer;
    transform: var(--node-position) scale(1);
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
    backdrop-filter: blur(8px);
}

.signal-node:hover,
.signal-node:focus-visible {
    transform: var(--node-position) scale(1.06);
}

.signal-node.is-active {
    background: var(--lime);
    box-shadow: 0 18px 38px rgba(199, 255, 122, .18);
    transform: var(--node-position) scale(1.08);
}

.signal-node span {
    color: var(--muted);
    font-size: 7px;
    font-weight: 800;
}

.signal-node strong {
    font-size: 9px;
    letter-spacing: .02em;
    text-transform: uppercase;
    white-space: nowrap;
}

.signal-node i {
    width: 6px;
    height: 6px;
    margin-left: auto;
    border-radius: 50%;
    background: #72b7b0;
}

.signal-node.is-active i {
    background: #16895d;
    box-shadow: 0 0 0 5px rgba(22, 137, 93, .12);
}

.signal-node--average {
    --node-position: translateX(-50%);
    top: 7%;
    left: 50%;
}

.signal-node--range {
    top: 29%;
    right: 2%;
}

.signal-node--wind {
    right: 12%;
    bottom: 13%;
}

.signal-node--sin {
    bottom: 9%;
    left: 19%;
}

.signal-node--cos {
    top: 31%;
    left: 1%;
}

.signal-room__footer {
    position: relative;
    z-index: 2;
    display: flex;
    margin-top: 90px;
    padding: 25px 0;
    align-items: center;
    justify-content: center;
    gap: 30px;
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}

.signal-room__footer span {
    color: var(--muted);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.signal-room__footer i {
    margin-right: 8px;
    color: #2b7771;
    font-style: normal;
}

.signal-room__footer b {
    color: #2b7771;
    font-weight: 400;
}

.model-lab {
    color: var(--white);
    background:
        radial-gradient(circle at 88% 25%, rgba(39, 104, 99, .42), transparent 28%),
        var(--ink);
}

.section-heading--light > p {
    color: rgba(255, 255, 255, .5);
}

.model-lab__panel {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .035);
    grid-template-columns: minmax(0, 1.6fr) minmax(300px, .65fr);
}

.chart-panel {
    padding: 34px 38px 30px;
}

.chart-panel__top {
    display: flex;
    margin-bottom: 42px;
    align-items: center;
    justify-content: space-between;
}

.chart-panel__top span,
.chart-panel__top strong {
    display: block;
}

.chart-panel__top span {
    margin-bottom: 7px;
    color: rgba(255, 255, 255, .38);
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.chart-panel__top strong {
    font-size: 18px;
}

.segmented-control {
    display: flex;
    padding: 4px;
    border: 1px solid var(--line-dark);
    border-radius: 999px;
}

.segmented-control button {
    min-width: 66px;
    padding: 8px 14px;
    color: rgba(255, 255, 255, .42);
    border: 0;
    border-radius: 999px;
    background: transparent;
    font-size: 10px;
    font-weight: 750;
    cursor: pointer;
}

.segmented-control button[aria-pressed="true"] {
    color: var(--ink);
    background: var(--lime);
}

.model-chart {
    position: relative;
    display: grid;
    gap: 13px;
}

.model-chart::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 180px;
    background: repeating-linear-gradient(90deg, var(--line-dark) 0 1px, transparent 1px 25%);
    content: "";
    pointer-events: none;
}

.model-row {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 38px;
    padding: 0;
    align-items: center;
    color: inherit;
    border: 0;
    background: transparent;
    grid-template-columns: 180px 1fr 52px;
    cursor: pointer;
    text-align: left;
}

.model-row__name {
    padding-right: 16px;
    overflow: hidden;
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color .2s ease;
}

.model-row__track {
    height: 9px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, .055);
}

.model-row__bar {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: rgba(115, 228, 222, .55);
    transition: width .7s cubic-bezier(.2, .8, .2, 1), background .2s ease;
}

.model-row__value {
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
    font-variant-numeric: tabular-nums;
    text-align: right;
}

.model-row:hover .model-row__name,
.model-row.is-selected .model-row__name,
.model-row.is-selected .model-row__value {
    color: var(--white);
}

.model-row.is-best .model-row__bar {
    background: var(--lime);
}

.model-row.is-selected .model-row__track {
    outline: 1px solid rgba(255, 255, 255, .18);
    outline-offset: 3px;
}

.chart-axis {
    display: flex;
    margin: 17px 52px 0 180px;
    justify-content: space-between;
    color: rgba(255, 255, 255, .25);
    font-size: 8px;
}

.model-detail {
    display: flex;
    min-height: 510px;
    padding: 34px;
    flex-direction: column;
    border-left: 1px solid var(--line-dark);
    background: rgba(255, 255, 255, .04);
}

.model-detail__status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--lime);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.model-detail__status span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.model-detail__index {
    display: block;
    margin: 46px 0 14px;
    color: rgba(255, 255, 255, .22);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-style: italic;
}

.model-detail h3 {
    margin: 0;
    font-size: 27px;
    letter-spacing: -.04em;
    line-height: 1.08;
}

.model-detail > p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .48);
    font-size: 12px;
    line-height: 1.7;
}

.model-detail__score {
    display: flex;
    margin-top: auto;
    padding: 22px 0;
    align-items: flex-end;
    justify-content: space-between;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}

.model-detail__score span {
    color: rgba(255, 255, 255, .35);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.model-detail__score strong {
    color: var(--lime);
    font-size: 26px;
    letter-spacing: -.05em;
}

.model-detail__features {
    display: flex;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 6px;
}

.model-detail__features span {
    padding: 7px 9px;
    color: rgba(255, 255, 255, .48);
    border: 1px solid var(--line-dark);
    border-radius: 999px;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.forecast-section {
    overflow: hidden;
}

.forecast-layout {
    display: grid;
    align-items: center;
    grid-template-columns: .8fr 1fr;
    gap: 110px;
}

.forecast-copy > p {
    max-width: 510px;
    margin-top: 30px;
}

.forecast-facts {
    margin: 42px 0 0;
}

.forecast-facts > div {
    display: flex;
    padding: 15px 0;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--line-light);
}

.forecast-facts dt {
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.forecast-facts dd {
    margin: 0;
    font-size: 12px;
    font-weight: 650;
    text-align: right;
}

.result-card {
    position: relative;
    min-height: 540px;
    padding: 34px;
    overflow: hidden;
    color: var(--white);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 32% 38%, rgba(115, 228, 222, .23), transparent 28%),
        linear-gradient(145deg, #0a2726, #071716);
    box-shadow: 0 36px 70px rgba(7, 27, 27, .2);
}

.result-card::before,
.result-card::after {
    position: absolute;
    border: 1px solid rgba(199, 255, 122, .12);
    border-radius: 50%;
    content: "";
}

.result-card::before {
    top: -170px;
    right: -130px;
    width: 500px;
    height: 500px;
}

.result-card::after {
    top: -90px;
    right: -50px;
    width: 340px;
    height: 340px;
}

.result-card__header,
.result-card__date,
.result-card__main,
.result-card__footer {
    position: relative;
    z-index: 2;
}

.result-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, .38);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.result-card__beta {
    padding: 7px 10px;
    color: var(--lime);
    border: 1px solid rgba(199, 255, 122, .2);
    border-radius: 999px;
}

.result-card__date {
    display: flex;
    margin-top: 52px;
    align-items: baseline;
    gap: 15px;
}

.result-card__date span {
    color: rgba(255, 255, 255, .42);
    font-size: 12px;
}

.result-card__date strong {
    font-size: 15px;
}

.result-card__main {
    display: flex;
    min-height: 285px;
    align-items: center;
    justify-content: space-between;
}

.result-card__weather {
    display: grid;
    width: 112px;
    height: 112px;
    place-items: center;
    color: var(--lime);
    border: 1px solid rgba(199, 255, 122, .14);
    border-radius: 50%;
    background: rgba(199, 255, 122, .05);
}

.result-card__weather svg {
    width: 70px;
    height: 70px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.4;
}

.result-card__temp {
    display: flex;
    align-items: flex-start;
}

.result-card__temp strong {
    font-size: clamp(78px, 8vw, 122px);
    font-weight: 260;
    letter-spacing: -.075em;
    line-height: .9;
}

.result-card__temp sup {
    margin-top: 8px;
    color: var(--lime);
    font-size: 25px;
}

.result-card__footer {
    display: grid;
    padding-top: 20px;
    border-top: 1px solid var(--line-dark);
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.result-card__footer div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.result-card__footer span {
    color: rgba(255, 255, 255, .34);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.result-card__footer strong {
    color: rgba(255, 255, 255, .82);
    font-size: 11px;
}

.about {
    color: var(--white);
    background: #0e2928;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 120px;
}

.about__headline h2 em {
    display: inline-block;
    margin-top: 4px;
}

.about__lead {
    color: rgba(255, 255, 255, .58) !important;
    font-size: 17px !important;
}

.about-list {
    margin-top: 38px;
}

.about-list > div {
    display: grid;
    padding: 19px 0;
    align-items: start;
    border-top: 1px solid var(--line-dark);
    grid-template-columns: 46px 1fr;
}

.about-list > div > span {
    color: var(--lime);
    font-size: 9px;
    font-weight: 750;
}

.about-list p {
    margin: 0;
    color: rgba(255, 255, 255, .42);
    font-size: 11px;
    line-height: 1.55;
}

.about-list strong {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
}

.beta-note {
    display: grid;
    margin-top: 110px;
    padding: 34px 0;
    align-items: center;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    grid-template-columns: .55fr 1fr .8fr;
    gap: 50px;
}

.beta-note__label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--lime);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.beta-note__label span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}

.beta-note > p {
    margin: 0;
    color: rgba(255, 255, 255, .52);
    font-size: 12px;
    line-height: 1.65;
}

.beta-note__steps {
    display: flex;
    justify-content: flex-end;
    gap: 7px;
}

.beta-note__steps span {
    padding: 8px 10px;
    color: rgba(255, 255, 255, .38);
    border: 1px solid var(--line-dark);
    border-radius: 999px;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.beta-note__steps .is-ready {
    color: var(--ink);
    border-color: var(--lime);
    background: var(--lime);
}

.site-footer {
    display: flex;
    min-height: 110px;
    padding: 0 max(32px, calc((100vw - 1240px) / 2));
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    background: var(--ink);
}

.brand--footer {
    font-size: 15px;
}

.brand--footer .brand__mark {
    width: 29px;
    height: 29px;
}

.site-footer > p {
    color: rgba(255, 255, 255, .34);
    font-size: 10px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.footer-top {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .52);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.footer-top span {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    color: var(--ink);
    border-radius: 50%;
    background: var(--lime);
}

@keyframes ribbon-scroll {
    to {
        transform: translateX(-50%);
    }
}

@keyframes radar-turn {
    to {
        transform: rotate(360deg);
    }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    :root {
        --page: min(100% - 48px, 1000px);
    }

    .site-nav {
        gap: 18px;
        margin-right: 20px;
    }

    .hero {
        min-height: auto;
        padding-top: 150px;
        padding-bottom: 100px;
        grid-template-columns: 1fr 440px;
        gap: 26px;
    }

    .hero h1 {
        font-size: clamp(54px, 7vw, 74px);
    }

    .hero-card {
        width: 370px;
    }

    .floating-card--top {
        right: -1%;
    }

    .floating-card--bottom {
        left: 0;
    }

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

    .signal-room__layout {
        gap: 45px;
    }

    .radar-stage {
        width: min(500px, 49vw);
    }

    .forecast-layout {
        gap: 60px;
    }

    .result-card__main {
        min-height: 280px;
    }

    .result-card__weather {
        width: 90px;
        height: 90px;
    }

    .about-grid {
        gap: 70px;
    }

    .beta-note {
        grid-template-columns: .45fr 1fr;
    }

    .beta-note__steps {
        grid-column: 2;
        justify-content: flex-start;
    }
}

@media (max-width: 820px) {
    :root {
        --page: calc(100% - 38px);
    }

    .site-header {
        left: 19px;
        min-height: 76px;
        transform: none;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1;
        display: flex;
        margin: 0;
        padding: 110px 24px 40px;
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
        background: var(--ink);
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s ease;
    }

    .site-nav a {
        font-size: 28px;
        font-weight: 580;
        letter-spacing: -.04em;
    }

    .menu-open .site-nav {
        opacity: 1;
        pointer-events: auto;
    }

    .site-header > .brand,
    .site-header > .header-actions {
        position: relative;
        z-index: 2;
    }

    .menu-button {
        z-index: 2;
        display: block;
    }

    .menu-open .menu-button span:first-child {
        transform: translateY(3px) rotate(45deg);
    }

    .menu-open .menu-button span:last-child {
        transform: translateY(-3px) rotate(-45deg);
    }

    .hero {
        padding: 128px 19px 86px;
        grid-template-columns: 1fr;
        gap: 72px;
    }

    .hero__content {
        max-width: 680px;
    }

    .hero__visual {
        min-height: 600px;
    }

    .hero-card {
        width: min(460px, 88vw);
        transform: none !important;
    }

    .floating-card--top {
        right: 6%;
    }

    .floating-card--bottom {
        left: 5%;
    }

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

    .metric {
        padding: 20px;
        border-bottom: 1px solid var(--line-light);
    }

    .metric:nth-child(odd) {
        padding-left: 0;
        border-left: 0;
    }

    .metric:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .section {
        padding: 96px 19px;
    }

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

    .section-heading > p {
        max-width: 580px;
    }

    .signal-room__layout {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .signal-room__copy {
        max-width: 620px;
    }

    .radar-stage {
        width: min(620px, 88vw);
        margin: 0 auto;
    }

    .signal-room__footer {
        margin-top: 70px;
        flex-wrap: wrap;
    }

    .model-lab__panel {
        grid-template-columns: 1fr;
    }

    .model-detail {
        min-height: 440px;
        border-top: 1px solid var(--line-dark);
        border-left: 0;
    }

    .forecast-layout,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .forecast-copy {
        max-width: 630px;
    }

    .result-card {
        width: min(100%, 650px);
        margin: 0 auto;
    }

    .beta-note {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .beta-note__steps {
        grid-column: auto;
    }
}

@media (max-width: 560px) {
    .brand {
        font-size: 16px;
    }

    .brand__mark {
        width: 30px;
        height: 30px;
    }

    .beta-badge {
        padding: 7px 9px;
        font-size: 9px;
    }

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

    .hero h1 {
        font-size: clamp(48px, 14vw, 66px);
    }

    .hero__lead {
        font-size: 15px;
    }

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

    .button {
        width: 100%;
    }

    .hero__status {
        margin-top: 38px;
    }

    .hero__visual {
        min-height: 520px;
    }

    .hero-card {
        width: 100%;
        padding: 24px;
    }

    .hero-card__temperature span {
        font-size: 76px;
    }

    .floating-card {
        display: none;
    }

    .orbit--one {
        width: 500px;
        height: 500px;
    }

    .orbit--two {
        width: 400px;
        height: 400px;
    }

    .metrics {
        padding: 24px 0;
    }

    .metric {
        min-height: 100px;
        padding: 16px !important;
    }

    .metric__number {
        font-size: 25px;
    }

    .metric__label {
        font-size: 8px;
        line-height: 1.45;
    }

    .data-ribbon {
        height: 60px;
    }

    .data-ribbon__group {
        gap: 18px;
        padding-right: 18px;
    }

    .data-ribbon span {
        font-size: 17px;
    }

    .section-heading h2,
    .forecast-copy h2,
    .about__headline h2,
    .signal-room__copy h2 {
        font-size: 47px;
    }

    .signal-readout {
        padding: 22px;
    }

    .radar-stage {
        width: 352px;
        max-width: 100%;
    }

    .radar-center {
        width: 108px;
        height: 108px;
    }

    .radar-center strong {
        font-size: 36px;
    }

    .radar-center span,
    .radar-center small {
        font-size: 6px;
    }

    .signal-node {
        min-width: auto;
        padding: 9px 10px;
        gap: 6px;
        border-radius: 11px;
    }

    .signal-node span {
        display: none;
    }

    .signal-node strong {
        font-size: 7px;
    }

    .signal-node--range {
        right: -1%;
    }

    .signal-node--cos {
        left: -1%;
    }

    .signal-room__footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }

    .signal-room__footer b {
        display: none;
    }

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

    .pipeline-card {
        min-height: 315px;
    }

    .chart-panel {
        padding: 28px 18px 24px;
    }

    .chart-panel__top {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

    .model-chart::before {
        left: 112px;
    }

    .model-row {
        grid-template-columns: 112px 1fr 42px;
    }

    .model-row__name {
        font-size: 9px;
    }

    .chart-axis {
        margin-left: 112px;
        margin-right: 42px;
    }

    .model-detail {
        min-height: 450px;
        padding: 28px 22px;
    }

    .forecast-facts > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .forecast-facts dd {
        text-align: left;
    }

    .result-card {
        min-height: 500px;
        padding: 26px 22px;
    }

    .result-card__main {
        min-height: 270px;
        justify-content: flex-end;
    }

    .result-card__weather {
        position: absolute;
        top: 30px;
        left: 0;
        width: 70px;
        height: 70px;
    }

    .result-card__weather svg {
        width: 52px;
        height: 52px;
    }

    .result-card__temp strong {
        font-size: 25vw;
    }

    .result-card__footer {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .site-footer {
        padding: 34px 19px;
        align-items: flex-start;
        flex-direction: column;
        gap: 26px;
    }
}

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

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