:root {
    --hv2-navy-950: #07131f;
    --hv2-navy-900: #0a1825;
    --hv2-graphite-900: #141a1f;
    --hv2-graphite-800: #20282f;
    --hv2-steel-600: #64717b;
    --hv2-steel-300: #c8cdd0;
    --hv2-mineral-100: #f2f0ea;
    --hv2-mineral-50: #f8f7f3;
    --hv2-white: #fff;
    --hv2-gold-500: #bd9148;
    --hv2-gold-300: #dbc28f;
    --hv2-ink: #15202a;
    --hv2-line-dark: rgb(255 255 255 / 14%);
    --hv2-line-light: rgb(21 32 42 / 16%);
    --hv2-shadow: 0 30px 80px rgb(4 12 18 / 18%);
    --hv2-shell: 1320px;
    --hv2-gutter: clamp(20px, 4vw, 72px);
    --hv2-section: clamp(76px, 9vw, 148px);
    --hv2-ease: cubic-bezier(.22, 1, .36, 1);
}

html {
    scroll-behavior: smooth;
}

body.homepage-v2 {
    margin: 0;
    overflow-x: hidden;
    background: var(--hv2-mineral-50);
    color: var(--hv2-ink);
    font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

.homepage-v2 img {
    display: block;
    max-width: 100%;
}

.homepage-v2 a {
    text-underline-offset: .2em;
}

.homepage-v2 :focus-visible {
    outline: 3px solid var(--hv2-gold-300);
    outline-offset: 4px;
}

.hv2-skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    transform: translateY(-160%);
    border-radius: 2px;
    background: var(--hv2-white);
    color: var(--hv2-navy-950);
    font-weight: 700;
    transition: transform 180ms ease;
}

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

.hv2-shell {
    width: min(100%, calc(var(--hv2-shell) + (var(--hv2-gutter) * 2)));
    margin-inline: auto;
    padding-inline: var(--hv2-gutter);
}

.hv2-section {
    padding-block: var(--hv2-section);
}

.hv2-eyebrow {
    margin: 0 0 20px;
    color: var(--hv2-gold-500);
    font-size: .76rem;
    font-weight: 750;
    letter-spacing: .17em;
    line-height: 1.3;
    text-transform: uppercase;
}

.hv2-main h1,
.hv2-main h2,
.hv2-main h3,
.hv2-main p {
    font-family: inherit;
}

.hv2-main h1,
.hv2-main h2 {
    margin: 0;
    font-weight: 620;
    letter-spacing: -.04em;
    line-height: .99;
}

.hv2-main h2 {
    max-width: 800px;
    font-size: clamp(2rem, 4vw, 4.25rem);
}

.hv2-main p {
    margin: 0;
}

.hv2-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: .84rem;
    font-weight: 750;
    letter-spacing: .055em;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        color 220ms ease,
        background-color 220ms ease,
        border-color 220ms ease,
        transform 220ms var(--hv2-ease);
}

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

.hv2-button--gold {
    background: var(--hv2-gold-500);
    color: var(--hv2-navy-950);
}

.hv2-button--gold:hover {
    background: #cca35f;
}

.hv2-button--ghost {
    border-color: rgb(255 255 255 / 55%);
    background: rgb(4 12 18 / 18%);
    color: var(--hv2-white);
}

.hv2-button--ghost:hover {
    border-color: var(--hv2-white);
    background: rgb(255 255 255 / 8%);
}

.hv2-text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    color: var(--hv2-ink);
    font-size: .83rem;
    font-weight: 750;
    letter-spacing: .06em;
    text-decoration: none;
    text-transform: uppercase;
}

.hv2-text-link span {
    transition: transform 220ms var(--hv2-ease);
}

.hv2-text-link:hover span {
    transform: translateX(4px);
}

/* Header */
.hv2-header {
    position: absolute;
    z-index: 100;
    inset: 0 0 auto;
    border-bottom: 1px solid var(--hv2-line-dark);
    color: var(--hv2-white);
    transition:
        background-color 280ms ease,
        border-color 280ms ease,
        box-shadow 280ms ease;
}

.hv2-header.is-scrolled {
    position: fixed;
    border-color: rgb(255 255 255 / 10%);
    background: rgb(7 19 31 / 94%);
    box-shadow: 0 10px 30px rgb(0 0 0 / 16%);
    backdrop-filter: blur(14px);
}

.hv2-header__inner {
    display: flex;
    width: min(100%, calc(var(--hv2-shell) + (var(--hv2-gutter) * 2)));
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-inline: auto;
    padding-inline: var(--hv2-gutter);
}

.hv2-brand {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
}

.hv2-brand img {
    width: 96px;
    height: auto;
    filter: brightness(0) invert(1);
}

.hv2-navigation {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.2vw, 38px);
}

.hv2-navigation a {
    position: relative;
    color: rgb(255 255 255 / 80%);
    font-size: .78rem;
    font-weight: 650;
    letter-spacing: .055em;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms ease;
}

.hv2-navigation a:not(.hv2-navigation__private)::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    transform: scaleX(0);
    transform-origin: right;
    background: var(--hv2-gold-300);
    content: "";
    transition: transform 240ms var(--hv2-ease);
}

.hv2-navigation a:hover {
    color: var(--hv2-white);
}

.hv2-navigation a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hv2-navigation__private {
    padding: 11px 15px;
    border: 1px solid rgb(255 255 255 / 36%);
}

.hv2-navigation__private:hover {
    border-color: var(--hv2-white);
}

.hv2-menu-toggle {
    display: none;
}

/* Hero */
.hv2-hero {
    position: relative;
    display: grid;
    min-height: min(920px, 100svh);
    overflow: hidden;
    align-items: end;
    isolation: isolate;
    background: var(--hv2-navy-950);
    color: var(--hv2-white);
}

.hv2-hero__media,
.hv2-hero__shade {
    position: absolute;
    z-index: -2;
    inset: 0;
}

.hv2-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 54% center;
    animation: hv2-hero-settle 1400ms var(--hv2-ease) both;
}

.hv2-hero__shade {
    z-index: -1;
    background:
        linear-gradient(90deg, rgb(5 14 23 / 94%) 0%, rgb(5 14 23 / 76%) 43%, rgb(5 14 23 / 24%) 74%),
        linear-gradient(0deg, rgb(5 14 23 / 72%) 0%, transparent 40%),
        linear-gradient(180deg, rgb(5 14 23 / 30%) 0%, transparent 28%);
}

.hv2-hero__content {
    width: 100%;
    padding-top: 180px;
    padding-bottom: clamp(150px, 19vh, 220px);
}

.hv2-hero h1 {
    max-width: 940px;
    font-size: clamp(2.65rem, 6vw, 6.4rem);
}

.hv2-hero__lead {
    max-width: 700px;
    margin-top: 30px !important;
    color: rgb(255 255 255 / 78%);
    font-size: clamp(1.05rem, 1.45vw, 1.32rem);
    line-height: 1.7;
}

.hv2-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 38px;
}

.hv2-hero__principles {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--hv2-line-dark);
}

.hv2-hero__principles span {
    padding-block: 26px;
    color: rgb(255 255 255 / 78%);
    font-size: .77rem;
    font-weight: 650;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.hv2-hero__principles span + span {
    padding-left: clamp(18px, 3vw, 44px);
    border-left: 1px solid var(--hv2-line-dark);
}

/* Facts */
.hv2-facts {
    padding-block: clamp(70px, 8vw, 118px);
    background: var(--hv2-graphite-900);
    color: var(--hv2-white);
}

.hv2-section-label {
    display: grid;
    grid-template-columns: minmax(170px, .45fr) 1fr;
    gap: 36px;
    align-items: start;
    padding-bottom: 52px;
    border-bottom: 1px solid var(--hv2-line-dark);
}

.hv2-section-label .hv2-eyebrow {
    margin: 8px 0 0;
}

.hv2-section-label h2 {
    max-width: 750px;
    font-size: clamp(1.8rem, 3.3vw, 3.35rem);
}

.hv2-facts__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hv2-fact {
    min-width: 0;
    padding: 46px clamp(16px, 2.5vw, 36px) 30px 0;
}

.hv2-fact + .hv2-fact {
    padding-left: clamp(16px, 2.5vw, 36px);
    border-left: 1px solid var(--hv2-line-dark);
}

.hv2-fact strong {
    display: block;
    color: var(--hv2-mineral-100);
    font-size: clamp(2rem, 3.3vw, 3.65rem);
    font-weight: 520;
    letter-spacing: -.045em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.hv2-fact span {
    display: block;
    max-width: 180px;
    margin-top: 14px;
    color: rgb(255 255 255 / 60%);
    font-size: .78rem;
    letter-spacing: .035em;
    line-height: 1.55;
    text-transform: uppercase;
}

.hv2-facts__note {
    padding-top: 24px;
    border-top: 1px solid var(--hv2-line-dark);
    color: rgb(255 255 255 / 46%);
    font-size: .76rem;
}

/* Product */
.hv2-product {
    background: var(--hv2-mineral-100);
}

.hv2-product__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    gap: clamp(48px, 8vw, 128px);
    align-items: center;
}

.hv2-product__visual {
    position: relative;
    min-width: 0;
}

.hv2-product__frame {
    position: relative;
    min-height: clamp(300px, 38vw, 560px);
    overflow: hidden;
    background:
        linear-gradient(145deg, #d9d7d0, #f8f7f3 55%, #cbc9c3);
    box-shadow: var(--hv2-shadow);
}

.hv2-product__frame::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 49.8%, rgb(21 32 42 / 9%) 50%, transparent 50.2%),
        linear-gradient(0deg, transparent 49.8%, rgb(21 32 42 / 9%) 50%, transparent 50.2%);
    background-size: 80px 80px;
    content: "";
}

.hv2-product__frame img {
    position: absolute;
    z-index: 1;
    right: 3%;
    bottom: 13%;
    left: 3%;
    width: 94%;
    filter: drop-shadow(0 28px 18px rgb(17 28 36 / 20%));
    transition: transform 700ms var(--hv2-ease);
}

.hv2-product__frame:hover img {
    transform: scale(1.015);
}

.hv2-technical-mark {
    position: absolute;
    z-index: 2;
    right: 18px;
    bottom: 16px;
    padding-left: 28px;
    color: var(--hv2-steel-600);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hv2-technical-mark::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 18px;
    height: 1px;
    background: var(--hv2-gold-500);
    content: "";
}

.hv2-product__copy h2 {
    font-size: clamp(2.15rem, 3.8vw, 4rem);
}

.hv2-product__copy > p:not(.hv2-eyebrow) {
    max-width: 540px;
    margin-top: 28px;
    color: var(--hv2-steel-600);
    font-size: 1.08rem;
}

/* Market requirement */
.hv2-requirement {
    background: var(--hv2-navy-950);
    color: var(--hv2-white);
}

.hv2-requirement__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .68fr);
    gap: clamp(60px, 10vw, 170px);
    align-items: end;
}

.hv2-requirement__intro h2 {
    max-width: 780px;
}

.hv2-requirement__copy {
    padding-left: 30px;
    border-left: 1px solid var(--hv2-gold-500);
}

.hv2-requirement__copy p {
    color: rgb(255 255 255 / 67%);
    font-size: 1.06rem;
}

.hv2-requirement__copy p + p {
    margin-top: 24px;
    color: var(--hv2-white);
}

/* Why */
.hv2-why {
    background: var(--hv2-mineral-50);
}

.hv2-why > .hv2-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
    gap: 0;
    align-items: center;
}

.hv2-why__media {
    height: clamp(560px, 62vw, 780px);
    overflow: hidden;
    background: var(--hv2-graphite-800);
}

.hv2-why__media picture,
.hv2-why__media img {
    width: 100%;
    height: 100%;
}

.hv2-why__media img {
    transform: translateY(var(--hv2-parallax-y, 0)) scale(1.025);
    object-fit: cover;
}

.hv2-why__panel {
    position: relative;
    z-index: 2;
    margin-left: clamp(-80px, -5vw, -40px);
    padding: clamp(40px, 6vw, 88px);
    background: var(--hv2-white);
    box-shadow: var(--hv2-shadow);
}

.hv2-why__panel > p:not(.hv2-eyebrow) {
    max-width: 570px;
    margin-top: 26px;
    color: var(--hv2-steel-600);
}

.hv2-principle-list {
    margin: 42px 0 0;
    padding: 0;
    list-style: none;
}

.hv2-principle-list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 18px;
    padding: 22px 0;
    border-top: 1px solid var(--hv2-line-light);
}

.hv2-principle-list li > span {
    grid-row: 1 / span 2;
    color: var(--hv2-gold-500);
    font-size: .72rem;
    font-weight: 750;
    letter-spacing: .08em;
}

.hv2-principle-list strong {
    font-size: 1rem;
    line-height: 1.3;
}

.hv2-principle-list p {
    margin-top: 6px;
    color: var(--hv2-steel-600);
    font-size: .9rem;
    line-height: 1.55;
}

/* Process */
.hv2-process {
    overflow: hidden;
    background: var(--hv2-graphite-900);
    color: var(--hv2-white);
}

.hv2-process__heading {
    display: grid;
    grid-template-columns: .42fr 1fr .7fr;
    gap: 36px;
    align-items: end;
}

.hv2-process__heading .hv2-eyebrow {
    align-self: start;
    margin-top: 8px;
}

.hv2-process__heading p:last-child {
    max-width: 380px;
    padding-left: 28px;
    border-left: 1px solid var(--hv2-line-dark);
    color: rgb(255 255 255 / 58%);
}

.hv2-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin: clamp(64px, 8vw, 110px) 0 0;
    padding: 0;
    list-style: none;
}

.hv2-timeline::before {
    position: absolute;
    top: 16px;
    right: 0;
    left: 0;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--hv2-gold-500), rgb(255 255 255 / 16%));
    content: "";
    transition: transform 1200ms var(--hv2-ease) 180ms;
}

.hv2-timeline:has(.is-visible)::before {
    transform: scaleX(1);
}

.hv2-timeline li {
    position: relative;
    padding: 0 clamp(18px, 2.4vw, 36px) 0 0;
}

.hv2-timeline li::before {
    display: block;
    width: 9px;
    height: 9px;
    margin: 12px 0 38px;
    border: 2px solid var(--hv2-graphite-900);
    border-radius: 50%;
    background: var(--hv2-gold-500);
    box-shadow: 0 0 0 1px var(--hv2-gold-500);
    content: "";
}

.hv2-timeline li > span {
    color: var(--hv2-gold-300);
    font-size: .7rem;
    font-weight: 750;
    letter-spacing: .08em;
}

.hv2-timeline strong {
    display: block;
    margin-top: 9px;
    font-size: 1.05rem;
}

.hv2-timeline p {
    max-width: 190px;
    margin-top: 12px;
    color: rgb(255 255 255 / 52%);
    font-size: .88rem;
    line-height: 1.55;
}

/* Operation */
.hv2-operation {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
    padding: 0;
    background: var(--hv2-mineral-100);
}

.hv2-operation__media {
    min-height: 760px;
    overflow: hidden;
    background: var(--hv2-graphite-800);
}

.hv2-operation__media picture,
.hv2-operation__media img {
    width: 100%;
    height: 100%;
}

.hv2-operation__media img {
    transform: translateY(var(--hv2-parallax-y, 0)) scale(1.025);
    object-fit: cover;
}

.hv2-operation__content {
    display: flex;
    max-width: 670px;
    flex-direction: column;
    justify-content: center;
    padding: var(--hv2-section) var(--hv2-gutter);
}

.hv2-operation__content > div:first-child > p:not(.hv2-eyebrow) {
    max-width: 540px;
    margin-top: 28px;
    color: var(--hv2-steel-600);
}

.hv2-operation__points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 26px;
    margin-top: 48px;
    border-top: 1px solid var(--hv2-line-light);
}

.hv2-operation__points span {
    padding: 20px 0;
    border-bottom: 1px solid var(--hv2-line-light);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .045em;
    line-height: 1.5;
    text-transform: uppercase;
}

/* Coverage */
.hv2-coverage {
    background: var(--hv2-white);
}

.hv2-coverage__grid {
    display: grid;
    grid-template-columns: minmax(320px, .7fr) minmax(460px, 1.3fr);
    gap: clamp(60px, 10vw, 160px);
    align-items: center;
}

.hv2-coverage__copy > p:not(.hv2-eyebrow) {
    max-width: 570px;
    margin-top: 28px;
    color: var(--hv2-steel-600);
    font-size: 1.04rem;
}

.hv2-coverage__copy .hv2-small {
    padding-top: 22px;
    border-top: 1px solid var(--hv2-line-light);
    font-size: .82rem !important;
}

.hv2-coverage__graphic {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--hv2-line-light);
    background: var(--hv2-mineral-50);
}

.hv2-coverage__map-figure {
    margin: 0;
    background: var(--hv2-mineral-50);
}

.hv2-coverage__map-image {
    display: block;
    width: 100%;
    height: auto;
    min-height: 440px;
    object-fit: cover;
}

.hv2-coverage__map-link {
    position: absolute;
    right: 16px;
    bottom: 16px;
    padding: 10px 13px;
    background: rgb(21 32 42 / 91%);
    color: var(--hv2-white);
    font-size: .7rem;
    font-weight: 750;
    letter-spacing: .035em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .18s ease, transform .18s ease;
}

.hv2-coverage__map-link:hover,
.hv2-coverage__map-link:focus-visible {
    background: var(--hv2-gold-500);
    color: var(--hv2-ink);
    transform: translateY(-2px);
}

.hv2-coverage__map-note {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin: 0 !important;
    padding: 16px 28px 24px;
    color: var(--hv2-steel-600);
    font-size: .72rem;
    letter-spacing: .025em;
    line-height: 1.55;
}

.hv2-coverage__map-legend {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.hv2-coverage__map-legend-dot,
.hv2-coverage__map-legend-ring {
    display: inline-block;
    flex: 0 0 auto;
    border-radius: 50%;
}

.hv2-coverage__map-legend-dot {
    width: 8px;
    height: 8px;
    background: var(--hv2-gold-500);
}

.hv2-coverage__map-legend-ring {
    width: 12px;
    height: 12px;
    border: 1.5px solid var(--hv2-gold-500);
}

.hv2-coverage__map-legend-ring--400 {
    border-style: dashed;
}


.hv2-contact h2 {
    color: var(--hv2-white);
}

.hv2-contact .hv2-eyebrow {
    color: var(--hv2-gold-300);
}

.hv2-contact__content > p:not(.hv2-eyebrow) {
    color: rgb(255 255 255 / 76%);
}

.hv2-contact .hv2-button {
    letter-spacing: .045em;
    text-transform: uppercase;
}

/* Contact */
.hv2-contact {
    position: relative;
    display: grid;
    min-height: clamp(570px, 68vw, 820px);
    overflow: hidden;
    place-items: center;
    isolation: isolate;
    background: var(--hv2-navy-950);
    color: var(--hv2-white);
}

.hv2-contact__media,
.hv2-contact__shade {
    position: absolute;
    z-index: -2;
    inset: 0;
}

.hv2-contact__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hv2-contact__shade {
    z-index: -1;
    background: linear-gradient(90deg, rgb(5 14 23 / 94%), rgb(5 14 23 / 68%) 62%, rgb(5 14 23 / 38%));
}

.hv2-contact__content {
    width: 100%;
}

.hv2-contact h2 {
    max-width: 940px;
    font-size: clamp(2.35rem, 5vw, 5.35rem);
}

.hv2-contact__content > p:not(.hv2-eyebrow) {
    max-width: 610px;
    margin: 28px 0 36px;
    color: rgb(255 255 255 / 72%);
    font-size: 1.08rem;
}

/* Existing shared footer, restyled only on V2 */
.homepage-v2 .public-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: end;
    margin: 0;
    padding: 58px var(--hv2-gutter);
    border: 0;
    background: #050d15;
    color: rgb(255 255 255 / 65%);
}

.homepage-v2 .public-footer > div {
    max-width: 560px;
}

.homepage-v2 .public-footer strong {
    color: var(--hv2-white);
    font-size: 1.15rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.homepage-v2 .public-footer p {
    margin: 12px 0 0;
    font-size: .9rem;
}

.homepage-v2 .public-footer > a {
    color: rgb(255 255 255 / 66%);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* Progressive reveals */
.js .hv2-reveal {
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 600ms var(--hv2-ease),
        transform 600ms var(--hv2-ease);
}

.js .hv2-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hv2-facts__grid .hv2-reveal:nth-child(2),
.hv2-timeline .hv2-reveal:nth-child(2) {
    transition-delay: 70ms;
}

.hv2-facts__grid .hv2-reveal:nth-child(3),
.hv2-timeline .hv2-reveal:nth-child(3) {
    transition-delay: 140ms;
}

.hv2-facts__grid .hv2-reveal:nth-child(4),
.hv2-timeline .hv2-reveal:nth-child(4) {
    transition-delay: 210ms;
}

.hv2-timeline .hv2-reveal:nth-child(5) {
    transition-delay: 280ms;
}

@keyframes hv2-hero-settle {
    from {
        opacity: .72;
        transform: scale(1.02);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 1100px) {
    .hv2-navigation {
        gap: 19px;
    }

    .hv2-navigation a {
        font-size: .71rem;
    }

    .hv2-product__grid,
    .hv2-requirement__grid,
    .hv2-coverage__grid {
        gap: 54px;
    }

    .hv2-process__heading {
        grid-template-columns: .35fr 1fr;
    }

    .hv2-process__heading p:last-child {
        grid-column: 2;
    }

    .hv2-operation {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 860px) {
    .hv2-header__inner {
        min-height: 72px;
    }

    .js .hv2-menu-toggle {
        position: relative;
        z-index: 2;
        display: inline-flex;
        min-width: 48px;
        min-height: 48px;
        align-items: center;
        gap: 12px;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--hv2-white);
        cursor: pointer;
        font: inherit;
    }

    .hv2-menu-toggle__label {
        font-size: .7rem;
        font-weight: 750;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .hv2-menu-toggle__icon {
        position: relative;
        display: block;
        width: 23px;
        height: 14px;
    }

    .hv2-menu-toggle__icon i {
        position: absolute;
        right: 0;
        display: block;
        width: 23px;
        height: 1px;
        background: currentColor;
        transition: transform 220ms var(--hv2-ease);
    }

    .hv2-menu-toggle__icon i:first-child {
        top: 3px;
    }

    .hv2-menu-toggle__icon i:last-child {
        bottom: 3px;
        width: 16px;
    }

    .hv2-menu-toggle[aria-expanded="true"] i:first-child {
        top: 7px;
        transform: rotate(45deg);
    }

    .hv2-menu-toggle[aria-expanded="true"] i:last-child {
        bottom: 6px;
        width: 23px;
        transform: rotate(-45deg);
    }

    .hv2-navigation {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 10px 16px;
    }

    .js .hv2-navigation {
        position: fixed;
        inset: 0;
        display: flex;
        visibility: hidden;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 0;
        padding: 110px var(--hv2-gutter) 50px;
        transform: translateY(-10px);
        background: var(--hv2-navy-950);
        opacity: 0;
        pointer-events: none;
        transition:
            opacity 240ms ease,
            transform 300ms var(--hv2-ease),
            visibility 240ms;
    }

    .hv2-menu-open {
        overflow: hidden;
    }

    .js.hv2-menu-open .hv2-navigation {
        visibility: visible;
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .js .hv2-navigation a {
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid var(--hv2-line-dark);
        font-size: clamp(1rem, 4vw, 1.45rem);
        letter-spacing: .02em;
        text-transform: none;
    }

    .js .hv2-navigation a::after {
        display: none;
    }

    .js .hv2-navigation__private {
        width: auto !important;
        margin-top: 25px;
        padding: 13px 17px !important;
        border: 1px solid rgb(255 255 255 / 36%) !important;
        font-size: .76rem !important;
        letter-spacing: .06em !important;
        text-transform: uppercase !important;
    }

    .hv2-facts__grid {
        grid-template-columns: 1fr 1fr;
    }

    .hv2-fact:nth-child(3) {
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid var(--hv2-line-dark);
    }

    .hv2-fact:nth-child(4) {
        border-top: 1px solid var(--hv2-line-dark);
    }

    .hv2-product__grid,
    .hv2-requirement__grid,
    .hv2-coverage__grid {
        grid-template-columns: 1fr;
    }

    .hv2-product__copy {
        max-width: 680px;
    }

    .hv2-requirement__copy {
        max-width: 650px;
    }

    .hv2-why > .hv2-shell {
        grid-template-columns: 1fr;
    }

    .hv2-why__media {
        height: min(700px, 88vw);
    }

    .hv2-why__panel {
        margin: -90px clamp(18px, 5vw, 60px) 0;
    }

    .hv2-process__heading {
        grid-template-columns: 1fr;
    }

    .hv2-process__heading p:last-child {
        grid-column: auto;
    }

    .hv2-timeline {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 58px;
        padding-left: 26px;
    }

    .hv2-timeline::before {
        top: 8px;
        bottom: 8px;
        left: 4px;
        width: 1px;
        height: auto;
        transform: scaleY(0);
        transform-origin: top;
    }

    .hv2-timeline:has(.is-visible)::before {
        transform: scaleY(1);
    }

    .hv2-timeline li {
        padding: 0 0 38px 28px;
    }

    .hv2-timeline li::before {
        position: absolute;
        top: 4px;
        left: -26px;
        margin: 0;
    }

    .hv2-timeline p {
        max-width: 520px;
    }

    .hv2-operation {
        grid-template-columns: 1fr;
    }

    .hv2-operation__media {
        min-height: min(700px, 88vw);
    }

    .hv2-operation__content {
        max-width: none;
    }
}

@media (max-width: 560px) {
    :root {
        --hv2-gutter: 20px;
        --hv2-section: 76px;
    }

    .hv2-brand img {
        width: 82px;
    }

    .hv2-hero {
        min-height: max(720px, 100svh);
    }

    .hv2-hero__shade {
        background:
            linear-gradient(90deg, rgb(5 14 23 / 90%), rgb(5 14 23 / 44%)),
            linear-gradient(0deg, rgb(5 14 23 / 90%), transparent 65%);
    }

    .hv2-hero__content {
        padding-top: 130px;
        padding-bottom: 190px;
    }

    .hv2-hero h1 {
        font-size: clamp(2.6rem, 13vw, 4.1rem);
    }

    .hv2-hero__lead {
        font-size: 1rem;
        line-height: 1.6;
    }

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

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

    .hv2-hero__principles {
        grid-template-columns: 1fr;
        padding-block: 12px;
    }

    .hv2-hero__principles span {
        padding: 5px 0;
        font-size: .64rem;
    }

    .hv2-hero__principles span + span {
        padding-left: 0;
        border-left: 0;
    }

    .hv2-section-label {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-bottom: 36px;
    }

    .hv2-section-label .hv2-eyebrow {
        margin: 0;
    }

    .hv2-fact {
        padding: 30px 14px 26px 0;
    }

    .hv2-fact + .hv2-fact {
        padding-left: 14px;
    }

    .hv2-fact:nth-child(3) {
        padding-left: 0;
    }

    .hv2-fact strong {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
    }

    .hv2-fact span {
        font-size: .68rem;
    }

    .hv2-product__frame {
        min-height: 260px;
    }

    .hv2-requirement__copy {
        padding-left: 20px;
    }

    .hv2-why__media {
        height: 110vw;
        min-height: 380px;
    }

    .hv2-why__panel {
        margin: -48px 10px 0;
        padding: 38px 24px;
    }

    .hv2-principle-list li {
        grid-template-columns: 30px 1fr;
        column-gap: 10px;
    }

    .hv2-operation__media {
        min-height: 110vw;
    }

    .hv2-operation__points {
        grid-template-columns: 1fr;
    }

    .hv2-coverage__graphic {
        min-height: 390px;
    }

    .hv2-coverage__ring--three {
        width: 430px;
        height: 430px;
    }

    .hv2-contact {
        min-height: 650px;
    }

    .homepage-v2 .public-footer {
        grid-template-columns: 1fr;
        align-items: start;
        padding-block: 44px;
    }
}

@media (min-width: 2000px) {
    :root {
        --hv2-shell: 1480px;
    }

    .hv2-hero h1 {
        font-size: 6.7rem;
    }
}

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

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

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

@media (forced-colors: active) {
    .hv2-button,
    .hv2-navigation__private,
    .hv2-coverage__graphic {
        border: 1px solid ButtonText;
    }
}
