:root {
    --bg: #f7fbff;
    --bg-2: #ffffff;
    --panel: rgba(255, 255, 255, 0.92);
    --panel-strong: #ffffff;
    --ink: #0b1726;
    --muted: #526778;
    --line: rgba(11, 23, 38, 0.14);
    --cyan: #007d98;
    --mint: #008c71;
    --pink: #e7357b;
    --yellow: #a96500;
    --orange: #ff7d3b;
    --shadow: 0 18px 50px rgba(19, 48, 76, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        linear-gradient(rgba(0, 125, 152, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 140, 113, 0.07) 1px, transparent 1px),
        linear-gradient(180deg, var(--bg) 0%, #eef8fb 48%, var(--bg-2) 100%);
    background-size: 92px 92px, 92px 92px, auto;
    color: var(--ink);
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.55;
}

img,
video,
iframe {
    max-width: 100%;
}

a {
    color: var(--cyan);
    text-decoration: none;
}

a:hover,
a:focus-visible {
    color: var(--pink);
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -80px;
    z-index: 30;
    padding: 10px 14px;
    background: #ffd75a;
    color: var(--ink);
    border-radius: 6px;
    font-weight: 800;
}

.skip-link:focus {
    top: 16px;
}

.hero {
    position: relative;
    min-height: 78vh;
    overflow: hidden;
    background-image:
        linear-gradient(90deg, rgba(247, 251, 255, 0.98) 0%, rgba(247, 251, 255, 0.88) 49%, rgba(247, 251, 255, 0.46) 100%),
        url("branding/header_nologo.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--line);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    background: linear-gradient(180deg, transparent, rgba(247, 251, 255, 0.98));
    pointer-events: none;
}

.topbar {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0;
    gap: 20px;
}

.wordmark {
    display: inline-flex;
    align-items: center;
}

.wordmark img {
    display: block;
    width: 138px;
    height: auto;
    filter: brightness(0) saturate(100%);
}

.nav-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.nav-links a {
    padding: 8px 10px;
    color: var(--ink);
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 0.92rem;
    font-weight: 800;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    border-color: var(--line);
    color: var(--cyan);
    background: rgba(0, 125, 152, 0.08);
}

.hero-inner {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    align-items: end;
    gap: 36px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0 76px;
}

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

.hero-logo {
    display: block;
    width: min(420px, 100%);
    margin: 6px 0 14px;
    filter: brightness(0) saturate(100%);
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

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

h1 {
    max-width: 760px;
    margin-bottom: 18px;
    font-size: clamp(2.1rem, 4vw, 4.35rem);
    line-height: 1;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 3.8vw, 3.65rem);
    line-height: 1.02;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 1.12rem;
    line-height: 1.2;
    letter-spacing: 0;
}

.lede {
    max-width: 720px;
    color: #31495d;
    font-size: clamp(1.08rem, 2vw, 1.36rem);
}

.hero-actions,
.compact-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.button,
.copy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
    font: inherit;
    font-size: 0.94rem;
    font-weight: 900;
    cursor: pointer;
}

.button.primary {
    border-color: transparent;
    background: var(--pink);
    color: #fff;
}

.button.ghost {
    background: rgba(247, 251, 255, 0.72);
}

.button.small {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.88rem;
}

.button:hover,
.button:focus-visible,
.copy-button:hover,
.copy-button:focus-visible {
    border-color: var(--cyan);
    background: rgba(0, 125, 152, 0.1);
    color: var(--ink);
}

.button.primary:hover,
.button.primary:focus-visible {
    background: #ff6ba4;
}

.status-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.status-panel dl {
    margin: 0;
}

.status-panel div {
    padding: 15px 18px;
    border-bottom: 1px solid var(--line);
}

.status-panel div:last-child {
    border-bottom: 0;
}

dt {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

dd {
    margin: 4px 0 0;
}

.section {
    padding: 78px 0;
    border-bottom: 1px solid rgba(11, 23, 38, 0.08);
}

.section-heading,
.overview-grid,
.angle-grid,
.video-grid,
.media-grid,
.asset-grid,
.details-grid,
.contact-panel {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.section-heading {
    margin-bottom: 28px;
}

.section-heading p {
    max-width: 720px;
    color: var(--muted);
}

.inline-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.overview-grid {
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.factsheet-panel,
.copy-panel,
.angle-grid article,
.details-grid article,
.contact-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.factsheet-panel,
.copy-panel,
.details-grid article {
    padding: 24px;
}

.fact-list {
    margin: 0 0 22px;
}

.fact-list div {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(11, 23, 38, 0.1);
}

.copy-block + .copy-block {
    margin-top: 28px;
    padding-top: 26px;
    border-top: 1px solid rgba(11, 23, 38, 0.12);
}

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

.copy-button {
    min-height: 34px;
    padding: 6px 10px;
    color: #fff;
    background: var(--yellow);
}

.copy-panel p {
    color: #31495d;
}

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

.angle-grid article {
    padding: 22px;
}

.angle-grid p {
    margin-bottom: 0;
    color: var(--muted);
}

.video-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
    gap: 18px;
    align-items: start;
}

.video-frame,
.local-video,
.video-note {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel-strong);
    box-shadow: var(--shadow);
}

.trailer-grid {
    grid-template-columns: minmax(0, 1fr) 310px;
}

.video-note {
    padding: 22px;
}

.video-note p {
    color: var(--muted);
}

.video-frame iframe,
.local-video video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.local-video p {
    margin: 0;
    padding: 12px 14px;
    color: var(--muted);
    font-size: 0.9rem;
}

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

.media-card,
.asset-card {
    display: block;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel-strong);
    box-shadow: 0 10px 34px rgba(19, 48, 76, 0.12);
}

.media-card img,
.asset-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #eef8fb;
    transition: transform 160ms ease;
}

.asset-card:not(.wide) img {
    object-fit: contain;
}

.media-card span,
.asset-card span {
    display: block;
    padding: 12px 14px;
    color: var(--ink);
    font-weight: 900;
}

.media-card:hover img,
.asset-card:hover img,
.media-card:focus-visible img,
.asset-card:focus-visible img {
    transform: scale(1.025);
}

.details {
    background: rgba(255, 255, 255, 0.54);
}

.details-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
}

.feature-list {
    margin: 0;
    padding-left: 20px;
}

.feature-list li {
    margin-bottom: 10px;
}

.requirements h3,
.note h3 {
    margin: 18px 0 8px;
    color: var(--cyan);
}

.requirements p,
.note p {
    color: var(--muted);
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
    gap: 24px;
    align-items: start;
    padding: 24px;
}

.contact-panel p {
    max-width: 690px;
    color: var(--muted);
}

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

.contact-links .button {
    grid-column: 1 / -1;
}

.contact-links a:not(.button) {
    display: block;
    padding: 10px 12px;
    border: 1px solid rgba(11, 23, 38, 0.12);
    border-radius: 6px;
    background: rgba(247, 251, 255, 0.74);
    color: var(--ink);
    font-weight: 800;
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 32px 0 48px;
    color: var(--muted);
}

.footer p {
    margin: 0;
}

@media (max-width: 980px) {
    .hero {
        min-height: auto;
    }

    .hero-inner,
    .overview-grid,
    .video-grid,
    .details-grid,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .status-panel {
        max-width: 520px;
    }

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

    .inline-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 680px) {
    .topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-links {
        justify-content: flex-start;
    }

    .hero-inner {
        padding: 48px 0 64px;
    }

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

    .contact-links {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 54px 0;
    }

    .fact-list div {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .angle-grid,
    .media-grid,
    .asset-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        flex-direction: column;
    }
}
