:root {
    --ink-950: #191b1d;
    --ink-900: #25282a;
    --ink-800: #34383b;
    --ink-700: #474b4d;
    --ink-600: #5f6465;
    --ember-700: #bb3f28;
    --ember-600: #d95538;
    --ember-500: #e66d47;
    --ember-400: #f08a55;
    --amber-300: #f2b36d;
    --cream-100: #f8f3eb;
    --cream-50: #fcf9f4;
    --paper: #fffefa;
    --sand-200: #e6ddd1;
    --sand-100: #f0e8de;
    --white: #ffffff;
    --success: #267654;
    --error: #a62d2d;
    --focus: #ffd37e;
    --container: 1240px;
    --container-narrow: 820px;
    --radius-sm: 0.7rem;
    --radius-md: 1.15rem;
    --radius-lg: 1.8rem;
    --radius-xl: 2.5rem;
    --shadow-sm: 0 10px 30px rgba(25, 27, 29, 0.08);
    --shadow-md: 0 20px 55px rgba(25, 27, 29, 0.13);
    --shadow-warm: 0 24px 70px rgba(217, 85, 56, 0.18);
    --header-offset: 8.4rem;
    --transition: 180ms ease;
}

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

html {
    scroll-behavior: smooth;
    color-scheme: light;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink-900);
    background: var(--cream-50);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

img,
svg,
picture {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

a {
    color: inherit;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
dl,
figure,
blockquote {
    margin-top: 0;
}

figure {
    margin: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--ink-950);
    font-weight: 690;
    hyphens: auto;
    line-height: 1.12;
    letter-spacing: -0.025em;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

h1 {
    font-size: clamp(2.2rem, 4.1vw, 4.1rem);
}

h2 {
    font-size: clamp(2rem, 3.8vw, 3.65rem);
}

h3 {
    font-size: clamp(1.28rem, 2vw, 1.75rem);
}

p,
li {
    text-wrap: pretty;
}

strong {
    font-weight: 700;
}

address {
    font-style: normal;
}

[id] {
    scroll-margin-top: var(--header-offset);
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin-inline: auto;
}

.container--narrow {
    width: min(calc(100% - 2rem), var(--container-narrow));
    margin-inline: auto;
}

.home-hero__grid > *,
.page-hero__grid > *,
.split-layout > *,
.product-section__grid > *,
.contact-layout > *,
.global-cta__inner > *,
.footer-grid > *,
.product-grid > *,
.feature-grid > *,
.step-grid > *,
.model-list > * {
    min-width: 0;
}

.section {
    padding-block: clamp(2.4rem, 4.5vw, 4.25rem);
}

.section--compact {
    padding-block: clamp(1.75rem, 3.5vw, 3rem);
}

.section--paper {
    background: var(--paper);
}

.section--cream {
    background: var(--cream-100);
}

.section--dark {
    color: rgba(255, 255, 255, 0.78);
    background:
        radial-gradient(circle at 86% 12%, rgba(240, 138, 85, 0.17), transparent 30rem),
        var(--ink-950);
}

.section--dark h2,
.section--dark h3,
.section--dark strong {
    color: var(--white);
}

.eyebrow {
    display: inline-flex;
    max-width: 100%;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1rem;
    color: var(--ember-700);
    font-size: 0.78rem;
    font-weight: 760;
    letter-spacing: 0.15em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 1.9rem;
    height: 2px;
    background: currentColor;
    content: "";
}

.eyebrow--light {
    color: var(--amber-300);
}

.section-heading {
    max-width: 790px;
    margin-bottom: clamp(2.5rem, 5vw, 4.3rem);
}

.section-heading h2 {
    margin-bottom: 1.25rem;
}

.section-heading p {
    max-width: 690px;
    margin-bottom: 0;
    color: var(--ink-600);
    font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.section--dark .section-heading p {
    color: rgba(255, 255, 255, 0.68);
}

.skip-link {
    position: fixed;
    top: 0.7rem;
    left: 0.7rem;
    z-index: 2000;
    padding: 0.8rem 1rem;
    color: var(--ink-950);
    background: var(--focus);
    border-radius: 0.6rem;
    font-weight: 700;
    transform: translateY(-160%);
    transition: transform var(--transition);
}

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

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 4px;
}

.button {
    display: inline-flex;
    max-width: 100%;
    min-height: 3.25rem;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.83rem 1.28rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.98rem;
    font-weight: 720;
    line-height: 1.2;
    overflow-wrap: anywhere;
    text-align: center;
    text-decoration: none;
    white-space: normal;
    transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.button span[aria-hidden="true"] {
    flex: 0 0 auto;
    font-size: 1.2em;
    transition: transform var(--transition);
}

.button:hover span[aria-hidden="true"] {
    transform: translateX(0.2rem);
}

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

.button--primary {
    color: var(--white);
    background: linear-gradient(115deg, var(--ember-700), var(--ember-400));
    border: 0;
    box-shadow: 0 12px 30px rgba(187, 63, 40, 0.25);
}

.button--primary:hover {
    box-shadow: 0 16px 34px rgba(187, 63, 40, 0.34);
}

.button--secondary {
    color: var(--ink-900);
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(37, 40, 42, 0.25);
}

.button--secondary:hover {
    background: var(--white);
    border-color: var(--ink-900);
}

.button--light {
    color: var(--ink-950);
    background: var(--cream-100);
    border: 0;
}

.button--light:hover {
    background: var(--white);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.text-link {
    display: inline-flex;
    max-width: 100%;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    color: var(--ember-700);
    font-weight: 720;
    overflow-wrap: anywhere;
    text-decoration: underline;
}

.text-link--light {
    color: var(--white);
}

/* Header and navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    color: var(--white);
    background: rgba(25, 27, 29, 0.98);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.topbar {
    display: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #151719;
}

.topbar__inner {
    min-height: 2.35rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.78rem;
}

.topbar p {
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
}

.topbar__contact {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.topbar a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.topbar a:hover {
    color: var(--amber-300);
}

.main-header__inner {
    display: flex;
    min-height: 4.7rem;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
}

.brand img {
    width: clamp(12rem, 20vw, 16.5rem);
}

.nav-toggle {
    display: inline-flex;
    min-width: 3rem;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.65rem 0.85rem;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    cursor: pointer;
}

.nav-toggle__label {
    font-size: 0.9rem;
    font-weight: 650;
}

.nav-toggle__icon {
    display: grid;
    width: 1.25rem;
    gap: 0.25rem;
}

.nav-toggle__icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 99px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
    position: fixed;
    inset: 4.7rem 0 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 1.4rem 1rem 6rem;
    overflow-y: auto;
    background: var(--ink-950);
}

.js .site-nav {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-0.75rem);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.js .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.site-nav__list {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav__list > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.site-nav__list > li > a,
.nav-dropdown__trigger > a {
    display: flex;
    min-height: 3.5rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    font-weight: 650;
    text-decoration: none;
}

.site-nav a[aria-current="page"],
.nav-dropdown.is-active > .nav-dropdown__trigger > a {
    color: var(--amber-300);
}

.nav-dropdown__trigger {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
}

.nav-dropdown__trigger button {
    display: inline-grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    padding: 0;
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.nav-dropdown__trigger svg {
    width: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    transition: transform var(--transition);
}

.nav-dropdown__trigger button[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.mega-menu {
    display: grid;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 280ms ease, opacity var(--transition);
}

.mega-menu.is-open {
    max-height: 90rem;
    padding-bottom: 1.2rem;
    opacity: 1;
}

.mega-menu__intro {
    display: none;
}

.mega-menu__links {
    display: grid;
    gap: 1.2rem;
    padding: 0.7rem 0 0.2rem 0.8rem;
}

.mega-menu__group > span {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--ember-400);
    font-size: 0.72rem;
    font-weight: 760;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.mega-menu__group ul {
    display: grid;
    gap: 0.12rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mega-menu__group a {
    display: block;
    padding: 0.45rem 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.94rem;
    line-height: 1.35;
    text-decoration: none;
}

.mega-menu__group a:hover {
    color: var(--white);
}

.button--header {
    width: 100%;
    margin-top: 1.4rem;
    color: var(--white);
    background: linear-gradient(115deg, var(--ember-700), var(--ember-400));
    border: 0;
}

/* Breadcrumbs */
.breadcrumbs {
    position: relative;
    z-index: 2;
    margin-bottom: clamp(2rem, 4vw, 3.4rem);
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
    margin: 0;
    padding: 0;
    color: var(--ink-600);
    font-size: 0.82rem;
    list-style: none;
}

.breadcrumbs li {
    display: inline-flex;
    min-width: 0;
    max-width: 100%;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    overflow-wrap: anywhere;
}

.breadcrumbs a {
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--ember-700);
}

.page-hero--dark .breadcrumbs ol {
    color: rgba(255, 255, 255, 0.58);
}

.page-hero--dark .breadcrumbs a:hover {
    color: var(--amber-300);
}

/* Heroes */
.home-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 82% 26%, rgba(240, 138, 85, 0.18), transparent 28rem),
        linear-gradient(135deg, #1d2022 0%, #292d2f 58%, #202325 100%);
}

.home-hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 62px 62px;
    mask-image: linear-gradient(to right, black, transparent 72%);
    content: "";
}

.home-hero__grid {
    display: grid;
    min-height: min(800px, calc(100vh - 4.7rem));
    align-items: center;
    gap: clamp(3rem, 7vw, 6.5rem);
    padding-block: clamp(4.5rem, 9vw, 8rem);
}

.home-hero__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.home-hero h1 {
    max-width: 780px;
    margin-bottom: 1.45rem;
    color: var(--white);
}

.home-hero h1 em {
    color: var(--ember-400);
    font-style: normal;
}

.home-hero__lead {
    max-width: 640px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.74);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

.home-hero .button--secondary {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.28);
}

.home-hero .button--secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.55);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.2rem;
    margin: 2.2rem 0 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.91rem;
    list-style: none;
}

.hero-proof li {
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
}

.hero-proof li::before {
    width: 0.55rem;
    height: 0.55rem;
    background: var(--ember-400);
    border-radius: 50%;
    box-shadow: 0 0 0 0.28rem rgba(240, 138, 85, 0.12);
    content: "";
}

.home-hero__visual {
    position: relative;
}

.home-hero__visual::before {
    position: absolute;
    inset: 8% 3% -10%;
    z-index: -1;
    background: radial-gradient(ellipse, rgba(240, 138, 85, 0.32), transparent 66%);
    filter: blur(20px);
    content: "";
}

.hero-image-card {
    position: relative;
    overflow: visible;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.hero-image-card::after {
    display: none;
}

.hero-image-card img {
    width: auto;
    max-width: 100%;
    max-height: 34rem;
    min-height: 0;
    margin-inline: auto;
    object-fit: contain;
    background: var(--paper);
    border-radius: var(--radius-xl);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.hero-image-card__badge {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 2rem), 15rem);
    margin: -1.15rem 1rem 0 auto;
    padding: 0.85rem 1rem;
    color: var(--ink-900);
    background: rgba(255, 254, 250, 0.98);
    border: 0;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    font-size: 0.85rem;
    font-weight: 650;
    line-height: 1.35;
}

.page-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block: clamp(3.5rem, 8vw, 7.5rem);
}

.page-hero--dark {
    color: rgba(255, 255, 255, 0.76);
    background:
        radial-gradient(circle at 86% 18%, rgba(240, 138, 85, 0.18), transparent 28rem),
        linear-gradient(135deg, #202325, var(--ink-950));
}

.page-hero--dark::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(110deg, transparent 0 55%, rgba(255, 255, 255, 0.025) 55% 56%, transparent 56%);
    content: "";
}

.page-hero__grid {
    display: grid;
    align-items: center;
    gap: clamp(2.6rem, 6vw, 6rem);
}

.page-hero__content {
    max-width: 760px;
}

.page-hero h1 {
    margin-bottom: 1.35rem;
    font-size: clamp(2.1rem, 3.25vw, 3.35rem);
}

.page-hero--dark h1 {
    color: var(--white);
}

.page-hero__lead {
    max-width: 690px;
    margin-bottom: 1.9rem;
    color: var(--ink-600);
    font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.page-hero--dark .page-hero__lead {
    color: rgba(255, 255, 255, 0.72);
}

.page-hero__media {
    position: relative;
    display: grid;
    place-items: center;
}

.page-hero__media::before {
    position: absolute;
    inset: 10% -4% -12%;
    z-index: -1;
    background: radial-gradient(ellipse, rgba(240, 138, 85, 0.26), transparent 65%);
    filter: blur(18px);
    content: "";
}

.page-hero__media img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 32rem;
    margin-inline: auto;
    object-fit: contain;
    background: var(--paper);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 75px rgba(0, 0, 0, 0.3);
}

.page-hero__abstract {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    background:
        radial-gradient(circle at 62% 32%, rgba(240, 138, 85, 0.38) 0 0.5rem, transparent 0.6rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 75px rgba(0, 0, 0, 0.28);
}

.page-hero__abstract::before,
.page-hero__abstract::after {
    position: absolute;
    content: "";
}

.page-hero__abstract::before {
    top: 38%;
    right: 10%;
    width: 72%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--ember-400), var(--amber-300));
    border-radius: 99px;
    box-shadow: 0 0 24px rgba(240, 138, 85, 0.58), 0 34px 0 rgba(255, 255, 255, 0.12), 0 -34px 0 rgba(255, 255, 255, 0.06);
    transform: rotate(-10deg);
}

.page-hero__abstract::after {
    right: 15%;
    bottom: 14%;
    width: 34%;
    aspect-ratio: 2 / 1;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0 1px, transparent 1px 20%), repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.22) 0 1px, #283033 1px 32%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0.4rem;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
    transform: perspective(500px) rotateX(58deg) rotateZ(-10deg);
}

/* Cards and grids */
.product-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
}

.product-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    background: var(--paper);
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.product-card__visual {
    position: relative;
    display: grid;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    place-items: center;
    padding: 0.65rem;
    background: var(--sand-100);
}

.product-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card:hover .product-card__visual img {
    transform: none;
}

.product-card__visual--abstract {
    background:
        radial-gradient(circle at 70% 30%, rgba(240, 138, 85, 0.45), transparent 7rem),
        linear-gradient(145deg, #2f3436, #1f2224);
}

.product-card__visual--abstract::before {
    position: absolute;
    top: 48%;
    left: 13%;
    width: 74%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--ember-400), var(--amber-300), transparent);
    border-radius: 99px;
    box-shadow: 0 0 22px rgba(240, 138, 85, 0.65), 0 32px 0 rgba(255, 255, 255, 0.08), 0 -32px 0 rgba(255, 255, 255, 0.08);
    content: "";
    transform: rotate(-8deg);
}

.product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: clamp(1.35rem, 3vw, 2rem);
}

.product-card__body h3 {
    margin-bottom: 0.75rem;
}

.product-card__body p {
    margin-bottom: 1.4rem;
    color: var(--ink-600);
}

.product-card__body .text-link {
    margin-top: auto;
}

.card-kicker {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 0.8rem;
    color: var(--ember-700);
    font-size: 0.75rem;
    font-weight: 760;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

.feature-card {
    position: relative;
    padding: clamp(1.5rem, 3vw, 2.2rem);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.75);
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(25, 27, 29, 0.06);
}

.feature-card::before {
    display: block;
    width: 2.5rem;
    height: 0.32rem;
    margin-bottom: 1.4rem;
    background: linear-gradient(90deg, var(--ember-600), var(--ember-400));
    border-radius: 99px;
    content: "";
}

.feature-card h3 {
    margin-bottom: 0.65rem;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--ink-600);
}

.section--dark .feature-card {
    color: var(--ink-900);
    background: rgba(255, 254, 250, 0.94);
}

.section--dark .feature-card h3 {
    color: var(--ink-950);
}

.section--dark .feature-card p {
    color: var(--ink-700);
}

.step-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    counter-reset: steps;
}

.step-card {
    position: relative;
    padding: 1.7rem;
    background: var(--paper);
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(25, 27, 29, 0.06);
    counter-increment: steps;
}

.step-card::before {
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1.25rem;
    place-items: center;
    color: var(--white);
    background: var(--ink-900);
    border-radius: 50%;
    content: counter(steps, decimal-leading-zero);
    font-size: 0.78rem;
    font-weight: 760;
}

.step-card h3 {
    font-size: 1.25rem;
}

.step-card p {
    margin-bottom: 0;
    color: var(--ink-600);
}

/* Content layouts */
.split-layout {
    display: grid;
    align-items: center;
    gap: clamp(2.5rem, 7vw, 6.5rem);
}

.split-layout--top {
    align-items: start;
}

.split-layout__content > :last-child {
    margin-bottom: 0;
}

.split-layout__content h2 {
    margin-bottom: 1.3rem;
}

.split-layout__content p {
    color: var(--ink-700);
}

.section--dark .split-layout__content p {
    color: rgba(255, 255, 255, 0.8);
}

.section--dark .highlight-box {
    color: var(--ink-700);
    background: linear-gradient(135deg, var(--paper), var(--cream-100));
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.section--dark .highlight-box h2,
.section--dark .highlight-box h3,
.section--dark .highlight-box strong {
    color: var(--ink-950);
}

.split-layout__media {
    position: relative;
}

.split-layout__media img {
    width: auto;
    max-width: 100%;
    max-height: 38rem;
    margin-inline: auto;
    object-fit: contain;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.split-layout__media::after {
    position: absolute;
    right: 0;
    bottom: -0.75rem;
    z-index: -1;
    width: 48%;
    height: 45%;
    background: linear-gradient(135deg, var(--ember-600), var(--ember-400));
    border-radius: var(--radius-lg);
    content: "";
}

.prose {
    color: var(--ink-700);
}

.prose > * + * {
    margin-top: 1.15rem;
}

.prose h2,
.prose h3 {
    margin-top: 2.4em;
    margin-bottom: 0.7em;
}

.prose h2:first-child,
.prose h3:first-child {
    margin-top: 0;
}

.prose ul,
.check-list {
    display: grid;
    gap: 0.7rem;
    padding-left: 0;
    list-style: none;
}

.prose ul li,
.check-list li {
    position: relative;
    padding-left: 1.7rem;
}

.prose ul li::before,
.check-list li::before {
    position: absolute;
    top: 0.68em;
    left: 0;
    width: 0.65rem;
    height: 0.65rem;
    background: var(--ember-600);
    border-radius: 50%;
    box-shadow: 0 0 0 0.25rem rgba(217, 85, 56, 0.11);
    content: "";
}

.highlight-box {
    padding: clamp(1.45rem, 3vw, 2.2rem);
    background: linear-gradient(135deg, rgba(240, 138, 85, 0.11), rgba(248, 243, 235, 0.8));
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(25, 27, 29, 0.05);
}

.highlight-box h2,
.highlight-box h3 {
    margin-bottom: 0.75rem;
}

.highlight-box p:last-child,
.highlight-box ul:last-child {
    margin-bottom: 0;
}

.space-before-sm {
    margin-top: 1.25rem;
}

.space-before-md {
    margin-top: 1.5rem;
}

.space-before-lg {
    margin-top: clamp(2rem, 5vw, 4rem);
}

.stat-strip {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    background: var(--paper);
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.stat-strip__item {
    padding: 1.35rem 1.5rem;
    border-bottom: 1px solid rgba(37, 40, 42, 0.1);
}

.stat-strip__item:last-child {
    border-bottom: 0;
}

.stat-strip__item strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--ink-950);
    font-size: 1.05rem;
}

.stat-strip__item span {
    color: var(--ink-600);
    font-size: 0.9rem;
}

.anchor-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.anchor-nav a {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    padding: 0.6rem 0.95rem;
    color: var(--ink-800);
    background: var(--paper);
    border: 1px solid rgba(37, 40, 42, 0.14);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 650;
    text-decoration: none;
}

.anchor-nav a:hover {
    color: var(--ember-700);
    border-color: rgba(217, 85, 56, 0.45);
}

/* Product sections and prices */
.product-section {
    padding-block: clamp(1.9rem, 3.5vw, 3.3rem);
    border-top: 1px solid rgba(37, 40, 42, 0.1);
}

.product-section:first-of-type {
    border-top: 0;
}

.product-section__grid {
    display: grid;
    align-items: start;
    gap: clamp(2rem, 6vw, 5rem);
}

.product-section__header {
    margin-bottom: 1.5rem;
}

.product-section__header h2 {
    margin-bottom: 0.8rem;
}

.product-section__header p {
    max-width: 720px;
    margin-bottom: 0;
    color: var(--ink-600);
    font-size: 1.08rem;
}

.product-section__media img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 36rem;
    margin-inline: auto;
    object-fit: contain;
    background: var(--paper);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.product-section__media figcaption {
    width: 100%;
    margin-top: 0.7rem;
    color: var(--ink-600);
    font-size: 0.82rem;
    text-align: center;
}

.image-gallery {
    display: grid;
    align-content: start;
    gap: 1rem;
}

.image-gallery figure {
    display: grid;
    min-width: 0;
    margin: 0;
    place-items: center;
}

.image-gallery img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 34rem;
    object-fit: contain;
    background: var(--paper);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.image-gallery figcaption {
    width: 100%;
    margin-top: 0.55rem;
    color: var(--ink-600);
    font-size: 0.82rem;
    text-align: center;
}

.image-gallery--compact img {
    max-height: 25rem;
}

.spec-table-wrap {
    width: 100%;
    max-width: 100%;
    margin-block: 1.6rem;
    overflow-x: auto;
    border: 1px solid rgba(37, 40, 42, 0.12);
    border-radius: var(--radius-md);
}

.spec-table {
    width: 100%;
    min-width: 34rem;
    border-collapse: collapse;
    background: var(--paper);
    font-size: 0.93rem;
}

.spec-table th,
.spec-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(37, 40, 42, 0.09);
    text-align: left;
    vertical-align: top;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
    border-bottom: 0;
}

.spec-table th {
    width: 34%;
    color: var(--ink-950);
    background: var(--cream-100);
    font-weight: 690;
}

.price-box {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.4rem 0.75rem;
    margin-block: 1.5rem;
    padding: 1.2rem 1.3rem;
    background: var(--cream-100);
    border: 0;
    border-radius: var(--radius-md);
}

.price-box__label {
    flex-basis: 100%;
    color: var(--ember-700);
    font-size: 0.73rem;
    font-weight: 760;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.price-box strong {
    color: var(--ink-950);
    font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.price-box > span:last-child:not(.price-box__label) {
    color: var(--ink-600);
    font-size: 0.88rem;
}

.price-note {
    padding: 1rem 1.1rem;
    color: var(--ink-600);
    background: rgba(255, 255, 255, 0.62);
    border: 0;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
}

.price-note p:last-child {
    margin-bottom: 0;
}

.hero-actions--center {
    justify-content: center;
}

.product-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
    margin-top: 1.6rem;
}

.model-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-block: 1.5rem;
}

.model-card {
    padding: 1.35rem;
    background: var(--paper);
    border: 0;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(25, 27, 29, 0.055);
}

.model-card h3 {
    margin-bottom: 0.55rem;
    font-size: 1.18rem;
}

.model-card p:last-child {
    margin-bottom: 0;
}

.model-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.8rem;
    color: var(--ink-600);
    font-size: 0.87rem;
}

/* FAQ */
.faq-list {
    display: grid;
    gap: 0.75rem;
}

.faq-item {
    overflow: hidden;
    background: var(--paper);
    border: 0;
    border-radius: var(--radius-md);
    transition: box-shadow var(--transition);
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    margin: 0;
}

.faq-question {
    display: flex;
    width: 100%;
    min-height: 4rem;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    padding: 1rem 1.2rem;
    text-align: left;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 690;
}

.faq-icon {
    position: relative;
    flex: 0 0 1.25rem;
    width: 1.25rem;
    height: 1.25rem;
}

.faq-icon::before,
.faq-icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1rem;
    height: 2px;
    background: var(--ember-600);
    border-radius: 99px;
    content: "";
    transform: translate(-50%, -50%);
    transition: transform var(--transition);
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-answer > div {
    padding: 0 1.2rem 1.2rem;
    color: var(--ink-700);
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Forms and contact */
.contact-layout {
    display: grid;
    align-items: start;
    gap: clamp(2rem, 6vw, 5rem);
}

.contact-card,
.form-card {
    background: var(--paper);
    border: 0;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.contact-card {
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.contact-card h2 {
    margin-bottom: 1.1rem;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.contact-list {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.contact-list li {
    display: grid;
    grid-template-columns: 2.6rem 1fr;
    gap: 0.8rem;
    align-items: start;
}

.contact-list li > div {
    min-width: 0;
    overflow-wrap: anywhere;
}

.contact-list__icon {
    display: grid;
    width: 2.6rem;
    height: 2.6rem;
    place-items: center;
    color: var(--white);
    background: var(--ink-900);
    border-radius: 50%;
    font-size: 0.82rem;
    font-weight: 750;
}

.contact-list__icon svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-list strong {
    display: block;
    color: var(--ink-950);
}

.contact-list a {
    color: var(--ember-700);
    overflow-wrap: anywhere;
}

.form-card {
    padding: clamp(1.5rem, 4vw, 2.7rem);
}

.form-card h2 {
    margin-bottom: 0.65rem;
    font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.form-intro {
    margin-bottom: 1.8rem;
    color: var(--ink-600);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.1rem;
}

.form-field {
    display: grid;
    gap: 0.42rem;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-field label,
.form-field legend {
    color: var(--ink-950);
    font-size: 0.9rem;
    font-weight: 690;
}

.form-field .optional {
    color: var(--ink-600);
    font-size: 0.8rem;
    font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 3.15rem;
    padding: 0.75rem 0.85rem;
    color: var(--ink-900);
    background: var(--cream-50);
    border: 1px solid rgba(37, 40, 42, 0.22);
    border-radius: 0.75rem;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-field textarea {
    min-height: 10rem;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    background: var(--white);
    border-color: var(--ember-600);
    box-shadow: 0 0 0 4px rgba(217, 85, 56, 0.12);
}

.form-field [aria-invalid="true"] {
    border-color: var(--error);
}

.field-error {
    margin: 0;
    color: var(--error);
    font-size: 0.83rem;
    font-weight: 620;
}

.checkbox-field {
    display: grid;
    grid-template-columns: 1.2rem minmax(0, 1fr);
    gap: 0.7rem;
    align-items: start;
}

.checkbox-field input {
    width: 1.2rem;
    height: 1.2rem;
    min-height: 0;
    margin: 0.08rem 0 0;
    padding: 0;
    align-self: start;
    background: transparent;
    border: 0;
    border-radius: 0.2rem;
    box-shadow: none;
    accent-color: var(--ember-600);
}

.checkbox-field label {
    color: var(--ink-700);
    font-size: 0.88rem;
    line-height: 1.45;
}

.checkbox-field input:focus {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.checkbox-field a {
    color: var(--ember-700);
}

.form-alert {
    margin-bottom: 1.4rem;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    font-size: 0.92rem;
}

.form-alert--error {
    color: #6f1818;
    background: #fff0ef;
    border: 1px solid #edb6b0;
}

.form-alert--success {
    color: #16563c;
    background: #edf9f3;
    border: 1px solid #acd8c5;
}

.form-alert p:last-child,
.form-alert ul:last-child {
    margin-bottom: 0;
}

.form-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

.form-submit-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
    align-items: center;
    margin-top: 0.35rem;
}

.form-submit-row p {
    max-width: 28rem;
    margin: 0;
    color: var(--ink-600);
    font-size: 0.8rem;
}

/* Global CTA and footer */
.global-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block: clamp(3.7rem, 7vw, 6.5rem);
    color: rgba(255, 255, 255, 0.76);
    background:
        radial-gradient(circle at 90% 12%, rgba(240, 138, 85, 0.22), transparent 25rem),
        var(--ink-800);
}

.global-cta::after {
    position: absolute;
    top: -12rem;
    right: -9rem;
    z-index: -1;
    width: 28rem;
    height: 28rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    box-shadow: 0 0 0 5rem rgba(255, 255, 255, 0.018), 0 0 0 10rem rgba(255, 255, 255, 0.012);
    content: "";
}

.global-cta__inner {
    display: grid;
    max-width: 1100px;
    align-items: end;
    gap: 2rem;
}

.global-cta h2 {
    max-width: 800px;
    margin-bottom: 1rem;
    color: var(--white);
}

.global-cta p {
    max-width: 760px;
    margin-bottom: 0;
}

.global-cta__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.site-footer {
    padding-top: clamp(3.5rem, 6vw, 5.5rem);
    color: rgba(255, 255, 255, 0.67);
    background: #151719;
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-brand img {
    width: 12.5rem;
    margin-bottom: 1.35rem;
}

.footer-brand p {
    max-width: 390px;
    margin-bottom: 0;
}

.footer-column h2 {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-column ul {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column a,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.footer-column a:hover,
.footer-bottom a:hover {
    color: var(--amber-300);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-block: 1.2rem 5.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.77rem;
}

.footer-bottom p {
    margin: 0;
}

.mobile-inquiry {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 900;
    display: flex;
    min-height: 3.25rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 1.1rem;
    color: var(--white);
    background: linear-gradient(115deg, var(--ember-700), var(--ember-400));
    border-radius: 999px;
    box-shadow: 0 16px 40px rgba(25, 27, 29, 0.3);
    font-weight: 720;
    text-decoration: none;
}

/* Legal and system pages */
.legal-content {
    color: var(--ink-700);
}

.legal-content h2 {
    margin-top: 2.2em;
    margin-bottom: 0.7em;
    font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.legal-content h3 {
    margin-top: 1.8em;
    font-size: 1.2rem;
}

.legal-content a {
    color: var(--ember-700);
}

.legal-content ul {
    padding-left: 1.25rem;
}

.system-page {
    display: grid;
    min-height: 66vh;
    place-items: center;
    padding-block: 5rem;
}

.system-page__card {
    width: min(100%, 760px);
    padding: clamp(2rem, 5vw, 4rem);
    text-align: center;
    background: var(--paper);
    border: 0;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.system-page__code {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--ember-600);
    font-size: 0.8rem;
    font-weight: 760;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.system-page__card h1 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.system-page__card p {
    max-width: 590px;
    margin: 0 auto 1.6rem;
    color: var(--ink-600);
}

@media (max-width: 1279px) {
    .spec-table-wrap {
        overflow: visible;
        border: 0;
        border-radius: 0;
    }

    .spec-table,
    .spec-table tbody {
        display: block;
        width: 100%;
    }

    .spec-table {
        min-width: 0;
        background: transparent;
    }

    .spec-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .spec-table tbody {
        display: grid;
        gap: 0.75rem;
    }

    .spec-table tbody tr {
        display: grid;
        min-width: 0;
        overflow: hidden;
        background: var(--paper);
        border-radius: var(--radius-sm);
        box-shadow: 0 8px 22px rgba(25, 27, 29, 0.07);
    }

    .spec-table th,
    .spec-table td {
        display: block;
        width: 100%;
        min-width: 0;
        padding: 0.78rem 0.95rem;
        border: 0;
        overflow-wrap: anywhere;
    }

    .spec-table tbody th {
        color: var(--ink-950);
        background: var(--cream-100);
        font-size: 0.84rem;
        letter-spacing: 0.01em;
    }

    .spec-table tbody td {
        background: var(--paper);
    }

    .spec-table tbody td + td {
        border-top: 1px solid rgba(37, 40, 42, 0.08);
    }

    .spec-table td[data-label]::before {
        display: block;
        margin-bottom: 0.18rem;
        color: var(--ember-700);
        font-size: 0.68rem;
        font-weight: 760;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        content: attr(data-label);
    }
}

@media (min-width: 620px) {
    .image-gallery--two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-grid,
    .feature-grid,
    .model-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .stat-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .stat-strip__item {
        border-right: 1px solid rgba(37, 40, 42, 0.1);
        border-bottom: 0;
    }

    .stat-strip__item:last-child {
        border-right: 0;
    }

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

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

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .topbar {
        display: block;
    }

    .topbar__inner {
        display: flex;
    }

    .site-nav {
        inset: 7.05rem 0 0;
    }

    .home-hero__grid,
    .page-hero__grid,
    .split-layout,
    .product-section__grid,
    .contact-layout {
        grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.96fr);
    }

    .page-hero__grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    }

    .home-hero__visual {
        align-self: center;
    }

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

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

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

    .global-cta__inner {
        grid-template-columns: minmax(0, 680px) max-content;
        justify-content: center;
        column-gap: clamp(2rem, 4vw, 3.5rem);
    }

    .global-cta__actions {
        align-items: flex-end;
    }

    .footer-grid {
        grid-template-columns: 1.55fr 0.85fr 1fr 0.85fr;
    }
}

@media (min-width: 1080px) {
    :root {
        --header-offset: 7.2rem;
    }

    body.nav-open {
        overflow: visible;
    }

    .nav-toggle {
        display: none;
    }

    .site-nav,
    .js .site-nav {
        position: static;
        display: flex;
        visibility: visible;
        flex: 1;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: clamp(1.4rem, 2.4vw, 2.4rem);
        padding: 0;
        overflow: visible;
        background: transparent;
        opacity: 1;
        transform: none;
    }

    .site-nav__list {
        flex-direction: row;
        align-items: center;
        gap: clamp(0.3rem, 1.15vw, 1rem);
    }

    .site-nav__list > li {
        border-bottom: 0;
    }

    .site-nav__list > li > a,
    .nav-dropdown__trigger > a {
        position: relative;
        min-height: 4.7rem;
        padding-inline: 0.5rem;
        font-size: 0.91rem;
        white-space: nowrap;
    }

    .site-nav__list > li > a::after,
    .nav-dropdown__trigger > a::after {
        position: absolute;
        right: 0.5rem;
        bottom: 0.9rem;
        left: 0.5rem;
        height: 2px;
        background: var(--ember-400);
        border-radius: 99px;
        content: "";
        opacity: 0;
        transform: scaleX(0.3);
        transition: opacity var(--transition), transform var(--transition);
    }

    .site-nav__list > li > a:hover::after,
    .site-nav__list > li > a[aria-current="page"]::after,
    .nav-dropdown.is-active .nav-dropdown__trigger > a::after,
    .nav-dropdown__trigger > a:hover::after {
        opacity: 1;
        transform: scaleX(1);
    }

    .nav-dropdown__trigger {
        display: flex;
        align-items: center;
    }

    .nav-dropdown__trigger button {
        width: 1.9rem;
        height: 1.9rem;
        margin-left: -0.35rem;
        background: transparent;
    }

    .nav-dropdown {
        position: static;
    }

    .mega-menu {
        position: absolute;
        top: 100%;
        right: max(1rem, calc((100vw - var(--container)) / 2));
        left: max(1rem, calc((100vw - var(--container)) / 2));
        display: grid;
        grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.6fr);
        max-height: none;
        padding: 1.6rem;
        overflow: visible;
        color: var(--ink-900);
        background: rgba(255, 254, 250, 0.985);
        border: 1px solid rgba(37, 40, 42, 0.1);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        box-shadow: 0 30px 70px rgba(10, 12, 13, 0.2);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-0.6rem);
        transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
        visibility: hidden;
    }

    .nav-dropdown:hover .mega-menu,
    .nav-dropdown:focus-within .mega-menu,
    .mega-menu.is-open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mega-menu__intro {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 1.6rem;
        background: linear-gradient(145deg, var(--ink-900), var(--ink-800));
        border-radius: var(--radius-md);
    }

    .mega-menu__intro strong {
        margin-bottom: 1.1rem;
        color: var(--white);
        font-size: 1.25rem;
        line-height: 1.3;
    }

    .mega-menu__intro a {
        color: var(--amber-300);
        font-size: 0.9rem;
        font-weight: 680;
        text-decoration: none;
    }

    .mega-menu__links {
        grid-template-columns: 1.2fr 1fr 0.9fr;
        gap: 1.4rem;
        padding: 0.6rem 0.8rem 0.6rem 1.8rem;
    }

    .mega-menu__group > span {
        color: var(--ember-700);
    }

    .mega-menu__group a {
        padding: 0.45rem 0;
        color: var(--ink-700);
    }

    .mega-menu__group a:hover,
    .mega-menu__group a[aria-current="page"] {
        color: var(--ember-700);
    }

    .button--header {
        width: auto;
        min-height: 2.85rem;
        margin-top: 0;
        padding: 0.72rem 1.05rem;
        font-size: 0.88rem;
        white-space: nowrap;
    }

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

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

    .mobile-inquiry {
        display: none;
    }

    .footer-bottom {
        padding-bottom: 1.2rem;
    }
}

@media (min-width: 1440px) {
    .home-hero__grid {
        grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
    }

    .product-grid--four {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .home-hero__grid,
    .page-hero__grid {
        gap: 0;
    }

    .home-hero__content,
    .page-hero__content {
        display: contents;
    }

    .home-hero__content > .eyebrow,
    .page-hero__content > .eyebrow {
        order: 1;
        justify-self: start;
    }

    .home-hero__content > h1,
    .page-hero__content > h1 {
        order: 2;
    }

    .home-hero__content > .home-hero__lead,
    .page-hero__content > .page-hero__lead {
        order: 3;
    }

    .home-hero__visual,
    .page-hero__media {
        order: 4;
        margin-bottom: 1.75rem;
    }

    .home-hero__content > .hero-actions,
    .page-hero__content > .hero-actions {
        order: 5;
    }

    .home-hero__content > .hero-proof {
        order: 6;
    }

    .home-hero h1,
    .page-hero h1,
    .home-hero__lead,
    .page-hero__lead {
        margin-inline: auto;
        text-align: center;
    }

    .home-hero .hero-actions,
    .page-hero .hero-actions,
    .home-hero .hero-proof {
        justify-content: center;
        text-align: center;
    }

    .hero-image-card {
        transform: none;
    }

    .hero-image-card__badge {
        margin-inline: auto;
        text-align: center;
    }

    .page-hero__abstract {
        min-height: clamp(14rem, 64vw, 18rem);
    }

    .global-cta__actions {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .global-cta__actions .text-link {
        justify-content: center;
    }

    .site-footer,
    .footer-grid,
    .footer-bottom {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .footer-brand {
        display: grid;
        justify-items: center;
    }

    .footer-brand img,
    .footer-brand p {
        margin-inline: auto;
    }

    .footer-column ul {
        justify-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
}

@media (min-width: 768px) and (max-width: 959px) {
    .page-hero__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }

    .page-hero__content {
        display: contents;
    }

    .page-hero__content > .eyebrow {
        order: 1;
    }

    .page-hero__content > h1 {
        order: 2;
    }

    .page-hero__content > .page-hero__lead {
        order: 3;
    }

    .page-hero__media {
        order: 4;
        margin-bottom: 1.75rem;
    }

    .page-hero__content > .hero-actions {
        order: 5;
    }

    .page-hero__media {
        max-width: 760px;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(calc(100% - 1.35rem), var(--container));
    }

    .home-hero h1 {
        font-size: clamp(2rem, 10vw, 2.45rem);
    }

    .page-hero h1 {
        font-size: clamp(1.9rem, 9.2vw, 2.25rem);
    }

    .hero-actions .button,
    .product-action-row .button {
        width: 100%;
    }

    .hero-proof {
        display: grid;
    }
}

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

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