:root {
    --color-ink: #151a23;
    --color-muted: #667085;
    --color-line: #e7ebf0;
    --color-soft: #f6f8fb;
    --color-blue: #2D9651;
    --color-blue-dark: #1d6b38;
    --color-gold: #d1a514;
    --color-green: #0b8a6a;
    --color-white: #ffffff;
    --shadow-soft: 0 16px 40px rgba(21, 26, 35, 0.1);
    --container: 1180px;
    --radius: 8px;
    --body-font-size: 16px;
    --hero-title-size: clamp(40px, 7vw, 86px);
    --section-title-size: clamp(30px, 4.5vw, 52px);
    --hero-title-color: #ffffff;
    --hero-text-color: #ffffff;
    --section-title-color: #151a23;
    --font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@keyframes heroZoom {
    from {
        transform: scale(1.04) translate3d(0, 0, 0);
    }

    to {
        transform: scale(1) translate3d(-1.5%, 0, 0);
    }
}

@keyframes heroTextIn {
    from {
        opacity: 0;
        transform: translate3d(0, 28px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes dotFill {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes floatProduct {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -7px, 0);
    }
}

@keyframes strategyDrift {
    from {
        transform: scale(1.04) translate3d(0, 0, 0);
    }

    to {
        transform: scale(1.08) translate3d(-2%, 0, 0);
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:where(#about, #companies, #products, #media, #contact) {
    scroll-margin-top: 96px;
}

body {
    margin: 0;
    background: var(--color-white);
    color: var(--color-ink);
    font-family: var(--font-main);
    font-size: var(--body-font-size);
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

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

button,
input {
    font: inherit;
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.site-main {
    display: flex;
    flex-direction: column;
}

.site-main > section {
    order: var(--section-order, 0);
}

.screen-reader-text,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.skip-link:focus {
    z-index: 20;
    top: 16px;
    left: 16px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    background: var(--color-ink);
    color: var(--color-white);
}

.site-header {
    position: sticky;
    z-index: 12;
    top: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(231, 235, 240, 0.82);
    animation: heroTextIn 520ms ease both;
    transition: box-shadow 160ms ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(21, 26, 35, 0.08);
}

.top-strip {
    background: #0d2036;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
}

.top-strip__inner,
.top-strip__social,
.masthead,
.brand,
.primary-nav__list,
.header-contact {
    display: flex;
    align-items: center;
}

.top-strip__inner {
    min-height: 36px;
    justify-content: space-between;
}

.top-strip__social {
    gap: 12px;
}

.top-strip__social a,
.footer-social a {
    display: inline-grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.social-icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.footer-social .social-icon {
    width: 15px;
    height: 15px;
}

.top-strip__mail {
    color: var(--color-white);
    font-weight: 700;
}

.masthead {
    min-height: 82px;
    gap: 28px;
}

.brand {
    flex: 0 0 auto;
    gap: 12px;
    font-weight: 800;
    color: var(--color-ink);
    letter-spacing: 0;
}

.brand img {
    width: auto;
    max-width: 150px;
    height: 54px;
    object-fit: contain;
}

.primary-nav {
    flex: 1;
}

.primary-nav__list {
    justify-content: center;
    gap: clamp(14px, 2vw, 30px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-nav__list a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    color: #263241;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 160ms ease, transform 160ms ease;
}

.primary-nav__list a:hover,
.primary-nav__list a:focus {
    color: var(--color-blue);
    transform: translateY(-1px);
}

.header-contact {
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    font-size: 12px;
    color: var(--color-muted);
    line-height: 1.35;
}

.header-contact strong {
    color: var(--color-blue-dark);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--color-line);
    border-radius: 6px;
    background: var(--color-white);
}

.menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--color-ink);
}

.hero {
    position: relative;
    min-height: min(760px, calc(100vh - 118px));
    overflow: hidden;
    background: #0a75c7;
}

.hero__slides,
.hero__slide {
    position: absolute;
    inset: 0;
}

.hero__slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 950ms ease, visibility 950ms ease;
}

.hero__slide::before {
    position: absolute;
    inset: -3%;
    z-index: 0;
    content: "";
    background-image: var(--hero-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: scale(1.04);
}

.hero__slide::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    pointer-events: none;
    background: linear-gradient(90deg, rgba(0, 43, 86, 0.08), rgba(0, 71, 130, 0.2) 42%, rgba(0, 92, 170, 0.36));
}

.hero__video {
    position: absolute;
    inset: -3%;
    z-index: 0;
    width: 106%;
    height: 106%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
}

.hero__slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero__slide.is-active::before,
.hero__slide.is-active .hero__video {
    animation: heroZoom 7800ms ease-out both;
}

.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: min(760px, calc(100vh - 118px));
    align-items: center;
    justify-content: flex-end;
    padding-block: 70px;
}

.hero__content--left {
    justify-content: flex-start;
}

.hero__copy {
    width: min(100%, 540px);
    color: var(--hero-text-color);
    text-align: right;
    text-shadow: 0 2px 18px rgba(0, 30, 70, 0.22);
}

.hero__copy > * {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
}

.hero__slide.is-active .hero__copy > * {
    animation: heroTextIn 1120ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__slide.is-active .hero__copy > :nth-child(2) {
    animation-delay: 180ms;
}

.hero__slide.is-active .hero__copy > :nth-child(3) {
    animation-delay: 340ms;
}

.hero__slide.is-active .hero__copy > :nth-child(4) {
    animation-delay: 500ms;
}

.hero__content--left .hero__copy {
    text-align: left;
}

.hero__copy h1 {
    margin: 0 0 8px;
    color: var(--hero-title-color);
    font-size: var(--hero-title-size);
    line-height: 0.92;
    font-weight: 900;
    letter-spacing: 0;
}

.hero__lead {
    margin: 0 0 18px;
    font-size: clamp(15px, 2vw, 22px);
    font-weight: 900;
    text-transform: uppercase;
}

.hero__copy p:not(.hero__lead) {
    margin: 0 0 28px;
    font-size: clamp(14px, 1.4vw, 17px);
    font-weight: 700;
}

.hero__dots {
    position: absolute;
    z-index: 3;
    bottom: 34px;
    left: 50%;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.hero__dots span {
    position: relative;
    overflow: hidden;
    width: 42px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
}

.hero__dots span.is-active {
    background: var(--color-white);
}

.hero__dots span::after {
    position: absolute;
    inset: 0;
    content: "";
    background: rgba(255, 255, 255, 0.92);
    transform: scaleX(0);
    transform-origin: left;
}

.hero__dots span.is-active::after {
    animation: dotFill 7200ms linear forwards;
}

.button,
.newsletter__form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 26px;
    border: 1px solid var(--color-blue);
    border-radius: 999px;
    background: var(--color-blue);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(10, 115, 201, 0.2);
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button--ghost {
    border-color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.button:hover,
.button:focus,
.newsletter__form button:hover,
.newsletter__form button:focus {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(10, 115, 201, 0.24);
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 52px, 0);
    transition: opacity 1150ms cubic-bezier(0.16, 1, 0.3, 1), transform 1150ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.reveal--fade-down {
    transform: translate3d(0, -52px, 0);
}

.reveal--fade-left {
    transform: translate3d(-52px, 0, 0);
}

.reveal--fade-right {
    transform: translate3d(52px, 0, 0);
}

.reveal--zoom {
    transform: scale(0.94);
}

.reveal--none {
    opacity: 1;
    transform: none;
}

.stats-section,
.products-section,
.achievements-section,
.wings-section,
.content-section {
    padding: clamp(72px, 9vw, 118px) 0;
}

.stats-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.stats-section::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(100% - 32px, var(--container));
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(10, 115, 201, 0.22), transparent);
    transform: translateX(-50%);
}

.companies-section,
.wings-section,
.directors-section,
.news-section {
    padding: clamp(72px, 9vw, 112px) 0;
    background: var(--color-soft);
}

.wings-section {
    background: var(--color-white);
}

.section-kicker,
.eyebrow {
    display: block;
    color: var(--color-gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.section-heading {
    width: min(100%, 720px);
    margin-bottom: 34px;
}

.section-heading--about {
    width: min(100%, 760px);
    margin-inline: auto;
    margin-bottom: clamp(34px, 5vw, 58px);
    text-align: center;
}

.section-heading--about .section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.section-heading--about .section-kicker::before,
.section-heading--about .section-kicker::after {
    display: block;
    width: 34px;
    height: 2px;
    content: "";
    background: var(--color-gold);
}

.section-heading--about h2 {
    margin-top: 0;
}

.section-heading--about p {
    width: min(100%, 640px);
    margin-inline: auto;
    font-size: 17px;
}

.section-heading--split {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 420px);
    gap: 32px;
    align-items: end;
}

.section-heading h2,
.newsletter h2,
.footer-main h2 {
    margin: 8px 0 0;
    font-size: var(--section-title-size);
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: 0;
}

.section-heading h2 {
    color: var(--section-title-color);
}

.section-heading p,
.section-heading--split p {
    margin: 10px 0 0;
    color: var(--color-muted);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: clamp(48px, 7vw, 82px);
}

.stat-card {
    min-height: 170px;
    padding: 28px 20px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: var(--color-white);
    box-shadow: 0 14px 35px rgba(15, 32, 52, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.stat-card:hover {
    border-color: rgba(10, 115, 201, 0.28);
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(15, 32, 52, 0.11);
}

.stat-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    object-fit: contain;
}

.stat-card strong {
    display: block;
    color: var(--color-blue-dark);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1;
    font-weight: 900;
}

.stat-card span {
    color: var(--color-muted);
    font-size: 14px;
    font-weight: 700;
}

.about-panel {
    display: grid;
    grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(32px, 6vw, 76px);
    align-items: center;
}

.about-panel__image {
    position: relative;
}

.about-panel__image > img:first-child {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.founder-badge {
    position: absolute;
    right: -28px;
    bottom: 34px;
    width: min(244px, 58%);
    border-radius: 6px;
    box-shadow: 0 18px 42px rgba(21, 26, 35, 0.18);
    transition: transform 220ms ease;
}

.about-panel__image:hover .founder-badge {
    transform: translate3d(-6px, -6px, 0);
}

.about-panel__copy h3 {
    margin: 0 0 18px;
    font-size: clamp(28px, 3.5vw, 46px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: 0;
}

.about-panel__copy p {
    margin: 0 0 18px;
    color: #4d5968;
}

.logo-rail {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    padding: 4px 0 0;
}

.logo-card,
.product-card,
.director-card,
.news-card {
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: var(--color-white);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.logo-card {
    display: grid;
    min-height: 164px;
    place-items: center;
    padding: 22px;
    text-align: center;
}

.logo-card:hover,
.director-card:hover,
.news-card:hover {
    border-color: rgba(10, 115, 201, 0.24);
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(21, 26, 35, 0.1);
}

.logo-card img {
    max-width: 126px;
    height: 72px;
    object-fit: contain;
}

.logo-card h3,
.product-card h3 {
    margin: 18px 0 0;
    color: #263241;
    font-size: 15px;
    font-weight: 800;
}

.strategy-section {
    position: relative;
    overflow: hidden;
    padding: clamp(80px, 10vw, 132px) 0;
    background: #102034;
    color: var(--color-white);
}

.strategy-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(16, 32, 52, 0.94), rgba(16, 32, 52, 0.7)), var(--strategy-image, url("../images/site.png"));
    background-position: center right;
    background-size: cover;
    opacity: 0.92;
    animation: strategyDrift 16s ease-in-out infinite alternate;
}

.strategy-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: center;
}

.strategy-grid h2 {
    margin: 8px 0 0;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 0.98;
    letter-spacing: 0;
}

.strategy-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(16px, 1.6vw, 20px);
}

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

.product-card {
    display: grid;
    min-height: 210px;
    place-items: center;
    padding: 22px 14px;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(21, 26, 35, 0.1);
}

.product-card img {
    width: 130px;
    height: 126px;
    object-fit: contain;
}

.product-card:hover img {
    animation: floatProduct 950ms ease-in-out infinite;
}

.text-link {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    color: var(--color-blue-dark);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.text-link::after {
    content: "";
    width: 36px;
    height: 2px;
    margin-left: 12px;
    background: var(--color-gold);
}

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

.director-card {
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(21, 26, 35, 0.06);
}

.director-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: #dfe6ee;
}

.director-card div {
    padding: 18px;
}

.director-card h3,
.news-card h3 {
    margin: 0 0 4px;
    color: var(--color-ink);
    font-size: 18px;
    line-height: 1.25;
}

.director-card p {
    margin: 0 0 4px;
    color: var(--color-blue-dark);
    font-size: 14px;
    font-weight: 800;
}

.director-card span,
.news-card p {
    color: var(--color-muted);
    font-size: 13px;
}

.achievement-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) repeat(2, minmax(0, 0.92fr));
    gap: 18px;
    align-items: stretch;
}

.achievement-stack {
    display: grid;
    gap: 18px;
}

.achievement-stack--primary {
    min-height: 520px;
}

.achievement-card {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.achievement-card img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
}

.achievement-stack--primary .achievement-card img {
    min-height: 520px;
}

.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: flex-end;
    justify-self: end;
}

.section-actions .text-link {
    justify-self: auto;
}

.section-actions p {
    margin: 0;
    color: var(--color-muted);
}

.end-note {
    align-self: center;
    padding: 9px 14px;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

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

.video-card {
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: var(--color-white);
    box-shadow: 0 12px 30px rgba(21, 26, 35, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.video-card:hover {
    border-color: rgba(45, 150, 81, 0.28);
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(21, 26, 35, 0.12);
}

.video-card__media {
    position: relative;
    overflow: hidden;
    background: #111827;
}

.video-card__media img,
.video-card__media video,
.video-card__media iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.video-card__media iframe {
    border: 0;
}

.video-card__play {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -50%);
}

.video-card__play::after {
    position: absolute;
    top: 50%;
    left: 53%;
    width: 0;
    height: 0;
    content: "";
    border-block: 10px solid transparent;
    border-left: 16px solid var(--color-blue);
    transform: translate(-50%, -50%);
}

.video-card__body {
    padding: 18px;
}

.video-card__body h3 {
    margin: 0 0 6px;
    color: var(--color-ink);
    font-size: 19px;
    line-height: 1.25;
}

.video-card__body p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
}

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

.news-card {
    overflow: hidden;
}

.news-card img {
    width: 100%;
    aspect-ratio: 1.34 / 1;
    object-fit: cover;
    transition: transform 260ms ease;
}

.news-card:hover img {
    transform: scale(1.04);
}

.news-card div {
    padding: 18px;
}

.newsletter {
    padding: 52px 0;
    background: var(--color-blue);
    color: var(--color-white);
}

.newsletter .eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.newsletter h2 {
    max-width: 680px;
    font-size: clamp(24px, 3vw, 38px);
}

.newsletter__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 28px;
    align-items: center;
}

.newsletter__form {
    display: flex;
    gap: 10px;
    padding: 6px;
    border-radius: 999px;
    background: var(--color-white);
}

.newsletter__form input {
    min-width: 0;
    flex: 1;
    border: 0;
    padding: 0 16px;
    outline: 0;
}

.newsletter__form button {
    min-height: 42px;
    border-color: var(--color-gold);
    background: var(--color-gold);
    box-shadow: none;
}

.footer-main {
    padding: 62px 0;
    background: #101820;
    color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr 0.8fr;
    gap: 42px;
}

.footer-logo {
    width: min(180px, 100%);
    height: auto;
    margin-bottom: 16px;
    transition: transform 220ms ease;
}

.footer-logo:hover {
    transform: rotate(-3deg) scale(1.04);
}

.footer-main h2,
.footer-main h3 {
    color: var(--color-white);
}

.footer-main h2 {
    font-size: 30px;
}

.footer-main h3 {
    margin: 0 0 14px;
    font-size: 18px;
}

.footer-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-list a:hover {
    color: var(--color-white);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-mark img {
    margin-left: auto;
}

.copyright {
    padding: 18px 0;
    background: #0b1118;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

.content-layout {
    width: min(100% - 32px, 860px);
}

.post-card,
.entry-content {
    padding: clamp(28px, 5vw, 56px);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.entry-content h1,
.post-card h1 {
    margin-top: 0;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.08;
}

@media (max-width: 1100px) {
    .header-contact {
        display: none;
    }

    .product-grid,
    .logo-rail,
    .video-gallery,
    .director-grid,
    .news-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .top-strip {
        display: none;
    }

    .masthead {
        min-height: 72px;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
    }

    .primary-nav {
        position: absolute;
        top: 72px;
        right: 16px;
        left: 16px;
        display: none;
        padding: 12px;
        border: 1px solid var(--color-line);
        border-radius: var(--radius);
        background: var(--color-white);
        box-shadow: var(--shadow-soft);
    }

    .primary-nav.is-open {
        display: block;
        animation: heroTextIn 220ms ease both;
    }

    .primary-nav__list {
        display: grid;
        gap: 0;
    }

    .primary-nav__list a {
        width: 100%;
        min-height: 46px;
        border-bottom: 1px solid var(--color-line);
    }

    .primary-nav__list li:last-child a {
        border-bottom: 0;
    }

    .hero,
    .hero__content {
        min-height: 620px;
    }

    .hero__slide::before {
        background-position: 62% center;
    }

    .hero__video {
        object-position: 62% center;
    }

    .hero__content,
    .hero__content--left {
        justify-content: center;
        align-items: flex-end;
        padding-bottom: 92px;
    }

    .hero__copy,
    .hero__content--left .hero__copy {
        text-align: center;
    }

    .hero__copy p:not(.hero__lead) {
        font-weight: 600;
    }

    .section-heading--split,
    .about-panel,
    .strategy-grid,
    .newsletter__inner,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stat-grid,
    .logo-rail,
    .video-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .achievement-stack--primary,
    .achievement-stack--primary .achievement-card img {
        min-height: 360px;
    }

    .founder-badge {
        right: 16px;
        bottom: 20px;
    }

    .text-link,
    .end-note,
    .section-actions {
        justify-self: start;
        justify-content: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .hero,
    .hero__content {
        min-height: 560px;
    }

    .hero__copy h1 {
        font-size: 44px;
    }

    .hero__copy p:not(.hero__lead) {
        font-size: 14px;
    }

    .stat-grid,
    .logo-rail,
    .product-grid,
    .director-grid,
    .achievement-grid,
    .video-gallery,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .achievement-card img,
    .achievement-stack--primary,
    .achievement-stack--primary .achievement-card img {
        min-height: 240px;
    }

    .product-card {
        min-height: 190px;
    }

    .newsletter__form {
        display: grid;
        border-radius: var(--radius);
    }

    .newsletter__form input {
        min-height: 44px;
    }

    .newsletter__form button {
        width: 100%;
    }
}
