.home-page {
    overflow-x: hidden;
    background:
        radial-gradient(circle at 88% 8%, rgba(53, 196, 221, 0.1), transparent 30rem),
        linear-gradient(180deg, #eef4f8 0, #f7f9fb 55rem, #edf3f7 100%);
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 8px 12px;
    border-radius: 7px;
    background: white;
    color: var(--ink-900);
    font-weight: 750;
    text-decoration: none;
    transform: translateY(-160%);
}

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

.home-top-actions,
.home-nav {
    display: flex;
    align-items: center;
}

.home-top-actions {
    gap: 24px;
}

.home-nav {
    gap: 4px;
}

.home-nav a {
    padding: 8px 11px;
    border-radius: 8px;
    color: #96aaba;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: background 150ms ease, color 150ms ease;
}

.home-nav a:hover,
.home-nav a:focus-visible,
.home-nav a.active {
    background: rgba(255, 255, 255, 0.075);
    color: white;
}

.home-page main {
    width: min(1480px, 100%);
    margin: 0 auto;
    padding: 28px 32px 0;
}

.home-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
    align-items: center;
    gap: clamp(42px, 6vw, 94px);
    min-height: 670px;
    padding: clamp(42px, 6vw, 86px) clamp(28px, 5vw, 74px);
    overflow: hidden;
    border: 1px solid #142c3e;
    border-radius: 24px;
    background:
        radial-gradient(circle at 14% 18%, rgba(53, 196, 221, 0.12), transparent 22rem),
        linear-gradient(135deg, #07131f 0%, #0a1b2a 55%, #0a2231 100%);
    box-shadow: 0 28px 70px rgba(7, 24, 38, 0.2);
    color: white;
}

.home-hero::before,
.home-hero::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.home-hero::before {
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(90deg, black, transparent 57%);
}

.home-hero::after {
    right: -120px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(53, 196, 221, 0.08);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(53, 196, 221, 0.025), 0 0 0 140px rgba(53, 196, 221, 0.018);
}

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

.home-hero .eyebrow {
    margin-bottom: 20px;
    color: #54d5e6;
}

.hero-copy h1 {
    max-width: 720px;
    color: #f4f8fa;
    font-size: clamp(3.2rem, 6vw, 6rem);
    font-weight: 720;
    letter-spacing: -0.064em;
    line-height: 0.94;
}

.hero-copy h1 span {
    color: #91a9ba;
    font-weight: 560;
}

.hero-summary {
    max-width: 610px;
    margin-top: 28px;
    color: #9eb0be;
    font-size: clamp(0.98rem, 1.35vw, 1.13rem);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.primary-action,
.secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.025em;
    text-decoration: none;
    transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.primary-action {
    gap: 12px;
    padding: 0 20px;
    background: #35c4dd;
    box-shadow: 0 12px 28px rgba(53, 196, 221, 0.2);
    color: #06131e;
}

.primary-action svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.primary-action:hover,
.primary-action:focus-visible {
    background: #68d7e8;
    box-shadow: 0 14px 32px rgba(53, 196, 221, 0.3);
    transform: translateY(-2px);
}

.secondary-action {
    padding: 0 14px;
    color: #b5c4cf;
}

.secondary-action:hover,
.secondary-action:focus-visible {
    color: white;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 560px;
    margin-top: 54px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-metrics div {
    padding: 20px 18px 0 0;
}

.hero-metrics div + div {
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-metrics dt {
    color: #758d9e;
    font-size: 0.64rem;
    font-weight: 750;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.hero-metrics dd {
    margin-top: 5px;
    color: #eaf3f6;
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 600;
}

.observation-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(5, 15, 24, 0.72);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.observation-header,
.observation-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.observation-header {
    min-height: 76px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.observation-header span,
.observation-header strong {
    display: block;
}

.observation-header > div > span {
    color: #6e8799;
    font-size: 0.62rem;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.observation-header > div > strong {
    margin-top: 3px;
    color: #dce8ed;
    font-size: 0.83rem;
    letter-spacing: 0.02em;
}

.data-state {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    padding: 5px 8px;
    border: 1px solid rgba(47, 188, 135, 0.22);
    border-radius: 999px;
    background: rgba(47, 188, 135, 0.08);
    color: #68d7a9;
    font-size: 0.59rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.data-state i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.data-state.unavailable {
    border-color: rgba(233, 154, 63, 0.25);
    background: rgba(233, 154, 63, 0.08);
    color: #ebb06a;
}

.storm-visual {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.storm-visual svg {
    display: block;
    width: 100%;
    height: 100%;
}

.map-grid path {
    fill: none;
    stroke: rgba(162, 201, 218, 0.08);
    stroke-width: 1;
}

.range-rings circle,
.range-rings path {
    fill: none;
    stroke: rgba(93, 208, 227, 0.15);
    stroke-dasharray: 3 5;
    stroke-width: 1;
}

.storm-bands path {
    opacity: 0.86;
    stroke-width: 9;
}

.storm-bands path:nth-child(2) {
    opacity: 0.55;
    stroke-width: 7;
}

.storm-bands path:nth-child(3),
.storm-bands path:nth-child(4) {
    opacity: 0.7;
    stroke-width: 5;
}

.storm-eye {
    fill: #dff9fc;
    stroke: #35c4dd;
    stroke-width: 4;
}

.track-line path {
    fill: none;
    stroke: rgba(245, 250, 252, 0.42);
    stroke-dasharray: 4 7;
    stroke-width: 1.5;
}

.track-line circle {
    fill: #0b2939;
    stroke: #87dce8;
    stroke-width: 1.5;
}

.map-labels {
    fill: #7894a6;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.08em;
}

.map-labels text:last-child {
    fill: #99dfe8;
}

.scan-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(94, 221, 236, 0.65), transparent);
    box-shadow: 0 0 16px rgba(94, 221, 236, 0.38);
    animation: scan 7s linear infinite;
}

.observation-footer {
    gap: 12px;
    min-height: 62px;
    padding: 13px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #758b9b;
    font-family: var(--font-mono);
    font-size: 0.61rem;
    letter-spacing: 0.04em;
}

.observation-footer > span {
    position: relative;
    padding-left: 9px;
}

.observation-footer > span::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #35c4dd;
    content: "";
    transform: translateY(-50%);
}

.observation-footer small {
    margin-left: auto;
    color: #577083;
    text-align: right;
}

.observation-footer strong {
    display: block;
    max-width: 160px;
    overflow: hidden;
    color: #a9bac5;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.capabilities-section {
    padding: 94px 16px 76px;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.58fr);
    align-items: end;
    gap: 48px;
    margin-bottom: 34px;
}

.section-heading h2 {
    max-width: 730px;
    color: var(--ink-900);
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.section-heading p {
    padding-bottom: 5px;
    color: var(--slate-600);
    font-size: 0.94rem;
    line-height: 1.7;
}

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

.capability-card {
    position: relative;
    min-height: 310px;
    padding: 26px;
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-sm);
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.capability-card:hover {
    border-color: #bfd8e2;
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.capability-featured {
    background:
        radial-gradient(circle at 100% 0, rgba(53, 196, 221, 0.11), transparent 16rem),
        white;
}

.capability-featured-space {
    background: radial-gradient(circle at 100% 0, rgba(245, 182, 77, 0.12), transparent 16rem), white;
}

.capability-icon {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 54px;
    place-items: center;
    border: 1px solid #c9e7ed;
    border-radius: 11px;
    background: #eaf8fa;
    color: var(--primary);
}

.capability-icon svg {
    width: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.card-index {
    color: var(--slate-500);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 650;
    letter-spacing: 0.08em;
}

.capability-card h3 {
    max-width: 390px;
    margin-top: 10px;
    color: var(--ink-900);
    font-size: 1.18rem;
    letter-spacing: -0.018em;
}

.capability-card p {
    max-width: 510px;
    margin-top: 12px;
    color: var(--slate-600);
    font-size: 0.83rem;
    line-height: 1.7;
}

.capability-card > a {
    display: inline-flex;
    gap: 8px;
    margin-top: 24px;
    color: var(--primary-dark);
    font-size: 0.77rem;
    font-weight: 800;
    text-decoration: none;
}

.capability-card > a:hover,
.capability-card > a:focus-visible {
    color: var(--primary);
}

.workspace-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
    margin: 0 16px;
    padding: 40px 44px;
    border: 1px solid #173349;
    border-radius: 18px;
    background: #0a1a29;
    box-shadow: 0 16px 42px rgba(8, 28, 46, 0.15);
    color: white;
}

.workspace-callout .eyebrow {
    color: #51ccdf;
}

.workspace-callout h2 {
    color: #f1f6f8;
    font-size: clamp(1.55rem, 3vw, 2.4rem);
    letter-spacing: -0.035em;
}

.workspace-callout p {
    margin-top: 8px;
    color: #91a6b5;
}

.light-action {
    flex: 0 0 auto;
}

.home-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(1480px, 100%);
    margin: 0 auto;
    padding: 34px 48px 42px;
    color: var(--slate-500);
    font-size: 0.67rem;
    letter-spacing: 0.015em;
}

.related-site {
    font-size: 0.64rem;
    white-space: nowrap;
}

.related-site a {
    color: var(--slate-600);
    font-weight: 750;
    text-underline-offset: 3px;
}

.related-site a:hover,
.related-site a:focus-visible {
    color: var(--primary-dark);
}

@keyframes scan {
    from { left: 0; }
    to { left: 100%; }
}

@media (max-width: 1120px) {
    .home-hero {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .hero-copy {
        max-width: 800px;
    }

    .observation-card {
        width: min(720px, 100%);
        justify-self: center;
    }

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

@media (max-width: 820px) {
    .home-top-actions {
        gap: 12px;
    }

    .home-page main {
        padding: 14px 14px 0;
    }

    .home-hero {
        min-height: 0;
        padding: 56px 28px 30px;
        border-radius: 18px;
    }

    .hero-copy h1 {
        font-size: clamp(3rem, 12vw, 5rem);
    }

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

    .capabilities-section {
        padding: 72px 4px 58px;
    }

    .workspace-callout {
        align-items: flex-start;
        flex-direction: column;
        margin: 0;
        padding: 30px;
    }

    .home-footer {
        align-items: flex-start;
        flex-direction: column;
        padding: 28px 18px 36px;
    }
}

@media (max-width: 620px) {
    .home-nav a:first-child,
    .home-nav a:nth-child(3) {
        display: none;
    }

    .home-nav a {
        padding-right: 4px;
        padding-left: 4px;
    }

    .home-hero {
        gap: 40px;
        padding: 44px 20px 20px;
    }

    .home-hero .eyebrow {
        margin-bottom: 15px;
    }

    .hero-copy h1 {
        letter-spacing: -0.055em;
    }

    .hero-summary {
        margin-top: 22px;
        font-size: 0.92rem;
    }

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

    .secondary-action {
        min-height: 42px;
    }

    .hero-metrics {
        margin-top: 38px;
    }

    .hero-metrics div {
        padding-right: 8px;
    }

    .hero-metrics div + div {
        padding-left: 10px;
    }

    .hero-metrics dt {
        font-size: 0.54rem;
    }

    .hero-metrics dd {
        font-size: 1.06rem;
    }

    .observation-header {
        min-height: 68px;
        padding: 13px;
    }

    .observation-header > div > strong {
        font-size: 0.75rem;
    }

    .storm-visual {
        aspect-ratio: 1 / 0.86;
    }

    .observation-footer {
        flex-wrap: wrap;
        min-height: 76px;
        padding: 11px 13px;
    }

    .observation-footer small {
        width: 100%;
        margin-left: 0;
        text-align: left;
    }

    .observation-footer strong {
        max-width: 100%;
    }

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


    .capability-card {
        min-height: 280px;
    }

    .capability-icon {
        margin-bottom: 38px;
    }

    .workspace-callout {
        padding: 26px 22px;
    }

    .workspace-callout .primary-action {
        width: 100%;
    }

    .related-site {
        white-space: normal;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scan-line {
        display: none;
    }
}
